stat_param | R Documentation |
This function calculates other statistical parameters such as Mean (Bias) Error, Relative Mean (Bias) Error, Mean Absolute Error, Relative Mean Absolute Error, Root Mean Square Error, Relative Root Mean Square Error, Modeling Efficiency, Standard deviation of differences, Coefficient of Residual Mass.
stat_param(models, names_model = NA, round = 3)
models |
List with objects of type analysis |
names_model |
Names of the models |
round |
Round numbers |
Returns a table with the statistical parameters for choosing the model.
Gabriel Danilo Shimizu
library(AgroReg)
data(granada)
attach(granada)
a=LM(time,WL)
b=LL(time,WL)
c=BC(time,WL)
d=weibull(time,WL)
stat_param(models=list(a,b,c,d))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.