-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #255 from alan-turing-institute/param6
Param6
- Loading branch information
Showing
287 changed files
with
2,077 additions
and
7,734 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -30,11 +30,13 @@ jobs: | |
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }} | ||
restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1- | ||
|
||
- name: Install system dependencies | ||
run: brew install harfbuzz fribidi | ||
|
||
- name: Install dependencies | ||
run: | | ||
remotes::install_deps(dependencies = TRUE) | ||
install.packages("pkgdown") | ||
remotes::install_github("mlr-org/mlr3pkgdowntemplate") | ||
install.packages(c("pkgdown", "textshaping")) | ||
shell: Rscript {0} | ||
|
||
- name: Install package | ||
|
@@ -45,4 +47,3 @@ jobs: | |
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Actions" | ||
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)' | ||
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 |
---|---|---|
|
@@ -14,3 +14,5 @@ CRAN-RELEASE | |
*.o | ||
*.so | ||
*.dll | ||
/doc/ | ||
/Meta/ |
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,10 +1,10 @@ | ||
Package: distr6 | ||
Title: The Complete R6 Probability Distributions Interface | ||
Version: 1.5.6 | ||
Version: 1.6.0 | ||
Authors@R: | ||
c(person(given = "Raphael", | ||
c(person(given = "Raphael", | ||
family = "Sonabend", | ||
role = c("aut","cre"), | ||
role = c("aut", "cre"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-9225-4654")), | ||
person(given = "Franz", | ||
|
@@ -15,12 +15,12 @@ Authors@R: | |
family = "Ruckdeschel", | ||
role = "ctb", | ||
email = "[email protected]", | ||
comment = c("Author of distr")), | ||
comment = "Author of distr"), | ||
person(given = "Matthias", | ||
family = "Kohl", | ||
role = "ctb", | ||
email = "[email protected]", | ||
comment = c("Author of distr")), | ||
comment = "Author of distr"), | ||
person(given = "Nurul Ain", | ||
family = "Toha", | ||
role = "ctb", | ||
|
@@ -64,33 +64,48 @@ Authors@R: | |
person(given = "Qian", | ||
family = "Zhou", | ||
role = "ctb", | ||
email = "[email protected]") | ||
) | ||
Description: An R6 object oriented distributions package. Unified interface for 42 probability distributions and 11 kernels including functionality for multiple scientific types. Additionally functionality for composite distributions and numerical imputation. Design patterns including wrappers and decorators are described in Gamma et al. (1994, ISBN:0-201-63361-2). For quick reference of probability distributions including d/p/q/r functions and results we refer to McLaughlin, M. P. (2001). Additionally Devroye (1986, ISBN:0-387-96305-7) for sampling the Dirichlet distribution, Gentle (2009) <doi:10.1007/978-0-387-98144-4> for sampling the Multivariate Normal distribution and Michael et al. (1976) <doi:10.2307/2683801> for sampling the Wald distribution. | ||
email = "[email protected]")) | ||
Description: An R6 object oriented distributions package. Unified | ||
interface for 42 probability distributions and 11 kernels including | ||
functionality for multiple scientific types. Additionally | ||
functionality for composite distributions and numerical imputation. | ||
Design patterns including wrappers and decorators are described in | ||
Gamma et al. (1994, ISBN:0-201-63361-2). For quick reference of | ||
probability distributions including d/p/q/r functions and results we | ||
refer to McLaughlin, M. P. (2001). Additionally Devroye (1986, | ||
ISBN:0-387-96305-7) for sampling the Dirichlet distribution, Gentle | ||
(2009) <doi:10.1007/978-0-387-98144-4> for sampling the Multivariate | ||
Normal distribution and Michael et al. (1976) <doi:10.2307/2683801> | ||
for sampling the Wald distribution. | ||
License: MIT + file LICENSE | ||
URL: https://alan-turing-institute.github.io/distr6/, | ||
https://github.com/alan-turing-institute/distr6/ | ||
BugReports: https://github.com/alan-turing-institute/distr6/issues | ||
Imports: | ||
checkmate, | ||
data.table, | ||
param6 (>= 0.2.1), | ||
R6, | ||
Rcpp, | ||
set6 (>= 0.2.3), | ||
stats | ||
Suggests: | ||
actuar, | ||
cubature, | ||
extraDistr, | ||
GoFKernel, | ||
knitr, | ||
magrittr, | ||
plotly, | ||
pracma, | ||
R62S3 (>= 1.4.0), | ||
set6 (>= 0.2.0), | ||
stats, | ||
rmarkdown, | ||
testthat | ||
LinkingTo: | ||
Rcpp | ||
Suggests: | ||
cubature, | ||
GoFKernel, | ||
knitr, | ||
testthat, | ||
rmarkdown, | ||
magrittr, | ||
extraDistr, | ||
actuar, | ||
plotly, | ||
pracma | ||
License: MIT + file LICENSE | ||
URL: https://alan-turing-institute.github.io/distr6/, https://github.com/alan-turing-institute/distr6/ | ||
BugReports: https://github.com/alan-turing-institute/distr6/issues | ||
VignetteBuilder: | ||
knitr | ||
Config/testthat/edition: 3 | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE, r6 = TRUE) | ||
RoxygenNote: 7.1.1 | ||
|
@@ -116,8 +131,6 @@ Collate: | |
'Kernel_Tricube.R' | ||
'Kernel_Triweight.R' | ||
'Kernel_Uniform.R' | ||
'ParameterSet.R' | ||
'ParameterSetCollection.R' | ||
'RcppExports.R' | ||
'SDistribution_Arcsine.R' | ||
'SDistribution_Bernoulli.R' | ||
|
@@ -209,5 +222,3 @@ Collate: | |
'skewType.R' | ||
'sugar.R' | ||
'zzz.R' | ||
LinkingTo: | ||
Rcpp |
Oops, something went wrong.