Title: R Client for the YouTube Analytics and Reporting API
Description: Provides access to YouTube Analytics API v2 for retrieving
YouTube Analytics data including views, engagement metrics, demographics, and
revenue data. Supports OAuth 2.0 authentication and channel group management.
See <https://developers.google.com/youtube/analytics/> for API documentation.
Author: Gaurav Sood [aut, cre]
Maintainer: Gaurav Sood <gsood07@gmail.com>
Diff between tubern versions 0.5.0 dated 2026-04-12 and 0.5.1 dated 2026-08-02
DESCRIPTION | 9 +- MD5 | 62 +++++++++------- NEWS.md | 28 +++++++ R/data_transformation.R | 98 +++++++++++++------------- R/date_helpers.R | 110 +++++++++++++++++++----------- R/error_handling.R | 33 +++++++-- R/get_report.R | 20 ++++- R/report_helpers.R | 90 ++++++++++++------------ R/validation_helpers.R | 64 +++++++++++++++-- R/yt_oauth.R | 11 ++- README.md | 4 - build/vignette.rds |binary inst/doc/basic_tubern.R | 2 inst/doc/basic_tubern.Rmd | 2 inst/doc/basic_tubern.html | 6 - inst/doc/tubern_examples.Rmd | 24 +++--- inst/doc/tubern_examples.html | 16 ++-- man/get_report.Rd | 4 - tests/testthat/test-api-conformance.R |only tests/testthat/test-audit-correctness.R |only tests/testthat/test-client.R | 2 tests/testthat/test-data-transformation.R | 2 tests/testthat/test-date-range-typos.R |only tests/testthat/test-error-handling.R | 9 +- tests/testthat/test-get-report.R | 22 +++++- tests/testthat/test-group-items.R | 4 - tests/testthat/test-groups-live.R |only tests/testthat/test-groups.R | 4 - tests/testthat/test-pkg-style.R | 9 +- tests/testthat/test-record-fixtures.R | 4 - tests/testthat/test-reports.R | 4 - tests/testthat/test-validation.R | 26 ++++++- vignettes/basic_tubern.Rmd | 2 vignettes/tubern_examples.Rmd | 24 +++--- 34 files changed, 443 insertions(+), 252 deletions(-)
Title: AI Copilot for R Analysis Workflows in 'RStudio'
Description: An AI copilot for R users in 'RStudio' and Posit workflows with
active-editor, workspace, object, console, plot, and git-aware context.
Provides statistical helpers for interpreting lm() and glm()
models, stages code and file actions before execution, drafts
reproducible 'Quarto' content, and connects to official provider
APIs or CLIs for 'OpenAI', 'GitHub Copilot', 'Gemini', and 'Anthropic'.
Author: Markuss Saule [aut, cre, cph]
Maintainer: Markuss Saule <markusstomas@gmail.com>
Diff between ravel versions 0.1.2 dated 2026-06-28 and 0.1.4 dated 2026-08-02
DESCRIPTION | 8 - MD5 | 48 +++---- NEWS.md | 22 +++ R/approvals.R | 3 R/auth.R | 63 +++++++-- R/execution.R | 35 +++++ R/mcp.R | 198 +++++++++++++++++++++++++++++-- R/provider_interface.R | 52 +++++++- R/providers_anthropic.R | 10 - R/providers_copilot.R | 43 +++++- R/providers_gemini.R | 112 ++++++++++++----- R/providers_openai.R | 106 ++++++++++++++-- R/setup.R | 5 R/ui_gadget.R | 136 +++++++++++++++++++-- build/vignette.rds |binary inst/WORDLIST |only inst/doc/ravel-mvp.Rmd | 3 inst/doc/ravel-mvp.html | 24 +-- inst/doc/ravel-showcase.html | 7 - man/ravel-package.Rd | 5 man/ravel_mcp_tool.Rd | 11 + man/ravel_set_bearer_token.Rd | 8 - tests/testthat/teardown.R | 6 tests/testthat/test-auth.R | 9 + tests/testthat/test-provider-hardening.R |only vignettes/ravel-mvp.Rmd | 3 26 files changed, 770 insertions(+), 147 deletions(-)
Title: Adjust Estimates of Learning for Guessing
Description: Provides tools to adjust estimates of learning for guessing-related
bias in educational and survey research. Implements standard guessing
correction methods and latent class models that leverage informative
pre-post test transitions to account for guessing behavior.
The package helps researchers obtain more accurate estimates of actual
learning when respondents may guess on closed-ended knowledge items.
For theoretical background and empirical validation, see Cor and Sood (2016)
<https://gsood.com/research/papers/guess.pdf>.
Author: Gaurav Sood [aut, cre],
Ken Cor [aut]
Maintainer: Gaurav Sood <gsood07@gmail.com>
Diff between guess versions 0.3.0 dated 2026-03-31 and 0.7.0 dated 2026-08-02
guess-0.3.0/guess/R/fit_dk.R |only guess-0.3.0/guess/R/fit_nodk.R |only guess-0.7.0/guess/DESCRIPTION | 25 guess-0.7.0/guess/MD5 | 179 +++-- guess-0.7.0/guess/NAMESPACE | 31 guess-0.7.0/guess/NEWS.md | 227 +++++++ guess-0.7.0/guess/R/fit_unified.R | 149 +++- guess-0.7.0/guess/R/group_adj.R | 104 +-- guess-0.7.0/guess/R/guess.R | 2 guess-0.7.0/guess/R/internal-helpers.R | 223 +++++-- guess-0.7.0/guess/R/lca_cor.R | 245 ++++++- guess-0.7.0/guess/R/lca_se.R | 154 ++-- guess-0.7.0/guess/R/lca_subset.R | 85 +- guess-0.7.0/guess/R/model-criticism.R |only guess-0.7.0/guess/R/multi_transmat.R | 47 + guess-0.7.0/guess/R/nona.R | 34 - guess-0.7.0/guess/R/person_lca.R |only guess-0.7.0/guess/R/s3-methods.R |only guess-0.7.0/guess/R/simulate.R |only guess-0.7.0/guess/R/stnd_cor.R | 113 ++- guess-0.7.0/guess/R/transmat.R | 63 + guess-0.7.0/guess/R/utils-constants.R | 28 guess-0.7.0/guess/R/utils-matrix.R | 62 + guess-0.7.0/guess/R/utils-validation.R | 112 +++ guess-0.7.0/guess/README.md | 274 ++++++-- guess-0.7.0/guess/build/vignette.rds |binary guess-0.7.0/guess/inst/doc/model_validation.R |only guess-0.7.0/guess/inst/doc/model_validation.Rmd |only guess-0.7.0/guess/inst/doc/model_validation.html |only guess-0.7.0/guess/inst/doc/using_guess.R | 216 ++++++ guess-0.7.0/guess/inst/doc/using_guess.Rmd | 317 +++++++++- guess-0.7.0/guess/inst/doc/using_guess.html | 317 +++++++++- guess-0.7.0/guess/man/cell_probs.Rd |only guess-0.7.0/guess/man/class_conditional_item.Rd |only guess-0.7.0/guess/man/coef.guess_fit.Rd |only guess-0.7.0/guess/man/cross_sectional_learning.Rd |only guess-0.7.0/guess/man/cross_sectional_learning_score.Rd |only guess-0.7.0/guess/man/cv_individuals.Rd |only guess-0.7.0/guess/man/cv_items.Rd |only guess-0.7.0/guess/man/difficulty_to_gamma.Rd |only guess-0.7.0/guess/man/dk_cell_probs.Rd |only guess-0.7.0/guess/man/eq1dk.Rd | 2 guess-0.7.0/guess/man/eqn1.Rd | 4 guess-0.7.0/guess/man/estimate_logit_score.Rd |only guess-0.7.0/guess/man/extract_params.Rd |only guess-0.7.0/guess/man/fit_model.Rd | 59 + guess-0.7.0/guess/man/gamma_to_difficulty.Rd |only guess-0.7.0/guess/man/group_adj.Rd | 32 - guess-0.7.0/guess/man/guess-package.Rd | 1 guess-0.7.0/guess/man/guess_lik.Rd | 2 guess-0.7.0/guess/man/guessdk_lik.Rd | 2 guess-0.7.0/guess/man/individual_likelihood_details.Rd |only guess-0.7.0/guess/man/item_lca_fit.Rd |only guess-0.7.0/guess/man/lca_adj.Rd | 20 guess-0.7.0/guess/man/lca_cor.Rd | 10 guess-0.7.0/guess/man/lca_difficulty.Rd |only guess-0.7.0/guess/man/lca_se.Rd | 37 - guess-0.7.0/guess/man/log_likelihood.Rd |only guess-0.7.0/guess/man/make_guess_lik_difficulty.Rd |only guess-0.7.0/guess/man/make_guessdk_lik_difficulty.Rd |only guess-0.7.0/guess/man/multi_transmat.Rd | 34 - guess-0.7.0/guess/man/multinomial_nll.Rd |only guess-0.7.0/guess/man/new_guess_cv.Rd |only guess-0.7.0/guess/man/new_guess_fit.Rd |only guess-0.7.0/guess/man/nodk_cell_probs.Rd |only guess-0.7.0/guess/man/nona.Rd | 25 guess-0.7.0/guess/man/normalize_missing_action.Rd |only guess-0.7.0/guess/man/normalize_na_as.Rd |only guess-0.7.0/guess/man/normalize_responses.Rd |only guess-0.7.0/guess/man/perplexity_individuals.Rd |only guess-0.7.0/guess/man/perplexity_items.Rd |only guess-0.7.0/guess/man/person_item_expectation.Rd |only guess-0.7.0/guess/man/person_item_lca_fit.Rd |only guess-0.7.0/guess/man/person_item_maximization.Rd |only guess-0.7.0/guess/man/person_item_response_probs.Rd |only guess-0.7.0/guess/man/posterior_class_probs.Rd |only guess-0.7.0/guess/man/posterior_learned.Rd |only guess-0.7.0/guess/man/prepare_response_data.Rd |only guess-0.7.0/guess/man/print.guess_cv.Rd |only guess-0.7.0/guess/man/print.guess_fit.Rd |only guess-0.7.0/guess/man/response_to_cell.Rd |only guess-0.7.0/guess/man/simulate_lca.Rd |only guess-0.7.0/guess/man/simulate_lca_dk.Rd |only guess-0.7.0/guess/man/stnd_cor.Rd | 51 + guess-0.7.0/guess/man/summary.guess_cv.Rd |only guess-0.7.0/guess/man/summary.guess_fit.Rd |only guess-0.7.0/guess/man/transmat.Rd | 39 - guess-0.7.0/guess/man/validate_recovery.Rd |only guess-0.7.0/guess/tests/testthat/helper-simulation.R | 53 - guess-0.7.0/guess/tests/testthat/test-audit-regressions.R |only guess-0.7.0/guess/tests/testthat/test-comprehensive-battery.R | 244 ++++--- guess-0.7.0/guess/tests/testthat/test-comprehensive-validation.R | 152 ++-- guess-0.7.0/guess/tests/testthat/test-dk-model-spec.R |only guess-0.7.0/guess/tests/testthat/test-econometric-identification.R | 20 guess-0.7.0/guess/tests/testthat/test-econometric-likelihood.R | 93 +- guess-0.7.0/guess/tests/testthat/test-econometric-parameter-recovery.R | 64 +- guess-0.7.0/guess/tests/testthat/test-econometric-se-validation.R | 38 - guess-0.7.0/guess/tests/testthat/test-end-to-end-model-criticism.R |only guess-0.7.0/guess/tests/testthat/test-end-to-end-workflows.R |only guess-0.7.0/guess/tests/testthat/test-fit-unified.R | 121 ++- guess-0.7.0/guess/tests/testthat/test-group-validation.R |only guess-0.7.0/guess/tests/testthat/test-individual-validation.R |only guess-0.7.0/guess/tests/testthat/test-integration.R | 144 ++-- guess-0.7.0/guess/tests/testthat/test-interleave.R | 14 guess-0.7.0/guess/tests/testthat/test-lca-adj.R | 26 guess-0.7.0/guess/tests/testthat/test-lca-cor.R | 127 ++-- guess-0.7.0/guess/tests/testthat/test-lca-difficulty.R |only guess-0.7.0/guess/tests/testthat/test-missing-response-contract.R |only guess-0.7.0/guess/tests/testthat/test-model-criticism.R |only guess-0.7.0/guess/tests/testthat/test-model-levels.R |only guess-0.7.0/guess/tests/testthat/test-multi-transmat.R | 137 ++-- guess-0.7.0/guess/tests/testthat/test-nona.R | 11 guess-0.7.0/guess/tests/testthat/test-param-recovery.R |only guess-0.7.0/guess/tests/testthat/test-pkg-style.R | 3 guess-0.7.0/guess/tests/testthat/test-posterior-recovery.R |only guess-0.7.0/guess/tests/testthat/test-release-review-0-7-0.R |only guess-0.7.0/guess/tests/testthat/test-simulate.R |only guess-0.7.0/guess/tests/testthat/test-stnd-adj.R | 20 guess-0.7.0/guess/tests/testthat/test-stnd-cor.R | 6 guess-0.7.0/guess/tests/testthat/test-tidy-compatibility.R |only guess-0.7.0/guess/tests/testthat/test-transmat.R | 22 guess-0.7.0/guess/tests/testthat/test-utils.R | 120 ++- guess-0.7.0/guess/vignettes/model_validation.Rmd |only guess-0.7.0/guess/vignettes/using_guess.Rmd | 317 +++++++++- 124 files changed, 3679 insertions(+), 1378 deletions(-)
Title: Client for the YouTube API
Description: Get comments posted on YouTube videos, information on how
many times a video has been liked, search for videos with particular
content, and much more. You can also scrape captions from a few
videos. To learn more about the YouTube API, see
<https://developers.google.com/youtube/v3/>.
Author: Gaurav Sood [aut, cre],
Kate Lyons [ctb],
John Muschelli [ctb]
Maintainer: Gaurav Sood <gsood07@gmail.com>
Diff between tuber versions 1.4.0 dated 2026-03-24 and 1.4.1 dated 2026-08-02
tuber-1.4.0/tuber/tests/testthat/token_file.rds.enc |only tuber-1.4.1/tuber/DESCRIPTION | 13 + tuber-1.4.1/tuber/MD5 | 67 +++++----- tuber-1.4.1/tuber/NEWS.md | 47 +++++++ tuber-1.4.1/tuber/R/extended_endpoints.R | 50 +++++-- tuber-1.4.1/tuber/R/get_all_channel_video_stats.R | 2 tuber-1.4.1/tuber/R/get_comments.R | 20 ++ tuber-1.4.1/tuber/R/list_abuse_report_reasons.R | 2 tuber-1.4.1/tuber/R/list_guidecats.R | 16 +- tuber-1.4.1/tuber/R/list_regions.R | 2 tuber-1.4.1/tuber/R/list_videocats.R | 20 ++ tuber-1.4.1/tuber/R/upload_caption.R | 2 tuber-1.4.1/tuber/build/vignette.rds |binary tuber-1.4.1/tuber/inst/doc/batch-processing-quota.html | 4 tuber-1.4.1/tuber/inst/doc/tuber-ex.html | 4 tuber-1.4.1/tuber/man/EMOJI_PATTERN.Rd | 4 tuber-1.4.1/tuber/man/get_live_streams.Rd | 8 - tuber-1.4.1/tuber/man/tuber-package.Rd | 5 tuber-1.4.1/tuber/man/upload_caption.Rd | 2 tuber-1.4.1/tuber/tests/testthat/_problems |only tuber-1.4.1/tuber/tests/testthat/test-auth.R | 2 tuber-1.4.1/tuber/tests/testthat/test-basic-functionality.R | 3 tuber-1.4.1/tuber/tests/testthat/test-captions.R | 4 tuber-1.4.1/tuber/tests/testthat/test-comment-threads.R | 2 tuber-1.4.1/tuber/tests/testthat/test-comments.R | 3 tuber-1.4.1/tuber/tests/testthat/test-get-related-videos.R | 4 tuber-1.4.1/tuber/tests/testthat/test-integration-ready.R | 4 tuber-1.4.1/tuber/tests/testthat/test-list-channel-activities.R | 4 tuber-1.4.1/tuber/tests/testthat/test-list-channel-sections.R | 6 tuber-1.4.1/tuber/tests/testthat/test-pagination-mocks.R | 3 tuber-1.4.1/tuber/tests/testthat/test-playlist-items.R | 2 tuber-1.4.1/tuber/tests/testthat/test-playlists.R | 2 tuber-1.4.1/tuber/tests/testthat/test-request-assembly.R |only tuber-1.4.1/tuber/tests/testthat/test-search.R | 2 tuber-1.4.1/tuber/tests/testthat/test-videos.R | 5 tuber-1.4.1/tuber/tests/testthat/test-write-operations.R | 3 36 files changed, 192 insertions(+), 125 deletions(-)
Title: Liquid Glass Design Themes for 'shiny' Applications
Description: Drop-in Liquid Glass themes for 'shiny'. Call
glass_theme() and pass the result to fluidPage(),
navbarPage(), or any 'bslib'-aware page function to get
translucent surfaces, backdrop blur, and system typography on
'Bootstrap' components. Light and dark presets are included, with
options for accent color, blur, and corner radius.
Author: Eric Anderson [aut, cre]
Maintainer: Eric Anderson <eric.ray.anderson@gmail.com>
Diff between shinyglass versions 0.1.0 dated 2026-07-28 and 0.1.1 dated 2026-08-02
DESCRIPTION | 6 MD5 | 10 NEWS.md | 13 + README.md | 30 ++ inst/scss/glass.scss | 456 ++++++++++++++++++++++++++++++++++---- tests/testthat/test-glass-theme.R | 30 ++ 6 files changed, 499 insertions(+), 46 deletions(-)
Title: Luck-Corrected Peer Performance Analysis in R
Description: Provides functions to perform the peer performance analysis of
funds' returns as described in Ardia and Boudt (2018)
<doi:10.1016/j.jbankfin.2017.10.014>. For each fund, the package estimates
the proportion of peers it outperforms, is equalled by, and is outperformed
by, correcting for luck with the false discovery approach of Storey (2002)
<doi:10.1111/1467-9868.00346>. Screenings can be based on factor-model
alphas, Sharpe ratios, or modified Sharpe ratios, the latter using the
equality test of Ardia and Boudt (2015) <doi:10.1016/j.frl.2015.02.008>.
Funds can be screened within a universe or against a separate peer group,
over rolling windows, and results come with bootstrap confidence intervals,
summary, plot, and tidy data frame methods.
Author: David Ardia [aut, cre, cph, fnd] ,
Nabil Bouamara [ctb],
Kris Boudt [aut] ,
Sebastien Legros [ctb],
Murilo Andre Peres Pereira [ctb] ,
Benjamin Seguin [ctb]
Maintainer: David Ardia <david.ardia.ch@gmail.com>
Diff between PeerPerformance versions 2.3.2 dated 2025-08-18 and 2.4.0 dated 2026-08-02
DESCRIPTION | 44 +++++--- MD5 | 73 ++++++++----- NAMESPACE | 28 +++++ NEWS.md | 98 ++++++++++++++++++ R/PeerPerformance.R | 4 R/alphaScreening.R | 204 ++++++++++++++++++++++++-------------- R/alphaTesting.R | 52 +++++++-- R/computePi.R | 83 +++++++++++++-- R/functions.R | 99 +++++++++++++++++- R/methods.R |only R/msharpeBlockSize.R | 2 R/msharpeScreening.R | 109 ++++++++++++++++---- R/msharpeTesting.R | 4 R/rollScreening.R |only R/screeningXY.R |only R/sharpeBlockSize.R | 2 R/sharpeScreening.R | 111 ++++++++++++++++---- R/sharpeTesting.R | 17 +-- R/targetPeerPerformance.R |only build/partial.rdb |binary build/vignette.rds |only inst/CITATION | 15 ++ inst/doc |only inst/scripts |only man/PeerPerformance.Rd | 2 man/alphaScreening.Rd | 67 ++++++++++-- man/alphaTesting.Rd | 26 ++-- man/as.data.frame.SCREENING.Rd |only man/confint.SCREENING.Rd |only man/exposureHeterogeneity.Rd |only man/msharpeScreening.Rd | 46 +++++++- man/msharpeTesting.Rd | 2 man/plot.SCREENING.Rd |only man/plot.exposureHeterogeneity.Rd |only man/plot.rollScreening.Rd |only man/print.SCREENING.Rd |only man/print.TESTING.Rd |only man/print.summary.SCREENING.Rd |only man/rollScreening.Rd |only man/sharpe.Rd | 2 man/sharpeScreening.Rd | 49 +++++++-- man/sharpeTesting.Rd | 6 - man/summary.SCREENING.Rd |only man/targetPeerPerformance.Rd |only tests/testthat.R | 2 tests/testthat/test_numerical.R |only vignettes |only 47 files changed, 909 insertions(+), 238 deletions(-)
More information about PeerPerformance at CRAN
Permanent link
Title: Simple Component Analysis
Description: Simple Component Analysis (SCA) often provides much more
interpretable components than Principal Components (PCA) while still
representing much of the variability in the data.
Author: Valentin Rousson [aut],
Martin Maechler [aut, cre]
Maintainer: Martin Maechler <maechler@stat.math.ethz.ch>
Diff between sca versions 0.9-2 dated 2024-02-02 and 0.9-3 dated 2026-08-02
ChangeLog | 4 ++++ DESCRIPTION | 18 ++++++++++++------ MD5 | 6 +++--- build/partial.rdb |binary 4 files changed, 19 insertions(+), 9 deletions(-)
Title: Automated Machine Learning and AI Agent Tools for Clinical
Prediction Modelling
Description: Provides a streamlined workflow for building, validating, and reporting clinical prediction models. Combines standard machine learning tools with an optional AI agent that recommends appropriate statistical methods, runs sensitivity analyses, and flags common pitfalls. Includes automated generation of reports aligned with TRIPOD+AI reporting guidance (Collins et al. (2024 <doi:10.1136/bmj-2023-078378>)) for reproducible, guideline-aligned research.
Author: Uwakmfon Paul [aut, cre, cph]
Maintainer: Uwakmfon Paul <uwakmfon31@gmail.com>
Diff between triageR versions 0.1.0 dated 2026-07-29 and 0.1.1 dated 2026-08-02
DESCRIPTION | 10 - MD5 | 25 +- NEWS.md | 4 README.md | 68 +----- inst/doc/triageR-breast-cancer.R | 6 inst/doc/triageR-breast-cancer.Rmd | 6 inst/doc/triageR-breast-cancer.html | 8 inst/doc/triageR-intro.R | 29 +- inst/doc/triageR-intro.Rmd | 29 +- inst/doc/triageR-intro.html | 321 ++++++++++++++++----------------- man/figures/README-example-model-1.png |binary man/figures/README-setup-1.png |only vignettes/triageR-breast-cancer.Rmd | 6 vignettes/triageR-intro.Rmd | 29 +- 14 files changed, 250 insertions(+), 291 deletions(-)
Title: Access 'Office for Budget Responsibility' Data
Description: Provides clean, tidy access to data published by the 'Office for
Budget Responsibility' ('OBR'), the UK's independent fiscal watchdog. Covers
the Public Finances Databank (outturn for PSNB, PSND, receipts, and
expenditure since 1946), the Historical Official Forecasts Database (every
'OBR' forecast since 2010), the Economic and Fiscal Outlook detailed forecast
tables (five-year projections from the latest Budget), the monthly
profiles for the public finances (the 'OBR' forecast apportioned across
the months of the fiscal year), the Welfare Trends Report (incapacity
benefit spending and caseloads), and the Fiscal Risks and
Sustainability Report (50-year state pension projections). All returned
objects carry provenance metadata recording the source URL, publication
vintage, retrieval time, and file fingerprint, so analyses can be audited
and reproduced. Data is downloaded from the 'OBR' on first use and cached
locally for subsequent calls. Data is sourced from the 'OBR' website
<https [...truncated...]
Author: Charles Coverdale [aut, cre]
Maintainer: Charles Coverdale <charlesfcoverdale@gmail.com>
Diff between obr versions 0.5.1 dated 2026-07-27 and 0.6.0 dated 2026-08-02
DESCRIPTION | 12 ++++--- MD5 | 50 +++++++++++++++++-------------- NAMESPACE | 2 + NEWS.md | 46 ++++++++++++++++++++++++++++ R/compare.R | 53 ++++++++++++++++++++++++--------- R/fiscal_rules.R | 4 +- R/headroom.R |only R/monthly_profiles.R |only R/policy_measures.R | 2 - R/tbl.R | 1 R/utils.R | 27 ++++++++++++++-- R/vintages.R | 46 +++++++++++++++++++++++----- README.md | 7 +++- man/get_efo_economy.Rd | 1 man/get_efo_fiscal.Rd | 1 man/get_efo_table.Rd | 1 man/get_monthly_profiles.Rd |only man/list_efo_economy_measures.Rd | 1 man/obr-package.Rd | 2 - man/obr_compare_vintages.Rd | 19 ++++++----- man/obr_efo_catalogue.Rd | 1 man/obr_fiscal_rules.Rd | 8 +++- man/obr_headroom.Rd |only man/obr_pin.Rd | 6 +++ tests/testthat/test-compare.R | 12 ++++++- tests/testthat/test-headroom.R |only tests/testthat/test-monthly-profiles.R |only tests/testthat/test-utils.R | 13 ++++++++ tests/testthat/test-vintages.R | 24 ++++++++++++++ 29 files changed, 269 insertions(+), 70 deletions(-)
Title: Corrected Sandwich Inference for Inverse Probability Weighted
Cox Models
Description: An implementation of the corrected sandwich variance (CSV) method for inverse probability weighted (IPW) Cox models described in Shu et al (2021) <doi:10.1111/biom.13332>. The method accounts for the uncertainty in estimating propensity score weights to improve variance and confidence interval estimation for adjusted marginal hazard ratios (HRs) in observational and randomized studies. The package supports estimation of the average treatment effect (ATE) using conventional and stabilized ATE weights, and the average treatment effect in the treated (ATT) using ATT weights, for both independent and clustered data. Propensity scores are estimated using logistic regression.
Author: Di Shu [aut, cre],
Rui Wang [aut]
Maintainer: Di Shu <shudi1991@gmail.com>
Diff between ipwCoxCSV versions 1.0 dated 2019-10-09 and 1.1 dated 2026-08-02
DESCRIPTION | 28 +- MD5 | 13 - NEWS.md |only R/ipwCoxCluster.R | 551 +++++++++++++++++++++++++++----------------- R/ipwCoxInd.R | 588 +++++++++++++++++++++++++++++------------------ man/ipwCoxCSV-package.Rd | 8 man/ipwCoxCluster.Rd | 37 +- man/ipwCoxInd.Rd | 34 +- 8 files changed, 779 insertions(+), 480 deletions(-)
Title: Aggregated Functional Data Calibration using Splines and
Wavelets
Description: Implements methods for calibrating an aggregated functional data model using
wavelets or splines. Each aggregated curve is modeled as a linear combination of
component functions and known weights. The component functions are estimated using
wavelets or splines. The package is based on dos Santos Sousa (2024) <doi:10.1515/mcma-2023-2016>,
Saraiva and Dias (2009) <doi:10.47749/T/UNICAMP.2009.471073> and Johnstone and Silverman (1997) <doi:10.1111/1467-9868.00071>.
Author: Vitor Perrone [aut, cre] ,
Alex Sousa [aut]
Maintainer: Vitor Perrone <vitor.perrone10@gmail.com>
Diff between FunctionalCalibration versions 1.0.0 dated 2025-06-19 and 2.0.0 dated 2026-08-02
FunctionalCalibration-1.0.0/FunctionalCalibration/data/simulated_data.rda |only FunctionalCalibration-1.0.0/FunctionalCalibration/man/simulated_data.Rd |only FunctionalCalibration-2.0.0/FunctionalCalibration/DESCRIPTION | 10 FunctionalCalibration-2.0.0/FunctionalCalibration/MD5 | 31 +-- FunctionalCalibration-2.0.0/FunctionalCalibration/R/data.R | 79 ++++++- FunctionalCalibration-2.0.0/FunctionalCalibration/R/functional_calibration_splines.R | 6 FunctionalCalibration-2.0.0/FunctionalCalibration/R/functional_calibration_wavelets.R | 103 ++++++++-- FunctionalCalibration-2.0.0/FunctionalCalibration/R/plot_aggregated_curve.R | 6 FunctionalCalibration-2.0.0/FunctionalCalibration/R/weight_aggregated_data_estimation.R | 17 - FunctionalCalibration-2.0.0/FunctionalCalibration/data/simulated_data_cor.rda |only FunctionalCalibration-2.0.0/FunctionalCalibration/data/simulated_data_spl.rda |only FunctionalCalibration-2.0.0/FunctionalCalibration/data/simulated_data_wav.rda |only FunctionalCalibration-2.0.0/FunctionalCalibration/man/Bayesian_Shrinkage.Rd | 2 FunctionalCalibration-2.0.0/FunctionalCalibration/man/Universal_Shrinkage.Rd |only FunctionalCalibration-2.0.0/FunctionalCalibration/man/functional_calibration_splines.Rd | 6 FunctionalCalibration-2.0.0/FunctionalCalibration/man/functional_calibration_wavelets.Rd | 18 + FunctionalCalibration-2.0.0/FunctionalCalibration/man/plot_aggregated_curve.Rd | 6 FunctionalCalibration-2.0.0/FunctionalCalibration/man/simulated_data_cor.Rd |only FunctionalCalibration-2.0.0/FunctionalCalibration/man/simulated_data_spl.Rd |only FunctionalCalibration-2.0.0/FunctionalCalibration/man/simulated_data_wav.Rd |only FunctionalCalibration-2.0.0/FunctionalCalibration/man/weight_estimation.Rd | 2 21 files changed, 212 insertions(+), 74 deletions(-)
More information about FunctionalCalibration at CRAN
Permanent link
Title: Fit Two-Component Normal and Lognormal Mixture Models
Description: Fits, bootstraps, and evaluates two-component normal and lognormal
mixture models. Parameters are estimated by combining differential-evolution
global optimization, as implemented in the 'DEoptim' package (Mullen, Ardia,
Gil, Windover and Cline, 2011) <doi:10.18637/jss.v040.i06>, with a local
'L-BFGS-B' refinement step via optim(). Also provides preliminary diagnostic
plots, automatic normal-versus-lognormal model selection by information
criteria, and parametric or nonparametric bootstrap confidence intervals for
the fitted parameters.
Author: Farrokh Habibzadeh [aut, cre]
Maintainer: Farrokh Habibzadeh <farrokh.habibzadeh@gmail.com>
Diff between DEmixR versions 0.1.1 dated 2025-09-27 and 0.2.0 dated 2026-08-02
DEmixR-0.1.1/DEmixR/man/default_bounds_lognorm2.Rd |only DEmixR-0.1.1/DEmixR/man/default_bounds_norm2.Rd |only DEmixR-0.1.1/DEmixR/man/dot-run_demulti.Rd |only DEmixR-0.1.1/DEmixR/man/loglik_lognorm.Rd |only DEmixR-0.1.1/DEmixR/man/loglik_norm.Rd |only DEmixR-0.1.1/DEmixR/man/order_components.Rd |only DEmixR-0.2.0/DEmixR/DESCRIPTION | 32 - DEmixR-0.2.0/DEmixR/MD5 | 66 +- DEmixR-0.2.0/DEmixR/NAMESPACE | 9 DEmixR-0.2.0/DEmixR/NEWS.md |only DEmixR-0.2.0/DEmixR/R/bootstrap.R | 22 DEmixR-0.2.0/DEmixR/R/core_fit.R | 37 + DEmixR-0.2.0/DEmixR/R/demulti.R | 4 DEmixR-0.2.0/DEmixR/R/evaluate_init.R | 5 DEmixR-0.2.0/DEmixR/R/fit.R | 26 DEmixR-0.2.0/DEmixR/R/imports.R | 9 DEmixR-0.2.0/DEmixR/R/loglikelihoods.R | 8 DEmixR-0.2.0/DEmixR/R/methods.R |only DEmixR-0.2.0/DEmixR/R/plot.R | 22 DEmixR-0.2.0/DEmixR/R/selection.R | 17 DEmixR-0.2.0/DEmixR/R/utils.R | 10 DEmixR-0.2.0/DEmixR/inst/doc/introduction.R | 103 +-- DEmixR-0.2.0/DEmixR/inst/doc/introduction.Rmd | 332 +++++------- DEmixR-0.2.0/DEmixR/inst/doc/introduction.html | 531 +++++++++----------- DEmixR-0.2.0/DEmixR/man/bootstrap_mix2.Rd | 14 DEmixR-0.2.0/DEmixR/man/dot-fit_mix2_core.Rd | 49 + DEmixR-0.2.0/DEmixR/man/evaluate_init.Rd | 6 DEmixR-0.2.0/DEmixR/man/fit_lognorm2.Rd | 14 DEmixR-0.2.0/DEmixR/man/fit_norm2.Rd | 14 DEmixR-0.2.0/DEmixR/man/plot.demixr_fit.Rd |only DEmixR-0.2.0/DEmixR/man/prelim_plots.Rd | 17 DEmixR-0.2.0/DEmixR/man/print.demixr_boot.Rd |only DEmixR-0.2.0/DEmixR/man/print.demixr_fit.Rd |only DEmixR-0.2.0/DEmixR/man/print.demixr_select.Rd |only DEmixR-0.2.0/DEmixR/man/print.summary.demixr_fit.Rd |only DEmixR-0.2.0/DEmixR/man/select_best_mixture.Rd | 13 DEmixR-0.2.0/DEmixR/man/summary.demixr_fit.Rd |only DEmixR-0.2.0/DEmixR/tests |only DEmixR-0.2.0/DEmixR/vignettes/introduction.Rmd | 332 +++++------- 39 files changed, 873 insertions(+), 819 deletions(-)
Title: 'Binance' REST API Client
Description: Client for the 'Binance' <https://www.binance.com/> Spot,
USD-M Futures, and Options REST APIs. Provides helper functions for signed
and unsigned requests, market data retrieval, account access, and order
management with 'data.table' output by default. COIN-M Futures, Portfolio
Margin, WebSocket, SBE, and FIX APIs are not included.
Author: Oliver Zhou [aut, cre],
Lily Li [aut]
Maintainer: Oliver Zhou <oliver.yxzhou@gmail.com>
Diff between binxr versions 0.1.1 dated 2026-05-18 and 0.1.2 dated 2026-08-02
DESCRIPTION | 11 - MD5 | 43 ++-- NAMESPACE | 15 + NEWS.md | 18 + R/binxr-package.R | 4 R/endpoints-futures-market.R | 106 +++++++++ R/endpoints-futures-trade.R | 267 +++++++++++++++++++++++-- R/endpoints-spot-market.R | 33 +++ README.md | 5 man/binxr-package.Rd | 5 man/futures_cancel_algo_order.Rd |only man/futures_cancel_all_algo_orders.Rd |only man/futures_get_algo_order.Rd |only man/futures_get_algo_orders.Rd |only man/futures_get_historical_trades.Rd |only man/futures_get_index_constituents.Rd |only man/futures_get_insurance_balance.Rd |only man/futures_get_open_algo_orders.Rd |only man/futures_get_order_amendments.Rd |only man/futures_get_rpi_depth.Rd |only man/futures_get_symbol_adl_risk.Rd |only man/futures_get_trading_schedule.Rd |only man/futures_modify_order.Rd |only man/futures_place_algo_order.Rd |only man/spot_get_historical_block_trades.Rd |only tests/testthat/test-endpoints-futures-market.R | 39 +++ tests/testthat/test-endpoints-futures-trade.R | 75 +++++++ tests/testthat/test-endpoints-spot-account.R | 9 tests/testthat/test-endpoints-spot-general.R | 14 + tests/testthat/test-endpoints-spot-market.R | 39 +++ 30 files changed, 645 insertions(+), 38 deletions(-)
Title: Discrete Time Survival and Longitudinal Data Analysis
Description: Various functions for discrete time survival analysis and longitudinal analysis. SIMEX method for correcting for bias for errors-in-variables
in a mixed effects model. Asymptotic mean and variance of different proportional hazards test statistics using different ties methods given two
survival curves and censoring distributions. Score test and Wald test for regression analysis of grouped survival data. Calculation of survival
curves for events defined by the response variable in a mixed effects model crossing a threshold with or without confirmation.
Author: John Lawrence [aut, cre],
Jianjin Xu [ctb],
Sue Jane Wang [ctb],
Jim Hung [ctb]
Maintainer: John Lawrence <john.lawrence@fda.hhs.gov>
Diff between SurvDisc versions 0.1.1 dated 2018-05-06 and 0.1.2 dated 2026-08-02
SurvDisc-0.1.1/SurvDisc/data/datalist |only SurvDisc-0.1.2/SurvDisc/DESCRIPTION | 6 +++--- SurvDisc-0.1.2/SurvDisc/MD5 | 9 ++++----- SurvDisc-0.1.2/SurvDisc/man/AsympDiscSurv.Rd | 2 +- SurvDisc-0.1.2/SurvDisc/man/LongToSurv.Rd | 2 +- SurvDisc-0.1.2/SurvDisc/man/SampleSizeDiscSurv.Rd | 2 +- 6 files changed, 10 insertions(+), 11 deletions(-)
Title: Factor Analysis for All
Description: Provides a comprehensive Shiny-based graphical user interface
for conducting a wide range of factor analysis procedures. 'FAfA'
(Factor Analysis for All) guides users through data uploading,
assumption checking (descriptives, collinearity, multivariate
normality, outliers), data wrangling (variable exclusion, data
splitting), factor retention analysis (e.g., Parallel Analysis, Hull
method, EGA), Exploratory Factor Analysis (EFA) with various rotation
and extraction methods, Confirmatory Factor Analysis (CFA) for model
testing, Reliability Analysis (e.g., Cronbach's Alpha, McDonald's
Omega), Measurement Invariance testing across groups, and item
weighting techniques. The application leverages established R packages
such as 'lavaan' and 'psych' to perform these analyses, offering an
accessible platform for researchers and students. Results are
presented in user-friendly tables and plots, with options for
downloading outputs. Analysis projects can be saved and restored, and
reproducible R [...truncated...]
Author: Abdullah Faruk KILIC [aut, cre, cph],
Ahmet Caliskan [aut, cph],
Melissa G. Wolf [ctb, cph] ,
Daniel McNeish [ctb, cph]
Maintainer: Abdullah Faruk KILIC <afarukkilic@trakya.edu.tr>
Diff between FAfA versions 1.1 dated 2026-05-03 and 1.2 dated 2026-08-02
FAfA-1.1/FAfA/LICENSE |only FAfA-1.1/FAfA/R/itemrest_internal.R |only FAfA-1.1/FAfA/R/mod_replicability_server.r |only FAfA-1.1/FAfA/R/mod_replicability_ui.r |only FAfA-1.1/FAfA/man/print.itemrest_result.Rd |only FAfA-1.2/FAfA/DESCRIPTION | 47 FAfA-1.2/FAfA/MD5 | 128 - FAfA-1.2/FAfA/NAMESPACE | 124 - FAfA-1.2/FAfA/NEWS.md | 44 FAfA-1.2/FAfA/R/app_config.R | 117 - FAfA-1.2/FAfA/R/app_server.R | 237 +- FAfA-1.2/FAfA/R/app_ui.R | 116 - FAfA-1.2/FAfA/R/dynamic_fit_utils.R |only FAfA-1.2/FAfA/R/ega_bootstrap_utils.R |only FAfA-1.2/FAfA/R/globals.r | 3 FAfA-1.2/FAfA/R/i18n.R |only FAfA-1.2/FAfA/R/invariance_utils.R |only FAfA-1.2/FAfA/R/mod_about_server.r | 113 - FAfA-1.2/FAfA/R/mod_about_ui.r | 20 FAfA-1.2/FAfA/R/mod_assumptions_server.r | 100 - FAfA-1.2/FAfA/R/mod_assumptions_ui.R | 10 FAfA-1.2/FAfA/R/mod_cfa_server.r | 712 ++++--- FAfA-1.2/FAfA/R/mod_cfa_ui.r | 484 ++-- FAfA-1.2/FAfA/R/mod_data_selection_server.r | 169 - FAfA-1.2/FAfA/R/mod_data_selection_ui.r | 103 - FAfA-1.2/FAfA/R/mod_efa_server.r | 669 ++++-- FAfA-1.2/FAfA/R/mod_efa_ui.r | 251 +- FAfA-1.2/FAfA/R/mod_ega_server.r | 487 ++++ FAfA-1.2/FAfA/R/mod_ega_ui.r | 154 + FAfA-1.2/FAfA/R/mod_inv_server.r | 371 ++- FAfA-1.2/FAfA/R/mod_inv_ui.R | 49 FAfA-1.2/FAfA/R/mod_item_weighting_server.r | 18 FAfA-1.2/FAfA/R/mod_item_weighting_ui.r | 20 FAfA-1.2/FAfA/R/mod_itemrest_server.r | 378 +-- FAfA-1.2/FAfA/R/mod_itemrest_ui.r | 149 - FAfA-1.2/FAfA/R/mod_missing_server.r | 206 +- FAfA-1.2/FAfA/R/mod_missing_ui.r | 27 FAfA-1.2/FAfA/R/mod_project_server.R |only FAfA-1.2/FAfA/R/mod_project_ui.R |only FAfA-1.2/FAfA/R/mod_reliability_server.r | 300 +-- FAfA-1.2/FAfA/R/mod_reliability_ui.r | 80 FAfA-1.2/FAfA/R/mod_wrangling_server.r | 332 ++- FAfA-1.2/FAfA/R/mod_wrangling_ui.r | 68 FAfA-1.2/FAfA/R/project_utils.R |only FAfA-1.2/FAfA/R/report_utils.R |only FAfA-1.2/FAfA/R/utils.r | 1085 ++++++++--- FAfA-1.2/FAfA/README.md | 37 FAfA-1.2/FAfA/inst/COPYRIGHTS |only FAfA-1.2/FAfA/inst/WORDLIST | 45 FAfA-1.2/FAfA/inst/app/app.R |only FAfA-1.2/FAfA/inst/app/www/fafa-project.js |only FAfA-1.2/FAfA/inst/app/www/fonts |only FAfA-1.2/FAfA/inst/extdata |only FAfA-1.2/FAfA/man/about_server.Rd |only FAfA-1.2/FAfA/man/assumptions_server.Rd |only FAfA-1.2/FAfA/man/cfa_server.Rd |only FAfA-1.2/FAfA/man/cfa_ui.Rd |only FAfA-1.2/FAfA/man/data_selection_server.Rd |only FAfA-1.2/FAfA/man/efa_server_analysis.Rd |only FAfA-1.2/FAfA/man/efa_server_fac_ret.Rd |only FAfA-1.2/FAfA/man/efa_server_report.Rd |only FAfA-1.2/FAfA/man/inv_server.Rd |only FAfA-1.2/FAfA/man/item_weighting_server.Rd |only FAfA-1.2/FAfA/man/mod_itemrest_server.Rd |only FAfA-1.2/FAfA/man/mod_itemrest_ui.Rd |only FAfA-1.2/FAfA/man/mod_missing_server.Rd |only FAfA-1.2/FAfA/man/mod_missing_ui.Rd |only FAfA-1.2/FAfA/man/op_null_or.Rd |only FAfA-1.2/FAfA/man/reliability_server.Rd |only FAfA-1.2/FAfA/man/wrangling_server_ex_var.Rd |only FAfA-1.2/FAfA/man/write_apa7_report.Rd |only FAfA-1.2/FAfA/tests/spelling.Rout.save |only FAfA-1.2/FAfA/tests/testthat/Rplots.pdf |only FAfA-1.2/FAfA/tests/testthat/_problems |only FAfA-1.2/FAfA/tests/testthat/test-about.R |only FAfA-1.2/FAfA/tests/testthat/test-bootstrap-ega.R |only FAfA-1.2/FAfA/tests/testthat/test-data-processing.R |only FAfA-1.2/FAfA/tests/testthat/test-invariance.R |only FAfA-1.2/FAfA/tests/testthat/test-project-reports.R |only FAfA-1.2/FAfA/tests/testthat/test-shinytest2-critical-flow.R |only FAfA-1.2/FAfA/tests/testthat/testthat-problems.rds |only 81 files changed, 4881 insertions(+), 2372 deletions(-)
Title: Access the Open Experience Sampling Method Database
Description: Provides programmatic access to the Open Experience Sampling Method ('openESM') database (<https://openesmdata.org>),
a collection of harmonized experience sampling datasets. The package enables researchers to discover, download,
and work with the datasets while ensuring proper citation and license compliance.
Author: Bjoern S. Siepe [aut, cre, cph] ,
Matthias Kloft [aut]
Maintainer: Bjoern S. Siepe <bjoernsiepe@gmail.com>
Diff between openesm versions 0.2.0 dated 2026-05-06 and 0.2.1 dated 2026-08-02
DESCRIPTION | 8 ++-- MD5 | 32 ++++++++-------- R/S3_methods.R | 25 +++++++++++-- R/generics.R | 22 +++++++++-- R/get_dataset.R | 30 +++++---------- R/list_datasets.R | 30 ++++++--------- R/utils.R | 44 ++++++++++++++++------ man/cache_info.Rd | 8 ++++ man/cite.Rd | 11 ++++- man/clear_cache.Rd | 12 +++++- man/get_dataset.Rd | 31 +++++----------- man/list_datasets.Rd | 21 ++++------ man/notes.Rd | 11 ++++- man/openesm-package.Rd | 1 man/print.openesm_dataset.Rd | 17 ++++++++ man/print.openesm_dataset_list.Rd | 8 +++- tests/testthat/test-utils.R | 73 +++++++++++++++++++++++++++----------- 17 files changed, 247 insertions(+), 137 deletions(-)
Title: Access the 'Anthropic Economic Index' Dataset
Description: Provides clean, tidy access to the 'Anthropic Economic Index'
(AEI) dataset hosted on 'Hugging Face'
<https://huggingface.co/datasets/Anthropic/EconomicIndex>. The AEI
is a recurring release from 'Anthropic' that maps usage of the
'Claude' family of large language models to occupations and tasks
using the 'O*NET' taxonomy and the 'Standard Occupational
Classification' system, following the methodology of Handa et al.
(2025) <doi:10.48550/arXiv.2503.04761> and the privacy-preserving system 'Clio'
of Tamkin et al. (2024) <doi:10.48550/arXiv.2412.13678>. Functions list available
releases, fetch raw and enriched usage tables, retrieve task
statements, request hierarchies, country-level breakdowns, and the
standalone labor market impacts tables (job exposure and task
penetration), compare two releases, join the index to user-supplied
data on a shared key, and compute usage-concentration metrics
(Herfindahl-Hirschman Index, top-N concentration ratios, Shannon
entropy). Data [...truncated...]
Author: Charles Coverdale [aut, cre]
Maintainer: Charles Coverdale <charlesfcoverdale@gmail.com>
Diff between aieconindex versions 0.1.1 dated 2026-06-01 and 0.2.0 dated 2026-08-02
DESCRIPTION | 13 ++-- MD5 | 59 ++++++++++--------- NAMESPACE | 1 NEWS.md | 51 ++++++++++++++++ R/compare.R | 70 ++++++++++++++++++---- R/concentration.R | 34 +++++++---- R/geography.R | 111 ++++++++++++++++++++++++------------ R/index.R | 51 ++++++++++++---- R/labor_market.R |only R/releases.R | 2 R/utilities.R | 100 ++++++++++++++++++++++++++++---- README.md | 43 ++++++++----- inst/WORDLIST | 9 ++ inst/doc/aieconindex.R | 12 +++ inst/doc/aieconindex.Rmd | 23 +++++++ inst/doc/aieconindex.html | 31 ++++++++-- man/aei_clusters.Rd | 1 man/aei_compare.Rd | 34 ++++++----- man/aei_concentration.Rd | 32 +++++++--- man/aei_download.Rd | 1 man/aei_geography.Rd | 57 +++++++++++------- man/aei_index.Rd | 32 +++++++--- man/aei_labor_market.Rd |only man/aei_releases.Rd | 2 man/aei_tasks.Rd | 3 tests/testthat/test-compare.R | 33 ++++++++++ tests/testthat/test-concentration.R | 13 ++++ tests/testthat/test-geography.R | 40 ++++++++++++ tests/testthat/test-labor-market.R |only tests/testthat/test-releases.R | 10 +++ tests/testthat/test-utilities.R | 43 +++++++++++++ vignettes/aieconindex.Rmd | 23 +++++++ 32 files changed, 731 insertions(+), 203 deletions(-)
Title: Download Data from the 'Bank of England' Statistical Database
Description: Provides functions to download and tidy statistical data
published by the 'Bank of England' <https://www.bankofengland.co.uk>.
Covers Bank Rate, 'SONIA', gilt yields, exchange rates, mortgage rates,
mortgage approvals, consumer credit, and money supply. Series are
fetched from the 'Bank of England Interactive Statistical Database'
using its CSV endpoint. Data is cached locally between sessions.
Author: Charles Coverdale [aut, cre]
Maintainer: Charles Coverdale <charlesfcoverdale@gmail.com>
Diff between boe versions 0.3.0 dated 2026-05-30 and 0.4.0 dated 2026-08-02
DESCRIPTION | 6 MD5 | 26 +- NEWS.md | 55 ++++ R/boe_consumer_credit.R | 34 ++ R/boe_mpr_forecasts.R | 375 +++++++++++++++++++++++------- R/utils.R | 17 + README.md | 70 +++-- data/boe_series.rda |binary inst/doc/yield-curves.html | 4 man/boe_consumer_credit.Rd | 18 + man/boe_mpr_forecasts.Rd | 72 +++-- tests/testthat/test-boe_consumer_credit.R | 33 ++ tests/testthat/test-boe_get.R | 30 ++ tests/testthat/test-boe_mpr_forecasts.R | 182 +++++++++++++- 14 files changed, 738 insertions(+), 184 deletions(-)
Title: Get the Category of Content Hosted by a Domain
Description: Get the category of content hosted by a domain. Use Shallalist (service discontinued),
'VirusTotal' (which provides access to lots of services) <https://www.virustotal.com/>,
'DMOZ' <https://archive.org/details/dmoz-rdf-20150327>, University Domain list
<https://github.com/Hipo/university-domains-list>, 'OpenAI' 'GPT' models, 'Anthropic' 'Claude' models,
or validated machine learning classifiers based on 'Shallalist' data to learn about the kind
of content hosted by a domain.
Author: Gaurav Sood [aut, cre]
Maintainer: Gaurav Sood <gsood07@gmail.com>
Diff between rdomains versions 0.4.0 dated 2026-05-13 and 0.5.0 dated 2026-08-02
DESCRIPTION | 21 ++++++----- MD5 | 57 ++++++++++++++++++++----------- NAMESPACE | 33 ++++++++++++++++++ NEWS.md | 61 +++++++++++++++++++++++++++++++++ R/collect_content.R |only R/dmoz_cat.R | 14 ++++++- R/extract_text.R |only R/get_dmoz_data.R | 7 ++- R/outcomes.R |only R/page_signals.R |only R/rdomains.R | 14 ++++--- R/robots.R |only R/shalla_cat.R | 14 ++++++- R/source_vintage.R |only R/stevenblack_cat.R | 62 ++++++++++++++++++++++++---------- build/vignette.rds |binary inst/doc/rdomains.html | 4 +- man/collect_content.Rd |only man/dmoz_cat.Rd | 12 ++++++ man/fetch_error_codes.Rd |only man/fetch_report.Rd |only man/html_text_content.Rd |only man/page_signals.Rd |only man/shalla_cat.Rd | 12 ++++++ man/source_vintage.Rd |only man/stevenblack_cat.Rd | 13 ++++++- tests/testthat/test-claude-cat.R | 8 +--- tests/testthat/test-collect-content.R |only tests/testthat/test-dmoz-cat.R | 37 +++++++++++++++----- tests/testthat/test-extract-text.R |only tests/testthat/test-ml-cat.R | 4 -- tests/testthat/test-openai-cat.R | 8 +--- tests/testthat/test-outcomes.R |only tests/testthat/test-page-signals.R |only tests/testthat/test-shalla-cat.R | 14 +++++-- tests/testthat/test-source-vintage.R |only tests/testthat/test-stevenblack-cat.R | 12 +++--- tests/testthat/test-utils.R | 2 - 38 files changed, 311 insertions(+), 98 deletions(-)
Title: Access Australian Electoral Commission Data
Description: Provides clean, tidy access to Australian Electoral Commission
(AEC) federal election data. Includes results for the House of
Representatives and Senate from 2007 onwards, at both division and polling
place level, plus by-elections from 2008 onwards, the 2023 referendum,
and the full distribution of preferences. Data is downloaded directly from the AEC
<https://results.aec.gov.au> on first use and cached locally for
subsequent calls.
Author: Charles Coverdale [aut, cre]
Maintainer: Charles Coverdale <charlesfcoverdale@gmail.com>
Diff between readaec versions 0.1.2 dated 2026-03-16 and 0.2.0 dated 2026-08-02
DESCRIPTION | 12 ++- MD5 | 63 +++++++++++------- NAMESPACE | 11 +++ NEWS.md | 43 ++++++++++++ R/by_elections.R |only R/candidates.R | 24 ++++-- R/globals.R | 7 +- R/house.R | 129 ++++++++++++++++++++++++++----------- R/referendum.R |only R/senate.R | 37 +++++++++- R/swing.R | 35 ++++++++-- R/utils.R | 49 +++++++++++--- README.md | 61 ++++++++++++++++- inst/doc/richmond-example.html | 6 - man/aec_download.Rd |only man/get_by_election_candidates.Rd |only man/get_by_election_fp.Rd |only man/get_by_election_tcp.Rd |only man/get_by_election_tpp.Rd |only man/get_candidates.Rd | 5 + man/get_dop.Rd |only man/get_enrolment.Rd | 5 + man/get_fp.Rd | 5 + man/get_fp_by_booth.Rd | 5 + man/get_members_elected.Rd | 5 + man/get_polling_places.Rd | 5 + man/get_referendum_by_booth.Rd |only man/get_referendum_turnout.Rd |only man/get_senate.Rd | 5 + man/get_senators_elected.Rd |only man/get_swing.Rd | 15 +++- man/get_tcp.Rd | 5 + man/get_tcp_by_booth.Rd |only man/get_tpp.Rd | 5 + man/get_tpp_by_booth.Rd | 5 + man/get_turnout.Rd | 5 + man/list_by_elections.Rd |only man/list_referendums.Rd |only tests/testthat/test-by-elections.R |only tests/testthat/test-new-house.R |only tests/testthat/test-referendum.R |only 41 files changed, 431 insertions(+), 116 deletions(-)
Title: Draw Beautiful Symbol Nomenclature for Glycans
Description: A 'ggplot2'-native plotting engine for drawing reproducible beautiful
Symbol Nomenclature for Glycans (SNFG) glycan cartoons from glycan structure
objects or text notations, with support for batch export, structural
highlighting, and deep appearance customization. It follows the SNFG
specification described at <https://www.ncbi.nlm.nih.gov/glycans/snfg.html>.
Author: Bin Fu [aut, cre, cph] ,
Xisong Feng [aut]
Maintainer: Bin Fu <23110220018@m.fudan.edu.cn>
Diff between glydraw versions 0.7.0 dated 2026-07-25 and 0.8.0 dated 2026-08-02
glydraw-0.7.0/glydraw/R/glydraw-style.R |only glydraw-0.7.0/glydraw/man/glydraw_style.Rd |only glydraw-0.8.0/glydraw/DESCRIPTION | 13 glydraw-0.8.0/glydraw/MD5 | 209 +- glydraw-0.8.0/glydraw/NAMESPACE | 10 glydraw-0.8.0/glydraw/NEWS.md | 31 glydraw-0.8.0/glydraw/R/anno-glycan.R |only glydraw-0.8.0/glydraw/R/draw-cartoon-sketch.R |only glydraw-0.8.0/glydraw/R/draw-cartoon.R | 82 glydraw-0.8.0/glydraw/R/export-cartoons.R | 118 - glydraw-0.8.0/glydraw/R/geom-glycan.R | 187 +- glydraw-0.8.0/glydraw/R/geom-node-glycan.R | 4 glydraw-0.8.0/glydraw/R/glycan-grob.R | 161 - glydraw-0.8.0/glydraw/R/guide-glycan.R | 86 glydraw-0.8.0/glydraw/R/internal-annotations.R | 772 +++++++- glydraw-0.8.0/glydraw/R/internal-cartoon.R | 483 ++++- glydraw-0.8.0/glydraw/R/internal-data.R | 13 glydraw-0.8.0/glydraw/R/internal-grid.R |only glydraw-0.8.0/glydraw/R/internal-sketch.R |only glydraw-0.8.0/glydraw/R/save-cartoon.R | 31 glydraw-0.8.0/glydraw/R/scale-glycan.R | 501 ++++- glydraw-0.8.0/glydraw/R/style-glydraw.R |only glydraw-0.8.0/glydraw/README.md | 136 + glydraw-0.8.0/glydraw/build/vignette.rds |binary glydraw-0.8.0/glydraw/inst/doc/complex-heatmap.R |only glydraw-0.8.0/glydraw/inst/doc/complex-heatmap.Rmd |only glydraw-0.8.0/glydraw/inst/doc/complex-heatmap.html |only glydraw-0.8.0/glydraw/inst/doc/ggplot2-extension.R | 6 glydraw-0.8.0/glydraw/inst/doc/ggplot2-extension.Rmd | 6 glydraw-0.8.0/glydraw/inst/doc/ggplot2-extension.html | 16 glydraw-0.8.0/glydraw/inst/doc/glydraw.R | 83 glydraw-0.8.0/glydraw/inst/doc/glydraw.Rmd | 230 ++ glydraw-0.8.0/glydraw/inst/doc/glydraw.html | 356 ++-- glydraw-0.8.0/glydraw/man/anno_glycan.Rd |only glydraw-0.8.0/glydraw/man/draw_cartoon.Rd | 54 glydraw-0.8.0/glydraw/man/draw_cartoon_sketch.Rd |only glydraw-0.8.0/glydraw/man/export_cartoons.Rd | 48 glydraw-0.8.0/glydraw/man/figures/README-complexheatmap-extension-1.png |only glydraw-0.8.0/glydraw/man/figures/README-ggplot2-extension-1.png |binary glydraw-0.8.0/glydraw/man/figures/README-sketch-style-glycan-1.png |only glydraw-0.8.0/glydraw/man/figures/README-unnamed-chunk-2-1.png |binary glydraw-0.8.0/glydraw/man/figures/README-unnamed-chunk-3-1.png |binary glydraw-0.8.0/glydraw/man/figures/README-unnamed-chunk-4-1.png |binary glydraw-0.8.0/glydraw/man/figures/README-unnamed-chunk-6-1.png |binary glydraw-0.8.0/glydraw/man/figures/README-unnamed-chunk-7-1.png |binary glydraw-0.8.0/glydraw/man/figures/anno-glycan-complexheatmap.png |only glydraw-0.8.0/glydraw/man/figures/geom-glycan-alpha.png |only glydraw-0.8.0/glydraw/man/geom_glycan.Rd | 60 glydraw-0.8.0/glydraw/man/geom_node_glycan.Rd | 4 glydraw-0.8.0/glydraw/man/glycanGrob.Rd | 50 glydraw-0.8.0/glydraw/man/glydraw_colors.Rd |only glydraw-0.8.0/glydraw/man/guide_glycan.Rd | 34 glydraw-0.8.0/glydraw/man/hjust_red_end.Rd | 17 glydraw-0.8.0/glydraw/man/scale_x_glycan.Rd | 56 glydraw-0.8.0/glydraw/man/style_glydraw.Rd |only glydraw-0.8.0/glydraw/tests/testthat/_snaps/anno-glycan.md |only glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/amino-acid-reducing-end-down.svg |only glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/amino-acid-reducing-end-left.svg |only glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/amino-acid-reducing-end-right.svg |only glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/amino-acid-reducing-end-up.svg |only glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/core-fuc-branch-sides.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/crowded-branch-linkage-annotations.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/custom-node-size.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/custom-reducing-end-text-without-linkage.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/custom-reducing-end-text.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/downward-hexnac-linkage-labels.svg |only glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/elongated-and-leaf-sibling-branches.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/elongated-fuc-branches-together.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/elongated-nested-branches-next-to-leaf-siblings.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/exported-custom-node-size.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/exported-upward-fuc-triangle-orientation.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/flexible-fuc-triangle-orientation.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/fuc-like-branch-sides-qui.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/g13863xn.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/g59658kk.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/g69233pf.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/g77550kk.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/g90542mp.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/g97345ny.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/ggplot2-glycan-annotations.svg | 22 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/ggplot2-glycan-sizes.svg | 28 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/glycan-legend-labels.svg | 20 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/glycan-x-axis-labels.svg | 30 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/horizontal-hexnac-linkage-labels.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/horizontal-substituent-annotation.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/justified-vertical-ggplot2-glycans.svg | 20 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/linkage-hidden-branch.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/nested-xyl-gal-fuc-side-chain.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/oversized-node-size-hides-linkage.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/reducing-end-fuc-branch.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/rightward-hexnac-linkage-labels.svg |only glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/same-depth-man-sibling-branches.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/short-nested-branches-next-to-leaf-siblings.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/sketch-style-glycan-cartoon.svg |only glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/substituent-annotation-with-linkage-hidden.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/three-way-branch-with-two-fuc-leaves.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/unknown-substituent-linkage-annotation.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/upward-fuc-like-triangle-orientation-fucnac.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/upward-fuc-triangle-orientation.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/vertical-custom-reducing-end-text.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/vertical-hexnac-linkage-labels.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/cases/wavy-reducing-end.svg | 2 glydraw-0.8.0/glydraw/tests/testthat/_snaps/draw-cartoon.md |only glydraw-0.8.0/glydraw/tests/testthat/_snaps/geom-glycan.md | 17 glydraw-0.8.0/glydraw/tests/testthat/_snaps/glycan-grob.md |only glydraw-0.8.0/glydraw/tests/testthat/_snaps/guide-glycan.md | 8 glydraw-0.8.0/glydraw/tests/testthat/_snaps/scale-glycan.md | 4 glydraw-0.8.0/glydraw/tests/testthat/test-anno-glycan.R |only glydraw-0.8.0/glydraw/tests/testthat/test-cases.R | 103 - glydraw-0.8.0/glydraw/tests/testthat/test-draw-cartoon-sketch.R |only glydraw-0.8.0/glydraw/tests/testthat/test-draw-cartoon.R | 886 +++++++++- glydraw-0.8.0/glydraw/tests/testthat/test-export-cartoons.R | 51 glydraw-0.8.0/glydraw/tests/testthat/test-geom-glycan.R | 222 ++ glydraw-0.8.0/glydraw/tests/testthat/test-geom-node-glycan.R | 17 glydraw-0.8.0/glydraw/tests/testthat/test-glycan-grob.R | 195 ++ glydraw-0.8.0/glydraw/tests/testthat/test-guide-glycan.R | 44 glydraw-0.8.0/glydraw/tests/testthat/test-save-cartoon.R | 15 glydraw-0.8.0/glydraw/tests/testthat/test-scale-glycan.R | 182 ++ glydraw-0.8.0/glydraw/vignettes/complex-heatmap.Rmd |only glydraw-0.8.0/glydraw/vignettes/ggplot2-extension.Rmd | 6 glydraw-0.8.0/glydraw/vignettes/glydraw.Rmd | 230 ++ 121 files changed, 4598 insertions(+), 1427 deletions(-)
Previous versions (as known to CRANberries) which should be available via the Archive link are:
2023-10-24 0.1.0
Previous versions (as known to CRANberries) which should be available via the Archive link are:
2026-06-09 0.0.2
2026-06-08 0.0.1
Title: Expression Data Analysis and Visualization
Description: A toolkit for microarray and RNA-seq data analysis, including annotation conversion, differential expression, enrichment, survival analysis, and visualization.
Author: Xiaojie Sun [aut, cre]
Maintainer: Xiaojie Sun <18763899370@163.com>
Diff between tinyarray versions 2.4.3 dated 2025-03-05 and 3.0.0 dated 2026-08-02
tinyarray-2.4.3/tinyarray/NEWS.md |only tinyarray-2.4.3/tinyarray/R/tmp.R |only tinyarray-2.4.3/tinyarray/data/lnc_annov23.rda |only tinyarray-2.4.3/tinyarray/data/mRNA_annov23.rda |only tinyarray-2.4.3/tinyarray/man/lnc_annov23.Rd |only tinyarray-2.4.3/tinyarray/man/mRNA_annov23.Rd |only tinyarray-3.0.0/tinyarray/DESCRIPTION | 21 tinyarray-3.0.0/tinyarray/MD5 | 161 +- tinyarray-3.0.0/tinyarray/NAMESPACE | 23 tinyarray-3.0.0/tinyarray/R/00_internal_helpers.R |only tinyarray-3.0.0/tinyarray/R/10_survival_cut_cox_km.R | 20 tinyarray-3.0.0/tinyarray/R/11_surv_box_plot.R | 93 - tinyarray-3.0.0/tinyarray/R/12_cor_and_hyper.R | 12 tinyarray-3.0.0/tinyarray/R/13_network_edge_node.R | 16 tinyarray-3.0.0/tinyarray/R/14_dumd_all.R | 25 tinyarray-3.0.0/tinyarray/R/15_auto_geo_group.R |only tinyarray-3.0.0/tinyarray/R/1_plots.R | 446 +++--- tinyarray-3.0.0/tinyarray/R/2_geo_id.R | 786 +++++++++-- tinyarray-3.0.0/tinyarray/R/3_get_deg.R | 88 - tinyarray-3.0.0/tinyarray/R/4_multi_deg.R | 148 -- tinyarray-3.0.0/tinyarray/R/5_get_deg_all.R | 26 tinyarray-3.0.0/tinyarray/R/6_multi_deg_all.R | 126 + tinyarray-3.0.0/tinyarray/R/7_quick_double_enrich.R | 289 ++-- tinyarray-3.0.0/tinyarray/R/8_tcga_group_trans_exp.R | 549 ++++--- tinyarray-3.0.0/tinyarray/R/9_cor_t_choose.R | 20 tinyarray-3.0.0/tinyarray/R/data.R | 44 tinyarray-3.0.0/tinyarray/R/start_massage.R | 6 tinyarray-3.0.0/tinyarray/README.md | 1278 ++++++++++++++++-- tinyarray-3.0.0/tinyarray/data/lnc_anno.rda |binary tinyarray-3.0.0/tinyarray/data/mRNA_anno.rda |binary tinyarray-3.0.0/tinyarray/inst |only tinyarray-3.0.0/tinyarray/man/auto_geo_group.Rd |only tinyarray-3.0.0/tinyarray/man/box_surv.Rd | 23 tinyarray-3.0.0/tinyarray/man/cod.Rd | 2 tinyarray-3.0.0/tinyarray/man/cor.full.Rd | 2 tinyarray-3.0.0/tinyarray/man/cor.one.Rd | 4 tinyarray-3.0.0/tinyarray/man/corheatmap.Rd | 2 tinyarray-3.0.0/tinyarray/man/corscatterplot.Rd | 9 tinyarray-3.0.0/tinyarray/man/deg.Rd | 2 tinyarray-3.0.0/tinyarray/man/deseq_data.Rd | 2 tinyarray-3.0.0/tinyarray/man/double_enrich.Rd | 20 tinyarray-3.0.0/tinyarray/man/draw_KM.Rd | 9 tinyarray-3.0.0/tinyarray/man/draw_boxplot.Rd | 39 tinyarray-3.0.0/tinyarray/man/draw_heatmap.Rd | 34 tinyarray-3.0.0/tinyarray/man/draw_heatmap2.Rd | 9 tinyarray-3.0.0/tinyarray/man/draw_pca.Rd | 49 tinyarray-3.0.0/tinyarray/man/draw_tsne.Rd | 11 tinyarray-3.0.0/tinyarray/man/draw_venn.Rd | 28 tinyarray-3.0.0/tinyarray/man/draw_volcano.Rd | 21 tinyarray-3.0.0/tinyarray/man/draw_volcano2.Rd | 14 tinyarray-3.0.0/tinyarray/man/exists_anno_list.Rd | 2 tinyarray-3.0.0/tinyarray/man/exp_boxplot.Rd | 22 tinyarray-3.0.0/tinyarray/man/exp_hub1.Rd | 2 tinyarray-3.0.0/tinyarray/man/exp_surv.Rd | 5 tinyarray-3.0.0/tinyarray/man/exprSet_hub1.Rd | 2 tinyarray-3.0.0/tinyarray/man/find_anno.Rd | 15 tinyarray-3.0.0/tinyarray/man/genes.Rd | 2 tinyarray-3.0.0/tinyarray/man/geo_download.Rd | 43 tinyarray-3.0.0/tinyarray/man/geo_parser.Rd | 33 tinyarray-3.0.0/tinyarray/man/get_count_txt.Rd | 8 tinyarray-3.0.0/tinyarray/man/get_deg.Rd | 24 tinyarray-3.0.0/tinyarray/man/get_deg_all.Rd | 36 tinyarray-3.0.0/tinyarray/man/get_gpl_txt.Rd | 5 tinyarray-3.0.0/tinyarray/man/get_ids.Rd |only tinyarray-3.0.0/tinyarray/man/ggheat.Rd | 14 tinyarray-3.0.0/tinyarray/man/interaction_to_edges.Rd | 4 tinyarray-3.0.0/tinyarray/man/lnc_anno.Rd | 8 tinyarray-3.0.0/tinyarray/man/mRNA_anno.Rd | 8 tinyarray-3.0.0/tinyarray/man/make_tcga_group.Rd | 9 tinyarray-3.0.0/tinyarray/man/match_exp_cl.Rd | 6 tinyarray-3.0.0/tinyarray/man/meta1.Rd | 2 tinyarray-3.0.0/tinyarray/man/multi_deg.Rd | 24 tinyarray-3.0.0/tinyarray/man/multi_deg_all.Rd | 32 tinyarray-3.0.0/tinyarray/man/pkg_all.Rd | 2 tinyarray-3.0.0/tinyarray/man/plot_deg.Rd | 23 tinyarray-3.0.0/tinyarray/man/point_cut.Rd | 2 tinyarray-3.0.0/tinyarray/man/print.geo_auto_group.Rd |only tinyarray-3.0.0/tinyarray/man/quick_enrich.Rd | 35 tinyarray-3.0.0/tinyarray/man/risk_plot.Rd | 8 tinyarray-3.0.0/tinyarray/man/sam_filter.Rd | 15 tinyarray-3.0.0/tinyarray/man/surv_KM.Rd | 9 tinyarray-3.0.0/tinyarray/man/surv_cox.Rd | 9 tinyarray-3.0.0/tinyarray/man/t_choose.Rd | 6 tinyarray-3.0.0/tinyarray/man/trans_array.Rd | 10 tinyarray-3.0.0/tinyarray/man/trans_ensembl_exp.Rd |only tinyarray-3.0.0/tinyarray/man/trans_entrezexp.Rd | 22 tinyarray-3.0.0/tinyarray/man/trans_exp.Rd | 11 tinyarray-3.0.0/tinyarray/man/trans_exp_new.Rd | 41 88 files changed, 3420 insertions(+), 1536 deletions(-)
Title: Extra Recipes Steps for Dealing with Unbalanced Data
Description: A dataset with an uneven number of cases in each class is
said to be unbalanced. Many models produce a subpar performance on
unbalanced datasets. A dataset can be balanced by increasing the
number of minority cases using SMOTE 2011
<doi:10.48550/arXiv.1106.1813>, BorderlineSMOTE 2005
<doi:10.1007/11538059_91> and ADASYN 2008. Or by decreasing the number
of majority cases using NearMiss 2003
<https://www.site.uottawa.ca/~nat/Workshop2003/jzhang.pdf> or Tomek
link removal 1976.
Author: Emil Hvitfeldt [aut, cre] ,
Posit Software, PBC [cph, fnd]
Maintainer: Emil Hvitfeldt <emil.hvitfeldt@posit.co>
Diff between themis versions 1.0.3 dated 2025-01-22 and 1.1.0 dated 2026-08-02
themis-1.0.3/themis/tests/testthat/testthat-problems.rds |only themis-1.1.0/themis/DESCRIPTION | 39 themis-1.1.0/themis/LICENSE | 2 themis-1.1.0/themis/MD5 | 248 ++- themis-1.1.0/themis/NAMESPACE | 83 + themis-1.1.0/themis/NEWS.md | 116 + themis-1.1.0/themis/R/adasyn.R | 116 + themis-1.1.0/themis/R/adasyn_impl.R | 94 - themis-1.1.0/themis/R/bsmote.R | 150 +- themis-1.1.0/themis/R/bsmote_impl.R | 130 + themis-1.1.0/themis/R/cluster_centroids.R |only themis-1.1.0/themis/R/cluster_centroids_impl.R |only themis-1.1.0/themis/R/cnn.R |only themis-1.1.0/themis/R/cnn_impl.R |only themis-1.1.0/themis/R/data.R | 3 themis-1.1.0/themis/R/downsample.R | 190 ++ themis-1.1.0/themis/R/enn.R |only themis-1.1.0/themis/R/enn_impl.R |only themis-1.1.0/themis/R/instance_hardness.R |only themis-1.1.0/themis/R/instance_hardness_impl.R |only themis-1.1.0/themis/R/kmeans_smote.R |only themis-1.1.0/themis/R/kmeans_smote_impl.R |only themis-1.1.0/themis/R/misc.R | 687 +++++++++- themis-1.1.0/themis/R/ncl.R |only themis-1.1.0/themis/R/ncl_impl.R |only themis-1.1.0/themis/R/nearmiss.R | 158 +- themis-1.1.0/themis/R/nearmiss_impl.R | 136 + themis-1.1.0/themis/R/oss.R |only themis-1.1.0/themis/R/oss_impl.R |only themis-1.1.0/themis/R/rose.R | 236 ++- themis-1.1.0/themis/R/smogn.R |only themis-1.1.0/themis/R/smogn_impl.R |only themis-1.1.0/themis/R/smote.R | 165 +- themis-1.1.0/themis/R/smote_impl.R | 90 - themis-1.1.0/themis/R/smoten.R |only themis-1.1.0/themis/R/smoten_impl.R |only themis-1.1.0/themis/R/smotenc.R | 113 + themis-1.1.0/themis/R/smotenc_impl.R | 79 - themis-1.1.0/themis/R/svmsmote.R |only themis-1.1.0/themis/R/svmsmote_impl.R |only themis-1.1.0/themis/R/themis-package.R | 4 themis-1.1.0/themis/R/tomek.R | 114 + themis-1.1.0/themis/R/tomek_impl.R | 36 themis-1.1.0/themis/R/tunable.R | 11 themis-1.1.0/themis/R/upsample.R | 232 ++- themis-1.1.0/themis/README.md | 86 - themis-1.1.0/themis/build/partial.rdb |binary themis-1.1.0/themis/inst |only themis-1.1.0/themis/man/adasyn.Rd | 81 + themis-1.1.0/themis/man/bsmote.Rd | 107 + themis-1.1.0/themis/man/circle_example.Rd | 5 themis-1.1.0/themis/man/cluster_centroids.Rd |only themis-1.1.0/themis/man/cnn.Rd |only themis-1.1.0/themis/man/enn.Rd |only themis-1.1.0/themis/man/figures/README-unnamed-chunk-2-1.png |binary themis-1.1.0/themis/man/figures/README-unnamed-chunk-3-1.png |binary themis-1.1.0/themis/man/figures/README-unnamed-chunk-4-1.png |binary themis-1.1.0/themis/man/figures/README-unnamed-chunk-5-1.png |binary themis-1.1.0/themis/man/figures/README-unnamed-chunk-6-1.png |binary themis-1.1.0/themis/man/instance_hardness.Rd |only themis-1.1.0/themis/man/kmeans_smote.Rd |only themis-1.1.0/themis/man/ncl.Rd |only themis-1.1.0/themis/man/nearmiss.Rd | 117 + themis-1.1.0/themis/man/oss.Rd |only themis-1.1.0/themis/man/reexports.Rd | 2 themis-1.1.0/themis/man/required_pkgs.step.Rd | 36 themis-1.1.0/themis/man/rmd/tunable-args.Rmd | 16 themis-1.1.0/themis/man/rose.Rd |only themis-1.1.0/themis/man/smogn.Rd |only themis-1.1.0/themis/man/smote.Rd | 78 - themis-1.1.0/themis/man/smoten.Rd |only themis-1.1.0/themis/man/smotenc.Rd | 50 themis-1.1.0/themis/man/step_adasyn.Rd | 130 + themis-1.1.0/themis/man/step_bsmote.Rd | 163 +- themis-1.1.0/themis/man/step_cluster_centroids.Rd |only themis-1.1.0/themis/man/step_cnn.Rd |only themis-1.1.0/themis/man/step_downsample.Rd | 97 - themis-1.1.0/themis/man/step_enn.Rd |only themis-1.1.0/themis/man/step_instance_hardness.Rd |only themis-1.1.0/themis/man/step_kmeans_smote.Rd |only themis-1.1.0/themis/man/step_ncl.Rd |only themis-1.1.0/themis/man/step_nearmiss.Rd | 159 +- themis-1.1.0/themis/man/step_oss.Rd |only themis-1.1.0/themis/man/step_rose.Rd | 120 - themis-1.1.0/themis/man/step_smogn.Rd |only themis-1.1.0/themis/man/step_smote.Rd | 151 +- themis-1.1.0/themis/man/step_smoten.Rd |only themis-1.1.0/themis/man/step_smotenc.Rd | 106 - themis-1.1.0/themis/man/step_svmsmote.Rd |only themis-1.1.0/themis/man/step_tomek.Rd | 118 + themis-1.1.0/themis/man/step_upsample.Rd | 94 - themis-1.1.0/themis/man/svmsmote.Rd |only themis-1.1.0/themis/man/themis-package.Rd | 9 themis-1.1.0/themis/man/tomek.Rd | 68 themis-1.1.0/themis/man/tunable_themis.Rd | 30 themis-1.1.0/themis/tests/testthat/_snaps/adasyn.md | 87 + themis-1.1.0/themis/tests/testthat/_snaps/adasyn_impl.md | 16 themis-1.1.0/themis/tests/testthat/_snaps/bsmote.md | 86 + themis-1.1.0/themis/tests/testthat/_snaps/bsmote_impl.md | 34 themis-1.1.0/themis/tests/testthat/_snaps/cluster_centroids.md |only themis-1.1.0/themis/tests/testthat/_snaps/cluster_centroids_impl.md |only themis-1.1.0/themis/tests/testthat/_snaps/cnn.md |only themis-1.1.0/themis/tests/testthat/_snaps/cnn_impl.md |only themis-1.1.0/themis/tests/testthat/_snaps/downsample.md | 62 themis-1.1.0/themis/tests/testthat/_snaps/enn.md |only themis-1.1.0/themis/tests/testthat/_snaps/enn_impl.md |only themis-1.1.0/themis/tests/testthat/_snaps/instance_hardness.md |only themis-1.1.0/themis/tests/testthat/_snaps/instance_hardness_impl.md |only themis-1.1.0/themis/tests/testthat/_snaps/kmeans_smote.md |only themis-1.1.0/themis/tests/testthat/_snaps/kmeans_smote_impl.md |only themis-1.1.0/themis/tests/testthat/_snaps/misc.md |only themis-1.1.0/themis/tests/testthat/_snaps/ncl.md |only themis-1.1.0/themis/tests/testthat/_snaps/ncl_impl.md |only themis-1.1.0/themis/tests/testthat/_snaps/nearmiss.md | 120 + themis-1.1.0/themis/tests/testthat/_snaps/nearmiss_impl.md | 59 themis-1.1.0/themis/tests/testthat/_snaps/oss.md |only themis-1.1.0/themis/tests/testthat/_snaps/oss_impl.md |only themis-1.1.0/themis/tests/testthat/_snaps/rose.md | 159 ++ themis-1.1.0/themis/tests/testthat/_snaps/smogn.md |only themis-1.1.0/themis/tests/testthat/_snaps/smogn_impl.md |only themis-1.1.0/themis/tests/testthat/_snaps/smote.md | 119 + themis-1.1.0/themis/tests/testthat/_snaps/smote_impl.md | 25 themis-1.1.0/themis/tests/testthat/_snaps/smoten.md |only themis-1.1.0/themis/tests/testthat/_snaps/smoten_impl.md |only themis-1.1.0/themis/tests/testthat/_snaps/smotenc.md | 80 + themis-1.1.0/themis/tests/testthat/_snaps/svmsmote.md |only themis-1.1.0/themis/tests/testthat/_snaps/svmsmote_impl.md |only themis-1.1.0/themis/tests/testthat/_snaps/tomek.md | 44 themis-1.1.0/themis/tests/testthat/_snaps/tomek_impl.md | 16 themis-1.1.0/themis/tests/testthat/_snaps/upsample.md | 86 + themis-1.1.0/themis/tests/testthat/test-S3-methods.R | 39 themis-1.1.0/themis/tests/testthat/test-adasyn.R | 380 ++++- themis-1.1.0/themis/tests/testthat/test-adasyn_impl.R | 136 + themis-1.1.0/themis/tests/testthat/test-bsmote.R | 524 +++++-- themis-1.1.0/themis/tests/testthat/test-bsmote_impl.R | 190 ++ themis-1.1.0/themis/tests/testthat/test-cluster_centroids.R |only themis-1.1.0/themis/tests/testthat/test-cluster_centroids_impl.R |only themis-1.1.0/themis/tests/testthat/test-cnn.R |only themis-1.1.0/themis/tests/testthat/test-cnn_impl.R |only themis-1.1.0/themis/tests/testthat/test-downsample.R | 405 ++++- themis-1.1.0/themis/tests/testthat/test-enn.R |only themis-1.1.0/themis/tests/testthat/test-enn_impl.R |only themis-1.1.0/themis/tests/testthat/test-instance_hardness.R |only themis-1.1.0/themis/tests/testthat/test-instance_hardness_impl.R |only themis-1.1.0/themis/tests/testthat/test-kmeans_smote.R |only themis-1.1.0/themis/tests/testthat/test-kmeans_smote_impl.R |only themis-1.1.0/themis/tests/testthat/test-misc.R |only themis-1.1.0/themis/tests/testthat/test-ncl.R |only themis-1.1.0/themis/tests/testthat/test-ncl_impl.R |only themis-1.1.0/themis/tests/testthat/test-nearmiss.R | 422 +++++- themis-1.1.0/themis/tests/testthat/test-nearmiss_impl.R | 194 ++ themis-1.1.0/themis/tests/testthat/test-oss.R |only themis-1.1.0/themis/tests/testthat/test-oss_impl.R |only themis-1.1.0/themis/tests/testthat/test-rose.R | 322 +++- themis-1.1.0/themis/tests/testthat/test-smogn.R |only themis-1.1.0/themis/tests/testthat/test-smogn_impl.R |only themis-1.1.0/themis/tests/testthat/test-smote.R | 471 +++++- themis-1.1.0/themis/tests/testthat/test-smote_impl.R | 150 ++ themis-1.1.0/themis/tests/testthat/test-smoten.R |only themis-1.1.0/themis/tests/testthat/test-smoten_impl.R |only themis-1.1.0/themis/tests/testthat/test-smotenc.R | 371 ++++- themis-1.1.0/themis/tests/testthat/test-smotenc_impl.R | 52 themis-1.1.0/themis/tests/testthat/test-svmsmote.R |only themis-1.1.0/themis/tests/testthat/test-svmsmote_impl.R |only themis-1.1.0/themis/tests/testthat/test-tomek.R | 204 ++ themis-1.1.0/themis/tests/testthat/test-tomek_impl.R | 48 themis-1.1.0/themis/tests/testthat/test-tunable.R |only themis-1.1.0/themis/tests/testthat/test-upsample.R | 445 +++++- 168 files changed, 8534 insertions(+), 1867 deletions(-)
Title: Miscellaneous Functions 'T. Yanagida'
Description: Miscellaneous functions for (1) data handling (e.g., grand-mean and group-mean centering, coding variables and reverse coding items, scale and cluster scores, reading and writing Excel and SPSS files), (2) descriptive statistics (e.g., frequency table, cross tabulation, effect size measures), (3) missing data (e.g., descriptive statistics for missing data, missing data pattern, Little's test of Missing Completely at Random, and auxiliary variable analysis), (4) multilevel data (e.g., multilevel descriptive statistics, within-group and between-group correlation matrix, multilevel confirmatory factor analysis, level-specific fit indices, cross-level measurement equivalence evaluation, multilevel composite reliability, and multilevel R-squared measures), (5) item analysis (e.g., confirmatory factor analysis, coefficient alpha and omega, between-group and longitudinal measurement equivalence evaluation), (6) statistical analysis (e.g., bootstrap confidence intervals, collinearity and resid [...truncated...]
Author: Takuya Yanagida [aut, cre]
Maintainer: Takuya Yanagida <takuya.yanagida@univie.ac.at>
Diff between misty versions 0.8.2 dated 2026-05-16 and 0.8.3 dated 2026-08-02
DESCRIPTION | 15 MD5 | 321 +- NAMESPACE | 19 NEWS.md | 64 R/aov.b.R | 14 R/aov.w.R | 28 R/blimp.R | 92 R/blimp.bayes.R | 50 R/blimp.plot.R | 80 R/blimp.print.R | 11 R/blimp.run.R | 12 R/blimp.update.R | 92 R/boot.bs.R | 38 R/center.R | 70 R/check.collin.R | 19 R/check.outlier.R | 10 R/check.resid.R | 67 R/chr.color.R | 37 R/chr.grep.R | 19 R/chr.omit.R | 17 R/chr.trunc.R | 4 R/ci.cor.R | 44 R/ci.mean.R | 84 R/ci.mean.diff.R | 97 R/ci.mean.w.R | 38 R/ci.prop.R | 48 R/ci.prop.diff.R | 112 R/ci.var.R | 90 R/cluster.rwg.R | 26 R/cluster.scores.R | 44 R/coding.R | 44 R/coeff.robust.R | 20 R/coeff.std.R | 65 R/cohens.d.R | 158 - R/cor.matrix.R | 451 +-- R/crosstab.R | 59 R/data.R |only R/descript.R | 38 R/df.check.R | 16 R/df.duplicated.R | 38 R/df.head.R | 44 R/df.long.R | 52 R/df.merge.R | 2 R/df.move.R | 8 R/df.rename.R | 12 R/df.subset.R | 67 R/difftest.chibarsq.R | 50 R/dominance.R | 34 R/dominance.manual.R | 32 R/effsize.R | 38 R/freq.R | 40 R/indirect.R | 54 R/item.alpha.R | 504 ++-- R/item.cfa.R | 1362 +++++++---- R/item.dfi.R | 69 R/item.distract.R |only R/item.invar.R | 1258 +++++++--- R/item.noninvar.R | 74 R/item.omega.R | 297 +- R/item.reverse.R | 92 R/item.scores.R | 131 - R/item.stats.R |only R/lagged.R | 48 R/libraries.R | 84 R/modcomp.R | 43 R/mplus.R | 76 R/mplus.bayes.R | 68 R/mplus.lca.R | 102 R/mplus.lca.summa.R | 112 R/mplus.plot.R | 132 - R/mplus.print.R | 244 +- R/mplus.update.R | 106 R/multilevel.alpha.R |only R/multilevel.cfa.R | 1954 ++++++++++------ R/multilevel.cor.R | 499 ++-- R/multilevel.descript.R | 181 - R/multilevel.fit.R | 965 ++------ R/multilevel.icc.R | 71 R/multilevel.indirect.R | 16 R/multilevel.invar.R | 1064 +++++---- R/multilevel.omega.R | 669 +++-- R/multilevel.r2.R | 78 R/multilevel.r2.manual.R | 407 --- R/na.as.R | 23 R/na.auxiliary.R | 60 R/na.coverage.R | 12 R/na.descript.R | 67 R/na.indicator.R | 16 R/na.pattern.R | 14 R/na.prop.R | 6 R/na.satcor.R | 16 R/na.test.R | 28 R/plot.misty.object.R | 70 R/print.misty.object.R | 5126 +++++++++++++++++++++++++++----------------- R/read.data.R | 18 R/read.dta.R | 23 R/read.mplus.R | 54 R/read.sav.R | 23 R/read.xlsx.R | 6 R/rec.R | 80 R/robust.lmer.R | 27 R/script.copy.R | 12 R/script.open.R | 8 R/sim.lavaan.R | 2 R/size.mean.R | 58 R/skewness.R | 58 R/summa.R | 119 - R/test.t.R | 26 R/test.welch.R | 28 R/test.z.R | 24 R/uniq.R | 8 R/utils.R | 2897 +++++++++++++----------- R/write.data.R | 6 R/write.mplus.R | 8 R/write.result.R | 1488 ++++++++---- R/write.sav.R | 22 R/write.xlsx.R | 2 data |only man/boot.bs.Rd | 6 man/center.Rd | 36 man/chr.color.Rd | 12 man/chr.omit.Rd | 4 man/ci.cor.Rd | 6 man/ci.mean.Rd | 8 man/ci.mean.diff.Rd | 6 man/ci.prop.Rd | 6 man/ci.var.Rd | 8 man/coeff.std.Rd | 8 man/cohens.d.Rd | 6 man/cor.matrix.Rd | 142 - man/data.items.Rd |only man/df.duplicated.Rd | 30 man/df.long.Rd | 4 man/df.subset.Rd | 24 man/difftest.chibarsq.Rd | 22 man/dominance.Rd | 4 man/dominance.manual.Rd | 8 man/item.alpha.Rd | 170 - man/item.cfa.Rd | 374 ++- man/item.dfi.Rd | 23 man/item.distract.Rd |only man/item.invar.Rd | 326 +- man/item.noninvar.Rd | 42 man/item.omega.Rd | 111 man/item.reverse.Rd | 37 man/item.scores.Rd | 21 man/item.stats.Rd |only man/modcomp.Rd | 13 man/mplus.lca.Rd | 4 man/mplus.plot.Rd | 44 man/multilevel.alpha.Rd |only man/multilevel.cfa.Rd | 407 ++- man/multilevel.cor.Rd | 195 - man/multilevel.descript.Rd | 41 man/multilevel.fit.Rd | 61 man/multilevel.icc.Rd | 38 man/multilevel.invar.Rd | 127 - man/multilevel.omega.Rd | 185 + man/multilevel.r2.Rd | 30 man/multilevel.r2.manual.Rd | 10 man/na.as.Rd | 9 man/print.misty.object.Rd | 86 man/size.mean.Rd | 6 man/summa.Rd | 4 man/write.mplus.Rd | 2 man/write.result.Rd | 38 166 files changed, 15552 insertions(+), 11317 deletions(-)
Title: Fit the Vector Autoregressive Model for Multiple Individuals
Description: Fit the vector autoregressive model for multiple individuals
using the 'OpenMx' package (Hunter, 2017 <doi:10.1080/10705511.2017.1369354>).
Author: Ivan Jacob Agaloos Pesigan [aut, cre, cph]
Maintainer: Ivan Jacob Agaloos Pesigan <r.jeksterslab@gmail.com>
Diff between fitVARMxID versions 1.0.3 dated 2026-03-31 and 1.0.5 dated 2026-08-02
DESCRIPTION | 8 MD5 | 49 +- NAMESPACE | 9 NEWS.md | 7 R/fitVARMxID-fit-dt-var-mx-id-dot.R | 3 R/fitVARMxID-fit-dt-var-mx-id-save.R |only R/fitVARMxID-fit-dt-var-mx-id.R | 4 R/fitVARMxID-methods-var-mx-id.R | 204 ++++++++++ R/fitVARMxID-plot-coef-forest-dot.R |only R/wald-ci-wald-dot.R |only R/wald-probs-of-alpha-dot.R |only build/partial.rdb |binary man/FitVARMxID.Rd | 5 man/FitVARMxIDSave.Rd |only man/LDL.Rd | 1 man/Softplus.Rd | 1 man/confint.varmxid.Rd |only man/plot.varmxid.Rd |only man/vcov.varmxid.Rd | 5 tests/testthat/test-fitVARMxID-fitvarmxid-center-false-alpha-fixed-ct.R | 33 + tests/testthat/test-fitVARMxID-fitvarmxid-center-false-alpha-fixed.R | 31 + tests/testthat/test-fitVARMxID-fitvarmxid-center-false-ct.R | 31 + tests/testthat/test-fitVARMxID-fitvarmxid-center-false.R | 29 + tests/testthat/test-fitVARMxID-fitvarmxid-center-true-ct.R | 31 + tests/testthat/test-fitVARMxID-fitvarmxid-center-true-mu-fixed-ct.R | 33 + tests/testthat/test-fitVARMxID-fitvarmxid-center-true-mu-fixed.R | 31 + tests/testthat/test-fitVARMxID-fitvarmxid-center-true.R | 29 + tests/testthat/test-fitVARMxID-fitvarmxid-nu-theta-mu0.R | 40 + tests/testthat/test-fitVARMxID-fitvarmxid-trigger-ensure-good-hessian.R | 24 + 29 files changed, 525 insertions(+), 83 deletions(-)