Learn R Programming

rangeModelMetadata (version 0.1.5)

rmmSuggest: Suggest inputs for a range model metadata list

Description

Supply fields to receive suggested inputs

Usage

rmmSuggest(charString, fullFieldDepth = FALSE)

Value

list of suggestions

Arguments

charString

string referencing fields of the form `field1$field2` or `field1$field2$field3`, etc.

fullFieldDepth

print all fields below the current field depth

rmm1 <- rmmTemplate() rmmSuggest('dataPrep',fullFieldDepth=FALSE) rmmSuggest('dataPrep',fullFieldDepth=TRUE) rmmSuggest('dataPrep$errors$duplicateRemoval') rmmSuggest('dataPrep$errors$duplicateRemoval$rule') rmmSuggest('model') rmmSuggest('modelFit$algorithmSettings$') rmmSuggest('modelFit$algorithmSettings$maxent$') rmmSuggest('$modelFit$algorithmSettings$maxent$featureSet')

Author

Cory Merow <cory.merow@gmail.com>, Brian Maitner <bmaitner@gmail.com>,

Details

See Examples.