stat_param {AgroReg}R Documentation

Analysis: Other statistical parameters

Description

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.

Usage

stat_param(models, names_model = NA, round = 3)

Arguments

models

List with objects of type analysis

names_model

Names of the models

round

Round numbers

Value

Returns a table with the statistical parameters for choosing the model.

Author(s)

Gabriel Danilo Shimizu

Examples

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))

[Package AgroReg version 1.2.10 Index]