-
Notifications
You must be signed in to change notification settings - Fork 18
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 #135 from PLN-team/more-comprehensive-error-msgs
More comprehensive error msgs
- Loading branch information
Showing
11 changed files
with
166 additions
and
101 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 |
---|---|---|
|
@@ -33,3 +33,4 @@ | |
^data-raw$ | ||
^CRAN-SUBMISSION$ | ||
^AUTHORS$ | ||
^dev$ |
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 |
---|---|---|
|
@@ -2,65 +2,74 @@ Package: PLNmodels | |
Title: Poisson Lognormal Models | ||
Version: 1.2.1 | ||
Authors@R: c( | ||
person("Julien", "Chiquet", role = c("aut", "cre"), email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-3629-3429")), | ||
person("Mahendra", "Mariadassou", role = "aut", email = "[email protected]", | ||
comment = c(ORCID = "0000-0003-2986-354X")), | ||
person("Stéphane", "Robin", role ="aut", email = "[email protected]"), | ||
person("François", "Gindraud", role = "aut", email = "[email protected]"), | ||
person("Julie", "Aubert", role = "ctb", email = "[email protected]"), | ||
person("Bastien", "Batardière", role = "ctb", email = "[email protected]"), | ||
person("Giovanni", "Poggiato", role = "ctb", email = "[email protected]"), | ||
person("Cole", "Trapnell", role = "ctb", email = "[email protected]"), | ||
person("Maddy", "Duran", role = "ctb", email = "[email protected]") | ||
person("Julien", "Chiquet", , "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0002-3629-3429")), | ||
person("Mahendra", "Mariadassou", , "[email protected]", role = "aut", | ||
comment = c(ORCID = "0000-0003-2986-354X")), | ||
person("Stéphane", "Robin", , "[email protected]", role = "aut"), | ||
person("François", "Gindraud", , "[email protected]", role = "aut"), | ||
person("Julie", "Aubert", , "[email protected]", role = "ctb"), | ||
person("Bastien", "Batardière", , "[email protected]", role = "ctb"), | ||
person("Giovanni", "Poggiato", , "[email protected]", role = "ctb"), | ||
person("Cole", "Trapnell", , "[email protected]", role = "ctb"), | ||
person("Maddy", "Duran", , "[email protected]", role = "ctb") | ||
) | ||
Description: The Poisson-lognormal model and variants (Chiquet, Mariadassou and Robin, | ||
2021 <doi:10.3389/fevo.2021.588292>) can be used for | ||
a variety of multivariate problems when count data are at play, including | ||
principal component analysis for count data, discriminant analysis, model-based clustering and | ||
network inference. Implements variational algorithms to fit such models accompanied with a set of | ||
functions for visualization and diagnostic. | ||
Description: The Poisson-lognormal model and variants (Chiquet, | ||
Mariadassou and Robin, 2021 <doi:10.3389/fevo.2021.588292>) can be | ||
used for a variety of multivariate problems when count data are at | ||
play, including principal component analysis for count data, | ||
discriminant analysis, model-based clustering and network inference. | ||
Implements variational algorithms to fit such models accompanied with | ||
a set of functions for visualization and diagnostic. | ||
URL: https://pln-team.github.io/PLNmodels/ | ||
BugReports: https://github.com/pln-team/PLNmodels/issues | ||
License: GPL (>= 3) | ||
Encoding: UTF-8 | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.3.2 | ||
Depends: R (>= 3.6) | ||
LazyData: true | ||
biocViews: | ||
Imports: | ||
methods, | ||
stats, | ||
MASS, | ||
future, | ||
future.apply, | ||
R6, | ||
glassoFast, | ||
pscl, | ||
Matrix, | ||
Rcpp, | ||
nloptr, | ||
igraph, | ||
grid, | ||
gridExtra, | ||
dplyr, | ||
tidyr, | ||
purrr, | ||
ggplot2, | ||
corrplot, | ||
magrittr, | ||
torch, | ||
rlang | ||
cli, | ||
corrplot, | ||
dplyr, | ||
future, | ||
future.apply, | ||
ggplot2, | ||
glassoFast, | ||
grDevices, | ||
grid, | ||
gridExtra, | ||
igraph, | ||
magrittr, | ||
MASS, | ||
Matrix, | ||
methods, | ||
nloptr, | ||
parallel, | ||
pscl, | ||
purrr, | ||
R6, | ||
Rcpp, | ||
rlang, | ||
scales, | ||
stats, | ||
tidyr, | ||
torch | ||
Suggests: | ||
factoextra, | ||
knitr, | ||
rmarkdown, | ||
testthat, | ||
pkgdown, | ||
spelling, | ||
factoextra | ||
LinkingTo: Rcpp, RcppArmadillo, nloptr | ||
VignetteBuilder: knitr | ||
testthat | ||
LinkingTo: | ||
nloptr, | ||
Rcpp, | ||
RcppArmadillo | ||
VignetteBuilder: | ||
knitr | ||
biocViews: | ||
Encoding: UTF-8 | ||
Language: en-US | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.3.2 | ||
Collate: | ||
'PLNfit-class.R' | ||
'PLN.R' | ||
|
@@ -102,4 +111,3 @@ Collate: | |
'utils-zipln.R' | ||
'utils.R' | ||
'zzz.R' | ||
Language: en-US |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.