V1: Introduction to RWsearch

Patrice Kiener

2024-10-12

Introduction

RWsearch stands for « Search in R packages, task views, CRAN and in the Web ».

This vignette introduces the following features cited in the README file:

.1. Provide a simple non-standard evaluation instruction to read and evaluate non-standard content, mainly character vectors.

.2. Download the files that list all available packages, binary packages, archived packages, check_results, task views available on CRAN at a given date and rearrange them in convenient formats. The downloaded files are (size on disk in June 2021 and 30 September 2024):

- crandb_down() => *crandb.rda* (4.9 Mo, 6.4 Mo),
- binarydb_down() => *binarydb.rda* (xx, 618 ko),
- archivedb_down() => *CRAN-archive.html* (3.3 Mo, 4.6 Mo),
- checkdb_down() => *check_results.rds* (7.6 Mo, 8.6 Mo),
- tvdb_down() => *tvdb.rda* (31 ko, 61 ko).

.3. List the packages that has been added, updated and removed from CRAN between two downloads or two dates.

.4. Search for packages that match one or several keywords in any column of the crandb data.frame and by default (with mode or, and, relax) in the Package name, Title, Description, Author and Maintainer columns (can be selected individually).

Evaluation of non-standard content (Non-Standard Evaluation)

RWsearch has its own instruction to read and evaluate non-standard content. cnsc() can replace c() in most places. Quoted characters and objects that exist in .GlobalEnv are evaluated. Unquoted characters that do not represent any objects in .GlobalEnv are transformed into quoted characters. This saves a lot of typing.

obj <- c("OBJ5", "OBJ6", "OBJ7")
cnsc(pkg1, pkg2, "pkg3", "double word", obj)
# [1] "pkg1"        "pkg2"        "pkg3"        "double word" "OBJ5"        "OBJ6"        "OBJ7" 

Download and explore CRAN

Since R 3.4.0, CRAN updates every day the file /web/packages/packages.rds that lists all packages available for download at this date (archived packages do not appear in this list). This file is of a high value since, once downloaded, all items exposed in the DESCRIPTION files of every package plus some additional information can be explored locally. This way, the most relevant packages that match some keywords can be quickly found with an efficient search instruction.

crandb_down()

The following instruction downloads from your local CRAN the file /web/packages/packages.rds, applies some cleaning treatments, saves it as crandb.rda in the local directory and loads a data.frame named crandb in the .GlobalEnv:

crandb_down()
# $newfile
# crandb.rda saved and loaded. 13745 packages listed between 2006-03-15 and 2019-02-21

ls()
# [1] "crandb"

The behaviour is slightly different if an older file crandb.rda downloaded a few days earlier exists in the same directory. In this case, crandb_down() overwrites the old file with the new file and displays a comprehensive comparison:

crandb_down()
# $newfile
# [1] "crandb.rda saved and loaded. 13745 packages listed between 2006-03-15 and 2019-02-21"
# [2] "0 removed, 4 new, 52 refreshed, 56 uploaded packages." 

# $oldfile
# [1] "crandb.rda 13741 packages listed between 2006-03-15 and 2019-02-20"

# $removed_packages
# character(0)

# $new_packages
# [1] "dang"       "music"      "Rpolyhedra" "Scalelink" 

# $uploaded_packages
#  [1] "BeSS"              "blocksdesign"      "BTLLasso"          "cbsodataR"        
#  ...        
# [53] "tmle"              "vtreat"            "WVPlots"           "xfun" 

crandb_comp()

In recent years, CRAN has been growing up very fast but has also changed a lot. From the inception of RWsearch to its first public release, the number of packages listed in CRAN has increased from 12,937 on August 18, 2018 to 13,745 packages on February 21, 2019 and 21,403 on September 26, 2024 as per the following table.

