Title: Spatially Explicit Capture-Recapture
Description: Functions to estimate the density and size of a spatially
distributed animal population sampled with an array of passive detectors,
such as traps, or by searching polygons or transects. Models incorporating
distance-dependent detection are fitted by maximizing the likelihood.
Tools are included for data manipulation and model selection.
Author: Murray Efford [aut, cre] ,
Philipp Jund [ctb] ),
David Fletcher [ctb] )
Maintainer: Murray Efford <murray.efford@otago.ac.nz>
Diff between secr versions 4.6.0 dated 2023-05-23 and 4.6.1 dated 2023-07-10
DESCRIPTION | 17 +++- MD5 | 54 +++++++-------- NAMESPACE | 4 + NEWS | 19 +++++ R/Fletcher.chat.R | 20 +++++ R/LRtest.R | 4 - R/RcppExports.R | 4 - R/chatnk.R | 46 +++++++++--- R/collate.R |only R/esa.R | 5 + R/generalsecrloglik.R | 7 + R/join2.R | 3 R/methods.R | 8 +- R/model.average.R | 157 -------------------------------------------- R/preparedata.R | 18 +++-- R/rbind.capthist.R | 1 R/read.traps.R | 11 +-- R/reduce.R | 4 - R/sim.popn.R | 16 +++- R/utility.R | 11 +-- inst/doc/secr-datainput.pdf |binary inst/doc/secr-overview.pdf |binary man/Fletcher.chat.Rd | 2 man/chat.Rd | 9 ++ man/collate.Rd |only man/modelAverage.Rd | 31 ++------ man/secr-package.Rd | 4 - src/RcppExports.cpp | 9 +- src/prwipolygon.cpp | 30 +++++--- 29 files changed, 218 insertions(+), 276 deletions(-)
Title: R and C++ Interfaces to 'spdlog' C++ Header Library for Logging
Description: The mature and widely-used C++ logging library 'spdlog' by Gabi Melman provides
many desirable features. This package bundles these header files for easy use by R packages
from both their R and C or C++ code. Explicit use via 'LinkingTo:' is also supported. Also
see the 'spdl' package which enhanced this package with a consistent R and C++ interface.
Author: Dirk Eddelbuettel
Maintainer: Dirk Eddelbuettel <edd@debian.org>
Diff between RcppSpdlog versions 0.0.13 dated 2023-06-17 and 0.0.14 dated 2023-07-10
ChangeLog | 14 + DESCRIPTION | 8 MD5 | 94 +++++----- README.md | 1 build/partial.rdb |binary build/vignette.rds |binary inst/NEWS.Rd | 7 inst/include/spdlog/async.h | 6 inst/include/spdlog/async_logger-inl.h | 34 +-- inst/include/spdlog/common.h | 71 +++++++ inst/include/spdlog/details/backtracer-inl.h | 6 inst/include/spdlog/details/backtracer.h | 1 inst/include/spdlog/details/file_helper-inl.h | 8 inst/include/spdlog/details/file_helper.h | 1 inst/include/spdlog/details/fmt_helper.h | 5 inst/include/spdlog/details/mpmc_blocking_q.h | 26 ++ inst/include/spdlog/details/os-inl.h | 53 ++++- inst/include/spdlog/details/os.h | 4 inst/include/spdlog/details/registry-inl.h | 11 + inst/include/spdlog/details/registry.h | 2 inst/include/spdlog/details/synchronous_factory.h | 2 inst/include/spdlog/details/tcp_client-windows.h | 2 inst/include/spdlog/details/tcp_client.h | 5 inst/include/spdlog/details/thread_pool-inl.h | 6 inst/include/spdlog/details/udp_client-windows.h | 10 - inst/include/spdlog/details/udp_client.h | 2 inst/include/spdlog/fmt/bin_to_hex.h | 6 inst/include/spdlog/fmt/bundled/std.h |only inst/include/spdlog/fmt/std.h |only inst/include/spdlog/logger-inl.h | 6 inst/include/spdlog/logger.h | 72 ++----- inst/include/spdlog/pattern_formatter.h | 2 inst/include/spdlog/sinks/android_sink.h | 6 inst/include/spdlog/sinks/ansicolor_sink-inl.h | 18 - inst/include/spdlog/sinks/callback_sink.h |only inst/include/spdlog/sinks/daily_file_sink.h | 66 ------- inst/include/spdlog/sinks/dist_sink.h | 8 inst/include/spdlog/sinks/dup_filter_sink.h | 8 inst/include/spdlog/sinks/kafka_sink.h |only inst/include/spdlog/sinks/msvc_sink.h | 24 +- inst/include/spdlog/sinks/qt_sinks.h | 202 +++++++++++++++++++++- inst/include/spdlog/sinks/ringbuffer_sink.h | 2 inst/include/spdlog/sinks/stdout_sinks-inl.h | 3 inst/include/spdlog/sinks/systemd_sink.h | 7 inst/include/spdlog/sinks/win_eventlog_sink.h | 12 - inst/include/spdlog/spdlog-inl.h | 5 inst/include/spdlog/spdlog.h | 43 ++-- inst/include/spdlog/stopwatch.h | 2 inst/include/spdlog/tweakme.h | 3 inst/include/spdlog/version.h | 2 50 files changed, 593 insertions(+), 283 deletions(-)
Title: High Performance Tools for Combinatorics and Computational
Mathematics
Description: Provides optimized functions and flexible combinatorial iterators
implemented in C++ for solving problems in combinatorics and
computational mathematics. Utilizes the RMatrix class from 'RcppParallel'
for thread safety. There are combination/permutation functions with
constraint parameters that allow for generation of all results of a vector
meeting specific criteria (e.g. generating integer partitions/compositions
or finding all combinations such that the sum is between two bounds).
Capable of generating specific combinations/permutations (e.g. retrieve
only the nth lexicographical result) which sets up nicely for
parallelization as well as random sampling. Gmp support permits exploration
where the total number of results is large (e.g. comboSample(10000, 500,
n = 4)). Additionally, there are several high performance number theoretic
functions that are useful for problems common in computational mathematics.
Some of these functions make use of the fast integer division library
'libdiv [...truncated...]
Author: Joseph Wood
Maintainer: Joseph Wood <jwood000@gmail.com>
Diff between RcppAlgos versions 2.7.2 dated 2023-02-11 and 2.8.0 dated 2023-07-10
RcppAlgos-2.7.2/RcppAlgos/inst/include/CppConvert/GmpxxCopy.h |only RcppAlgos-2.7.2/RcppAlgos/src/ComboGroupsUtils.cpp |only RcppAlgos-2.8.0/RcppAlgos/DESCRIPTION | 8 RcppAlgos-2.8.0/RcppAlgos/MD5 | 160 - RcppAlgos-2.8.0/RcppAlgos/NEWS.md | 6 RcppAlgos-2.8.0/RcppAlgos/R/ComboGroups.R | 29 RcppAlgos-2.8.0/RcppAlgos/README.md | 2 RcppAlgos-2.8.0/RcppAlgos/build/vignette.rds |binary RcppAlgos-2.8.0/RcppAlgos/inst/NEWS.Rd | 9 RcppAlgos-2.8.0/RcppAlgos/inst/doc/CombPermConstraints.Rmd | 60 RcppAlgos-2.8.0/RcppAlgos/inst/doc/CombPermConstraints.html | 1150 +++---- RcppAlgos-2.8.0/RcppAlgos/inst/doc/CombinatorialSampling.Rmd | 50 RcppAlgos-2.8.0/RcppAlgos/inst/doc/CombinatorialSampling.html | 886 ++--- RcppAlgos-2.8.0/RcppAlgos/inst/doc/CombinatoricsIterators.Rmd | 87 RcppAlgos-2.8.0/RcppAlgos/inst/doc/CombinatoricsIterators.html | 1497 +++++----- RcppAlgos-2.8.0/RcppAlgos/inst/doc/ComputationalMathematics.Rmd | 36 RcppAlgos-2.8.0/RcppAlgos/inst/doc/ComputationalMathematics.html | 408 +- RcppAlgos-2.8.0/RcppAlgos/inst/doc/GeneralCombinatorics.Rmd | 32 RcppAlgos-2.8.0/RcppAlgos/inst/doc/GeneralCombinatorics.html | 784 ++--- RcppAlgos-2.8.0/RcppAlgos/inst/doc/HighPerformanceBenchmarks.Rmd | 162 - RcppAlgos-2.8.0/RcppAlgos/inst/doc/HighPerformanceBenchmarks.html | 882 ++--- RcppAlgos-2.8.0/RcppAlgos/inst/doc/OtherCombinatorics.Rmd | 77 RcppAlgos-2.8.0/RcppAlgos/inst/doc/OtherCombinatorics.html | 542 +-- RcppAlgos-2.8.0/RcppAlgos/inst/doc/SubsetSum.Rmd | 34 RcppAlgos-2.8.0/RcppAlgos/inst/doc/SubsetSum.html | 844 ++--- RcppAlgos-2.8.0/RcppAlgos/inst/include/Combinations/BigComboCount.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Combinations/ComboResMain.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Combinations/NthCombination.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Combinations/RankCombination.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Combinations/ThreadSafeComb.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/ComboGroup |only RcppAlgos-2.8.0/RcppAlgos/inst/include/ComboGroupsUtils.h | 14 RcppAlgos-2.8.0/RcppAlgos/inst/include/Constraints/ConstraintsSpecial.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/CppConvert/ConvertUtils.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/CppConvert/GmpConvert.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/NthResult.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/NumbersUtils/PollardRhoUtils.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Partitions/BigPartsCountDistinct.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Partitions/BigPartsCountRep.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Partitions/BigPartsCountSection.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Partitions/NthPartition.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Partitions/PartitionsTypes.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Permutations/BigPermuteCount.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Permutations/NthPermutation.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Permutations/PermuteResMain.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Permutations/RankPermutation.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/Permutations/ThreadSafePerm.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/RankResult.h | 2 RcppAlgos-2.8.0/RcppAlgos/inst/include/SetUpUtils.h | 2 RcppAlgos-2.8.0/RcppAlgos/man/RcppAlgos-package.Rd | 2 RcppAlgos-2.8.0/RcppAlgos/man/comboGroups.Rd | 34 RcppAlgos-2.8.0/RcppAlgos/man/comboGroupsCount.Rd | 15 RcppAlgos-2.8.0/RcppAlgos/man/comboGroupsSample.Rd | 23 RcppAlgos-2.8.0/RcppAlgos/src/BigComboCount.cpp | 2 RcppAlgos-2.8.0/RcppAlgos/src/BigPartsCountSection.cpp | 2 RcppAlgos-2.8.0/RcppAlgos/src/BigPermuteCount.cpp | 2 RcppAlgos-2.8.0/RcppAlgos/src/CombinatoricsCount.cpp | 35 RcppAlgos-2.8.0/RcppAlgos/src/ComboCartesian.cpp | 2 RcppAlgos-2.8.0/RcppAlgos/src/ComboCount.cpp | 2 RcppAlgos-2.8.0/RcppAlgos/src/ComboGroupClass.cpp |only RcppAlgos-2.8.0/RcppAlgos/src/ComboGroupGeneral.cpp |only RcppAlgos-2.8.0/RcppAlgos/src/ComboGroupSame.cpp |only RcppAlgos-2.8.0/RcppAlgos/src/ComboGroupUnique.cpp |only RcppAlgos-2.8.0/RcppAlgos/src/ComboGroups.cpp | 356 -- RcppAlgos-2.8.0/RcppAlgos/src/ComboResMain.cpp | 2 RcppAlgos-2.8.0/RcppAlgos/src/Eratosthenes.cpp | 2 RcppAlgos-2.8.0/RcppAlgos/src/GroupClass.cpp |only RcppAlgos-2.8.0/RcppAlgos/src/Makevars | 1 RcppAlgos-2.8.0/RcppAlgos/src/NthResult.cpp | 2 RcppAlgos-2.8.0/RcppAlgos/src/PermuteResMain.cpp | 2 RcppAlgos-2.8.0/RcppAlgos/src/SetUpUtils.cpp | 13 RcppAlgos-2.8.0/RcppAlgos/src/ThreadSafeComb.cpp | 2 RcppAlgos-2.8.0/RcppAlgos/src/ThreadSafePerm.cpp | 2 RcppAlgos-2.8.0/RcppAlgos/src/cpp11.cpp | 16 RcppAlgos-2.8.0/RcppAlgos/tests/testthat/testComboGroups.R | 336 ++ RcppAlgos-2.8.0/RcppAlgos/vignettes/CombPermConstraints.Rmd | 60 RcppAlgos-2.8.0/RcppAlgos/vignettes/CombinatorialSampling.Rmd | 50 RcppAlgos-2.8.0/RcppAlgos/vignettes/CombinatoricsIterators.Rmd | 87 RcppAlgos-2.8.0/RcppAlgos/vignettes/ComputationalMathematics.Rmd | 36 RcppAlgos-2.8.0/RcppAlgos/vignettes/GeneralCombinatorics.Rmd | 32 RcppAlgos-2.8.0/RcppAlgos/vignettes/HighPerformanceBenchmarks.Rmd | 162 - RcppAlgos-2.8.0/RcppAlgos/vignettes/OtherCombinatorics.Rmd | 77 RcppAlgos-2.8.0/RcppAlgos/vignettes/SubsetSum.Rmd | 34 83 files changed, 4825 insertions(+), 4369 deletions(-)
Title: Quality Report Generation for MaxQuant and mzTab Results
Description: Generates Proteomics (PTX) quality control (QC) reports for shotgun LC-MS data analyzed with the
MaxQuant software suite (from .txt files) or mzTab files (ideally from OpenMS 'QualityControl' tool).
Reports are customizable (target thresholds, subsetting) and available in HTML or PDF format.
Published in J. Proteome Res., Proteomics Quality Control: Quality Control Software for MaxQuant Results (2015)
<doi:10.1021/acs.jproteome.5b00780>.
Author: Chris Bielow [aut, cre],
Juliane Schmachtenberg [ctb],
Swenja Wagner [ctb],
Patricia Scheil [ctb],
Tom Waschischek [ctb],
Guido Mastrobuoni [dtc, rev]
Maintainer: Chris Bielow <chris.bielow@bsc.fu-berlin.de>
Diff between PTXQC versions 1.0.16 dated 2023-05-17 and 1.0.17 dated 2023-07-10
DESCRIPTION | 10 +++++----- MD5 | 22 +++++++++++----------- NEWS | 3 +++ R/mzQC.R | 2 +- README.md | 6 +++--- inst/doc/PTXQC-Basic_Guide_for_R_users.html | 4 ++-- inst/doc/PTXQC-CustomizeReport.html | 4 ++-- inst/doc/PTXQC-DragNDrop.html | 4 ++-- inst/doc/PTXQC-FAQ.html | 4 ++-- inst/doc/PTXQC-Input_And_Output_Data.html | 4 ++-- inst/doc/PTXQC-ListOfMetrics.html | 4 ++-- tests/testthat/test_computeQC.R | 2 +- 12 files changed, 36 insertions(+), 33 deletions(-)
Title: Managing Larger Data on a GitHub Repository
Description: Because larger (> 50 MB) data files cannot easily be committed to git,
a different approach is required to manage data associated with an analysis in a
GitHub repository. This package provides a simple work-around by allowing larger
(up to 2 GB) data files to piggyback on a repository as assets attached to individual
GitHub releases. These files are not handled by git in any way, but instead are
uploaded, downloaded, or edited directly by calls through the GitHub API. These
data files can be versioned manually by creating different releases. This approach
works equally well with public or private repositories. Data can be uploaded
and downloaded programmatically from scripts. No authentication is required to
download data from public repositories.
Author: Carl Boettiger [aut, cre, cph]
,
Tan Ho [aut] ,
Mark Padgham [ctb] ,
Jeffrey O Hanson [ctb] ,
Kevin Kuo [ctb]
Maintainer: Carl Boettiger <cboettig@gmail.com>
Diff between piggyback versions 0.1.4 dated 2022-07-19 and 0.1.5 dated 2023-07-10
DESCRIPTION | 8 +- MD5 | 44 ++++++----- NAMESPACE | 1 NEWS.md | 22 +++++ R/pb_delete.R | 2 R/pb_download.R | 1 R/pb_info.R | 9 +- R/pb_release_create.R | 10 +- R/pb_release_delete.R | 7 - R/pb_upload.R | 30 ++++---- R/utils_caching.R |only R/zzz.R | 20 +++-- README.md | 4 - build/vignette.rds |binary inst/doc/alternatives.html | 37 ++++------ inst/doc/intro.Rmd | 2 inst/doc/intro.html | 140 ++++++++++++++++++++------------------ man/dot-pb_cache_clear.Rd |only man/pb_release_delete.Rd | 4 - tests/testthat/test-pb_download.R | 42 ++++++++++- tests/testthat/test-pb_info.R | 36 +++++++++ tests/testthat/test-utils.R | 1 tests/testthat/test-with_auth.R | 63 +++++++++++------ vignettes/intro.Rmd | 2 24 files changed, 310 insertions(+), 175 deletions(-)
Title: Meteorological Data Manipulation
Description: A set of functions for weather and climate data manipulation, and other helper functions, to support dynamic ecological modeling, particularly crop and crop disease modeling.
Author: Robert J. Hijmans [cre, aut],
Gerald Nelson [ctb],
Maarten Waterloo [ctb]
Maintainer: Robert J. Hijmans <r.hijmans@gmail.com>
Diff between meteor versions 0.3-4 dated 2019-08-08 and 0.4-4 dated 2023-07-10
meteor-0.3-4/meteor/inst/include/SimUtil.h |only meteor-0.4-4/meteor/DESCRIPTION | 23 - meteor-0.4-4/meteor/MD5 | 73 +++- meteor-0.4-4/meteor/NAMESPACE | 3 meteor-0.4-4/meteor/R/ET.R |only meteor-0.4-4/meteor/R/RcppExports.R | 36 ++ meteor-0.4-4/meteor/R/SVP.R |only meteor-0.4-4/meteor/R/aaa_classes.R | 11 meteor-0.4-4/meteor/R/bioclim.R |only meteor-0.4-4/meteor/R/dates.R | 67 +++ meteor-0.4-4/meteor/R/daylength.R | 79 +++- meteor-0.4-4/meteor/R/defwth.R |only meteor-0.4-4/meteor/R/generateRain.R |only meteor-0.4-4/meteor/R/generateTemp.R |only meteor-0.4-4/meteor/R/getwth.R |only meteor-0.4-4/meteor/R/globe.R |only meteor-0.4-4/meteor/R/humidity.R |only meteor-0.4-4/meteor/R/leafwet.R |only meteor-0.4-4/meteor/R/movingFun.R |only meteor-0.4-4/meteor/R/pet.R |only meteor-0.4-4/meteor/R/pwc.R |only meteor-0.4-4/meteor/R/solar.R |only meteor-0.4-4/meteor/R/temperature.R |only meteor-0.4-4/meteor/R/writeFSE.R | 42 +- meteor-0.4-4/meteor/R/wthPower.R |only meteor-0.4-4/meteor/R/wthPower2.R |only meteor-0.4-4/meteor/R/z_deprecated.R |only meteor-0.4-4/meteor/README.md |only meteor-0.4-4/meteor/inst/extdata/Netherlands_Swifterbant.csv | 1 meteor-0.4-4/meteor/inst/extdata/Philippines_LosBanos.csv |only meteor-0.4-4/meteor/inst/include/R_interface_util.h | 188 +---------- meteor-0.4-4/meteor/inst/include/SimpleIni.h |only meteor-0.4-4/meteor/inst/include/old_R_interface_util.h |only meteor-0.4-4/meteor/inst/include/old_SimUtil.h |only meteor-0.4-4/meteor/man/FSE.Rd | 15 meteor-0.4-4/meteor/man/day2hour.Rd |only meteor-0.4-4/meteor/man/dayTemp.Rd |only meteor-0.4-4/meteor/man/daylength.Rd | 17 meteor-0.4-4/meteor/man/evapotranspiration.Rd |only meteor-0.4-4/meteor/man/from.Rd |only meteor-0.4-4/meteor/man/generics.Rd | 2 meteor-0.4-4/meteor/man/globe.Rd |only meteor-0.4-4/meteor/man/meteor-package.Rd | 3 meteor-0.4-4/meteor/man/power_weather.Rd |only meteor-0.4-4/meteor/man/pwc.Rd |only meteor-0.4-4/meteor/man/radiation.Rd |only meteor-0.4-4/meteor/man/utci.Rd |only meteor-0.4-4/meteor/man/vaporpressure.Rd |only meteor-0.4-4/meteor/src/RcppExports.cpp | 151 ++++++++ meteor-0.4-4/meteor/src/SimUtil.h |only meteor-0.4-4/meteor/src/biovars.cpp |only meteor-0.4-4/meteor/src/pwc.cpp |only meteor-0.4-4/meteor/src/pwc_raster.cpp |only meteor-0.4-4/meteor/src/simmeteo.cpp | 4 meteor-0.4-4/meteor/src/wbgt.cpp |only meteor-0.4-4/meteor/src/weather_lib.h | 44 +- meteor-0.4-4/meteor/src/wth_rcpp.cpp | 30 + 57 files changed, 528 insertions(+), 261 deletions(-)
Title: Modelling with Sparse and Dense Matrices
Description: Modelling with sparse and dense 'Matrix' matrices, using
modular prediction and response module classes.
Author: Douglas Bates <bates@stat.wisc.edu> and Martin Maechler <maechler@stat.math.ethz.ch>
Maintainer: Martin Maechler <mmaechler+Matrix@gmail.com>
Diff between MatrixModels versions 0.5-1 dated 2022-09-11 and 0.5-2 dated 2023-07-10
ChangeLog | 10 ++++++++ DESCRIPTION | 12 ++++----- MD5 | 14 +++++------ NAMESPACE | 4 +-- R/modelMatrix.R | 62 +++++++++++++++++++++++++++++++++++++++++--------- man/glm4.Rd | 3 +- man/glpModel-class.Rd | 3 -- man/lm.fit.sparse.Rd | 2 - 8 files changed, 81 insertions(+), 29 deletions(-)
Title: Utility Functions for Forest Inventory Estimation and Analysis
Description: A set of tools for data wrangling, spatial data analysis,
statistical modeling (including direct, model-assisted, photo-based, and
small area tools), and USDA Forest Service data base tools. These tools are
aimed to help Foresters, Analysts, and Scientists extract and perform
analyses on USDA Forest Service data.
Author: Tracey Frescino [aut],
Chris Toney [aut],
Grayson White [aut, cre]
Maintainer: Grayson White <graysonwhite13@gmail.com>
Diff between FIESTAutils versions 1.1.7 dated 2023-05-27 and 1.1.8 dated 2023-07-10
DESCRIPTION | 8 ++--- MD5 | 36 +++++++++++----------- NAMESPACE | 4 ++ R/DBtestSQLite.R | 2 - R/cool_functions.R | 79 ++++++++++++++++++++++++++++++++++++++++++++------ R/datExportData.R | 11 +++--- R/pcheck.functions.R | 35 ++++++++++++++++++---- R/raster_analysis.R | 23 ++++++++------ R/raster_functions.R | 22 +++++++++---- R/write2sqlite.R | 22 +++++++------ README.md | 9 +++++ data/ref_codes.rda |binary data/ref_popType.rda |binary data/ref_statecd.rda |binary man/DEFAULT_NODATA.Rd | 2 - man/checks_desc.Rd | 2 - man/internal_desc.Rd | 12 +++++++ man/pcheck_desc.Rd | 1 man/write2_desc.Rd | 3 + 19 files changed, 199 insertions(+), 72 deletions(-)
Title: Diversity-Dependent Diversification
Description: Implements maximum likelihood and bootstrap methods based on
the diversity-dependent birth-death process to test whether
speciation or extinction are diversity-dependent, under various
models including various types of key innovations.
See Etienne et al. 2012, Proc. Roy. Soc. B 279: 1300-1309,
<DOI:10.1098/rspb.2011.1439>,
Etienne & Haegeman 2012, Am. Nat. 180: E75-E89,
<DOI:10.1086/667574>,
Etienne et al. 2016. Meth. Ecol. Evol. 7: 1092-1099,
<DOI:10.1111/2041-210X.12565> and
Laudanno et al. 2021. Syst. Biol. 70: 389–407,
<DOI:10.1093/sysbio/syaa048>.
Also contains functions to simulate the diversity-dependent
process.
Author: Rampal S. Etienne [aut, cre] ,
Bart Haegeman [aut] ,
Hanno Hildenbrandt [ctb] ,
Giovanni Laudanno [ctb]
Maintainer: Rampal S. Etienne <r.s.etienne@rug.nl>
Diff between DDD versions 5.2.1 dated 2023-02-22 and 5.2.2 dated 2023-07-10
DESCRIPTION | 8 ++++---- MD5 | 6 +++--- R/dd_loglik.R | 14 +++++++------- tests/testthat/test_DDD.R | 31 ++++++++++++++++--------------- 4 files changed, 30 insertions(+), 29 deletions(-)
Title: Analyzing Dichotomous Choice Contingent Valuation Data
Description: Functions for analyzing dichotomous choice contingent
valuation (CV) data. It provides functions for estimating parametric and
nonparametric models for single-, one-and-one-half-, and double-bounded
CV data. For details, see Aizaki et al. (2022) <doi:10.1007/s42081-022-00171-1>.
Author: Tomoaki Nakatani [aut, cph] ,
Hideo Aizaki [aut, cre],
Kazuo Sato [ctb]
Maintainer: Hideo Aizaki <azk-r@spa.nifty.com>
Diff between DCchoice versions 0.1.1 dated 2022-08-19 and 0.2.0 dated 2023-07-10
DESCRIPTION | 8 ++++---- MD5 | 10 ++++++---- NAMESPACE | 7 +++++-- R/dccvResponse.R |only inst/CITATION | 40 +++++++++++++++++++++------------------- man/DCchoice-package.Rd | 2 +- man/dccvResponse.Rd |only 7 files changed, 37 insertions(+), 30 deletions(-)
Title: A Distributed Worker Launcher Framework
Description: In computationally demanding analysis projects,
statisticians and data scientists asynchronously
deploy long-running tasks to distributed systems,
ranging from traditional clusters to cloud services.
The 'NNG'-powered 'mirai' R package by Gao (2023)
<https://CRAN.R-project.org/package=mirai> is a sleek
and sophisticated scheduler that
efficiently processes these intense workloads.
The 'crew' package extends 'mirai' with a unifying
interface for third-party worker launchers.
Inspiration also comes from packages.
'future' by Bengtsson (2021) <doi:10.32614/RJ-2021-048>,
'rrq' by FitzJohn and Ashton (2023) <https://github.com/mrc-ide/rrq>,
'clustermq' by Schubert (2019) <doi:10.1093/bioinformatics/btz284>),
and 'batchtools' by Lang, Bischel, and Surmann (2017)
<doi:10.21105/joss.00135>.
Author: William Michael Landau [aut, cre]
,
Daniel Woodie [ctb],
Eli Lilly and Company [cph]
Maintainer: William Michael Landau <will.landau@gmail.com>
Diff between crew versions 0.3.0 dated 2023-06-26 and 0.4.0 dated 2023-07-10
DESCRIPTION | 10 MD5 | 96 ++++--- NAMESPACE | 7 NEWS.md | 15 + R/crew_assert.R | 7 R/crew_clean.R |only R/crew_client.R | 78 +++++- R/crew_controller.R | 355 +++++++++++++++++++++++++--- R/crew_controller_group.R | 117 ++++++++- R/crew_controller_local.R | 4 R/crew_launcher.R | 7 R/crew_package.R | 7 R/crew_schedule.R | 2 R/utils_daemons.R | 49 ++- R/utils_units.R |only inst/WORDLIST | 4 inst/doc/groups.R | 21 + inst/doc/groups.Rmd | 24 + inst/doc/groups.html | 34 ++ inst/doc/plugins.R | 4 inst/doc/plugins.Rmd | 37 +- inst/doc/plugins.html | 164 +++++++----- inst/doc/shiny.Rmd | 11 inst/doc/shiny.html | 113 +------- man/crew-package.Rd | 1 man/crew_class_client.Rd | 10 man/crew_class_controller.Rd | 157 +++++++++++- man/crew_class_controller_group.Rd | 126 +++++++++ man/crew_clean.Rd |only man/crew_client.Rd | 29 ++ man/crew_controller_group.Rd | 1 man/crew_controller_local.Rd | 30 ++ tests/interactive/test-tls.R |only tests/launchers/test-launcher-system2.R | 4 tests/mirai/test-tallies.R | 10 tests/mirai/test-tls-max_tasks.R |only tests/mirai/test-tls-persistent.R |only tests/testthat/test-crew_assert.R | 4 tests/testthat/test-crew_clean.R |only tests/testthat/test-crew_client.R | 4 tests/testthat/test-crew_controller.R | 10 tests/testthat/test-crew_controller_group.R | 45 +++ tests/testthat/test-crew_controller_local.R | 205 ++++++++++++++++ tests/testthat/test-crew_launcher.R | 4 tests/testthat/test-crew_launcher_local.R | 3 tests/testthat/test-crew_schedule.R | 32 +- tests/testthat/test-crew_worker.R | 2 tests/testthat/test-utils_daemons.R |only tests/testthat/test-utils_units.R |only tests/throughput/test-backlog-tasks_max.R | 3 tests/throughput/test-map.R |only vignettes/groups.Rmd | 24 + vignettes/plugins.Rmd | 37 +- vignettes/shiny.Rmd | 11 54 files changed, 1573 insertions(+), 345 deletions(-)
Title: Univariate Feature Selection and Compound Covariate for
Predicting Survival
Description: Univariate feature selection and compound covariate methods under the Cox model with high-dimensional features (e.g., gene expressions).
Available are survival data for non-small-cell lung cancer patients with gene expressions (Chen et al 2007 New Engl J Med) <DOI:10.1056/NEJMoa060096>,
statistical methods in Emura et al (2012 PLoS ONE) <DOI:10.1371/journal.pone.0047627>,
Emura & Chen (2016 Stat Methods Med Res) <DOI:10.1177/0962280214533378>, and Emura et al (2019)<DOI:10.1016/j.cmpb.2018.10.020>.
Algorithms for generating correlated gene expressions are also available.
Estimation of survival functions via copula-graphic (CG) estimators is also implemented, which is useful for
sensitivity analyses under dependent censoring (Yeh et al 2023) <DOI:10.3390/biomedicines11030797>.
Author: Takeshi Emura, Hsuan-Yu Chen, Shigeyuki Matsui, Yi-Hau Chen
Maintainer: Takeshi Emura <takeshiemura@gmail.com>
Diff between compound.Cox versions 3.29 dated 2023-06-18 and 3.30 dated 2023-07-10
DESCRIPTION | 8 ++++---- MD5 | 8 ++++---- R/CG.test.R | 17 +++++++++++------ man/CG.test.Rd | 2 +- man/compound.Cox-package.Rd | 4 ++-- 5 files changed, 22 insertions(+), 17 deletions(-)
Title: Variable Importance and Variable Interaction Displays
Description: A suite of plots for displaying variable importance and two-way variable interaction jointly. Can also display partial dependence plots laid out in a pairs plot or 'zenplots' style.
Author: Alan Inglis [aut, cre],
Andrew Parnell [aut],
Catherine Hurley [aut]
Maintainer: Alan Inglis <alan.n.inglis@gmail.com>
Diff between vivid versions 0.2.7 dated 2023-04-11 and 0.2.8 dated 2023-07-10
DESCRIPTION | 8 - MD5 | 18 +- NAMESPACE | 7 R/vivi.R | 83 +++++++--- build/vignette.rds |binary inst/doc/vividVignette.R | 333 ++++++++++++++++++++++++-------------------- inst/doc/vividVignette.Rmd | 116 +++++++++++---- inst/doc/vividVignette.html | 326 ++++++++++++++++++++----------------------- man/vivi.Rd | 2 vignettes/vividVignette.Rmd | 116 +++++++++++---- 10 files changed, 595 insertions(+), 414 deletions(-)
Title: Carousels using the 'JavaScript' Library 'Swiper'
Description: Create carousels using the 'JavaScript' library 'Swiper' and
the package 'htmlwidgets'. The carousels can be displayed in the
'RStudio' viewer pane, in 'Shiny' applications and in 'R markdown'
documents. The package also provides a 'RStudio' addin allowing to
choose image files and to display them in the viewer pane.
Author: Stephane Laurent [aut, cre],
Vladimir Kharlampidi [cph]
Maintainer: Stephane Laurent <laurent_step@outlook.fr>
Diff between swipeR versions 0.1.0 dated 2022-12-12 and 1.0.0 dated 2023-07-10
DESCRIPTION | 11 MD5 | 30 NAMESPACE | 32 NEWS.md | 13 R/addin.R |only R/internal.R | 104 +- R/swipeR.R | 842 +++++++++++----------- README.md | 55 + inst/htmlwidgets/libs/swiper/swiper-bundle.css | 344 +++++--- inst/htmlwidgets/libs/swiper/swiper-bundle.min.js | 10 inst/htmlwidgets/swipeR.js | 144 +-- inst/htmlwidgets/swipeR.yaml | 20 inst/htmlwidgets/swipeRstyles.css | 80 +- inst/rstudio |only man/swipeR-shiny.Rd | 72 - man/swipeR.Rd | 744 +++++++++---------- man/swipeRwrapper.Rd | 36 17 files changed, 1338 insertions(+), 1199 deletions(-)
Title: Matched Samples that are Balanced and Representative by Design
Description: Includes functions for the construction of matched samples that are balanced and representative by design. Among others, these functions can be used for matching in observational studies with treated and control units, with cases and controls, in related settings with instrumental variables, and in discontinuity designs. Also, they can be used for the design of randomized experiments, for example, for matching before randomization. By default, 'designmatch' uses the 'highs' optimization solver, but its performance is greatly enhanced by the 'Gurobi' optimization solver and its associated R interface. For their installation, please follow the instructions at <https://www.gurobi.com/documentation/quickstart.html> and <https://www.gurobi.com/documentation/7.0/refman/r_api_overview.html>. We have also included directions in the gurobi_installation file in the inst folder.
Author: Jose R. Zubizarreta <zubizarreta@hcp.med.harvard.edu>, Cinar Kilcioglu <ckilcioglu16@gsb.columbia.edu>, Juan P. Vielma <jvielma@mit.edu>, Eric R. Cohn <ericcohn@g.harvard.edu>
Maintainer: Jose R. Zubizarreta <zubizarreta@hcp.med.harvard.edu>
Diff between designmatch versions 0.5.1 dated 2023-06-26 and 0.5.3 dated 2023-07-10
DESCRIPTION | 9 +-- MD5 | 9 +-- R/constraintmatrix.r | 114 ++++++++++++++++++++--------------------- R/nmatch.r | 20 +++---- R/onattach.r |only R/problemparameters.r | 138 +++++++++++++++++++++++++------------------------- 6 files changed, 145 insertions(+), 145 deletions(-)
Title: Clinical Trial Registry History
Description: Retrieves historical versions of clinical trial registry
entries from <https://ClinicalTrials.gov>. Package functionality
and implementation is documented in Carlisle (2022)
<DOI:10.1371/journal.pone.0270909>.
Author: Benjamin Gregory Carlisle [aut, cre]
Maintainer: Benjamin Gregory Carlisle <murph@bgcarlisle.com>
Diff between cthist versions 2.0.0 dated 2023-07-09 and 2.1.0 dated 2023-07-10
cthist-2.0.0/cthist/tests/testthat/test-clinicaltrials_gov_version_contacts.R |only cthist-2.0.0/cthist/tests/testthat/test-clinicaltrials_gov_version_sponsor_data.R |only cthist-2.1.0/cthist/DESCRIPTION | 6 +- cthist-2.1.0/cthist/MD5 | 23 ++++++---- cthist-2.1.0/cthist/NEWS.md | 13 +++++ cthist-2.1.0/cthist/R/clinicaltrials_gov_download.R | 15 ++++-- cthist-2.1.0/cthist/R/clinicaltrials_gov_version.R | 23 ++++++++-- cthist-2.1.0/cthist/README.md | 19 ++++++-- cthist-2.1.0/cthist/man/clinicaltrials_gov_version.Rd | 7 ++- cthist-2.1.0/cthist/tests/testthat/test-clinicaltrials_gov_version.R | 2 cthist-2.1.0/cthist/tests/testthat/test-clinicaltrials_gov_version_central_contacts.R |only cthist-2.1.0/cthist/tests/testthat/test-clinicaltrials_gov_version_enroltype.R |only cthist-2.1.0/cthist/tests/testthat/test-clinicaltrials_gov_version_lead_sponsor.R |only cthist-2.1.0/cthist/tests/testthat/test-clinicaltrials_gov_version_orgstudyid.R |only cthist-2.1.0/cthist/tests/testthat/test-clinicaltrials_gov_version_overall_contacts.R |only cthist-2.1.0/cthist/tests/testthat/test-clinicaltrials_gov_version_responsible_party.R |only cthist-2.1.0/cthist/tests/testthat/test-clinicaltrials_gov_version_secondaryids.R |only 17 files changed, 81 insertions(+), 27 deletions(-)
Title: Effortlessly Create Stunning Canadian Maps
Description: Simple and seamless access to a variety of 'StatCan' shapefiles for mapping Canadian provinces, regions, forward sortation areas, census divisions, and subdivisions using the popular 'ggplot2' package.
Author: Joelle Cayen [aut, cre]
Maintainer: Joelle Cayen <joelle.cayen@phac-aspc.gc.ca>
Diff between canadianmaps versions 1.0.0 dated 2022-02-01 and 1.3.0 dated 2023-07-10
DESCRIPTION | 19 ++++---- MD5 | 28 +++++++----- NAMESPACE | 31 ++++++------- NEWS.md | 7 ++- R/canadianmaps.R | 92 +++++++++++++++++++++++++++++++++------- data/CD.rda |only data/CSD.rda |only man/CD.Rd |only man/CSD.Rd |only man/FSA.Rd | 53 ++++++++++------------- man/PROV.Rd | 65 +++++++++++++--------------- man/REG.Rd | 65 +++++++++++++--------------- man/geom_cd.Rd |only man/geom_csd.Rd |only man/theme_map.Rd | 4 - man/theme_wallis.Rd | 4 - tests/testthat.R | 8 +-- tests/testthat/test-functions.R | 14 +++--- 18 files changed, 228 insertions(+), 162 deletions(-)
Title: Docker Client
Description: Work with containers over the Docker API. Rather than
using system calls to interact with a docker client, using the
API directly means that we can receive richer information from
docker. The interface in the package is automatically generated
using the 'OpenAPI' (a.k.a., 'swagger') specification, and all
return values are checked in order to make them type stable.
Author: Rich FitzJohn [aut, cre]
Maintainer: Rich FitzJohn <rich.fitzjohn@gmail.com>
Diff between stevedore versions 0.9.5 dated 2022-11-11 and 0.9.6 dated 2023-07-10
DESCRIPTION | 6 MD5 | 21 - R/docker_client_support.R | 2 README.md | 345 ++++++++++++------------- build/stage23.rdb |only build/stevedore.pdf |binary build/vignette.rds |binary inst/doc/cookbook.html | 14 - inst/doc/examples.html | 14 - inst/doc/stevedore.html | 14 - inst/spec/types.yaml | 2 tests/testthat/test-docker-client-containers.R | 1 12 files changed, 222 insertions(+), 197 deletions(-)
Title: Safetensors File Format
Description: A file format for storing tensors that is secure (doesn't allow for
code execution), fast and simple to implement. 'safetensors' also enables cross
language and cross frameworks compatibility making it an ideal format for
storing machine learning model weights.
Author: Daniel Falbel [aut, cre],
Posit [cph]
Maintainer: Daniel Falbel <daniel@posit.co>
Diff between safetensors versions 0.1.0 dated 2023-06-13 and 0.1.1 dated 2023-07-10
DESCRIPTION | 6 ++--- MD5 | 13 ++++++---- NAMESPACE | 1 NEWS.md |only R/safetensors.R | 2 + R/write.R | 24 ++++++++++++++------ tests/testthat/_snaps |only tests/testthat/safetensors/hello2.safetensors |only tests/testthat/test-write.R | 31 ++++++++++++++++++++++++++ 9 files changed, 62 insertions(+), 15 deletions(-)
Title: Retrieve Genomic and Clinical Data from CBioPortal Including
TCGA Data
Description: The Cancer Genome Atlas (TCGA) is a program aimed at improving our understanding of Cancer Biology. Several TCGA Datasets are available online. 'TCGAretriever' helps accessing and downloading TCGA data hosted on 'cBioPortal' via its Web Interface (see <http://www.cbioportal.org/> for more information).
Author: Damiano Fantini
Maintainer: Damiano Fantini <damiano.fantini@gmail.com>
Diff between TCGAretriever versions 1.5 dated 2019-12-17 and 1.7 dated 2023-07-10
TCGAretriever-1.5/TCGAretriever/R/TCGAretr_scr.R |only TCGAretriever-1.5/TCGAretriever/man/get_protein_data.Rd |only TCGAretriever-1.5/TCGAretriever/man/get_protein_info.Rd |only TCGAretriever-1.7/TCGAretriever/DESCRIPTION | 23 TCGAretriever-1.7/TCGAretriever/MD5 | 43 TCGAretriever-1.7/TCGAretriever/NAMESPACE | 3 TCGAretriever-1.7/TCGAretriever/R/tcgaretriever_v_1_7.R |only TCGAretriever-1.7/TCGAretriever/build/vignette.rds |binary TCGAretriever-1.7/TCGAretriever/inst/doc/getting_started_with_TCGAretriever.R | 122 + TCGAretriever-1.7/TCGAretriever/inst/doc/getting_started_with_TCGAretriever.Rmd | 232 ++- TCGAretriever-1.7/TCGAretriever/inst/doc/getting_started_with_TCGAretriever.html | 661 +++++++--- TCGAretriever-1.7/TCGAretriever/man/TCGAretriever-package.Rd | 16 TCGAretriever-1.7/TCGAretriever/man/basic_tcga_query.Rd | 17 TCGAretriever-1.7/TCGAretriever/man/expand_cases.Rd | 12 TCGAretriever-1.7/TCGAretriever/man/fetch_all_tcgadata.Rd | 21 TCGAretriever-1.7/TCGAretriever/man/get_cancer_studies.Rd | 10 TCGAretriever-1.7/TCGAretriever/man/get_cancer_types.Rd | 10 TCGAretriever-1.7/TCGAretriever/man/get_case_lists.Rd | 15 TCGAretriever-1.7/TCGAretriever/man/get_clinical_data.Rd | 17 TCGAretriever-1.7/TCGAretriever/man/get_ext_mutation.Rd | 18 TCGAretriever-1.7/TCGAretriever/man/get_genetic_profiles.Rd | 7 TCGAretriever-1.7/TCGAretriever/man/get_profile_data.Rd | 20 TCGAretriever-1.7/TCGAretriever/man/make_groups.Rd | 7 TCGAretriever-1.7/TCGAretriever/man/show_head.Rd |only TCGAretriever-1.7/TCGAretriever/vignettes/getting_started_with_TCGAretriever.Rmd | 232 ++- 25 files changed, 1041 insertions(+), 445 deletions(-)
Title: Semiparametric Likelihood Estimation with Errors in Variables
Description: Efficient regression analysis under general two-phase sampling, where Phase I includes error-prone data and Phase II contains validated data on a subset.
Author: Sarah Lotspeich [aut],
Ran Tao [aut, cre],
Joey Sherrill [prg],
Jiangmei Xiong [ctb]
Maintainer: Ran Tao <r.tao@vanderbilt.edu>
Diff between sleev versions 1.0.2 dated 2022-05-24 and 1.0.3 dated 2023-07-10
DESCRIPTION | 16 ++- MD5 | 20 ++-- R/RcppExports.R | 238 ++++++++++++++++++++++++++--------------------------- R/data.R | 63 +++++++------- R/logistic2ph.R | 56 ------------ build/vignette.rds |binary data/mock.vccc.rda |binary man/logistic2ph.Rd | 57 ------------ man/mock.vccc.Rd | 9 +- src/Makevars | 6 - src/Makevars.win | 6 - 11 files changed, 184 insertions(+), 287 deletions(-)
Title: 'SAS' Linear Model
Description: This is a core implementation of 'SAS' procedures for linear models - GLM, REG, ANOVA, TTEST, FREQ, and UNIVARIATE. Some R packages provide type II and type III SS. However, the results of nested and complex designs are often different from those of 'SAS.' Different results does not necessarily mean incorrectness. However, many wants the same results to SAS. This package aims to achieve that.
Reference: Littell RC, Stroup WW, Freund RJ (2002, ISBN:0-471-22174-0).
Author: Kyun-Seop Bae [aut]
Maintainer: Kyun-Seop Bae <k@acr.kr>
Diff between sasLM versions 0.9.9 dated 2023-06-05 and 0.9.10 dated 2023-07-10
sasLM-0.9.10/sasLM/DESCRIPTION | 6 ++-- sasLM-0.9.10/sasLM/MD5 | 14 +++++----- sasLM-0.9.10/sasLM/R/sysdata.rda |binary sasLM-0.9.10/sasLM/inst/NEWS.Rd | 6 ++++ sasLM-0.9.10/sasLM/inst/doc/Report-Different-Simplest2307101241.pdf |only sasLM-0.9.10/sasLM/inst/doc/Report-NOT-OKs2307101241.pdf |only sasLM-0.9.10/sasLM/inst/doc/Validation-Report-GLM-2307101242.pdf |only sasLM-0.9.10/sasLM/inst/doc/sasLM-manual.pdf |binary sasLM-0.9.9/sasLM/inst/doc/Report-Different-Simplest2305111808.pdf |only sasLM-0.9.9/sasLM/inst/doc/Report-NOT-OKs2305111809.pdf |only sasLM-0.9.9/sasLM/inst/doc/Validation-Report-GLM-2305111840.pdf |only 11 files changed, 16 insertions(+), 10 deletions(-)
Title: Multiform Seq2Seq Model for Time-Feature Analysis
Description: Seq2seq time-feature analysis based on variational model, with a wide range of distributions available for the latent variable.
Author: Giancarlo Vercellino
Maintainer: Giancarlo Vercellino <giancarlo.vercellino@gmail.com>
Diff between proteus versions 1.1.0 dated 2023-03-08 and 1.1.1 dated 2023-07-10
DESCRIPTION | 8 ++++---- MD5 | 14 +++++++------- NEWS.md | 4 ++++ R/main1.R | 14 ++++++++++---- R/main2.R | 5 +++-- man/proteus.Rd | 4 ++++ man/proteus_random_search.Rd | 5 ++++- tests/testthat/test-main.R | 12 +++++++----- 8 files changed, 43 insertions(+), 23 deletions(-)
Title: Precipitation R Recipes
Description: An open-access tool/framework to download, validate, visualize, and
analyze multi-source precipitation data. More information and an example of implementation can
be found in Vargas Godoy and Markonis (2023,
<doi:10.1016/j.envsoft.2023.105711>).
Author: Mijael Rodrigo Vargas Godoy [aut, cre]
,
Yannis Markonis [aut, ths]
Maintainer: Mijael Rodrigo Vargas Godoy <mirovago@gmail.com>
Diff between pRecipe versions 2.5.0 dated 2023-06-13 and 3.0.0 dated 2023-07-10
pRecipe-2.5.0/pRecipe/R/aggregate_brick.R |only pRecipe-2.5.0/pRecipe/R/aux_ts.R |only pRecipe-2.5.0/pRecipe/R/brick_to_dt.R |only pRecipe-2.5.0/pRecipe/R/brick_trends.R |only pRecipe-2.5.0/pRecipe/R/exists_check.R |only pRecipe-2.5.0/pRecipe/R/fix_name_out.R |only pRecipe-2.5.0/pRecipe/R/gpm_cz_ts.R |only pRecipe-2.5.0/pRecipe/R/make_ts.R |only pRecipe-2.5.0/pRecipe/R/mon_to_year.R |only pRecipe-2.5.0/pRecipe/R/name_check.R |only pRecipe-2.5.0/pRecipe/R/rescale_data.R |only pRecipe-2.5.0/pRecipe/R/save_nc.R |only pRecipe-2.5.0/pRecipe/R/show_info.R |only pRecipe-2.5.0/pRecipe/R/subset_space.R |only pRecipe-2.5.0/pRecipe/R/subset_spacetime.R |only pRecipe-2.5.0/pRecipe/R/subset_time.R |only pRecipe-2.5.0/pRecipe/R/weighted_average.R |only pRecipe-2.5.0/pRecipe/data/gpm_cz_ts.rda |only pRecipe-2.5.0/pRecipe/inst/doc/pRecipe.R |only pRecipe-2.5.0/pRecipe/inst/doc/pRecipe.Rmd |only pRecipe-2.5.0/pRecipe/inst/doc/pRecipe.html |only pRecipe-2.5.0/pRecipe/man/aggregate_brick.Rd |only pRecipe-2.5.0/pRecipe/man/aux_ts.Rd |only pRecipe-2.5.0/pRecipe/man/brick_to_dt.Rd |only pRecipe-2.5.0/pRecipe/man/brick_trends.Rd |only pRecipe-2.5.0/pRecipe/man/exists_check.Rd |only pRecipe-2.5.0/pRecipe/man/fix_name_out.Rd |only pRecipe-2.5.0/pRecipe/man/gpm_cz_ts.Rd |only pRecipe-2.5.0/pRecipe/man/make_ts.Rd |only pRecipe-2.5.0/pRecipe/man/mon_to_year.Rd |only pRecipe-2.5.0/pRecipe/man/name_check.Rd |only pRecipe-2.5.0/pRecipe/man/rescale_data.Rd |only pRecipe-2.5.0/pRecipe/man/save_nc.Rd |only pRecipe-2.5.0/pRecipe/man/show_info.Rd |only pRecipe-2.5.0/pRecipe/man/subset_space.Rd |only pRecipe-2.5.0/pRecipe/man/subset_spacetime.Rd |only pRecipe-2.5.0/pRecipe/man/subset_time.Rd |only pRecipe-2.5.0/pRecipe/man/weighted_average.Rd |only pRecipe-2.5.0/pRecipe/vignettes/pRecipe.Rmd |only pRecipe-2.5.0/pRecipe/vignettes/plots/map_ceu.png |only pRecipe-2.5.0/pRecipe/vignettes/plots/map_cze.png |only pRecipe-3.0.0/pRecipe/DESCRIPTION | 22 +- pRecipe-3.0.0/pRecipe/MD5 | 165 ++++++++--------- pRecipe-3.0.0/pRecipe/NAMESPACE | 31 ++- pRecipe-3.0.0/pRecipe/NEWS.md | 13 + pRecipe-3.0.0/pRecipe/R/aux_date.R |only pRecipe-3.0.0/pRecipe/R/aux_info.R |only pRecipe-3.0.0/pRecipe/R/crop_data.R | 98 ++++++---- pRecipe-3.0.0/pRecipe/R/csi.R | 2 pRecipe-3.0.0/pRecipe/R/download_data.R | 70 +++---- pRecipe-3.0.0/pRecipe/R/far.R | 2 pRecipe-3.0.0/pRecipe/R/fldmean.R |only pRecipe-3.0.0/pRecipe/R/globals.R | 5 pRecipe-3.0.0/pRecipe/R/gpm_bol_ts.R |only pRecipe-3.0.0/pRecipe/R/gpm_global_ts.R | 4 pRecipe-3.0.0/pRecipe/R/gpm_subset_ts.R | 6 pRecipe-3.0.0/pRecipe/R/infoNC.R |only pRecipe-3.0.0/pRecipe/R/label.R |only pRecipe-3.0.0/pRecipe/R/muldpm.R |only pRecipe-3.0.0/pRecipe/R/nse.R | 2 pRecipe-3.0.0/pRecipe/R/pRecipe.R | 6 pRecipe-3.0.0/pRecipe/R/plot_box.R | 116 ++++++++++-- pRecipe-3.0.0/pRecipe/R/plot_density.R | 103 ++++++++-- pRecipe-3.0.0/pRecipe/R/plot_heatmap.R | 148 ++++++++++++--- pRecipe-3.0.0/pRecipe/R/plot_line.R | 108 ++++++++--- pRecipe-3.0.0/pRecipe/R/plot_map.R | 208 ++++++++++++++++------ pRecipe-3.0.0/pRecipe/R/plot_summary.R | 85 +++++++- pRecipe-3.0.0/pRecipe/R/plot_taylor.R | 39 ++-- pRecipe-3.0.0/pRecipe/R/pod.R | 2 pRecipe-3.0.0/pRecipe/R/remap.R |only pRecipe-3.0.0/pRecipe/R/saveNC.R |only pRecipe-3.0.0/pRecipe/R/sellonlatbox.R |only pRecipe-3.0.0/pRecipe/R/selyear.R |only pRecipe-3.0.0/pRecipe/R/subset_data.R |only pRecipe-3.0.0/pRecipe/R/tabular.R |only pRecipe-3.0.0/pRecipe/R/trend.R |only pRecipe-3.0.0/pRecipe/R/yearstat.R |only pRecipe-3.0.0/pRecipe/build/partial.rdb |only pRecipe-3.0.0/pRecipe/build/vignette.rds |binary pRecipe-3.0.0/pRecipe/data/gpm_bol_ts.rda |only pRecipe-3.0.0/pRecipe/data/gpm_global_ts.rda |binary pRecipe-3.0.0/pRecipe/data/gpm_subset_ts.rda |binary pRecipe-3.0.0/pRecipe/inst/WORDLIST | 6 pRecipe-3.0.0/pRecipe/inst/doc/introduction.R |only pRecipe-3.0.0/pRecipe/inst/doc/introduction.Rmd |only pRecipe-3.0.0/pRecipe/inst/doc/introduction.html |only pRecipe-3.0.0/pRecipe/man/aux_date.Rd |only pRecipe-3.0.0/pRecipe/man/aux_info.Rd |only pRecipe-3.0.0/pRecipe/man/crop_data.Rd | 31 ++- pRecipe-3.0.0/pRecipe/man/csi.Rd | 2 pRecipe-3.0.0/pRecipe/man/download_data.Rd | 10 - pRecipe-3.0.0/pRecipe/man/far.Rd | 2 pRecipe-3.0.0/pRecipe/man/fldmean.Rd |only pRecipe-3.0.0/pRecipe/man/gpm_bol_ts.Rd |only pRecipe-3.0.0/pRecipe/man/gpm_global_ts.Rd | 4 pRecipe-3.0.0/pRecipe/man/gpm_subset_ts.Rd | 6 pRecipe-3.0.0/pRecipe/man/infoNC.Rd |only pRecipe-3.0.0/pRecipe/man/label.Rd |only pRecipe-3.0.0/pRecipe/man/muldpm.Rd |only pRecipe-3.0.0/pRecipe/man/nse.Rd | 2 pRecipe-3.0.0/pRecipe/man/pRecipe-package.Rd | 9 pRecipe-3.0.0/pRecipe/man/plot_box.Rd | 36 +++ pRecipe-3.0.0/pRecipe/man/plot_density.Rd | 36 +++ pRecipe-3.0.0/pRecipe/man/plot_heatmap.Rd | 32 ++- pRecipe-3.0.0/pRecipe/man/plot_line.Rd | 36 +++ pRecipe-3.0.0/pRecipe/man/plot_map.Rd | 24 ++ pRecipe-3.0.0/pRecipe/man/plot_summary.Rd | 36 +++ pRecipe-3.0.0/pRecipe/man/plot_taylor.Rd | 31 ++- pRecipe-3.0.0/pRecipe/man/pod.Rd | 2 pRecipe-3.0.0/pRecipe/man/remap.Rd |only pRecipe-3.0.0/pRecipe/man/saveNC.Rd |only pRecipe-3.0.0/pRecipe/man/sellonlatbox.Rd |only pRecipe-3.0.0/pRecipe/man/selyear.Rd |only pRecipe-3.0.0/pRecipe/man/subset_data.Rd |only pRecipe-3.0.0/pRecipe/man/tabular.Rd |only pRecipe-3.0.0/pRecipe/man/trend.Rd |only pRecipe-3.0.0/pRecipe/man/yearstat.Rd |only pRecipe-3.0.0/pRecipe/vignettes/introduction.Rmd |only pRecipe-3.0.0/pRecipe/vignettes/pRecipe.bib | 10 + pRecipe-3.0.0/pRecipe/vignettes/plots/map.png |binary pRecipe-3.0.0/pRecipe/vignettes/plots/map_bo.png |only pRecipe-3.0.0/pRecipe/vignettes/plots/map_sa.png |only pRecipe-3.0.0/pRecipe/vignettes/plots/summary.png |binary 123 files changed, 1116 insertions(+), 434 deletions(-)
Title: Food Composition Information and Dietary Assessment
Description: Provides a tool set for food information and dietary assessment. It
uses food composition data from several reference databases, including: 'USDA' (United States),
'CIQUAL' (France), 'BEDCA' (Spain), 'CNF' (Canada) and 'STFCJ' (Japan). 'NutrienTrackeR' calculates
the intake levels for both macronutrient and micronutrients, and compares them with the recommended
dietary allowances (RDA). It includes a number of visualization tools, such as time series
plots of nutrient intake, and pie-charts showing the main foods contributing to the intake
level of a given nutrient. A shiny app exposing the main functionalities of the package is also
provided.
Author: Andrea Rodriguez-Martinez [aut],
Rafael Ayala [aut, cre] ,
Mark Balchunas [aut],
Daniel Gutierrez-Del-Rio [aut]
,
Ting-Hua Chen [aut] ,
Yacine Debbabi [aut],
Lara Selles Vidal [aut]
Maintainer: Rafael Ayala <rafael.ayala@oist.jp>
Diff between NutrienTrackeR versions 1.2.0 dated 2021-11-14 and 1.3.0 dated 2023-07-10
DESCRIPTION | 30 + MD5 | 34 - NEWS | 3 build/vignette.rds |binary data/NIH_nutrient_recommendations.rda |binary data/food_composition_data.rda |binary data/nutrient_group.rda |binary data/sample_diet_USDA.rda |binary inst/doc/NutrienTrackeR.Rmd | 5 inst/doc/NutrienTrackeR.html | 597 +++++++++++++++++++++++++++++++--- man/dietBalance.Rd | 2 man/findFoodName.Rd | 2 man/food_composition_data.Rd | 5 man/getFoodGroups.Rd | 2 man/getNutrientNames.Rd | 2 man/nutrientsTimeTrend.Rd | 2 man/subsetFoodRichIn.Rd | 2 vignettes/NutrienTrackeR.Rmd | 5 18 files changed, 617 insertions(+), 74 deletions(-)
More information about NutrienTrackeR at CRAN
Permanent link
Title: Hierarchical Clustering of Univariate (1d) Data
Description: Univariate agglomerative hierarchical clustering with a comprehensive list of choices of a linkage function in O(n*log n) time. The better algorithmic time complexity is paired with an efficient 'C++' implementation.
Author: Szymon Nowakowski [aut, cre]
Maintainer: Szymon Nowakowski <s.nowakowski@mimuw.edu.pl>
Diff between hclust1d versions 0.0.1 dated 2023-04-11 and 0.1.0 dated 2023-07-10
hclust1d-0.0.1/hclust1d/tests/testthat/test-hclust1d-single.R |only hclust1d-0.1.0/hclust1d/DESCRIPTION | 13 hclust1d-0.1.0/hclust1d/MD5 | 51 ++- hclust1d-0.1.0/hclust1d/NAMESPACE | 2 hclust1d-0.1.0/hclust1d/NEWS.md | 23 + hclust1d-0.1.0/hclust1d/R/RcppExports.R | 8 hclust1d-0.1.0/hclust1d/R/hclust1d.R | 135 ++++++++-- hclust1d-0.1.0/hclust1d/R/hclust1d_package.R | 33 +- hclust1d-0.1.0/hclust1d/R/onAttach.R | 11 hclust1d-0.1.0/hclust1d/R/supported_dist.methods.R |only hclust1d-0.1.0/hclust1d/R/supported_methods.R |only hclust1d-0.1.0/hclust1d/README.md | 62 ++-- hclust1d-0.1.0/hclust1d/build |only hclust1d-0.1.0/hclust1d/inst |only hclust1d-0.1.0/hclust1d/man/hclust1d-package.Rd |only hclust1d-0.1.0/hclust1d/man/hclust1d.Rd | 107 ++++++- hclust1d-0.1.0/hclust1d/man/supported_dist.methods.Rd |only hclust1d-0.1.0/hclust1d/man/supported_methods.Rd |only hclust1d-0.1.0/hclust1d/src/RcppExports.cpp | 25 + hclust1d-0.1.0/hclust1d/src/dedistance.cpp | 1 hclust1d-0.1.0/hclust1d/src/hclust1d_heapbased.cpp |only hclust1d-0.1.0/hclust1d/src/hclust1d_single.cpp | 32 -- hclust1d-0.1.0/hclust1d/src/heap.cpp |only hclust1d-0.1.0/hclust1d/src/heap.h |only hclust1d-0.1.0/hclust1d/src/order.cpp |only hclust1d-0.1.0/hclust1d/src/order.h |only hclust1d-0.1.0/hclust1d/src/sqrt.cpp |only hclust1d-0.1.0/hclust1d/tests/testthat/test-hclust1d-calls.R |only hclust1d-0.1.0/hclust1d/tests/testthat/test-hclust1d-double_values.R |only hclust1d-0.1.0/hclust1d/tests/testthat/test-hclust1d-single_values.R |only hclust1d-0.1.0/hclust1d/tests/testthat/test-hclust1d-triple_values.R |only hclust1d-0.1.0/hclust1d/tests/testthat/test-hclust1d-true_median.R |only hclust1d-0.1.0/hclust1d/vignettes |only 33 files changed, 370 insertions(+), 133 deletions(-)
Title: 'GeoNetwork' API R Interface
Description: Provides an R interface to the 'GeoNetwork' API (<https://geonetwork-opensource.org/#api>) allowing to upload and publish metadata in a 'GeoNetwork' web-application and expose it to OGC CSW.
Author: Emmanuel Blondel [aut, cre]
Maintainer: Emmanuel Blondel <emmanuel.blondel1@gmail.com>
Diff between geonapi versions 0.6-1 dated 2022-08-19 and 0.7 dated 2023-07-10
DESCRIPTION | 10 - MD5 | 16 +-- NEWS.md | 12 ++ R/GNOpenAPIManager.R | 97 ++++++++++++++++++ R/GNUtils.R | 5 README.md | 4 inst/extdata/examples/metadata.xml | 196 +++++++++++++++++++++++++++++-------- man/GNOpenAPIManager.Rd | 61 +++++++++++ man/geonapi.Rd | 10 - 9 files changed, 340 insertions(+), 71 deletions(-)
Title: Exploratory Principal Component Analysis
Description: Exploratory principal component analysis for large-scale dataset, including sparse principal component analysis and sparse matrix approximation.
Author: Fan Chen [aut, cre]
Maintainer: Fan Chen <fan.chen@wisc.edu>
Diff between epca versions 1.0.1 dated 2023-02-07 and 1.1.0 dated 2023-07-10
DESCRIPTION | 14 - MD5 | 50 +++--- NEWS.md | 5 R/core.R | 372 +++++++++++++++++++++++++----------------------- R/utility.R | 241 +++++++++++++++++-------------- build/vignette.rds |binary inst/doc/epca.R | 41 ++--- inst/doc/epca.Rmd | 91 +++++------ inst/doc/epca.html | 352 +++++++++++++++++++++------------------------ man/absmin.Rd | 6 man/absmin.criteria.Rd | 4 man/cpve.Rd | 10 - man/inner.Rd | 13 - man/norm.Lp.Rd | 4 man/polar.Rd | 10 - man/print.sca.Rd | 2 man/prs.Rd | 34 ++-- man/pve.Rd | 15 + man/rootmatrix.Rd | 5 man/rotation.Rd | 16 +- man/sca.Rd | 67 ++++---- man/shrinkage.Rd | 2 man/sma.Rd | 68 ++++---- man/varimax.criteria.Rd | 4 man/vgQ.absmin.Rd | 4 vignettes/epca.Rmd | 91 +++++------ 26 files changed, 768 insertions(+), 753 deletions(-)
Title: Improved Access for Blind Users
Description: Blind users do not have access to the graphical output from R
without printing the content of graphics windows to an embosser of
some kind. This is not as immediate as is required for efficient
access to statistical output. The functions here are created so that
blind people can make even better use of R. This includes the text
descriptions of graphs, convenience functions to replace the
functionality offered in many GUI front ends, and experimental
functionality for optimising graphical content to prepare it for
embossing as tactile images.
Author: A. Jonathan R. Godfrey [aut, cre]
,
Debra Warren [aut],
Donal Fitzpatrick [ctb] ,
Duncan Murdoch [ctb],
Greg Snow [ctb] ,
Henrik Bengtsson [ctb] ,
James Curtis [ctb],
James Thompson [aut] ,
JooYoung Seo [ctb],
Marshall Flax [ctb],
Paul Murrell [aut] [...truncated...]
Maintainer: A. Jonathan R. Godfrey <a.j.godfrey@massey.ac.nz>
Diff between BrailleR versions 0.32.1 dated 2021-10-22 and 1.0.2 dated 2023-07-10
BrailleR-0.32.1/BrailleR/inst/CITATION |only BrailleR-0.32.1/BrailleR/inst/Templates/Blocking.Rmd |only BrailleR-0.32.1/BrailleR/inst/Templates/GroupSummary.R |only BrailleR-0.32.1/BrailleR/inst/Templates/NormalityTests.R |only BrailleR-0.32.1/BrailleR/inst/Templates/OneWay.Rmd |only BrailleR-0.32.1/BrailleR/inst/Templates/TukeyHSD.R |only BrailleR-0.32.1/BrailleR/inst/Templates/WriteROptions |only BrailleR-0.32.1/BrailleR/inst/Web |only BrailleR-0.32.1/BrailleR/inst/doc/GettingStarted.R |only BrailleR-0.32.1/BrailleR/inst/doc/GettingStarted.Rmd |only BrailleR-0.32.1/BrailleR/inst/doc/GettingStarted.html |only BrailleR-0.32.1/BrailleR/man/MakeSlideShow.Rd |only BrailleR-0.32.1/BrailleR/man/VI.ggplot.Rd |only BrailleR-0.32.1/BrailleR/vignettes/GettingStarted.Rmd |only BrailleR-1.0.2/BrailleR/DESCRIPTION | 104 BrailleR-1.0.2/BrailleR/MD5 | 311 +- BrailleR-1.0.2/BrailleR/NAMESPACE | 21 BrailleR-1.0.2/BrailleR/NEWS.md | 863 +++---- BrailleR-1.0.2/BrailleR/R/AddXMLInternal.R | 1195 +++++++--- BrailleR-1.0.2/BrailleR/R/AddXMLMethod.R | 526 ++-- BrailleR-1.0.2/BrailleR/R/Augment.R | 29 BrailleR-1.0.2/BrailleR/R/AutoSpellCheck.R | 11 BrailleR-1.0.2/BrailleR/R/BrailleRUsefulLinks.R | 19 BrailleR-1.0.2/BrailleR/R/BrowseSVG.R | 194 - BrailleR-1.0.2/BrailleR/R/CleanCSV.R | 6 BrailleR-1.0.2/BrailleR/R/DataViewer.R | 5 BrailleR-1.0.2/BrailleR/R/Describe.R | 200 + BrailleR-1.0.2/BrailleR/R/FindReplace.R | 17 BrailleR-1.0.2/BrailleR/R/GetPython.R | 16 BrailleR-1.0.2/BrailleR/R/GetSoftware.R | 2 BrailleR-1.0.2/BrailleR/R/GetWriteR.R | 36 BrailleR-1.0.2/BrailleR/R/GettingStarted.R | 19 BrailleR-1.0.2/BrailleR/R/Internal.R | 74 BrailleR-1.0.2/BrailleR/R/MakeAccessibleSVGInternal.R |only BrailleR-1.0.2/BrailleR/R/MakeAccessibleSVGMethod.R | 87 BrailleR-1.0.2/BrailleR/R/MakeAdminBatch.R |only BrailleR-1.0.2/BrailleR/R/MakeBatch.R | 61 BrailleR-1.0.2/BrailleR/R/MakeQmdFiles.R |only BrailleR-1.0.2/BrailleR/R/MakeReadable.R | 101 BrailleR-1.0.2/BrailleR/R/MakeRmdFiles.R | 6 BrailleR-1.0.2/BrailleR/R/MakeRprofile.R | 8 BrailleR-1.0.2/BrailleR/R/MakeSlideShow.R | 22 BrailleR-1.0.2/BrailleR/R/Messages.R | 209 + BrailleR-1.0.2/BrailleR/R/NewFunction.R | 18 BrailleR-1.0.2/BrailleR/R/OneFactor.R | 137 - BrailleR-1.0.2/BrailleR/R/OnePredictor.R | 139 - BrailleR-1.0.2/BrailleR/R/Options.R | 157 - BrailleR-1.0.2/BrailleR/R/PandocAll.R | 5 BrailleR-1.0.2/BrailleR/R/PrepareWriteR.R | 33 BrailleR-1.0.2/BrailleR/R/ProcessAll.R | 6 BrailleR-1.0.2/BrailleR/R/Quarto.R |only BrailleR-1.0.2/BrailleR/R/R2txtJG.R | 2 BrailleR-1.0.2/BrailleR/R/RemoveBOM.R | 2 BrailleR-1.0.2/BrailleR/R/RewriteSVG.R | 377 ++- BrailleR-1.0.2/BrailleR/R/SVGThis.R | 343 +- BrailleR-1.0.2/BrailleR/R/ScatterPlot.R | 29 BrailleR-1.0.2/BrailleR/R/SetupBrailleR.R | 20 BrailleR-1.0.2/BrailleR/R/SpellCheck.R | 12 BrailleR-1.0.2/BrailleR/R/SpellCheckFiles.R | 2 BrailleR-1.0.2/BrailleR/R/Stop.R |only BrailleR-1.0.2/BrailleR/R/TSPlot.R | 56 BrailleR-1.0.2/BrailleR/R/ThreeFactors.R | 40 BrailleR-1.0.2/BrailleR/R/TwoFactors.R | 331 +- BrailleR-1.0.2/BrailleR/R/UniDesc.R | 42 BrailleR-1.0.2/BrailleR/R/UseTemplate.R | 47 BrailleR-1.0.2/BrailleR/R/VIInternals.R | 196 + BrailleR-1.0.2/BrailleR/R/VIMethod1_JG.R | 59 BrailleR-1.0.2/BrailleR/R/VIMethod2_TB.R | 5 BrailleR-1.0.2/BrailleR/R/VIMethod3_TH.R | 1133 ++++++--- BrailleR-1.0.2/BrailleR/R/ViewSVG.R | 94 BrailleR-1.0.2/BrailleR/R/WTF.R | 6 BrailleR-1.0.2/BrailleR/R/Warnings.R | 116 BrailleR-1.0.2/BrailleR/R/WhatIs.R | 14 BrailleR-1.0.2/BrailleR/R/WhereXY.R | 6 BrailleR-1.0.2/BrailleR/R/WinGet.R |only BrailleR-1.0.2/BrailleR/R/WriteR.R | 11 BrailleR-1.0.2/BrailleR/R/dotplots.R | 6 BrailleR-1.0.2/BrailleR/R/installPython.R | 4 BrailleR-1.0.2/BrailleR/R/notepad.R | 2 BrailleR-1.0.2/BrailleR/R/pdf2html.R | 6 BrailleR-1.0.2/BrailleR/R/zzz.R | 2 BrailleR-1.0.2/BrailleR/build/vignette.rds |binary BrailleR-1.0.2/BrailleR/inst/Python/WriteR/HelpMenuEvents.py | 2 BrailleR-1.0.2/BrailleR/inst/Python/WriteR/RMarkdownEvents.py | 2 BrailleR-1.0.2/BrailleR/inst/Python/WriteR/WriteR.pyw | 22 BrailleR-1.0.2/BrailleR/inst/Python/WriteR/__pycache__ |only BrailleR-1.0.2/BrailleR/inst/Templates/Agostino.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/Anscombe.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/Bartlett.Rmd | 9 BrailleR-1.0.2/BrailleR/inst/Templates/Bonett.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/Boxplots.Rmd | 7 BrailleR-1.0.2/BrailleR/inst/Templates/Brewsch.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/CohensKappa.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/Dotplots.Rmd | 6 BrailleR-1.0.2/BrailleR/inst/Templates/Dunnett.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/DurbinWatson.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/EMMeans.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/EmptyChunk.Rmd | 3 BrailleR-1.0.2/BrailleR/inst/Templates/FittedLinePlot.Rmd | 8 BrailleR-1.0.2/BrailleR/inst/Templates/Fligner.Rmd | 9 BrailleR-1.0.2/BrailleR/inst/Templates/Friedman.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/GetData.Rmd | 6 BrailleR-1.0.2/BrailleR/inst/Templates/GetLibs.Rmd | 6 BrailleR-1.0.2/BrailleR/inst/Templates/GroupSummary.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/Heterogeneity.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/Jarque.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/Kruskal.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/LatinSquare.Rmd | 16 BrailleR-1.0.2/BrailleR/inst/Templates/Levene.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/Linearity.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/MDS.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/NonNested.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/NormalityTests.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/OneWayLM.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/OneWayTest.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/PCA.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/PolyReg.Rmd | 27 BrailleR-1.0.2/BrailleR/inst/Templates/Quade.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/RCB.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/RandomBlock.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/ResidualAnalysis.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/ScatterPlot.Rmd | 8 BrailleR-1.0.2/BrailleR/inst/Templates/SerialCorrelation.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/SimpleRegression.Rmd | 28 BrailleR-1.0.2/BrailleR/inst/Templates/SplitPlot.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/StandardSetupChunk.Rmd | 5 BrailleR-1.0.2/BrailleR/inst/Templates/ThreeWay.Rmd | 13 BrailleR-1.0.2/BrailleR/inst/Templates/TukeyHSD.Rmd |only BrailleR-1.0.2/BrailleR/inst/Templates/TwoWay.Rmd | 13 BrailleR-1.0.2/BrailleR/inst/Templates/ancova.Rmd | 32 BrailleR-1.0.2/BrailleR/inst/Templates/templates.csv |only BrailleR-1.0.2/BrailleR/inst/WORDLIST | 312 +- BrailleR-1.0.2/BrailleR/inst/doc/BrailleR.R |only BrailleR-1.0.2/BrailleR/inst/doc/BrailleR.Rmd |only BrailleR-1.0.2/BrailleR/inst/doc/BrailleR.html |only BrailleR-1.0.2/BrailleR/inst/doc/BrailleRHistory.html | 684 ++++- BrailleR-1.0.2/BrailleR/inst/doc/Ex1histograms.html | 496 +++- BrailleR-1.0.2/BrailleR/inst/doc/Ex2BasicNumerical.html | 378 ++- BrailleR-1.0.2/BrailleR/inst/doc/Ex3UnivariateDescription.html | 391 ++- BrailleR-1.0.2/BrailleR/inst/doc/Ex4SingleResponseOneGroupingFactor.html | 391 ++- BrailleR-1.0.2/BrailleR/inst/doc/ExploringGraphs.R |only BrailleR-1.0.2/BrailleR/inst/doc/ExploringGraphs.Rmd |only BrailleR-1.0.2/BrailleR/inst/doc/ExploringGraphs.html |only BrailleR-1.0.2/BrailleR/inst/doc/IntroWriteR.Rmd | 5 BrailleR-1.0.2/BrailleR/inst/doc/IntroWriteR.html | 313 ++ BrailleR-1.0.2/BrailleR/inst/doc/qplot.R | 25 BrailleR-1.0.2/BrailleR/inst/doc/qplot.Rmd | 30 BrailleR-1.0.2/BrailleR/inst/doc/qplot.html | 651 +++-- BrailleR-1.0.2/BrailleR/inst/references.bib |only BrailleR-1.0.2/BrailleR/inst/scripts |only BrailleR-1.0.2/BrailleR/inst/whisker/Describe |only BrailleR-1.0.2/BrailleR/inst/whisker/SVG |only BrailleR-1.0.2/BrailleR/inst/whisker/VIdefault.txt | 36 BrailleR-1.0.2/BrailleR/man/AddXMLInternal.Rd | 1 BrailleR-1.0.2/BrailleR/man/AddXMLMethod.Rd | 42 BrailleR-1.0.2/BrailleR/man/BrailleR-package.Rd | 6 BrailleR-1.0.2/BrailleR/man/BrailleRUsefulLinks.Rd | 3 BrailleR-1.0.2/BrailleR/man/BrowseSVG.Rd | 44 BrailleR-1.0.2/BrailleR/man/DataViewer.Rd | 2 BrailleR-1.0.2/BrailleR/man/Deprecated.Rd |only BrailleR-1.0.2/BrailleR/man/Describe.Rd |only BrailleR-1.0.2/BrailleR/man/Embossers.Rd | 6 BrailleR-1.0.2/BrailleR/man/FindReplace.Rd | 6 BrailleR-1.0.2/BrailleR/man/GetWriteR.Rd | 14 BrailleR-1.0.2/BrailleR/man/MakeAccessibleSVGMethod.Rd | 63 BrailleR-1.0.2/BrailleR/man/MakeBatch.Rd | 23 BrailleR-1.0.2/BrailleR/man/MakeRmdFiles.Rd | 4 BrailleR-1.0.2/BrailleR/man/OneFactor.Rd | 12 BrailleR-1.0.2/BrailleR/man/OnePredictor.Rd | 8 BrailleR-1.0.2/BrailleR/man/Options.Rd | 8 BrailleR-1.0.2/BrailleR/man/R2txtJG.Rd | 2 BrailleR-1.0.2/BrailleR/man/SVGThis.Rd | 35 BrailleR-1.0.2/BrailleR/man/ScatterPlot.Rd | 30 BrailleR-1.0.2/BrailleR/man/TSPlot.Rd | 42 BrailleR-1.0.2/BrailleR/man/ThreeFactors.Rd | 3 BrailleR-1.0.2/BrailleR/man/TwoFactors.Rd | 13 BrailleR-1.0.2/BrailleR/man/UniDesc.Rd | 2 BrailleR-1.0.2/BrailleR/man/UpdateGraph.Rd | 12 BrailleR-1.0.2/BrailleR/man/VI.Rd | 61 BrailleR-1.0.2/BrailleR/man/ViewSVG.Rd | 38 BrailleR-1.0.2/BrailleR/vignettes/BrailleR.Rmd |only BrailleR-1.0.2/BrailleR/vignettes/ExploringGraphs.Rmd |only BrailleR-1.0.2/BrailleR/vignettes/IntroWriteR.Rmd | 5 BrailleR-1.0.2/BrailleR/vignettes/qplot.Rmd | 30 184 files changed, 8156 insertions(+), 3893 deletions(-)
Title: Statistical Inference of Vine Copulas
Description: Provides tools for the statistical analysis of regular vine copula
models, see Aas et al. (2009) <doi:10.1016/j.insmatheco.2007.02.001> and
Dissman et al. (2013) <doi:10.1016/j.csda.2012.08.010>.
The package includes tools for parameter estimation, model selection,
simulation, goodness-of-fit tests, and visualization. Tools for estimation,
selection and exploratory data analysis of bivariate copula models are also
provided.
Author: Thomas Nagler [aut, cre],
Ulf Schepsmeier [aut],
Jakob Stoeber [aut],
Eike Christian Brechmann [aut],
Benedikt Graeler [aut],
Tobias Erhardt [aut],
Carlos Almeida [ctb],
Aleksey Min [ctb, ths],
Claudia Czado [ctb, ths],
Mathias Hofmann [ctb],
Matthia [...truncated...]
Maintainer: Thomas Nagler <mail@tnagler.com>
Diff between VineCopula versions 2.4.5 dated 2023-01-19 and 2.5.0 dated 2023-07-10
DESCRIPTION | 8 ++++---- MD5 | 13 +++++++------ NAMESPACE | 4 +++- NEWS.md | 8 ++++++++ R/pobs.R | 33 ++++++++++++++++++++++++++++++--- build/partial.rdb |binary man/EmpCDF.Rd |only man/pobs.Rd | 5 ++--- 8 files changed, 54 insertions(+), 17 deletions(-)
Title: Robust Aggregative Feature Selection
Description: A cross-validated minimal-optimal feature selection algorithm.
It utilises popularity counting, hierarchical clustering with feature dissimilarity measures,
and prefiltering with all-relevant feature selection method to obtain the minimal-optimal set of features.
Author: Radoslaw Piliszek [aut, cre]
Maintainer: Radoslaw Piliszek <radoslaw.piliszek@gmail.com>
Diff between RAFS versions 0.2.2 dated 2023-05-30 and 0.2.3 dated 2023-07-10
RAFS-0.2.2/RAFS/man/stig_from_ig_stable_dist.Rd |only RAFS-0.2.3/RAFS/DESCRIPTION | 8 +-- RAFS-0.2.3/RAFS/MD5 | 15 +++---- RAFS-0.2.3/RAFS/NAMESPACE | 1 RAFS-0.2.3/RAFS/NEWS | 5 ++ RAFS-0.2.3/RAFS/R/dist.R | 49 ------------------------ RAFS-0.2.3/RAFS/R/main.R | 3 - RAFS-0.2.3/RAFS/man/builtin_dist_funs.Rd | 2 RAFS-0.2.3/RAFS/man/stig_stable_dist.Rd | 2 9 files changed, 18 insertions(+), 67 deletions(-)
Title: Easily Create Production-Ready Rich Text Format (RTF) Table and
Figure
Description: Create production-ready Rich Text Format (RTF) table and figure
with flexible format.
Author: Yilong Zhang [aut, cre],
Siruo Wang [aut],
Simiao Ye [aut],
Fansen Kong [aut],
Brian Lang [aut],
Nan Xiao [ctb],
Madhusudhan Ginnaram [ctb],
Ruchitbhai Patel [ctb],
Huei-Ling Chen [ctb],
Peikun Wu [ctb],
Uday Preetham Palukuru [ctb],
Daniel Woodie [c [...truncated...]
Maintainer: Yilong Zhang <elong0527@gmail.com>
Diff between r2rtf versions 1.0.4 dated 2023-06-18 and 1.1.0 dated 2023-07-10
DESCRIPTION | 8 ++-- MD5 | 13 ++++-- NAMESPACE | 1 NEWS.md | 36 +++++++++++------- R/obj_rtf_border.R | 1 R/rtf_rich_text.R |only build/vignette.rds |binary man/rtf_rich_text.Rd |only tests/testthat/test-developer-testing-rtf_rich_text.R |only 9 files changed, 36 insertions(+), 23 deletions(-)
Title: Functions for Declared Missing Values
Description: A zero dependency package containing functions to declare labels
and missing values, coupled with associated functions to create (weighted)
tables of frequencies and various other summary measures.
Some of the base functions have been rewritten to make use of the specific
information about the missing values, most importantly to distinguish
between empty and declared missing values.
Some functions have similar functionality with the corresponding ones from
packages "haven" and "labelled". The aim is to ensure as much compatibility
as possible with these packages, while offering an alternative in the
objects of class "declared".
Author: Adrian Dusa [aut, cre, cph] ,
Daniel Antal [ctb]
Maintainer: Adrian Dusa <dusa.adrian@unibuc.ro>
Diff between declared versions 0.21 dated 2023-05-16 and 0.22 dated 2023-07-10
declared-0.21/declared/tests/testthat/_snaps/R4.2aarch64-apple-darwin20 |only declared-0.21/declared/tests/testthat/_snaps/R4.2x86_64-apple-darwin17.0 |only declared-0.22/declared/DESCRIPTION | 6 declared-0.22/declared/MD5 | 72 +-- declared-0.22/declared/NAMESPACE | 1 declared-0.22/declared/R/as.declared.R | 21 - declared-0.22/declared/R/declared.R | 12 declared-0.22/declared/R/declared_package.R | 4 declared-0.22/declared/R/haven.R | 155 +++++-- declared-0.22/declared/R/internals.R | 176 ++++++++- declared-0.22/declared/R/print.R | 25 - declared-0.22/declared/R/w_table.R | 61 ++- declared-0.22/declared/inst/ChangeLog | 20 - declared-0.22/declared/inst/WORDLIST | 12 declared-0.22/declared/inst/doc/a_Declared_solution.Rmd | 60 ++- declared-0.22/declared/inst/doc/a_Declared_solution.html | 49 +- declared-0.22/declared/inst/doc/b_Added_value.Rmd | 60 +-- declared-0.22/declared/inst/doc/b_Added_value.html | 8 declared-0.22/declared/inst/doc/c_Weighting.Rmd | 18 declared-0.22/declared/inst/doc/c_Weighting.html | 2 declared-0.22/declared/man/declared_internal.Rd | 5 declared-0.22/declared/man/declared_package.Rd | 4 declared-0.22/declared/man/weighted.Rd | 9 declared-0.22/declared/src/declared.c | 34 + declared-0.22/declared/tests/testthat/_snaps/R4.3aarch64-apple-darwin20/haven.md | 8 declared-0.22/declared/tests/testthat/_snaps/as.declared.md | 4 declared-0.22/declared/tests/testthat/_snaps/haven.md | 31 + declared-0.22/declared/tests/testthat/_snaps/internals.md | 24 + declared-0.22/declared/tests/testthat/_snaps/print.md | 28 + declared-0.22/declared/tests/testthat/_snaps/w_table.md | 29 + declared-0.22/declared/tests/testthat/test-haven.R | 38 + declared-0.22/declared/tests/testthat/test-internals.R | 194 ++++++---- declared-0.22/declared/tests/testthat/test-print.R | 3 declared-0.22/declared/tests/testthat/test-w_table.R | 4 declared-0.22/declared/vignettes/a_Declared_solution.Rmd | 60 ++- declared-0.22/declared/vignettes/b_Added_value.Rmd | 60 +-- declared-0.22/declared/vignettes/c_Weighting.Rmd | 18 declared-0.22/declared/vignettes/declared.theme | 2 38 files changed, 954 insertions(+), 363 deletions(-)
Title: Tools for Bayesian Analyses
Description: Provides tools for conducting Bayesian analyses and Bayesian model averaging
(Kass and Raftery, 1995, <doi:10.1080/01621459.1995.10476572>,
Hoeting et al., 1999, <doi:10.1214/ss/1009212519>). The package contains
functions for creating a wide range of prior distribution objects, mixing posterior
samples from 'JAGS' and 'Stan' models, plotting posterior distributions, and etc...
The tools for working with prior distribution span from visualization, generating 'JAGS'
and 'bridgesampling' syntax to basic functions such as rng, quantile, and distribution functions.
Author: Frantisek Bartos [aut, cre]
Maintainer: Frantisek Bartos <f.bartos96@gmail.com>
Diff between BayesTools versions 0.2.15 dated 2023-06-23 and 0.2.16 dated 2023-07-10
DESCRIPTION | 6 - MD5 | 34 ++++---- NAMESPACE | 1 NEWS.md | 5 + R/JAGS-fit.R | 127 ++++++++++++++++++++++++++++++--- R/tools.R | 2 build/partial.rdb |binary inst/doc/ComparisonR.html | 4 - inst/doc/SpikeAndSlab.html | 4 - man/JAGS_check_and_list.Rd | 2 man/JAGS_fit.Rd | 20 ++++- man/Savage_Dickey_BF.Rd | 62 ++++++++-------- man/marginal_inference.Rd | 130 +++++++++++++++++----------------- man/mpoint.Rd | 98 ++++++++++++------------- man/plot_marginal.Rd | 148 +++++++++++++++++++-------------------- man/remove_column.Rd | 42 +++++------ man/transform_factor_samples.Rd | 48 ++++++------ man/transform_meandif_samples.Rd | 48 ++++++------ 18 files changed, 455 insertions(+), 326 deletions(-)
Title: Functions for Kernel Smoothing Supporting Wand & Jones (1995)
Description: Functions for kernel smoothing (and density estimation)
corresponding to the book:
Wand, M.P. and Jones, M.C. (1995) "Kernel Smoothing".
Author: Matt Wand [aut],
Cleve Moler [ctb] ,
Brian Ripley [trl, cre, ctb]
Maintainer: Brian Ripley <ripley@stats.ox.ac.uk>
Diff between KernSmooth versions 2.23-21 dated 2023-05-03 and 2.23-22 dated 2023-07-10
DESCRIPTION | 8 ++++---- MD5 | 6 +++--- PORTING | 11 +++++++++++ src/Makevars | 2 +- 4 files changed, 19 insertions(+), 8 deletions(-)
Previous versions (as known to CRANberries) which should be available via the Archive link are:
2023-05-30 2.0.2
Previous versions (as known to CRANberries) which should be available via the Archive link are:
2022-03-31 2.0.0
2020-12-10 1.5
2020-09-18 1.4.6
2020-02-16 1.4.4
2019-12-12 1.4.3
2019-12-05 1.4.2
2019-10-29 1.4.1
2019-10-23 1.4.0
2019-05-05 1.3.2
2018-10-25 1.2.3
2018-10-02 1.2.2
2018-08-15 1.1.5
2018-06-07 1.1.4
2017-08-29 1.1.0
2017-04-03 1.0.0
Previous versions (as known to CRANberries) which should be available via the Archive link are:
2023-03-24 0.2.0
2023-01-19 0.1.0
Previous versions (as known to CRANberries) which should be available via the Archive link are:
2022-04-02 0.5.0
2020-06-19 0.4.0
2018-04-27 0.3.0
2017-10-18 0.2.0
2017-09-27 0.1.0
Previous versions (as known to CRANberries) which should be available via the Archive link are:
2023-06-26 0.0.1