Title: Genotype by Environment (GxE) Analysis
Description: Analysis of multi environment data of plant breeding experiments
following the analyses described in Malosetti, Ribaut,
and van Eeuwijk (2013), <doi:10.3389/fphys.2013.00044>.
One of a series of statistical genetic packages for streamlining the analysis of
typical plant breeding experiments developed by Biometris.
Some functions have been created to be used in conjunction with the R
package 'asreml' for the 'ASReml' software, which can be obtained upon
purchase from 'VSN' international (<https://vsni.co.uk/software/asreml-r/>).
Author: Bart-Jan van Rossum [aut, cre] ,
Fred van Eeuwijk [ctb] ,
Martin Boer [ctb] ,
Marcos Malosetti [ctb] ,
Daniela Bustos-Korts [ctb] ,
Emilie J Millet [ctb] ,
Joao Paulo [ctb] ,
Maikel Verouden [ctb] ,
Willem Kruijer [ctb] ,
Ron Wehrens [ctb] ,
Choazhi [...truncated...]
Maintainer: Bart-Jan van Rossum <bart-jan.vanrossum@wur.nl>
Diff between statgenGxE versions 1.0.10 dated 2025-06-24 and 1.0.11 dated 2025-11-12
DESCRIPTION | 33 ++++++++++++------ MD5 | 24 ++++++------- NEWS.md | 4 ++ R/createVarComp.R | 68 +++++++++++++++++++++++++++++++++------ R/gxeVarComp.R | 1 README.md | 2 - build/partial.rdb |binary build/vignette.rds |binary inst/doc/statgenGxE.html | 35 ++++++++++---------- man/herit.Rd | 21 ++++++++---- man/statgenGxE-package.Rd | 6 ++- tests/testthat/Rplots.pdf |binary tests/testthat/test-gxeVarComp.R | 36 ++++++++++---------- 13 files changed, 154 insertions(+), 76 deletions(-)
Title: Makefile Generator for R Analytical Projects
Description: Creates and maintains a build process for complex analytic tasks in R.
Package allows to easily generate Makefile for the (GNU) 'make' tool, which drives the build process
by (in parallel) executing build commands in order to update results accordingly to given dependencies
on changed data or updated source files.
Author: Michal Burda [aut, cre]
Maintainer: Michal Burda <michal.burda@osu.cz>
Diff between rmake versions 1.2.0 dated 2025-08-26 and 1.2.1 dated 2025-11-12
DESCRIPTION | 12 - MD5 | 101 +++++++-------- NAMESPACE | 2 NEWS.md | 9 - R/copyRule.R | 12 - R/depRule.R | 8 - R/expandTemplate.R | 20 +-- R/getParam.R | 10 - R/getters.R | 6 R/inShell.R | 20 +-- R/is.rule.R | 6 R/knitrRule.R | 20 +-- R/make.R | 16 +- R/makefile.R | 48 +++---- R/markdownRule.R | 20 +-- R/offlineRule.R | 14 +- R/pipe.R | 2 R/rRule.R | 22 +-- R/replaceSuffix.R | 6 R/replaceVariables.R | 4 R/rmake.R | 24 +-- R/rmakeSkeleton.R | 2 R/rule.R | 28 ++-- R/subdirRule.R | 12 - inst/doc/rmake-intro.Rnw | 166 ++++++++++++------------- inst/doc/rmake-intro.pdf |binary man/copyRule.Rd | 12 - man/defaultVars.Rd | 6 man/depRule.Rd | 8 - man/expandTemplate.Rd | 20 +-- man/getParam.Rd | 10 - man/grapes-greater-than-greater-than-grapes.Rd | 2 man/inShell.Rd | 8 - man/is.rule.Rd | 6 man/knitrRule.Rd | 20 +-- man/make.Rd | 19 +- man/makefile.Rd | 42 +++--- man/markdownRule.Rd | 20 +-- man/offlineRule.Rd | 14 +- man/prerequisites.Rd | 2 man/rRule.Rd | 22 +-- man/replaceSuffix.Rd | 6 man/replaceVariables.Rd | 4 man/rmake-package.Rd | 24 +-- man/rmakeSkeleton.Rd | 2 man/rule.Rd | 28 ++-- man/subdirRule.Rd | 12 - tests/testthat/test-inShell.R |only tests/testthat/test-run-simple.R | 15 +- tests/testthat/test-run-subdir.R | 8 - tests/testthat/test-run-tasks.R | 10 - vignettes/rmake-intro.Rnw | 166 ++++++++++++------------- 52 files changed, 544 insertions(+), 532 deletions(-)
Title: Create Compact Hash Digests of R Objects
Description: Implementation of a function 'digest()' for the creation of hash
digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32',
'xxhash', 'murmurhash', 'spookyhash', 'blake3', 'crc32c', 'xxh3_64', and 'xxh3_128'
algorithms) permitting easy comparison of R language objects, as well as functions
such as 'hmac()' to create hash-based message authentication code. Please note that
this package is not meant to be deployed for cryptographic purposes for which more
comprehensive (and widely tested) libraries such as 'OpenSSL' should be used.
Author: Dirk Eddelbuettel [aut, cre] ,
Antoine Lucas [ctb] ,
Jarek Tuszynski [ctb],
Henrik Bengtsson [ctb] ,
Simon Urbanek [ctb] ,
Mario Frasca [ctb],
Bryan Lewis [ctb],
Murray Stokely [ctb],
Hannes Muehleisen [ctb] ,
Duncan Murdoch [ctb],
Jim Hester [ctb] , [...truncated...]
Maintainer: Dirk Eddelbuettel <edd@debian.org>
Diff between digest versions 0.6.37 dated 2024-08-19 and 0.6.38 dated 2025-11-12
ChangeLog | 146 +++++++++++++++ DESCRIPTION | 97 +++++----- MD5 | 51 ++--- NAMESPACE | 2 R/digest.R | 19 + R/sha1.R | 18 - R/vdigest.R | 6 README.md | 8 build/vignette.rds |binary inst/CITATION |only inst/doc/sha1.html | 4 inst/doc/sha1.md | 2 inst/tinytest/test_digest.R | 11 + inst/tinytest/test_raw.R | 14 + inst/tinytest/test_sha1.R | 21 ++ man/digest.Rd | 14 - man/hmac.Rd | 15 - man/sha1.Rd | 19 + src/blake3.c | 154 ++++++++++----- src/blake3.h | 65 ++++-- src/blake3_dispatch.c | 341 +++++++++++++++++++++-------------- src/blake3_impl.h | 105 +++++++++- src/blake3_portability.h |only src/blake3_portable.c | 8 src/digest.c | 424 ++++++++++++++++++++++++-------------------- src/digest.h |only src/init.c | 1 vignettes/sha1.md | 2 28 files changed, 1006 insertions(+), 541 deletions(-)
Title: Transfer Graph Learning
Description: Transfer learning, aiming to use auxiliary domains to help improve learning of the target domain of interest when multiple heterogeneous datasets are available, has been a hot topic in statistical machine learning. The recent transfer learning methods with statistical guarantees mainly focus on the overall parameter transfer for supervised models in the ideal case with the informative auxiliary domains with overall similarity. In contrast, transfer learning for unsupervised graph learning is in its infancy and largely follows the idea of overall parameter transfer as for supervised learning.
In this package, the transfer learning for several complex graphical models is implemented, including Tensor Gaussian graphical models, non-Gaussian directed acyclic graph (DAG), and Gaussian graphical mixture models. Notably, this package promotes local transfer at node-level and subgroup-level in DAG structural learning and Gaussian graphical mixture models, respectively, which are more flexible [...truncated...]
Author: Mingyang Ren [aut, cre] ,
Ruixuan Zhao [aut],
Xin He [aut],
Junhui Wang [aut]
Maintainer: Mingyang Ren <renmingyang17@mails.ucas.ac.cn>
Diff between TransGraph versions 1.0.0 dated 2023-10-19 and 1.1.0 dated 2025-11-12
TransGraph-1.0.0/TransGraph/R/support_functions_TensorGGM.R |only TransGraph-1.0.0/TransGraph/R/tensor.GGM.trans.R |only TransGraph-1.0.0/TransGraph/build |only TransGraph-1.0.0/TransGraph/inst |only TransGraph-1.0.0/TransGraph/man/tensor.GGM.trans.Rd |only TransGraph-1.0.0/TransGraph/vignettes |only TransGraph-1.1.0/TransGraph/DESCRIPTION | 26 +- TransGraph-1.1.0/TransGraph/MD5 | 34 +-- TransGraph-1.1.0/TransGraph/NAMESPACE | 5 TransGraph-1.1.0/TransGraph/R/TLLiNGAM.R | 2 TransGraph-1.1.0/TransGraph/R/Theta.tuning.R | 2 TransGraph-1.1.0/TransGraph/R/support_functions_GGM.R | 65 ++++- TransGraph-1.1.0/TransGraph/R/support_functions_GGMM.R | 56 ++++- TransGraph-1.1.0/TransGraph/R/trans.local.DAG.R | 22 - TransGraph-1.1.0/TransGraph/R/trans_GGMM.R | 16 + TransGraph-1.1.0/TransGraph/R/trans_precision.R | 133 +++--------- TransGraph-1.1.0/TransGraph/man/TLLiNGAM.Rd | 5 TransGraph-1.1.0/TransGraph/man/trans.local.DAG.Rd | 25 -- TransGraph-1.1.0/TransGraph/man/trans_precision.Rd | 38 --- 19 files changed, 183 insertions(+), 246 deletions(-)
Title: Estimating Hidden Population Size using Respondent Driven
Sampling Data
Description: Estimate the size of a networked population based on
respondent-driven sampling data. The package is part of the "RDS Analyst"
suite of packages for the analysis of respondent-driven sampling data.
See Handcock, Gile and Mar (2014) <doi:10.1214/14-EJS923>,
Handcock, Gile and Mar (2015) <doi:10.1111/biom.12255>,
Kim and Handcock (2021) <doi:10.1093/jssam/smz055>, and
McLaughlin, et. al. (2023) <doi:10.1214/23-AOAS1807>.
Author: Mark S. Handcock [aut, cre, cph] ,
Krista J. Gile [aut, cph],
Brian Kim [ctb],
Katherine R. McLaughlin [ctb]
Maintainer: Mark S. Handcock <handcock@stat.ucla.edu>
Diff between sspse versions 1.1.0-4 dated 2025-11-06 and 1.1.0-6 dated 2025-11-12
DESCRIPTION | 8 MD5 | 22 - R/plot.sspse.R | 3 R/poscmp.R | 10 R/poscmpwp.R | 663 +++++++++++++++++++++++------------------------ R/posteriorsize.R | 166 ++++++----- src/posteriorcmp2.c | 171 ++++++------ src/posteriorcmp2.h | 8 src/posteriorcmpwpvis.c | 87 +++--- src/posteriorcmpwpvis.h | 6 src/posteriorcmpwpvis2.c | 365 +++++++++++++++---------- src/posteriorcmpwpvis2.h | 10 12 files changed, 802 insertions(+), 717 deletions(-)
Title: In-Text Resize for Images, Tables and Fancy Resize Containers in
'shiny', 'rmarkdown' and 'quarto' Documents
Description: Offers a suite of tools designed to enhance the responsiveness and interactivity of web-based documents and applications created with R. It provides an automatic, configurable resizing toolbar that can be seamlessly integrated with HTML elements such as containers, images, and tables, allowing end-users to dynamically adjust their dimensions. Beyond the toolbar, the package includes a rich collection of flexible, expandable, and interactive container functionalities, such as highly customizable split-screen layouts (splitCard), versatile sizeable cards (sizeableCard), dynamic window-like elements (windowCard), visually engaging emphasis cards (empahsisCard), and sophisticated flexible and elastic card layouts (flexCard, elastiCard). Furthermore, it offers an elegant image viewer and resizer (shinyExpandImage) perfect for interactive galleries. r2resize is particularly well-suited for developers and data scientists looking to create modern, responsive, and user-friendly 'shiny' applicat [...truncated...]
Author: Obinna Obianom [aut, cre]
Maintainer: Obinna Obianom <idonshayo@gmail.com>
Diff between r2resize versions 1.9.2 dated 2024-11-25 and 2.0 dated 2025-11-12
DESCRIPTION | 11 MD5 | 126 NEWS.md | 116 R/addJquery.R | 54 R/containerResizer.R | 489 +-- R/markdownResizer.R | 172 - R/novoImageResizer.R | 134 R/r2resize-package.R | 7 R/sliderCards.R | 279 + README.md | 312 - build/vignette.rds |binary inst/doc/example_frequently_asked_r2resize.R | 24 inst/doc/example_frequently_asked_r2resize.Rmd | 476 +- inst/doc/example_frequently_asked_r2resize.html | 318 - inst/doc/introduction_r2resize.Rmd | 120 inst/doc/introduction_r2resize.html | 32 inst/doc/r2resize-flexible-elastic-cards.R |only inst/doc/r2resize-flexible-elastic-cards.Rmd |only inst/doc/r2resize-flexible-elastic-cards.html |only inst/doc/r2resize-image-and-markdown-resizing.R |only inst/doc/r2resize-image-and-markdown-resizing.Rmd |only inst/doc/r2resize-image-and-markdown-resizing.html |only inst/doc/r2resize-resizable-containers.R |only inst/doc/r2resize-resizable-containers.Rmd |only inst/doc/r2resize-resizable-containers.html |only inst/doc/resizable_containers_split_screen_r2resize.Rmd | 162 - inst/doc/resizable_containers_split_screen_r2resize.html | 44 inst/doc/split_card_html_r2resize.Rmd | 174 - inst/doc/split_card_html_r2resize.html | 86 inst/examples/sample1.Rmd | 336 +- inst/themes/default.css | 2 inst/themes/default_bottom.js | 2 inst/themes/default_top.js | 2 inst/themes/divsplitter.js | 2 inst/themes/empahsisCard.css | 2 inst/themes/expandingAccordian.css | 4 inst/themes/expandingAccordian.js | 6 inst/themes/imgviewer.css | 2 inst/themes/imgviewer.js | 2411 ++++++++++++++- inst/themes/rezcontCard.css | 2 inst/themes/rezcontCard.js | 2 inst/themes/splitCard.css | 2 inst/themes/splitCard2.css | 2 inst/themes/splitCard2.js | 2 inst/themes/windowCard.css | 2 inst/themes/windowCard.js | 2 man/add.JQuery.Rd | 51 man/add.resizer.Rd | 169 - man/elastiCard.Rd | 140 man/empahsisCard.Rd | 72 man/emphasisCard.Rd | 71 man/flexCard.Rd | 108 man/r2resize-package.Rd | 2 man/shinyExpandImage.Rd | 133 man/sizeableCard.Rd | 82 man/splitCard.Rd | 155 man/splitCard2.Rd | 118 man/windowCard.Rd | 99 tests/testthat.R | 8 tests/testthat/test-addJquery.R |only tests/testthat/test-containerResizer.R |only tests/testthat/test-flexCard.R | 34 tests/testthat/test-markdownResizer.R |only tests/testthat/test-novoImageResizer.R |only tests/testthat/test-sample.R |only tests/testthat/test-sliderCards.R |only vignettes/example_frequently_asked_r2resize.Rmd | 476 +- vignettes/introduction_r2resize.Rmd | 120 vignettes/r2resize-flexible-elastic-cards.Rmd |only vignettes/r2resize-image-and-markdown-resizing.Rmd |only vignettes/r2resize-resizable-containers.Rmd |only vignettes/resizable_containers_split_screen_r2resize.Rmd | 162 - vignettes/split_card_html_r2resize.Rmd | 174 - 73 files changed, 5652 insertions(+), 2441 deletions(-)
Title: Multi-Study Multi-Modality Generalized Factor Model
Description: We introduce a generalized factor model designed to jointly analyze high-dimensional multi-modality data from multiple studies by extracting study-shared and specified factors. Our factor models account for heterogeneous noises and overdispersion among modality variables with augmented covariates. We propose an efficient and speedy variational estimation procedure for estimating model parameters, along with a novel criterion for selecting the optimal number of factors. More details can be referred to Liu et al. (2025) <doi:10.48550/arXiv.2507.09889>.
Author: Wei Liu [aut, cre],
Qingzhi Zhong [aut]
Maintainer: Wei Liu <liuweideng@gmail.com>
Diff between MMGFM versions 1.2.0 dated 2025-07-29 and 1.2.1 dated 2025-11-12
DESCRIPTION | 14 +++++++------- MD5 | 10 +++++----- R/mmgfm.R | 13 +++++++++++-- README.md | 10 +++++++++- inst/doc/simu2_MMGFM.html | 4 ++-- inst/doc/simu_MMGFM.html | 4 ++-- 6 files changed, 36 insertions(+), 19 deletions(-)
Previous versions (as known to CRANberries) which should be available via the Archive link are:
2023-01-26 0.2.2
Title: Phylogenetic Tree Statistics
Description: Collection of phylogenetic tree statistics,
collected throughout the literature. All functions have been
written to maximize computation speed. The package includes
umbrella functions to calculate all statistics, all balance
associated statistics, or all branching time related statistics.
Furthermore, the 'treestats' package supports summary statistic
calculations on Ltables, provides speed-improved coding of
branching times, Ltable conversion and includes algorithms to
create intermediately balanced trees. Full description can be
found in Janzen (2024) <doi:10.1016/j.ympev.2024.108168>.
Author: Thijs Janzen [cre, aut]
Maintainer: Thijs Janzen <thijsjanzen@gmail.com>
Diff between treestats versions 1.70.7 dated 2025-09-11 and 1.70.8 dated 2025-11-12
treestats-1.70.7/treestats/inst/doc/Example_abc.R |only treestats-1.70.7/treestats/inst/doc/Example_abc.Rmd |only treestats-1.70.7/treestats/inst/doc/Example_abc.html |only treestats-1.70.7/treestats/vignettes/Example_abc.Rmd |only treestats-1.70.8/treestats/DESCRIPTION | 16 - treestats-1.70.8/treestats/MD5 | 54 +++--- treestats-1.70.8/treestats/NEWS.md | 15 + treestats-1.70.8/treestats/R/J_stat.R | 4 treestats-1.70.8/treestats/R/RcppExports.R | 4 treestats-1.70.8/treestats/R/j_one_stat.R | 4 treestats-1.70.8/treestats/R/rpanda.R | 5 treestats-1.70.8/treestats/build/vignette.rds |binary treestats-1.70.8/treestats/inst/doc/Example_data.html | 82 +++++----- treestats-1.70.8/treestats/inst/doc/Getting_started.R | 4 treestats-1.70.8/treestats/inst/doc/Getting_started.Rmd | 4 treestats-1.70.8/treestats/inst/doc/Getting_started.html | 33 ++-- treestats-1.70.8/treestats/inst/doc/Speed_improvement.html | 4 treestats-1.70.8/treestats/man/entropy_j.Rd | 4 treestats-1.70.8/treestats/man/j_one.Rd | 4 treestats-1.70.8/treestats/src/RcppExports.cpp | 12 - treestats-1.70.8/treestats/src/laplacian.cpp | 27 --- treestats-1.70.8/treestats/tests/testthat/test-blum.R | 5 treestats-1.70.8/treestats/tests/testthat/test-colless.R | 2 treestats-1.70.8/treestats/tests/testthat/test-eigen_centrality.R | 10 + treestats-1.70.8/treestats/tests/testthat/test-make_unbalanced_tree.R | 1 treestats-1.70.8/treestats/tests/testthat/test-mean_i.R | 6 treestats-1.70.8/treestats/tests/testthat/test-minmax_adj.R | 5 treestats-1.70.8/treestats/tests/testthat/test-nltt.R | 71 ++++---- treestats-1.70.8/treestats/tests/testthat/test-pigot_rho.R | 13 + treestats-1.70.8/treestats/vignettes/Getting_started.Rmd | 4 30 files changed, 194 insertions(+), 199 deletions(-)
Title: Flexibly Reshape Data: A Reboot of the Reshape Package
Description: Flexibly restructure and aggregate data using just two
functions: melt and 'dcast' (or 'acast').
Author: Hadley Wickham [aut, cre]
Maintainer: Hadley Wickham <hadley@posit.co>
Diff between reshape2 versions 1.4.4 dated 2020-04-09 and 1.4.5 dated 2025-11-12
DESCRIPTION | 17 ++-- MD5 | 35 ++++----- NAMESPACE | 10 ++ NEWS.md | 5 + R/RcppExports.R | 4 - R/cast.r | 8 +- R/formula.r | 2 R/helper-margins.r | 2 R/melt.r | 12 ++- README.md | 8 +- inst/CITATION | 16 +--- man/cast.Rd | 6 - src/RcppExports.cpp | 14 ++- src/melt.cpp | 131 ++++++++++++++++----------------- tests/testthat.R | 8 ++ tests/testthat/test-cast.r | 132 ++++++++++++++++++---------------- tests/testthat/test-helper-colsplit.r |only tests/testthat/test-margins.r | 30 +++---- tests/testthat/test-melt.r | 43 +++++++---- 19 files changed, 264 insertions(+), 219 deletions(-)
Title: Nonparametric Circular Methods
Description: Nonparametric smoothing methods for density and regression estimation involving circular data,
including the estimation of the mean regression function and other conditional characteristics.
Author: Maria Alonso-Pena [aut, cre],
Maria Oliveira [aut],
Jose Ameijeiras-Alonso [aut],
Rosa M. Crujeiras [aut],
Irene Gijbels [aut],
Alberto Rodriguez-Casal [aut],
Felicita Scapini [dtc]
Maintainer: Maria Alonso-Pena <mariaalonso.pena@usc.es>
Diff between NPCirc versions 3.1.1 dated 2022-11-10 and 3.1.2 dated 2025-11-12
NPCirc-3.1.1/NPCirc/data/HumanMotorResonance.txt |only NPCirc-3.1.1/NPCirc/data/flywheels.txt |only NPCirc-3.1.1/NPCirc/data/pm10.txt |only NPCirc-3.1.1/NPCirc/data/spikes.txt |only NPCirc-3.1.1/NPCirc/data/zebrafish.txt |only NPCirc-3.1.2/NPCirc/DESCRIPTION | 46 ++++++++++---- NPCirc-3.1.2/NPCirc/MD5 | 62 +++++++++---------- NPCirc-3.1.2/NPCirc/build/partial.rdb |binary NPCirc-3.1.2/NPCirc/data/HumanMotorResonance.txt.gz |only NPCirc-3.1.2/NPCirc/data/flywheels.txt.gz |only NPCirc-3.1.2/NPCirc/data/pm10.txt.gz |only NPCirc-3.1.2/NPCirc/data/spikes.txt.gz |only NPCirc-3.1.2/NPCirc/data/zebrafish.txt.gz |only NPCirc-3.1.2/NPCirc/inst/CITATION | 53 +++++++++++----- NPCirc-3.1.2/NPCirc/man/ancova.circ.lin.Rd | 4 - NPCirc-3.1.2/NPCirc/man/bw.AA.Rd | 4 - NPCirc-3.1.2/NPCirc/man/bw.CV.Rd | 2 NPCirc-3.1.2/NPCirc/man/bw.boot.Rd | 2 NPCirc-3.1.2/NPCirc/man/bw.circ.local.lik.Rd | 4 - NPCirc-3.1.2/NPCirc/man/bw.pi.Rd | 2 NPCirc-3.1.2/NPCirc/man/bw.reg.circ.lin.Rd | 4 - NPCirc-3.1.2/NPCirc/man/bw.rt.Rd | 2 NPCirc-3.1.2/NPCirc/man/circ.local.lik.Rd | 4 - NPCirc-3.1.2/NPCirc/man/circsizer.density.Rd | 2 NPCirc-3.1.2/NPCirc/man/circsizer.regression.Rd | 2 NPCirc-3.1.2/NPCirc/man/dcircmix.Rd | 2 NPCirc-3.1.2/NPCirc/man/dpreg.circ.Rd | 4 - NPCirc-3.1.2/NPCirc/man/dwsn.Rd | 4 - NPCirc-3.1.2/NPCirc/man/kern.den.circ.Rd | 6 - NPCirc-3.1.2/NPCirc/man/kern.dpreg.circ.Rd | 4 - NPCirc-3.1.2/NPCirc/man/kern.reg.circ.lin.Rd | 6 - NPCirc-3.1.2/NPCirc/man/lines.regression.circular.Rd | 4 - NPCirc-3.1.2/NPCirc/man/modalreg.circ.lin.Rd | 6 - NPCirc-3.1.2/NPCirc/man/noeffect.circ.lin.Rd | 4 - NPCirc-3.1.2/NPCirc/man/plot.regression.circular.Rd | 4 - NPCirc-3.1.2/NPCirc/src/Makevars | 12 --- NPCirc-3.1.2/NPCirc/src/Makevars.win | 12 --- 37 files changed, 140 insertions(+), 121 deletions(-)
Title: Most Likely Transformations
Description: Likelihood-based estimation of conditional transformation
models via the most likely transformation approach described in
Hothorn et al. (2018) <DOI:10.1111/sjos.12291> and Hothorn (2020)
<DOI:10.18637/jss.v092.i01>. Shift-scale (Siegfried et al, 2023, <DOI:10.1080/00031305.2023.2203177>)
and multivariate (Klein et al, 2022, <DOI:10.1111/sjos.12501>) transformation models
are part of this package. A package vignette is available from <DOI:10.32614/CRAN.package.mlt.docreg> and
more convenient user interfaces to many models from <DOI:10.32614/CRAN.package.tram>.
Author: Torsten Hothorn [aut, cre]
Maintainer: Torsten Hothorn <Torsten.Hothorn@R-project.org>
Diff between mlt versions 1.7-1 dated 2025-10-31 and 1.7-2 dated 2025-11-12
DESCRIPTION | 8 ++++---- MD5 | 10 +++++----- R/R.R | 2 +- build/partial.rdb |binary inst/NEWS.Rd | 10 ++++++++++ man/R.Rd | 3 ++- 6 files changed, 22 insertions(+), 11 deletions(-)