View source: R/sapwood_utils.R
plot.sapwood_fit | R Documentation |
Visualize sapwood model.
## S3 method for class 'sapwood_fit' plot( object, type = "fit", xlim = NULL, ylim = NULL, prediction = T, confidence = F )
object |
an object of class "sapwood_fit", a result from a call to |
type |
Type of plot. Possible types are:
|
xlim, ylim |
Limits of the axes of the plot. Given as a vector similar to c(0,100). |
prediction |
If TRUE, prediction bands are plotted on the plot. Only used for type = "fit". |
confidence |
If TRUE, confidence bands to the median are plotted to the plot. Only used for type = "fit". |
data(smaland) fit <- sapwood_fit_pl(S~H, smaland) plot(fit, xlim=c(0,220), ylim=c(0,150)) plot(fit) plot(fit, type="residual") plot(fit, type="qq")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.