Learn R Programming

AgroReg (version 1.2.10)

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

Value

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

Arguments

models

List with objects of type analysis

names_model

Names of the models

round

Round numbers

Author

Gabriel Danilo Shimizu

Examples

Run this code
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))

Run the code above in your browser using DataLab