An R package for calculating River Invertebrate Classification Tool (RICT) predictions. To use interactively via a web app - see the User Guide for more details.
Install R and we also recommend installing Rstudio.
Alternatively, use R Cloud through your browser.
In the R console, install the development version from GitHub:
install.packages("devtools") library(devtools) install_github("aquaMetrics/rict") library(rict)
Open interactive web app:
rict_app()
Or run the demo dataset through the rict
function in R to get classification results:
results <- rict(demo_observed_values)
Use rict_predict
to only calculate predictions:
predictions <- rict_predict(demo_observed_values)
And rict_classify
to classify these predictions:
results <- rict_classify(predictions)
See documentation for further usage details. For example, how to change the default year_type
from multi-year to single year classification:
results <- rict(demo_gis_values_log, year_type = "single")
Please read the Contributing Guidelines file for more details.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.