rang icon indicating copy to clipboard operation
rang copied to clipboard

Special packages

Open chainsawriot opened this issue 2 years ago • 7 comments

We need a list of special packages removed due to moving to the core.

These are the real default

## getOption("defaultPackages")
c("datasets", "utils", "grDevices", "graphics", "stats", "methods")

These are either unqueryable or return special results

## unqueryable
c("tools", "Rgraphviz", "parallel", "stats4")
## queryable but install along with R now; currently archived; 
## if the goal is for 2015 onwards, consider them unqueryable
c("grid", "splines", "tcltk")
## listed on CRAN, but usually not installed through CRAN
## Priority packages
c("MASS", "survival", "Matrix", "lattice", "kernSmooth") ## and many more

https://cran.r-project.org/web/packages/tcltk/

> require(tcltk)
Loading required package: tcltk
> pkgsearch::cran_package_history("tcltk")
      Package Version                       Title          crandb_file_date
tcltk   tcltk   0.1-1 Basic interface with tcl/tk 1999-06-29T08:43:20+00:00
                                MD5sum                      date dependencies
tcltk 54cac2e74f2426b539c521caa6c20814 1999-06-29T07:43:20+00:00             

chainsawriot avatar Jan 15 '23 12:01 chainsawriot

All Ripley's recommended packages do not have a complete history on CRAN: MASS, nnet (since 2009 only)

chainsawriot avatar Feb 05 '23 19:02 chainsawriot

Another Ripley's: class that causes #38

chainsawriot avatar Feb 13 '23 14:02 chainsawriot

Prophylactically, spatial is another recommended package maintained by Ripley but without complete history on CRAN.

chainsawriot avatar Feb 13 '23 22:02 chainsawriot

"Rgraphviz" is no longer a special package, given the bioc support.

chainsawriot avatar Mar 05 '23 12:03 chainsawriot

Special packages in the early days: (‘ctest’, ‘eda’, ‘lqs’, ‘mle’, ‘modreg’, ‘mva’, ‘nls’, ‘stepfun’ and ‘ts’).

Reference: https://cran.r-project.org/doc/manuals/R-exts.html 1.3.1 S5

chainsawriot avatar Mar 05 '23 15:03 chainsawriot

eda, lqs, mle, modreg, mva, stepfun, ts can't be searched with cran_package_history.

chainsawriot avatar Mar 05 '23 15:03 chainsawriot

The cause of #144 is that DescTools lists base in Depends.

chainsawriot avatar Jun 14 '23 08:06 chainsawriot