plot.growth {languageR} | R Documentation |
This function defines the plot method for growth objects.
## S3 method for class 'growth': plot(x, w = "all", ...)
x |
A growth object. |
w |
A character string denoting the name of a specific variable to be plotted. |
... |
other parameters to be passed through to plotting functions. |
A plot shown on the graphics device.
R. H. Baayen
See Also growth.fnc
.
## Not run: data(alice) alice.growth = growth.fnc(alice) plot(alice.growth) plot(alice.growth, w = "Yule") ## End(Not run)