add version 1.2.0 to r-mixtools (#21100)
This commit is contained in:
parent
6f3c53e12e
commit
53984edf2e
1 changed files with 16 additions and 2 deletions
|
@ -7,19 +7,33 @@
|
||||||
|
|
||||||
|
|
||||||
class RMixtools(RPackage):
|
class RMixtools(RPackage):
|
||||||
"""mixtools: Tools for Analyzing Finite Mixture Models
|
"""Tools for Analyzing Finite Mixture Models
|
||||||
|
|
||||||
Analyzes finite mixture models for various parametric and semiparametric
|
Analyzes finite mixture models for various parametric and semiparametric
|
||||||
settings."""
|
settings. This includes mixtures of parametric distributions (normal,
|
||||||
|
multivariate normal, multinomial, gamma), various Reliability Mixture
|
||||||
|
Models (RMMs), mixtures-of-regressions settings (linear regression,
|
||||||
|
logistic regression, Poisson regression, linear regression with
|
||||||
|
changepoints, predictor-dependent mixing proportions, random effects
|
||||||
|
regressions, hierarchical mixtures-of-experts), and tools for selecting the
|
||||||
|
number of components (bootstrapping the likelihood ratio test statistic,
|
||||||
|
mixturegrams, and model selection criteria). Bayesian estimation of
|
||||||
|
mixtures-of-linear-regressions models is available as well as a novel data
|
||||||
|
depth method for obtaining credible bands. This package is based upon work
|
||||||
|
supported by the National Science Foundation under Grant No.
|
||||||
|
SES-0518772."""
|
||||||
|
|
||||||
homepage = "https://cloud.r-project.org/package=mixtools"
|
homepage = "https://cloud.r-project.org/package=mixtools"
|
||||||
url = "https://cloud.r-project.org/src/contrib/mixtools_1.1.0.tar.gz"
|
url = "https://cloud.r-project.org/src/contrib/mixtools_1.1.0.tar.gz"
|
||||||
list_url = "https://cloud.r-project.org/src/contrib/Archive/mixtools"
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/mixtools"
|
||||||
|
|
||||||
|
version('1.2.0', sha256='ef033ef13625209065d26767bf70d129972e6808927f755629f1d70a118b9023')
|
||||||
version('1.1.0', sha256='543fd8d8dc8d4b6079ebf491cf97f27d6225e1a6e65d8fd48553ada23ba88d8f')
|
version('1.1.0', sha256='543fd8d8dc8d4b6079ebf491cf97f27d6225e1a6e65d8fd48553ada23ba88d8f')
|
||||||
version('1.0.4', sha256='62f4b0a17ce520c4f8ed50ab44f120e459143b461a9e420cd39056ee4fc8798c')
|
version('1.0.4', sha256='62f4b0a17ce520c4f8ed50ab44f120e459143b461a9e420cd39056ee4fc8798c')
|
||||||
|
|
||||||
depends_on('r@3.2:', type=('build', 'run'))
|
depends_on('r@3.2:', type=('build', 'run'))
|
||||||
|
depends_on('r@3.5.0:', when='@1.2.0:', type=('build', 'run'))
|
||||||
|
depends_on('r-kernlab', when='@1.2.0:', type=('build', 'run'))
|
||||||
depends_on('r-mass', type=('build', 'run'))
|
depends_on('r-mass', type=('build', 'run'))
|
||||||
depends_on('r-segmented', type=('build', 'run'))
|
depends_on('r-segmented', type=('build', 'run'))
|
||||||
depends_on('r-survival', type=('build', 'run'))
|
depends_on('r-survival', type=('build', 'run'))
|
||||||
|
|
Loading…
Reference in a new issue