Date Packages Comments
2018-08-18 12,937
2018-08-31 13,001
2018-09-30 13,101
2018-10-16 13,204
2018-11-18 13,409
2018-12-04 13,517 28 new packages in one single day
2018-12-29 13,600
2018-01-19 13,709
2018-01-29 13,624 85 packages transferred to archive
2019-02-11 13,700
2019-02-21 13,745
2020-02-18 15,404
2020-02-19 15,309 95 packages transferred to archive in one night
2021-02-13 16,904
2022-03-02 19,004
2022-06-23 18,287 huge flush over 3 months
2023-01-11 19,001
2023-07-06 19,807
2023-11-09 20,006
2024-02-06 20,402
2024-06-28 21,007
2024-09-26 21,403

The 808 packages difference between August 18, 2018 and February 21, 2019 hides the real numbers: 1010 new packages were added to CRAN and 202 packages were archived during the same period. RWsearch easily reveals these numbers with the instruction

lst <- crandb_comp(filename = "crandb-2019-02-21.rda", oldfile = "crandb-2018-08-18.rda")
lst$newfile
# [1] "crandb-2019-02-21.rda 13745 packages listed between 2006-03-15 and 2019-02-21"
# [2] "202 removed, 1010 new, 2853 refreshed, 3863 uploaded packages."              

The results between August 18, 2018 (12,937 packages) and September 26, 2024 (21,403 packages) are even more striking. During this period of 2231 days, 11,919 packages were added to CRAN but 3454 packages were archived, either at the request of the maintainer or because of a lack of maintenance to cope with the new CRAN checks. The CRAN team does a good job to keep a high level of quality among the packages provided by third parties. The apparent increase of 3.79 package per day is indeed the difference between 5.34 new packages added and 1.54 packages removed per day. The dates 2005-10-29 and 2008-09-08 are the dates of the oldest packages recorded in their respective crandb tables.

lst <- crandb_comp(filename = "crandb-2024-09-26.rda", oldfile = "crandb-2018-08-18.rda")
lst$oldfile
# [1] "crandb-2018-08-18.rda 12937 packages listed between 2005-10-29 and 2018-08-18"    
lst$newfile
# [1] "crandb-2024-09-26.rda 21403 packages listed between 2008-09-08 and 2024-09-26"
# [2] "3454 removed, 11919 new, 7129 refreshed, 19048 uploaded packages."      

crandb_fromto()

Extracting the packages that have been recently uploaded in CRAN is of a great interest. For a given crandb data.frame loaded in .GlobalEnv, the function crandb_fromto() allows to search betwen two dates or by a number of days before a certain date. Here, the result is calculated between two calendar dates whereas the above item $uploaded_packages returns the difference between two files (which are not saved exactly at midnight). Here, 58 packages were updated in one day+night.

crandb_fromto(from = -1, to = "2024-09-26") # 21403 packages in crandb.
 [1] "adimpro"                 "arrg"                    "baclava"                
 [4] "cbsodataR"               "clam"                    "coffee"      
 ...        
[55] "SSNbler"                 "StroupGLMM"              "TLIC"                   
[58] "xmlwriter"              

The function crandb_fromto(from = "2024-01-01", to = "2024-09-26") returns 6448 packages and suggests that 30 % of the published CRAN packages have been refreshed in the last 9 months.

Search in crandb

Five instructions are available to search for keywords in crandb and extract the packages that match these keywords: s_crandb(), s_crandb_list(), s_crandb_PTD(), s_crandb_AM(), s_crandb_tvdb(). Arguments select, mode, sensitive, fixed refine the search.

Argument select can be any (combination of) column(s) in crandb. A few shortcuts are “P”, “T”, “D”, “PT”, “PD”, “TD”, “PTD”, “A”, “M”, “AM” for the Package name, Title, Description, Author and Maintainer.

s_crandb()

s_crandb() accepts one or several keywords and displays the results in a flat format. By default, the search is conducted over the Package name, the package Title and the Description (“PTD”) and with mode = "or". It can be refined to package Title or even Package name. mode = "and" requires the two keywords to appear in all selected packages.

