-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/marginalise
- Loading branch information
Showing
169 changed files
with
18,988 additions
and
1,631 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
linters: with_defaults(commas_linter = NULL, object_usage_linter = NULL) | ||
linters: with_defaults(commas_linter = NULL, object_usage_linter = NULL, object_length_linter = NULL) | ||
exclude: "# Exclude Linting" | ||
exclude_start: "# Begin Exclude Linting" | ||
exclude_end: "# End Exclude Linting" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Package: greta | ||
Type: Package | ||
Title: Simple and Scalable Statistical Modelling in R | ||
Version: 0.3.0.9001 | ||
Date: 2018-11-12 | ||
Version: 0.3.1.9003 | ||
Date: 2019-08-21 | ||
Authors@R: c( | ||
person("Nick", "Golding", role = c("aut", "cre"), | ||
email = "[email protected]", | ||
|
@@ -19,13 +19,15 @@ Authors@R: c( | |
person("Paul", "Teetor", role = "ctb"), | ||
person("Jian", "Yen", role = "ctb") | ||
) | ||
Description: Write statistical models in R and fit them by MCMC on CPUs and GPUs, using Google TensorFlow (see <https://greta-dev.github.io/greta> for more information). | ||
Description: Write statistical models in R and fit them by MCMC and optimisation on CPUs and GPUs, using Google 'TensorFlow'. | ||
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 for more information, including tutorials, examples, package documentation, and the greta forum. | ||
License: Apache License 2.0 | ||
URL: https://github.com/greta-dev/greta | ||
URL: https://greta-stats.org | ||
BugReports: https://github.com/greta-dev/greta/issues | ||
SystemRequirements: Python (>= 2.7.0) with header files and shared library; | ||
TensorFlow (>= 1.10; https://www.tensorflow.org/); | ||
Tensorflow Probability (>=0.5.0; https://www.tensorflow.org/probability/) | ||
TensorFlow (v1.14; https://www.tensorflow.org/); | ||
TensorFlow Probability (v0.7.0; https://www.tensorflow.org/probability/) | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Depends: | ||
|
@@ -65,7 +67,7 @@ Collate: | |
'marginalisers.R' | ||
Imports: | ||
R6, | ||
tensorflow, | ||
tensorflow (>= 1.13.0), | ||
reticulate, | ||
progress (>= 1.2.0), | ||
future, | ||
|
@@ -86,6 +88,8 @@ Suggests: | |
tidyverse, | ||
fields, | ||
MASS, | ||
abind | ||
abind, | ||
spelling | ||
VignetteBuilder: knitr | ||
RoxygenNote: 6.1.1 | ||
Language: en-GB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
f6c89e8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
R/marginalise.R:28:8: style: Commented code should be removed.
R/marginalise.R:29:8: style: Commented code should be removed.
R/marginalise.R:30:8: style: Commented code should be removed.
R/marginalisers.R:146:1: style: lines should not be more than 80 characters.
R/marginalisers.R:154:1: style: lines should not be more than 80 characters.
R/marginalisers.R:230:7: style: Variable and function names should be all lowercase.
R/marginalisers.R:236:25: style: Variable and function names should be all lowercase.
R/marginalisers.R:236:42: style: Variable and function names should be all lowercase.
R/marginalisers.R:242:15: style: Variable and function names should be all lowercase.
R/marginalisers.R:244:20: style: Variable and function names should be all lowercase.
R/marginalisers.R:301:5: style: Variable and function names should be all lowercase.
R/marginalisers.R:307:23: style: Variable and function names should be all lowercase.
R/marginalisers.R:307:40: style: Variable and function names should be all lowercase.
R/marginalisers.R:344:1: style: lines should not be more than 80 characters.
tests/testthat/test_marginalisation.R:35:23: style: Opening curly braces should never go on their own line and should always be followed by a new line.
tests/testthat/test_marginalisation.R:35:40: style: Closing curly-braces should always be on their own line, unless it's followed by an else.
tests/testthat/test_marginalisation.R:44:23: style: Opening curly braces should never go on their own line and should always be followed by a new line.
tests/testthat/test_marginalisation.R:44:29: style: Closing curly-braces should always be on their own line, unless it's followed by an else.
tests/testthat/test_marginalisation.R:207:1: style: Trailing blank lines are superfluous.
^
tests/testthat/test_marginalisation.R:208:1: style: Trailing blank lines are superfluous.
^