forked from greta-dev/greta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
38 lines (29 loc) · 1.78 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
title: "greta"
output:
md_document:
variant: markdown_github
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, cache = TRUE)
set.seed(1)
```
```{r top_banner, echo=FALSE, fig.height=3, fig.width=42}
knitr::include_graphics('README_files/top_banner.png')
```
### greta is an R package for writing statistical models and fitting them by MCMC.
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-dev.github.io/greta/) for more information, [tutorials](https://greta-dev.github.io/greta/get_started.html), [examples](https://greta-dev.github.io/greta/example_models.html), and [package documentation](https://greta-dev.github.io/greta/reference-index.html).
You can install the package from CRAN:
```r
install.packages("greta")
```
I would love to hear any feedback, bug reports or feature requests via the [issues tracker](https://github.com/greta-dev/greta/issues). I would also be very keen for contributions from anyone with time to spare!
[![build status](https://travis-ci.org/greta-dev/greta.svg?branch=master)](https://travis-ci.org/greta-dev/greta)
[![codecov.io](https://codecov.io/github/greta-dev/greta/coverage.svg?branch=master)](https://codecov.io/github/greta-dev/greta?branch=master)
[![cran version](http://www.r-pkg.org/badges/version/greta)](https://cran.rstudio.com/web/packages/greta)
[![license](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![doi](https://zenodo.org/badge/73758247.svg)](https://zenodo.org/badge/latestdoi/73758247)
```{r bottom_banner, echo=FALSE, fig.width=14}
knitr::include_graphics('README_files/bottom_banner.png')
```