The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

growthcurver

Travis-CI Build Status

Growthcurver is an R package that fits growth curve data to a standard form of the logistic equation common in ecology and evolution whose parameters (the growth rate, the initial population size, and the carrying capacity) provide meaningful population-level information with straight-forward biological interpretation.

You can install the latest released version from CRAN from within R with ```R install.packages(“growthcurver”) ````

You can install the latest development version from github with ```R # install devtools first if you don’t already have the package install.packages(“devtools”)

# then install growthcurver devtools::install_github(“sprouffske/growthcurver”) ```

The paper describing Growthcurver is available here.

Using growthcurver

The easiest way to get started with growthcurver is to work through the examples in the vignette. In the vignette, you can find information on

You can find the vignette here.

A simple working example

This code loads the growthcurver package and some sample data. Then, it calls SummarizeGrowth to do the analysis.

library(growthcurver)                    # load the package
d <- growthdata                          # load some sample, simulated data
gc_fit <- SummarizeGrowth(d$time, d$A1)  # do the analysis
plot(gc_fit)                             # plot your data and the best fit
gc_fit                                   # view some returned metrics

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.