regmodelSuit: A function for guiding selection of a predition model for...

View source: R/regmodelSuit.R

regmodelSuitR Documentation

A function for guiding selection of a predition model for modelling soil properties

Description

This function evaluates suitability of most predition models in mapping soil properties using a set of predictors

Usage

regmodelSuit(df, ...)

Arguments

df

a dataframe of target soil property and its predictors

...

name of the target soil variable to predict and names of its predictors

Details

The name of the target soil variable to predict and names of its predictors are seperated by commas and are similar to column names of the corresponding variables in the supplied dataframe. The name of the target soil variable starts the list and followed by the names of its predictors. For example, if the dataframe has EC, landcover,DEM, Slope, NDVI, etc., then the input could be (soil,EC,landcover,Slope,DEM).

Value

A table of model statistics such as root mean square error (RMSE), mean absolute error (MAE), r-squared (R2) and Nash-Sutcliffe coefficient of efficiency (NSE) for the popular models in digital soil mapping

Note

The function carries 5-fold cross-validation. Sometimes it may give a warning of missing resample performance with some models. It's important to ensure no NA in the data used for modelling

Author(s)

Christian Thine Omuto

References

Nash, J. E.; Sutcliffe, J. V. 1970. River flow forecasting through conceptual models part I — A discussion of principles. Journal of Hydrology. 10 (3): 282–290

See Also

pedoTransfer, predUncertain, ECconversion3

Examples

library(caret)
library(sp)
data(soil)
soil1=soil[,c("EC")]
soil1=subset(soil1,!is.na(soil1$EC))
overlay.ov=over(soil1, suitabinput)
soil1$dem=overlay.ov$dem
soil1$rain=overlay.ov$rain
soil1$ph=overlay.ov$ph
soil2=soil1@data[,c("EC","dem","rain","ph")]

regmodelSuit(soil2,EC,dem,rain,ph)


soilassessment documentation built on July 9, 2023, 7:40 p.m.