s_crandb(Gini, Theil, select = "PTD")
#  [1] "accessibility"       "adabag"              "binequality"         "binsmooth"          
#  [5] "copBasic"            "CORElearn"           "cquad"               "deming"             
#  [9] "educineq"            "fastpos"             "genie"               "genieclust"         
# [13] "Gini"                "GiniDecompLY"        "GiniDistance"        "giniVarCI"          
# [17] "glmtree"             "httr2"               "IATscores"           "iIneq"              
# [21] "ineq.2d"             "ineqJD"              "lctools"             "lorenz"             
# [25] "mblm"                "mcr"                 "mcrPioda"            "migration.indices"  
# [29] "MKclass"             "mutualinf"           "ndi"                 "npcp"               
# [33] "RFlocalfdr"          "rfVarImpOOB"         "rifreg"              "rkt"                
# [37] "robslopes"           "RobustLinearReg"     "rpartScore"          "scorecardModelUtils"
# [41] "segregation"         "servosphereR"        "skedastic"           "SpatialVS"          
# [45] "surveil"             "systemfit"           "tangram"             "valottery"          
# [49] "vardpoor"            "wINEQ"                   
s_crandb(Gini, Theil, select = "PT")
# [1] "deming"       "Gini"         "GiniDecompLY" "GiniDistance" "giniVarCI"   
# [6] "iIneq"        "ineq.2d"      "valottery"   
s_crandb(Gini, Theil, select = "P")
# [1] "Gini"         "GiniDecompLY" "GiniDistance" "giniVarCI" 
s_crandb(Gini, Theil, select = "PTD", mode = "and")
# [1] "binequality" "binsmooth"   "educineq"    "iIneq"       "lorenz"     
# [6] "wINEQ" 

s_crandb_list()

s_crandb_list() splits the results by keywords.

Here, the function s_crandb_list(search, find, select = "P") returns 26 and 31 packages with argument select = "P" whereas argument select = "PT" would have returned 185 and 122 packages and argument select = "PTD" would have returned 1320 and 601 packages. This refining option is one of the most interesting features of RWsearch.

s_crandb_list(search, find, select = "P")
# $search
#  [1] "ACEsearch"            "bsearchtools"         "CRANsearcher"         "discoverableresearch"
#  [5] "doebioresearch"       "dosearch"             "dsmSearch"            "ExhaustiveSearch"    
#  [9] "fabisearch"           "FBFsearch"            "forsearch"            "lavaSearch2"         
# [13] "mssearchr"            "pdfsearch"            "pkgsearch"            "ResearchAssociate"   
# [17] "RWsearch"             "searcher"             "SearchTrees"          "shinySearchbar"      
# [21] "statsearchanalyticsr" "tabuSearch"           "TreeSearch"           "uptasticsearch"      
# [25] "VetResearchLMM"       "websearchr"          

# $find
#  [1] "CCSRfind"           "CIfinder"           "colorfindr"         "DNetFinder"        
#  [5] "DoseFinding"        "echo.find"          "EcotoneFinder"      "featurefinder"     
#  [9] "findGSEP"           "findInFiles"        "findInGit"          "FindIt"            
# [13] "findPackage"        "findpython"         "findR"              "findSVI"           
# [17] "findviews"          "LexFindR"           "LncFinder"          "lterpalettefinder" 
# [21] "MinEDfind"          "packagefinder"      "pathfindR"          "pathfindR.data"    
# [25] "PetfindeR"          "RHybridFinder"      "semfindr"           "TCIApathfinder"    
# [29] "UnifiedDoseFinding" "WayFindR"           "wfindr"                      
select search find
“PTD” 1320 601
“D” 1268 549
“PT” 185 122
“T” 177 105
“P” 26 31

s_crandb_PTD()

s_crandb_PTD() splits the results by Package name, package Title and Description.

