paramecium | R Documentation |
Data on the growth of three colonies of Paramecium aurelium in a nutritive medium containing salt solution. In each experiment, 20 Paramecia were placed in a tube with a constant temperature medium. Starting on the second day, the number of individuals is counted every day.
data(paramecium)
A data frame with 57 rows and 3 variables:
a numeric vector indicating the time, in number of days.
a factor with three levels: "A", "B" and "C".
a numeric vector indicating the number of individuals in the colony.
Svetliza C.F., Paula G.A. (2003) Diagnostics in Nonlinear Negative Binomial Models. Communications in Statistics - Theory and Methods, 32, 1227-1250.
data(paramecium)
dev.new()
with(paramecium,plot(Days,Number,ylab="Number of individuals",pch=20,
xlab="Time, in days",
col=ifelse(Colony=="A","black",ifelse(Colony=="B","blue","red"))))
legend(c(0,680),col=c("black","blue","red"),legend=c("A","B","C"),
pch=20,title="Colony",bty="n")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.