Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/greta-dev/greta
simple and scalable statistical modelling in R
https://github.com/greta-dev/greta
Last synced: 17 days ago
JSON representation
simple and scalable statistical modelling in R
- Host: GitHub
- URL: https://github.com/greta-dev/greta
- Owner: greta-dev
- License: other
- Created: 2016-11-15T00:04:26.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-10-16T03:54:28.000Z (27 days ago)
- Last Synced: 2024-10-17T19:01:51.547Z (25 days ago)
- Language: C++
- Homepage: https://greta-stats.org
- Size: 37.1 MB
- Stars: 527
- Watchers: 26
- Forks: 63
- Open Issues: 176
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codemeta: codemeta.json
Awesome Lists containing this project
- jimsghstars - greta-dev/greta - simple and scalable statistical modelling in R (C++)
README
![](logos/top_banner.png)
### greta is an R package for writing statistical models and fitting them by MCMC and optimisation
greta lets you write your own model like in BUGS, JAGS and Stan, except
that you write models right in R, it scales well to massive datasets,
and it’s easy to extend and build on.### See the [website](https://greta-stats.org/) for more information, including [tutorials](https://greta-stats.org/articles/get_started.html), [examples](https://greta-stats.org/articles/example_models.html), [package documentation](https://greta-stats.org/reference/index.html), and the [greta forum](https://forum.greta-stats.org).
You can install the current release version of the package from
CRAN:``` r
install.packages("greta")
```Or install the development version of `greta` from [r-universe](http://greta-dev.r-universe.dev/ui/):
```r
# Enable this universe
options(
repos = c(
gretadev = 'https://greta-dev.r-universe.dev',
CRAN = 'https://cloud.r-project.org'
)
)# Install greta
install.packages('greta')
```(Note - installing from r-universe is just like installing from CRAN, and should be faster and more convenient than installing from GitHub)
You can also install the development version of `greta` via GitHub:
``` r
devtools::install_github("greta-dev/greta")
```# Installing Python Dependencies
The `install_greta_deps()` function helps install the Python dependencies (Google's [TensorFlow](https://www.tensorflow.org/) version 1.14.0, and [tensorflow-probability](https://github.com/tensorflow/probability) version 0.7.0).
This helper function, `install_greta_deps()`, installs the exact pythons package versions needed. It also places these inside a "greta-env" conda environment. This isolates these exact python modules from other python installations, so that only `greta` will see them. This helps avoids installation issues, where previously you might update tensorflow on your computer and overwrite the current version needed by `greta`. Using this "greta-env" conda environment means installing other python packages should not be impact the Python packages needed by `greta`.
If these python modules aren't yet installed, when `greta` is used, it provides instructions on how to install them for your system. If in doubt follow those.
[![Codecov test coverage](https://codecov.io/gh/greta-dev/greta/branch/master/graph/badge.svg)](https://app.codecov.io/gh/greta-dev/greta?branch=master)
[![R-CMD-check](https://github.com/greta-dev/greta/workflows/R-CMD-check/badge.svg)](https://github.com/greta-dev/greta/actions)
[![cran
version](http://www.r-pkg.org/badges/version/greta)](https://CRAN.R-project.org/package=greta)
[![license](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/license/apache-2-0)
[![doi](https://zenodo.org/badge/73758247.svg)](https://zenodo.org/badge/latestdoi/73758247)
[![joss](https://joss.theoj.org/papers/10.21105/joss.01601/status.svg)](https://joss.theoj.org/papers/10.21105/joss.01601)
![](logos/bottom_banner.png)