RGLUEANN package available on GitHub
[This article was first published on Bart Rogiers' blog, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
The RGLUEANN package is now available on GitHub at http://github.com/rogiersbart/RGLUEANN. The package provides an R implementation of the coupling between general likelihood uncertainty estimation (GLUE) and artificial neural networks (ANNs), as presented in our 2012 Mathematical Geosciences paper. It is basically a probabilistic non-linear data-driven modelling tool. The package can be installed using the following R code:
install.packages(“devtools”)
library(devtools)
install_github(“rogiersbart/RGLUEANN”)
library(devtools)
install_github(“rogiersbart/RGLUEANN”)
The two examples provided before are available as demos now, after loading the package through library(RGLUEANN):
- demo(“RGLUEANN_training_and_prediction”) shows how to train a GLUE-ANN ensemble, and make predictions with it;
- demo(“RGLUEANN_cross-validation”) provides an example of cross-validation.
Any feedback is welcome!
To leave a comment for the author, please follow the link and comment on their blog: Bart Rogiers' blog.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.