s_crandb_PTD(kriging)
# $Package
# [1] "constrainedKriging" "DiceKriging"        "FracKrigingR"       "kriging"           
# [5] "OmicKriging"        "quantkriging"       "rkriging"           "rlibkriging"       

# $Title
#  [1] "ARCokrig"           "atakrig"            "autoFRK"            "constrainedKriging"
#  [5] "DiceKriging"        "DiceOptim"          "fanovaGraph"        "FRK"               
#  [9] "geoFKF"             "geoFourierFDA"      "intkrige"           "krige"             
# [13] "kriging"            "KrigInv"            "LatticeKrig"        "ltsk"              
# [17] "quantkriging"       "rkriging"           "rlibkriging"        "snapKrig"          
# [21] "spatial"           

# $Description
#  [1] "ARCokrig"           "atakrig"            "autoFRK"            "blackbox"          
#  [5] "CensSpatial"        "constrainedKriging" "convoSPAT"          "DiceEval"          
#  [9] "DiceKriging"        "fanovaGraph"        "fields"             "FracKrigingR"      
# [13] "geoFKF"             "geoFourierFDA"      "geomod"             "georob"            
# [17] "geostats"           "GPareto"            "gstat"              "intkrige"          
# [21] "klovan"             "krige"              "kriging"            "LatticeKrig"       
# [25] "LSDsensitivity"     "ltsk"               "mcgf"               "meteo"             
# [29] "npsp"               "OmicKriging"        "phylin"             "profExtrema"       
# [33] "psgp"               "quantkriging"       "rkriging"           "rlibkriging"       
# [37] "rtop"               "sgeostat"           "snapKrig"           "SpatFD"            
# [41] "spatial"            "SpatialTools"       "spm2"               "sptotal"           
# [45] "stilt"              

s_crandb_AM()

s_crandb_AM() splits the results by package Author and package Maintainer.

s_crandb_AM(Kiener, Dutang)
# $Kiener
# $Kiener$Author
# [1] "DiceDesign"       "FatTailsR"        "incase"           "kml"              "kml3d"           
# [6] "longitudinalData" "netstat"          "NNbenchmark"      "RWsearch"        

# $Kiener$Maintainer
# [1] "FatTailsR"   "NNbenchmark" "RWsearch"   

# $Dutang
# $Dutang$Author
#  [1] "actuar"            "ChainLadder"       "expm"              "fitdistrplus"     
#  [5] "GNE"               "gumbel"            "kyotil"            "lifecontingencies"
#  [9] "mbbefd"            "NNbenchmark"       "OneStep"           "plotrix"          
# [13] "POT"               "randtoolbox"       "rhosp"             "rngWELL"          
# [17] "RTDE"              "tsallisqexp"      

# $Dutang$Maintainer
#  [1] "GNE"         "gumbel"      "mbbefd"      "OneStep"     "POT"         "randtoolbox"
#  [7] "rhosp"       "rngWELL"     "RTDE"        "tsallisqexp"

s_crandb_tvdb()

s_crandb_tvdb() is an instruction for task view maintenance. Please, read the corresponding vignette.

Search with the sos package

s_sos() is a wrapper of the sos::findFn() function provided by the excellent package sos. It goes deeper than s_crandb() as it searchs for keywords inside all R functions of all R packages (assuming 30 functions per package, about 21,403 x 30 = 642,090 pages). The query is sent to https://search.r-project.org/ which covers the full documentation of CRAN (package manual, function pages, vignettes, etc). The result is edited and displayed by the browser in two html pages, one for the functions, one for the vignettes.

s_sos(aluminium)

The result can be converted to a data.frame. Here, the browser is launched only at line 3.

res <- s_sos("chemical reaction")
as.data.frame(res)
res

The search is global and should be conducted with one word preferably. Searching for ordinary keywords like search or find is not recommanded as infinite values are returned most of the time.