From f749c94b2480338e907ba30525af4dd6dcbd7aa1 Mon Sep 17 00:00:00 2001 From: Tim Brock Date: Tue, 10 Oct 2023 17:44:47 +0100 Subject: [PATCH 1/5] Make accessible disconnection and disconnection-warning modals --- R/app.R | 37 ++++++++++++++++++++++++++++++++++++- www/js/disconnect.js | 18 ++++++++++++++++++ www/script.js | 2 ++ www/style.css | 16 ++++++++++++++++ 4 files changed, 72 insertions(+), 1 deletion(-) create mode 100644 www/js/disconnect.js diff --git a/R/app.R b/R/app.R index 5008a53..9c01a57 100644 --- a/R/app.R +++ b/R/app.R @@ -1,11 +1,12 @@ #' @import shiny dplyr geocatApp <- function(...) { + timeoutTime = 15 #### ui #### ui <- fluidPage( theme = shinythemes::shinytheme("darkly"), shinyjs::useShinyjs(), - tags$html(lang = "en"), + tags$html(lang = "en", `data-timeout-mins` = timeoutTime), tags$head( tags$title("ShinyGeoCAT - Geospatial Conservation Assessment Tools"), # WCAG modification tags$link(rel = "stylesheet", href = "style.css"), @@ -229,6 +230,36 @@ geocatApp <- function(...) { actionButton("key-add-point", "Add point"), ) ) + ), + tags$div( + id='disconnect-warning-dialog', + class="floating-item", + role="dialog", + `aria-modal`="true", + `aria-label`="Disconnect-warning dialog", + `aria-describedby`="disconnect-warning-description", + tags$div( + tags$p( + id="disconnect-warning-description", + "Your session will timeout in under 60 second due to inactivity." + ), + actionButton("continue", "Click to continue your session"), + ) + ), + tags$div( + id='disconnect-dialog', + class="floating-item", + role="dialog", + `aria-modal`="true", + `aria-label`="Disconnection dialog", + `aria-describedby`="disconnect-description", + tags$div( + tags$p( + id="disconnect-description", + glue::glue("Your session has timed out because of {timeoutTime} minutes of inactivity.") + ), + actionButton("reload", "Click to restart your session"), + ) ) ) ) @@ -464,6 +495,10 @@ geocatApp <- function(...) { ) }) + observeEvent(input$reload, { + session$reload() + }) + #move points observeEvent(input$mymap_draw_edited_features, { for (feature in input$mymap_draw_edited_features$features){ diff --git a/www/js/disconnect.js b/www/js/disconnect.js new file mode 100644 index 0000000..3a16704 --- /dev/null +++ b/www/js/disconnect.js @@ -0,0 +1,18 @@ +function fixDisconnect(diconnectMinutes = 15) { + $(document).on('shiny:disconnected', function() { + const $dialog = $('#ss-connect-dialog') + + const message = `Your session has timed out because of ${diconnectMinutes} minutes of inactivity.`; + $dialog.find('label').text(message); + + $dialog.find('a') + .attr('role', 'button') + .text('Click to reload') + .focus(); + }); +} + + +export { fixDisconnect }; + + diff --git a/www/script.js b/www/script.js index 8296bfd..61282de 100644 --- a/www/script.js +++ b/www/script.js @@ -1,8 +1,10 @@ import { fixControls } from './js/controls.js'; import { fixLog } from './js/log.js'; import { fixMap } from './js/map.js'; +import { fixDisconnect } from './js/disconnect.js'; fixControls(); fixMap(); fixLog(); +fixDisconnect(); diff --git a/www/style.css b/www/style.css index f8e98c8..62fe2fa 100644 --- a/www/style.css +++ b/www/style.css @@ -345,6 +345,22 @@ section, section.well { text-align: right; } +body > .floating-item[aria-modal="true"] { + position: fixed; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + -webkit-backdrop-filter: none; + backdrop-filter: none; + background-color: rgb(44,44,44); + z-index: 999999; + border: 1px solid black; + filter: drop-shadow(-3px 3px black); +} + +.container-fluid[inert] { + filter: grayscale(50%) brightness(20%); +} @media (min-width: 900px) { From 15a5b9211327272f76ec0062badba6f1ba035a63 Mon Sep 17 00:00:00 2001 From: Tim Brock Date: Tue, 10 Oct 2023 13:59:28 +0100 Subject: [PATCH 2/5] Add manifest --- manifest.json | 5984 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 5984 insertions(+) create mode 100644 manifest.json diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..531d003 --- /dev/null +++ b/manifest.json @@ -0,0 +1,5984 @@ +{ + "version": 1, + "locale": "en_GB", + "platform": "4.3.1", + "metadata": { + "appmode": "shiny", + "primary_rmd": null, + "primary_html": null, + "content_category": "app", + "has_parameters": false + }, + "packages": { + "BAT": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "BAT", + "Title": "Biodiversity Assessment Tools", + "Version": "2.9.3", + "Date": "2023-07-21", + "Authors@R": "c(\nperson(\"Pedro\", \"Cardoso\", email = \"pedro.cardoso@helsinki.fi\", role = c(\"aut\", \"cre\")),\nperson(\"Stefano\", \"Mammola\", role = c(\"aut\")),\nperson(\"Francois\", \"Rigal\", role = c(\"aut\")),\nperson(\"Jose\", \"Carvalho\", role = c(\"aut\")))", + "Description": "Includes algorithms to assess alpha and beta diversity\nin all their dimensions (taxonomic, phylogenetic and functional).\nIt allows performing a number of analyses based on species\nidentities/abundances, phylogenetic/functional distances, trees,\nconvex-hulls or kernel density n-dimensional hypervolumes\ndepicting species relationships.\nCardoso et al. (2015) .", + "Depends": "R (>= 3.0.0)", + "Imports": "ape, geometry, graphics, hypervolume, MASS, methods, nls2,\nparallel, stats, terra, utils, vegan", + "Encoding": "UTF-8", + "License": "GPL-3", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-07-21 10:44:06 UTC; ungol", + "Author": "Pedro Cardoso [aut, cre],\nStefano Mammola [aut],\nFrancois Rigal [aut],\nJose Carvalho [aut]", + "Maintainer": "Pedro Cardoso ", + "Repository": "RSPM", + "Date/Publication": "2023-08-10 13:20:05 UTC", + "Built": "R 4.3.0; ; 2023-08-11 13:37:00 UTC; unix" + } + }, + "BH": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "BH", + "Type": "Package", + "Title": "Boost C++ Header Files", + "Version": "1.81.0-1", + "Date": "2023-01-17", + "Author": "Dirk Eddelbuettel, John W. Emerson and Michael J. Kane", + "Maintainer": "Dirk Eddelbuettel ", + "Description": "Boost provides free peer-reviewed portable C++ source\nlibraries. A large part of Boost is provided as C++ template code\nwhich is resolved entirely at compile-time without linking. This\npackage aims to provide the most useful subset of Boost libraries\nfor template use among CRAN packages. By placing these libraries in\nthis package, we offer a more efficient distribution system for CRAN\nas replication of this code in the sources of other packages is\navoided. As of release 1.81.0-0, the following Boost libraries are\nincluded: 'accumulators' 'algorithm' 'align' 'any' 'atomic' 'beast'\n'bimap' 'bind' 'circular_buffer' 'compute' 'concept' 'config'\n'container' 'date_time' 'detail' 'dynamic_bitset' 'exception'\n'flyweight' 'foreach' 'functional' 'fusion' 'geometry' 'graph' 'heap'\n'icl' 'integer' 'interprocess' 'intrusive' 'io' 'iostreams'\n'iterator' 'lambda2' 'math' 'move' 'mp11' 'mpl' 'multiprecision'\n'numeric' 'pending' 'phoenix' 'polygon' 'preprocessor' 'process'\n'propery_tree' 'random' 'range' 'scope_exit' 'smart_ptr' 'sort'\n'spirit' 'tuple' 'type_traits' 'typeof' 'unordered' 'url' 'utility'\n'uuid'.", + "License": "BSL-1.0", + "URL": "https://github.com/eddelbuettel/bh,\nhttps://dirk.eddelbuettel.com/code/bh.html", + "BugReports": "https://github.com/eddelbuettel/bh/issues", + "NeedsCompilation": "no", + "Packaged": "2023-01-17 22:52:33 UTC; edd", + "Repository": "RSPM", + "Date/Publication": "2023-01-22 08:20:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:20:51 UTC; unix" + } + }, + "DBI": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "DBI", + "Title": "R Database Interface", + "Version": "1.1.3", + "Date": "2022-06-18", + "Authors@R": "c(\nperson(\"R Special Interest Group on Databases (R-SIG-DB)\", role = \"aut\"),\nperson(\"Hadley\", \"Wickham\", role = \"aut\"),\nperson(\"Kirill\", \"Müller\", , \"krlmlr+r@mailbox.org\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-1416-3412\")),\nperson(\"R Consortium\", role = \"fnd\")\n)", + "Description": "A database interface definition for communication between R\nand relational database management systems. All classes in this\npackage are virtual and need to be extended by the various R/DBMS\nimplementations.", + "License": "LGPL (>= 2.1)", + "URL": "https://dbi.r-dbi.org, https://github.com/r-dbi/DBI", + "BugReports": "https://github.com/r-dbi/DBI/issues", + "Depends": "methods, R (>= 3.0.0)", + "Suggests": "blob, covr, DBItest, dbplyr, downlit, dplyr, glue, hms,\nknitr, magrittr, RMariaDB, rmarkdown, rprojroot, RSQLite (>=\n1.1-2), testthat, xml2", + "VignetteBuilder": "knitr", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "false", + "Config/Needs/check": "r-dbi/DBItest", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.0", + "Config/Needs/website": "r-dbi/DBItest, AzureKusto, bigrquery,\nDatabaseConnector, dittodb, duckdb, implyr, lazysf, odbc, pool,\nRAthena, IMSMWU/RClickhouse, RH2, RJDBC, RMariaDB, RMySQL,\nRPostgres, RPostgreSQL, RPresto, RSQLite, sergeant, sparklyr,\nwithr", + "Collate": "'DBIObject.R' 'DBIDriver.R' 'Id.R' 'DBIConnection.R' 'ANSI.R'\n'DBI-package.R' 'DBIConnector.R' 'DBIResult.R' 'SQL.R'\n'SQLKeywords.R' 'SQLKeywords_DBIObject.R'\n'SQLKeywords_missing.R' 'data-types.R' 'data.R'\n'dbAppendTable.R' 'dbAppendTable_DBIConnection.R' 'dbBegin.R'\n'dbBind.R' 'dbCallProc.R' 'dbCanConnect.R'\n'dbCanConnect_DBIDriver.R' 'dbClearResult.R' 'dbColumnInfo.R'\n'dbCommit.R' 'dbConnect.R' 'dbConnect_DBIConnector.R'\n'dbCreateTable.R' 'dbCreateTable_DBIConnection.R'\n'dbDataType.R' 'dbDataType_DBIConnector.R'\n'dbDataType_DBIObject.R' 'dbDisconnect.R' 'dbDriver.R'\n'dbDriver_character.R' 'dbExecute.R'\n'dbExecute_DBIConnection_character.R' 'dbExistsTable.R'\n'dbExistsTable_DBIConnection_Id.R' 'dbFetch.R'\n'dbFetch_DBIResult.R' 'dbGetConnectArgs.R'\n'dbGetConnectArgs_DBIConnector.R' 'dbGetException.R'\n'dbGetInfo.R' 'dbGetInfo_DBIResult.R' 'dbGetQuery.R'\n'dbGetQuery_DBIConnection_character.R' 'dbGetRowCount.R'\n'dbGetRowsAffected.R' 'dbGetStatement.R' 'dbHasCompleted.R'\n'dbIsReadOnly.R' 'dbIsReadOnly_DBIConnector.R'\n'dbIsReadOnly_DBIObject.R' 'dbIsValid.R' 'dbListConnections.R'\n'dbListFields.R' 'dbListFields_DBIConnection_Id.R'\n'dbListFields_DBIConnection_character.R' 'dbListObjects.R'\n'dbListObjects_DBIConnection_ANY.R' 'dbListResults.R'\n'dbListTables.R' 'dbQuoteIdentifier.R'\n'dbQuoteIdentifier_DBIConnection.R' 'dbQuoteLiteral.R'\n'dbQuoteLiteral_DBIConnection.R' 'dbQuoteString.R'\n'dbQuoteString_DBIConnection.R' 'dbReadTable.R'\n'dbReadTable_DBIConnection_Id.R'\n'dbReadTable_DBIConnection_character.R' 'dbRemoveTable.R'\n'dbRemoveTable_DBIConnection_Id.R' 'dbRollback.R'\n'dbSendQuery.R' 'dbSendStatement.R'\n'dbSendStatement_DBIConnection_character.R'\n'dbSetDataMappings.R' 'dbUnloadDriver.R'\n'dbUnquoteIdentifier.R' 'dbUnquoteIdentifier_DBIConnection.R'\n'dbWithTransaction.R' 'dbWithTransaction_DBIConnection.R'\n'dbWriteTable.R' 'dbWriteTable_DBIConnection_Id_ANY.R'\n'dbiDataType.R' 'dbiDataType_AsIs.R' 'dbiDataType_Date.R'\n'dbiDataType_POSIXct.R' 'dbiDataType_character.R'\n'dbiDataType_data.frame.R' 'dbiDataType_difftime.R'\n'dbiDataType_integer.R' 'dbiDataType_list.R'\n'dbiDataType_logical.R' 'dbiDataType_numeric.R' 'deprecated.R'\n'fetch.R' 'hms.R' 'interpolate.R' 'isSQLKeyword.R'\n'isSQLKeyword_DBIObject_character.R' 'make.db.names.R'\n'make.db.names_DBIObject_character.R' 'methods_as_rd.R'\n'rownames.R' 'show_AnsiConnection.R' 'show_DBIConnection.R'\n'show_DBIConnector.R' 'show_DBIDriver.R' 'show_DBIResult.R'\n'show_Id.R' 'show_SQL.R' 'sqlAppendTable.R'\n'sqlAppendTableTemplate.R' 'sqlAppendTable_DBIConnection.R'\n'sqlCreateTable.R' 'sqlCreateTable_DBIConnection.R' 'sqlData.R'\n'sqlData_DBIConnection.R' 'sqlInterpolate.R'\n'sqlInterpolate_DBIConnection.R' 'sqlParseVariables.R'\n'sqlParseVariables_DBIConnection.R' 'summary.R'\n'summary_DBIObject.R' 'transactions.R'", + "NeedsCompilation": "no", + "Packaged": "2022-06-18 01:24:38 UTC; kirill", + "Author": "R Special Interest Group on Databases (R-SIG-DB) [aut],\nHadley Wickham [aut],\nKirill Müller [aut, cre] (),\nR Consortium [fnd]", + "Maintainer": "Kirill Müller ", + "Repository": "RSPM", + "Date/Publication": "2022-06-18 07:10:15 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:46:30 UTC; unix" + } + }, + "DT": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "DT", + "Type": "Package", + "Title": "A Wrapper of the JavaScript Library 'DataTables'", + "Version": "0.30", + "Authors@R": "c(\nperson(\"Yihui\", \"Xie\", email = \"xie@yihui.name\", role = c(\"aut\", \"cre\")),\nperson(\"Joe\", \"Cheng\", role = \"aut\"),\nperson(\"Xianying\", \"Tan\", role = \"aut\"),\nperson(\"JJ\", \"Allaire\", role = \"ctb\"),\nperson(\"Maximilian\", \"Girlich\", role = \"ctb\"),\nperson(\"Greg\", \"Freedman Ellis\", role = \"ctb\"),\nperson(\"Johannes\", \"Rauh\", role = \"ctb\"),\nperson(\"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables in htmlwidgets/lib\"),\nperson(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js in htmlwidgets/lib\"),\nperson(\"Leon\", \"Gersen\", role = c(\"ctb\", \"cph\"), comment = \"noUiSlider in htmlwidgets/lib\"),\nperson(\"Bartek\", \"Szopka\", role = c(\"ctb\", \"cph\"), comment = \"jquery.highlight.js in htmlwidgets/lib\"),\nperson(\"Alex\", \"Pickering\", role = c(\"ctb\")),\nperson(\"William\", \"Holmes\", role = c(\"ctb\")),\nperson(\"Mikko\", \"Marttila\", role = c(\"ctb\")),\nperson(\"Andres\", \"Quintero\", role = c(\"ctb\")),\nperson(\"Stéphane\", \"Laurent\", role = c(\"ctb\")),\nperson(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Maintainer": "Yihui Xie ", + "Description": "Data objects in R can be rendered as HTML tables using the\nJavaScript library 'DataTables' (typically via R Markdown or Shiny). The\n'DataTables' library has been included in this R package. The package name\n'DT' is an abbreviation of 'DataTables'.", + "URL": "https://github.com/rstudio/DT", + "BugReports": "https://github.com/rstudio/DT/issues", + "License": "GPL-3 | file LICENSE", + "Imports": "htmltools (>= 0.3.6), htmlwidgets (>= 1.3), httpuv, jsonlite\n(>= 0.9.16), magrittr, crosstalk, jquerylib, promises", + "Suggests": "knitr (>= 1.8), rmarkdown, shiny (>= 1.6), bslib, future,\ntestit, tibble", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2023-10-04 20:26:15 UTC; yihui", + "Author": "Yihui Xie [aut, cre],\nJoe Cheng [aut],\nXianying Tan [aut],\nJJ Allaire [ctb],\nMaximilian Girlich [ctb],\nGreg Freedman Ellis [ctb],\nJohannes Rauh [ctb],\nSpryMedia Limited [ctb, cph] (DataTables in htmlwidgets/lib),\nBrian Reavis [ctb, cph] (selectize.js in htmlwidgets/lib),\nLeon Gersen [ctb, cph] (noUiSlider in htmlwidgets/lib),\nBartek Szopka [ctb, cph] (jquery.highlight.js in htmlwidgets/lib),\nAlex Pickering [ctb],\nWilliam Holmes [ctb],\nMikko Marttila [ctb],\nAndres Quintero [ctb],\nStéphane Laurent [ctb],\nPosit Software, PBC [cph, fnd]", + "Repository": "RSPM", + "Date/Publication": "2023-10-05 13:10:02 UTC", + "Built": "R 4.3.0; ; 2023-10-06 11:07:28 UTC; unix" + } + }, + "FNN": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "FNN", + "Version": "1.1.3.2", + "Date": "2019-02-15", + "Title": "Fast Nearest Neighbor Search Algorithms and Applications", + "Author": "Alina Beygelzimer, Sham Kakadet and John Langford (cover tree library),\nSunil Arya and David Mount (ANN library 1.1.2 for the kd-tree approach), Shengqiao Li", + "Copyright": "ANN Copyright (c) 1997-2010 University of Maryland and Sunil\nArya and David Mount. All Rights Reserved.", + "Maintainer": "Shengqiao Li ", + "Depends": "R (>= 3.0.0)", + "Suggests": "chemometrics, mvtnorm", + "Description": "Cover-tree and kd-tree fast k-nearest neighbor search algorithms and related applications\nincluding KNN classification, regression and information measures are implemented.", + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Packaged": "2023-03-20 11:46:05 UTC; hornik", + "Repository": "RSPM", + "Date/Publication": "2023-03-20 14:01:18 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 03:30:13 UTC; unix" + } + }, + "KernSmooth": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "KernSmooth", + "Priority": "recommended", + "Version": "2.23-22", + "Date": "2023-07-10", + "Title": "Functions for Kernel Smoothing Supporting Wand & Jones (1995)", + "Authors@R": "c(person(\"Matt\", \"Wand\", role = \"aut\",\nemail = \"Matt.Wand@uts.edu.au\"),\nperson(\"Cleve\", \"Moler\", role = \"ctb\",\ncomment = \"LINPACK routines in src/d*\"),\nperson(\"Brian\", \"Ripley\", role = c(\"trl\", \"cre\", \"ctb\"),\nemail = \"ripley@stats.ox.ac.uk\",\ncomment = \"R port and updates\"))", + "Note": "Maintainers are not available to give advice on using a package\nthey did not author.", + "Depends": "R (>= 2.5.0), stats", + "Suggests": "MASS, carData", + "Description": "Functions for kernel smoothing (and density estimation)\ncorresponding to the book:\nWand, M.P. and Jones, M.C. (1995) \"Kernel Smoothing\".", + "License": "Unlimited", + "ByteCompile": "yes", + "NeedsCompilation": "yes", + "Packaged": "2023-07-10 11:00:31 UTC; ripley", + "Author": "Matt Wand [aut],\nCleve Moler [ctb] (LINPACK routines in src/d*),\nBrian Ripley [trl, cre, ctb] (R port and updates)", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN", + "Date/Publication": "2023-07-10 14:38:27 UTC", + "Built": "R 4.3.1; x86_64-pc-linux-gnu; 'Thu, 20 Jul 2023 14:56:34 +0000'; unix" + } + }, + "MASS": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "MASS", + "Priority": "recommended", + "Version": "7.3-60", + "Date": "2023-05-02", + "Revision": "$Rev: 3621 $", + "Depends": "R (>= 4.0), grDevices, graphics, stats, utils", + "Imports": "methods", + "Suggests": "lattice, nlme, nnet, survival", + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\nemail = \"ripley@stats.ox.ac.uk\"),\nperson(\"Bill\", \"Venables\", role = \"ctb\"),\nperson(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"),\nperson(\"Kurt\", \"Hornik\", role = \"trl\",\ncomment = \"partial port ca 1998\"),\nperson(\"Albrecht\", \"Gebhardt\", role = \"trl\",\ncomment = \"partial port ca 1998\"),\nperson(\"David\", \"Firth\", role = \"ctb\"))", + "Description": "Functions and datasets to support Venables and Ripley,\n\"Modern Applied Statistics with S\" (4th edition, 2002).", + "Title": "Support Functions and Datasets for Venables and Ripley's MASS", + "LazyData": "yes", + "ByteCompile": "yes", + "License": "GPL-2 | GPL-3", + "URL": "http://www.stats.ox.ac.uk/pub/MASS4/", + "Contact": "", + "NeedsCompilation": "yes", + "Packaged": "2023-05-02 16:42:41 UTC; ripley", + "Author": "Brian Ripley [aut, cre, cph],\nBill Venables [ctb],\nDouglas M. Bates [ctb],\nKurt Hornik [trl] (partial port ca 1998),\nAlbrecht Gebhardt [trl] (partial port ca 1998),\nDavid Firth [ctb]", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN", + "Date/Publication": "2023-05-04 07:32:21 UTC", + "Built": "R 4.3.1; x86_64-pc-linux-gnu; 'Thu, 29 Jun 2023 02:14:15 +0000'; unix" + } + }, + "Matrix": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "Matrix", + "Version": "1.6-0", + "Date": "2023-06-30", + "Priority": "recommended", + "Title": "Sparse and Dense Matrix Classes and Methods", + "Description": "A rich hierarchy of sparse and dense matrix classes,\nincluding general, triangular, symmetric, and diagonal matrices\nwith numeric, logical, or pattern entries. Efficient methods for\noperating on such matrices, often wrapping the 'BLAS', 'LAPACK',\nand 'SuiteSparse' libraries.", + "License": "GPL (>= 2) | file LICENCE", + "URL": "https://Matrix.R-forge.R-project.org", + "BugReports": "https://R-forge.R-project.org/tracker/?atid=294&group_id=61", + "Contact": "Matrix-authors@R-project.org", + "Authors@R": "c(person(\"Douglas\", \"Bates\", role = \"aut\",\ncomment = c(ORCID = \"0000-0001-8316-9503\")),\nperson(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"),\nemail = \"mmaechler+Matrix@gmail.com\",\ncomment = c(ORCID = \"0000-0002-8685-9910\")),\nperson(\"Mikael\", \"Jagan\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-3542-2938\")),\nperson(\"Timothy A.\", \"Davis\", role = \"ctb\",\ncomment = c(ORCID = \"0000-0001-7614-6899\",\n\"SuiteSparse libraries, notably CHOLMOD and AMD\",\n\"collaborators listed in dir(pattern=\\\"^[A-Z]+[.]txt$\\\", full.names=TRUE, system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"))\")),\nperson(\"Jens\", \"Oehlschlägel\", role = \"ctb\",\ncomment = \"initial nearPD()\"),\nperson(\"Jason\", \"Riedy\", role = \"ctb\",\ncomment = c(ORCID = \"0000-0002-4345-4200\",\n\"GNU Octave's condest() and onenormest()\",\n\"Copyright: Regents of the University of California\")),\nperson(\"R Core Team\", role = \"ctb\",\ncomment = \"base R's matrix implementation\"))", + "Depends": "R (>= 3.5.0), methods", + "Imports": "grDevices, graphics, grid, lattice, stats, utils", + "Suggests": "MASS, datasets, sfsmisc", + "Enhances": "SparseM, graph", + "LazyData": "no", + "LazyDataNote": "not possible, since we use data/*.R and our S4 classes", + "BuildResaveData": "no", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2023-07-03 13:28:32 UTC; maechler", + "Author": "Douglas Bates [aut] (),\nMartin Maechler [aut, cre] (),\nMikael Jagan [aut] (),\nTimothy A. Davis [ctb] (,\nSuiteSparse libraries, notably CHOLMOD and AMD, collaborators\nlisted in dir(pattern=\"^[A-Z]+[.]txt$\", full.names=TRUE,\nsystem.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"))),\nJens Oehlschlägel [ctb] (initial nearPD()),\nJason Riedy [ctb] (, GNU\nOctave's condest() and onenormest(), Copyright: Regents of the\nUniversity of California),\nR Core Team [ctb] (base R's matrix implementation)", + "Maintainer": "Martin Maechler ", + "Repository": "CRAN", + "Date/Publication": "2023-07-08 11:00:09 UTC", + "Built": "R 4.3.1; x86_64-pc-linux-gnu; 'Thu, 20 Jul 2023 20:10:24 +0000'; unix" + } + }, + "ModelMetrics": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "ModelMetrics", + "Title": "Rapid Calculation of Model Metrics", + "Version": "1.2.2.2", + "Date": "2018-11-03", + "Authors@R": "person(\"Tyler\", \"Hunt\", email = \"thunt@snapfinance.com\", role = c(\"aut\", \"cre\"))", + "Description": "Collection of metrics for evaluating models written in C++ using 'Rcpp'. Popular metrics include area under the curve, log loss, root mean square error, etc.", + "Depends": "R (>= 3.2.2)", + "License": "GPL (>= 2)", + "Encoding": "UTF-8", + "LazyData": "true", + "LinkingTo": "Rcpp", + "Imports": "Rcpp, data.table", + "RoxygenNote": "6.0.1", + "Suggests": "testthat", + "NeedsCompilation": "yes", + "Packaged": "2020-03-17 06:58:01 UTC; ripley", + "Author": "Tyler Hunt [aut, cre]", + "Maintainer": "Tyler Hunt ", + "Repository": "RSPM", + "Date/Publication": "2020-03-17 07:45:31 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 02:21:29 UTC; unix" + } + }, + "R6": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "R6", + "Title": "Encapsulated Classes with Reference Semantics", + "Version": "2.5.1", + "Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@stdout.org\")", + "Description": "Creates classes with reference semantics, similar to R's built-in\nreference classes. Compared to reference classes, R6 classes are simpler\nand lighter-weight, and they are not built on S4 classes so they do not\nrequire the methods package. These classes allow public and private\nmembers, and they support inheritance, even when the classes are defined in\ndifferent packages.", + "Depends": "R (>= 3.0)", + "Suggests": "testthat, pryr", + "License": "MIT + file LICENSE", + "URL": "https://r6.r-lib.org, https://github.com/r-lib/R6/", + "BugReports": "https://github.com/r-lib/R6/issues", + "RoxygenNote": "7.1.1", + "NeedsCompilation": "no", + "Packaged": "2021-08-06 20:18:46 UTC; winston", + "Author": "Winston Chang [aut, cre]", + "Maintainer": "Winston Chang ", + "Repository": "RSPM", + "Date/Publication": "2021-08-19 14:00:05 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 21:51:10 UTC; unix" + } + }, + "RColorBrewer": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "RColorBrewer", + "Version": "1.1-3", + "Date": "2022-04-03", + "Title": "ColorBrewer Palettes", + "Authors@R": "c(person(given = \"Erich\", family = \"Neuwirth\", role = c(\"aut\",\n\"cre\"), email = \"erich.neuwirth@univie.ac.at\"))", + "Author": "Erich Neuwirth [aut, cre]", + "Maintainer": "Erich Neuwirth ", + "Depends": "R (>= 2.0.0)", + "Description": "Provides color schemes for maps (and other graphics)\ndesigned by Cynthia Brewer as described at http://colorbrewer2.org.", + "License": "Apache License 2.0", + "Packaged": "2022-04-03 10:26:20 UTC; neuwirth", + "NeedsCompilation": "no", + "Repository": "RSPM", + "Date/Publication": "2022-04-03 19:20:13 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 21:44:53 UTC; unix" + } + }, + "Rcpp": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "Rcpp", + "Title": "Seamless R and C++ Integration", + "Version": "1.0.11", + "Date": "2023-07-03", + "Author": "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,\nNathan Russell, Inaki Ucar, Douglas Bates and John Chambers", + "Maintainer": "Dirk Eddelbuettel ", + "Description": "The 'Rcpp' package provides R functions as well as C++ classes which\noffer a seamless integration of R and C++. Many R data types and objects can be\nmapped back and forth to C++ equivalents which facilitates both writing of new\ncode as well as easier integration of third-party libraries. Documentation\nabout 'Rcpp' is provided by several vignettes included in this package, via the\n'Rcpp Gallery' site at , the paper by Eddelbuettel and\nFrancois (2011, ), the book by Eddelbuettel (2013,\n) and the paper by Eddelbuettel and Balamuta (2018,\n); see 'citation(\"Rcpp\")' for details.", + "Imports": "methods, utils", + "Suggests": "tinytest, inline, rbenchmark, pkgKitten (>= 0.1.2)", + "URL": "https://www.rcpp.org,\nhttps://dirk.eddelbuettel.com/code/rcpp.html,\nhttps://github.com/RcppCore/Rcpp", + "License": "GPL (>= 2)", + "BugReports": "https://github.com/RcppCore/Rcpp/issues", + "MailingList": "rcpp-devel@lists.r-forge.r-project.org", + "RoxygenNote": "6.1.1", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2023-07-03 15:56:55 UTC; edd", + "Repository": "RSPM", + "Date/Publication": "2023-07-06 07:33:14 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 02:13:44 UTC; unix" + } + }, + "RcppArmadillo": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "RcppArmadillo", + "Type": "Package", + "Title": "'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra\nLibrary", + "Version": "0.12.6.4.0", + "Date": "2024-09-06", + "Author": "Dirk Eddelbuettel, Romain Francois, Doug Bates, Binxiang Ni, and Conrad Sanderson", + "Maintainer": "Dirk Eddelbuettel ", + "Description": "'Armadillo' is a templated C++ linear algebra library (by Conrad\nSanderson) that aims towards a good balance between speed and ease of\nuse. Integer, floating point and complex numbers are supported, as\nwell as a subset of trigonometric and statistics functions. Various\nmatrix decompositions are provided through optional integration with\nLAPACK and ATLAS libraries. The 'RcppArmadillo' package includes the\nheader files from the templated 'Armadillo' library. Thus users do\nnot need to install 'Armadillo' itself in order to use\n'RcppArmadillo'. From release 7.800.0 on, 'Armadillo' is licensed\nunder Apache License 2; previous releases were under licensed as MPL\n2.0 from version 3.800.0 onwards and LGPL-3 prior to that;\n'RcppArmadillo' (the 'Rcpp' bindings/bridge to Armadillo) is licensed\nunder the GNU GPL version 2 or later, as is the rest of 'Rcpp'.", + "License": "GPL (>= 2)", + "LazyLoad": "yes", + "Depends": "R (>= 3.3.0)", + "LinkingTo": "Rcpp", + "Imports": "Rcpp (>= 0.11.0), stats, utils, methods", + "Suggests": "tinytest, Matrix (>= 1.3.0), pkgKitten, reticulate, slam", + "URL": "https://github.com/RcppCore/RcppArmadillo,\nhttps://dirk.eddelbuettel.com/code/rcpp.armadillo.html", + "BugReports": "https://github.com/RcppCore/RcppArmadillo/issues", + "NeedsCompilation": "yes", + "Packaged": "2023-09-07 23:47:58 UTC; edd", + "Repository": "RSPM", + "Date/Publication": "2023-09-10 09:00:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-12 02:39:35 UTC; unix" + } + }, + "RcppProgress": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "RcppProgress", + "Maintainer": "Karl Forner ", + "License": "GPL (>= 3)", + "Title": "An Interruptible Progress Bar with OpenMP Support for C++ in R\nPackages", + "Type": "Package", + "LazyLoad": "yes", + "Author": "Karl Forner ", + "Description": "Allows to display a progress bar in the R\nconsole for long running computations taking place in c++ code,\nand support for interrupting those computations even in multithreaded\ncode, typically using OpenMP.", + "URL": "https://github.com/kforner/rcpp_progress", + "BugReports": "https://github.com/kforner/rcpp_progress/issues", + "Version": "0.4.2", + "Date": "2020-02-06", + "Suggests": "RcppArmadillo, devtools, roxygen2, testthat", + "RoxygenNote": "6.1.1", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2020-02-06 10:57:24 UTC; karl", + "Repository": "RSPM", + "Date/Publication": "2020-02-06 12:10:08 UTC", + "Built": "R 4.3.0; ; 2023-05-30 12:29:34 UTC; unix" + } + }, + "SQUAREM": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "SQUAREM", + "Version": "2021.1", + "Date": "2021-01-12", + "Title": "Squared Extrapolation Methods for Accelerating EM-Like Monotone\nAlgorithms", + "Description": "Algorithms for accelerating the convergence of slow,\nmonotone sequences from smooth, contraction mapping such as the\nEM algorithm. It can be used to accelerate any smooth, linearly\nconvergent acceleration scheme. A tutorial style introduction\nto this package is available in a vignette on the CRAN download\npage or, when the package is loaded in an R session, with\nvignette(\"SQUAREM\"). Refer to the J Stat Software article: .", + "Depends": "R (>= 3.0)", + "Suggests": "setRNG", + "LazyLoad": "yes", + "License": "GPL (>= 2)", + "Author": "Ravi Varadhan", + "Maintainer": "Ravi Varadhan ", + "URL": "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html", + "Repository": "RSPM", + "NeedsCompilation": "no", + "Packaged": "2021-01-12 23:59:02 UTC; rvaradhan", + "Date/Publication": "2021-01-13 06:40:10 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:24:52 UTC; unix" + } + }, + "abind": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "abind", + "Version": "1.4-5", + "Date": "2016-06-19", + "Title": "Combine Multidimensional Arrays", + "Author": "Tony Plate and Richard Heiberger", + "Maintainer": "Tony Plate ", + "Description": "Combine multidimensional arrays into a single array.\nThis is a generalization of 'cbind' and 'rbind'. Works with\nvectors, matrices, and higher-dimensional arrays. Also\nprovides functions 'adrop', 'asub', and 'afill' for manipulating,\nextracting and replacing data in arrays.", + "Depends": "R (>= 1.5.0)", + "Imports": "methods, utils", + "License": "LGPL (>= 2)", + "NeedsCompilation": "no", + "Packaged": "2016-07-19 15:24:25 UTC; tap", + "Repository": "RSPM", + "Date/Publication": "2016-07-21 19:18:05", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:24:28 UTC; unix" + } + }, + "anytime": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "anytime", + "Type": "Package", + "Title": "Anything to 'POSIXct' or 'Date' Converter", + "Version": "0.3.9", + "Date": "2020-08-26", + "Author": "Dirk Eddelbuettel", + "Maintainer": "Dirk Eddelbuettel ", + "Description": "Convert input in any one of character, integer, numeric, factor,\nor ordered type into 'POSIXct' (or 'Date') objects, using one of a number of\npredefined formats, and relying on Boost facilities for date and time parsing.", + "URL": "http://dirk.eddelbuettel.com/code/anytime.html", + "BugReports": "https://github.com/eddelbuettel/anytime/issues", + "License": "GPL (>= 2)", + "Encoding": "UTF-8", + "Depends": "R (>= 3.2.0)", + "Imports": "Rcpp (>= 0.12.9)", + "LinkingTo": "Rcpp (>= 0.12.9), BH", + "Suggests": "tinytest (>= 1.0.0), gettz", + "RoxygenNote": "6.0.1", + "NeedsCompilation": "yes", + "Packaged": "2020-08-26 17:46:45.898451 UTC; edd", + "Repository": "RSPM", + "Date/Publication": "2020-08-27 11:40:21 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-22 00:00:04 UTC; unix" + } + }, + "ape": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "ape", + "Version": "5.7-1", + "Date": "2023-03-13", + "Title": "Analyses of Phylogenetics and Evolution", + "Authors@R": "c(person(\"Emmanuel\", \"Paradis\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Emmanuel.Paradis@ird.fr\", comment = c(ORCID = \"0000-0003-3092-2199\")),\nperson(\"Simon\", \"Blomberg\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0003-1062-0839\")),\nperson(\"Ben\", \"Bolker\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0002-2127-0443\")),\nperson(\"Joseph\", \"Brown\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0002-3835-8062\")),\nperson(\"Santiago\", \"Claramunt\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0002-8926-5974\")),\nperson(\"Julien\", \"Claude\", role = c(\"aut\", \"cph\"), , comment = c(ORCID = \"0000-0002-9267-1228\")),\nperson(\"Hoa Sien\", \"Cuong\", role = c(\"aut\", \"cph\")),\nperson(\"Richard\", \"Desper\", role = c(\"aut\", \"cph\")),\nperson(\"Gilles\", \"Didier\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0003-0596-9112\")),\nperson(\"Benoit\", \"Durand\", role = c(\"aut\", \"cph\")),\nperson(\"Julien\", \"Dutheil\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0001-7753-4121\")),\nperson(\"RJ\", \"Ewing\", role = c(\"aut\", \"cph\")),\nperson(\"Olivier\", \"Gascuel\", role = c(\"aut\", \"cph\")),\nperson(\"Thomas\", \"Guillerme\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0003-4325-1275\")),\nperson(\"Christoph\", \"Heibl\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0002-7655-3299\")),\nperson(\"Anthony\", \"Ives\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0001-9375-9523\")),\nperson(\"Bradley\", \"Jones\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0003-4498-1069\")),\nperson(\"Franz\", \"Krah\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0001-7866-7508\")),\nperson(\"Daniel\", \"Lawson\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0002-5311-6213\")),\nperson(\"Vincent\", \"Lefort\", role = c(\"aut\", \"cph\")),\nperson(\"Pierre\", \"Legendre\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0002-3838-3305\")),\nperson(\"Jim\", \"Lemon\", role = c(\"aut\", \"cph\")),\nperson(\"Guillaume\", \"Louvel\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0002-7745-0785\")),\nperson(\"Eric\", \"Marcon\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0002-5249-321X\")),\nperson(\"Rosemary\", \"McCloskey\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0002-9772-8553\")),\nperson(\"Johan\", \"Nylander\", role = c(\"aut\", \"cph\")),\nperson(\"Rainer\", \"Opgen-Rhein\", role = c(\"aut\", \"cph\")),\nperson(\"Andrei-Alin\", \"Popescu\", role = c(\"aut\", \"cph\")),\nperson(\"Manuela\", \"Royer-Carenzi\", role = c(\"aut\", \"cph\")),\nperson(\"Klaus\", \"Schliep\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0003-2941-0161\")),\nperson(\"Korbinian\", \"Strimmer\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0001-7917-2056\")),\nperson(\"Damien\", \"de Vienne\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0001-9532-5251\")))", + "Depends": "R (>= 3.2.0)", + "Suggests": "gee, expm, igraph, phangorn", + "Imports": "nlme, lattice, graphics, methods, stats, utils, parallel, Rcpp\n(>= 0.12.0), digest", + "LinkingTo": "Rcpp", + "ZipData": "no", + "Description": "Functions for reading, writing, plotting, and manipulating phylogenetic trees, analyses of comparative data in a phylogenetic framework, ancestral character analyses, analyses of diversification and macroevolution, computing distances from DNA sequences, reading and writing nucleotide sequences as well as importing from BioConductor, and several tools such as Mantel's test, generalized skyline plots, graphical exploration of phylogenetic data (alex, trex, kronoviz), estimation of absolute evolutionary rates and clock-like trees using mean path lengths and penalized likelihood, dating trees with non-contemporaneous sequences, translating DNA into AA sequences, and assessing sequence alignments. Phylogeny estimation can be done with the NJ, BIONJ, ME, MVR, SDM, and triangle methods, and several methods handling incomplete distance matrices (NJ*, BIONJ*, MVR*, and the corresponding triangle method). Some functions call external applications (PhyML, Clustal, T-Coffee, Muscle) whose results are returned into R.", + "License": "GPL-2 | GPL-3", + "URL": "http://ape-package.ird.fr/, https://github.com/emmanuelparadis/ape", + "BugReports": "https://github.com/emmanuelparadis/ape/issues", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2023-03-13 10:22:29 UTC; paradis", + "Author": "Emmanuel Paradis [aut, cre, cph]\n(),\nSimon Blomberg [aut, cph] (),\nBen Bolker [aut, cph] (),\nJoseph Brown [aut, cph] (),\nSantiago Claramunt [aut, cph] (),\nJulien Claude [aut, cph] (),\nHoa Sien Cuong [aut, cph],\nRichard Desper [aut, cph],\nGilles Didier [aut, cph] (),\nBenoit Durand [aut, cph],\nJulien Dutheil [aut, cph] (),\nRJ Ewing [aut, cph],\nOlivier Gascuel [aut, cph],\nThomas Guillerme [aut, cph] (),\nChristoph Heibl [aut, cph] (),\nAnthony Ives [aut, cph] (),\nBradley Jones [aut, cph] (),\nFranz Krah [aut, cph] (),\nDaniel Lawson [aut, cph] (),\nVincent Lefort [aut, cph],\nPierre Legendre [aut, cph] (),\nJim Lemon [aut, cph],\nGuillaume Louvel [aut, cph] (),\nEric Marcon [aut, cph] (),\nRosemary McCloskey [aut, cph] (),\nJohan Nylander [aut, cph],\nRainer Opgen-Rhein [aut, cph],\nAndrei-Alin Popescu [aut, cph],\nManuela Royer-Carenzi [aut, cph],\nKlaus Schliep [aut, cph] (),\nKorbinian Strimmer [aut, cph] (),\nDamien de Vienne [aut, cph] ()", + "Maintainer": "Emmanuel Paradis ", + "Repository": "RSPM", + "Date/Publication": "2023-03-13 12:20:09 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 02:52:53 UTC; unix" + } + }, + "askpass": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "askpass", + "Type": "Package", + "Title": "Password Entry Utilities for R, Git, and SSH", + "Version": "1.2.0", + "Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"),\nemail = \"jeroen@berkeley.edu\", comment = c(ORCID = \"0000-0002-4035-0289\"))", + "Description": "Cross-platform utilities for prompting the user for credentials or a\npassphrase, for example to authenticate with a server or read a protected key.\nIncludes native programs for MacOS and Windows, hence no 'tcltk' is required.\nPassword entry can be invoked in two different ways: directly from R via the\naskpass() function, or indirectly as password-entry back-end for 'ssh-agent'\nor 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables.\nThereby the user can be prompted for credentials or a passphrase if needed\nwhen R calls out to git or ssh.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/askpass", + "BugReports": "https://github.com/r-lib/askpass/issues", + "Encoding": "UTF-8", + "Imports": "sys (>= 2.1)", + "RoxygenNote": "7.2.3", + "Suggests": "testthat", + "Language": "en-US", + "NeedsCompilation": "yes", + "Packaged": "2023-09-03 19:16:12 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] ()", + "Maintainer": "Jeroen Ooms ", + "Repository": "RSPM", + "Date/Publication": "2023-09-03 20:00:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-04 11:31:18 UTC; unix" + } + }, + "base64enc": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "base64enc", + "Version": "0.1-3", + "Title": "Tools for base64 encoding", + "Author": "Simon Urbanek ", + "Maintainer": "Simon Urbanek ", + "Depends": "R (>= 2.9.0)", + "Enhances": "png", + "Description": "This package provides tools for handling base64 encoding. It is more flexible than the orphaned base64 package.", + "License": "GPL-2 | GPL-3", + "URL": "http://www.rforge.net/base64enc", + "NeedsCompilation": "yes", + "Packaged": "2015-02-04 20:31:00 UTC; svnuser", + "Repository": "RSPM", + "Date/Publication": "2015-07-28 08:03:37", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:47:28 UTC; unix" + } + }, + "bit": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "bit", + "Type": "Package", + "Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections", + "Version": "4.0.5", + "Date": "2022-11-13", + "Author": "Jens Oehlschlägel [aut, cre], Brian Ripley [ctb]", + "Maintainer": "Jens Oehlschlägel ", + "Depends": "R (>= 2.9.2)", + "Suggests": "testthat (>= 0.11.0), roxygen2, knitr, rmarkdown,\nmicrobenchmark, bit64 (>= 4.0.0), ff (>= 4.0.0)", + "Description": "Provided are classes for boolean and skewed boolean vectors,\nfast boolean methods, fast unique and non-unique integer sorting,\nfast set operations on sorted and unsorted sets of integers, and\nfoundations for ff (range index, compression, chunked processing).", + "License": "GPL-2 | GPL-3", + "LazyLoad": "yes", + "ByteCompile": "yes", + "Encoding": "UTF-8", + "URL": "https://github.com/truecluster/bit", + "VignetteBuilder": "knitr, rmarkdown", + "RoxygenNote": "7.2.0", + "NeedsCompilation": "yes", + "Packaged": "2022-11-13 21:22:09 UTC; jo", + "Repository": "RSPM", + "Date/Publication": "2022-11-15 21:20:16 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:43 UTC; unix" + } + }, + "bit64": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "bit64", + "Type": "Package", + "Title": "A S3 Class for Vectors of 64bit Integers", + "Version": "4.0.5", + "Date": "2020-08-29", + "Author": "Jens Oehlschlägel [aut, cre], Leonardo Silvestri [ctb]", + "Maintainer": "Jens Oehlschlägel ", + "Depends": "R (>= 3.0.1), bit (>= 4.0.0), utils, methods, stats", + "Description": "Package 'bit64' provides serializable S3 atomic 64bit (signed) integers.\nThese are useful for handling database keys and exact counting in +-2^63.\nWARNING: do not use them as replacement for 32bit integers, integer64 are not\nsupported for subscripting by R-core and they have different semantics when\ncombined with double, e.g. integer64 + double => integer64.\nClass integer64 can be used in vectors, matrices, arrays and data.frames.\nMethods are available for coercion from and to logicals, integers, doubles,\ncharacters and factors as well as many elementwise and summary functions.\nMany fast algorithmic operations such as 'match' and 'order' support inter-\nactive data exploration and manipulation and optionally leverage caching.", + "License": "GPL-2 | GPL-3", + "LazyLoad": "yes", + "ByteCompile": "yes", + "URL": "https://github.com/truecluster/bit64", + "Encoding": "UTF-8", + "Repository": "RSPM", + "Repository/R-Forge/Project": "ff", + "Repository/R-Forge/Revision": "177", + "Repository/R-Forge/DateTimeStamp": "2018-08-17 17:45:18", + "Date/Publication": "2020-08-30 07:20:02 UTC", + "NeedsCompilation": "yes", + "Packaged": "2020-08-29 10:56:45 UTC; jo", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:57 UTC; unix" + } + }, + "brio": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "brio", + "Title": "Basic R Input Output", + "Version": "1.1.3", + "Authors@R": "c(\nperson(\"Jim\", \"Hester\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-2739-7082\")),\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Functions to handle basic input output, these functions\nalways read and write UTF-8 (8-bit Unicode Transformation Format)\nfiles and provide more explicit control over line endings.", + "License": "MIT + file LICENSE", + "URL": "https://brio.r-lib.org, https://github.com/r-lib/brio", + "BugReports": "https://github.com/r-lib/brio/issues", + "Suggests": "covr, testthat (>= 2.1.0)", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "NeedsCompilation": "yes", + "Packaged": "2021-11-29 23:19:46 UTC; jhester", + "Author": "Jim Hester [aut] (),\nGábor Csárdi [aut, cre],\nRStudio [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "RSPM", + "Date/Publication": "2021-11-30 13:10:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 22:20:00 UTC; unix" + } + }, + "bslib": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "bslib", + "Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'", + "Version": "0.5.1", + "Authors@R": "c(\nperson(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"),\nperson(\"Garrick\", \"Aden-Buie\", role = \"aut\", email = \"garrick@posit.co\", comment = c(ORCID = \"0000-0002-7111-0077\")),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\nperson(family = \"Bootstrap contributors\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(family = \"Twitter, Inc\", role = \"cph\",\ncomment = \"Bootstrap library\"),\nperson(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"),\ncomment = \"Bootstrap colorpicker library\"),\nperson(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"),\ncomment = \"Bootswatch library\"),\nperson(family = \"PayPal\", role = c(\"ctb\", \"cph\"),\ncomment = \"Bootstrap accessibility plugin\")\n)", + "Description": "Simplifies custom 'CSS' styling of both 'shiny' and\n'rmarkdown' via 'Bootstrap' 'Sass'. Supports 'Bootstrap' 3, 4 and 5 as\nwell as their various 'Bootswatch' themes. An interactive widget is\nalso provided for previewing themes in real time.", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/bslib/, https://github.com/rstudio/bslib", + "BugReports": "https://github.com/rstudio/bslib/issues", + "Depends": "R (>= 2.10)", + "Imports": "base64enc, cachem, grDevices, htmltools (>= 0.5.4), jquerylib\n(>= 0.1.3), jsonlite, memoise (>= 2.0.1), mime, rlang, sass (>=\n0.4.0)", + "Suggests": "bsicons, curl, fontawesome, ggplot2, knitr, magrittr,\nrappdirs, rmarkdown (>= 2.7), shiny (>= 1.6.0), testthat,\nthematic, withr", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "Collate": "'accordion.R' 'breakpoints.R' 'bs-current-theme.R'\n'bs-dependencies.R' 'bs-global.R' 'bs-remove.R'\n'bs-theme-layers.R' 'bs-theme-preset-bootswatch.R'\n'bs-theme-preset-builtin.R' 'bs-theme-preset.R' 'utils.R'\n'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R'\n'bslib-package.R' 'card.R' 'deprecated.R' 'files.R' 'fill.R'\n'imports.R' 'input-switch.R' 'layout.R' 'nav-items.R'\n'nav-update.R' 'navs-legacy.R' 'navs.R' 'onLoad.R' 'page.R'\n'popover.R' 'precompiled.R' 'print.R' 'shiny-devmode.R'\n'sidebar.R' 'staticimports.R' 'tooltip.R' 'utils-deps.R'\n'utils-shiny.R' 'utils-tags.R' 'value-box.R'\n'version-default.R' 'versions.R'", + "Config/testthat/edition": "3", + "Config/Needs/routine": "chromote, desc, renv", + "Config/Needs/website": "brio, crosstalk, dplyr, DT, ggplot2, glue,\nhtmlwidgets, leaflet, lorem, palmerpenguins, plotly, purrr,\nrprojroot, rstudio/htmltools, scales, stringr, tidyr, webshot2", + "Config/Needs/deploy": "BH, cpp11, dplyr, DT, ggplot2, ggridges, gt,\nhexbin, histoslider, lattice, leaflet, lubridate, modelr,\nnycflights13, plotly, reactable, reshape2, rprojroot,\nrsconnect, scales", + "NeedsCompilation": "no", + "Packaged": "2023-08-11 15:31:21 UTC; cpsievert", + "Author": "Carson Sievert [aut, cre] (),\nJoe Cheng [aut],\nGarrick Aden-Buie [aut] (),\nPosit Software, PBC [cph, fnd],\nBootstrap contributors [ctb] (Bootstrap library),\nTwitter, Inc [cph] (Bootstrap library),\nJavi Aguilar [ctb, cph] (Bootstrap colorpicker library),\nThomas Park [ctb, cph] (Bootswatch library),\nPayPal [ctb, cph] (Bootstrap accessibility plugin)", + "Maintainer": "Carson Sievert ", + "Repository": "RSPM", + "Date/Publication": "2023-08-11 16:53:52 UTC", + "Built": "R 4.3.0; ; 2023-08-14 11:21:31 UTC; unix" + } + }, + "cachem": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "cachem", + "Version": "1.0.8", + "Title": "Cache R Objects with Automatic Pruning", + "Description": "Key-value stores with automatic pruning. Caches can limit\neither their total size or the age of the oldest object (or both),\nautomatically pruning objects to maintain the constraints.", + "Authors@R": "c(\nperson(\"Winston\", \"Chang\", , \"winston@rstudio.com\", c(\"aut\", \"cre\")),\nperson(family = \"RStudio\", role = c(\"cph\", \"fnd\")))", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "ByteCompile": "true", + "URL": "https://cachem.r-lib.org/, https://github.com/r-lib/cachem", + "Imports": "rlang, fastmap (>= 1.1.1)", + "Suggests": "testthat", + "RoxygenNote": "7.2.3", + "Config/Needs/routine": "lobstr", + "Config/Needs/website": "pkgdown", + "NeedsCompilation": "yes", + "Packaged": "2023-05-01 15:38:38 UTC; winston", + "Author": "Winston Chang [aut, cre],\nRStudio [cph, fnd]", + "Maintainer": "Winston Chang ", + "Repository": "RSPM", + "Date/Publication": "2023-05-01 16:40:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-03 00:20:55 UTC; unix" + } + }, + "callr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "callr", + "Title": "Call R from R", + "Version": "3.7.3", + "Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"),\ncomment = c(ORCID = \"0000-0001-7098-9676\")),\nperson(\"Winston\", \"Chang\", role = \"aut\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\")),\nperson(\"Mango Solutions\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "It is sometimes useful to perform a computation in a separate\nR process, without affecting the current R process at all. This\npackages does exactly that.", + "License": "MIT + file LICENSE", + "URL": "https://callr.r-lib.org, https://github.com/r-lib/callr#readme", + "BugReports": "https://github.com/r-lib/callr/issues", + "Depends": "R (>= 3.4)", + "Imports": "processx (>= 3.6.1), R6, utils", + "Suggests": "asciicast, cli (>= 1.1.0), covr, mockery, ps, rprojroot,\nspelling, testthat (>= 3.0.0), withr (>= 2.3.0)", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.1.9000", + "Config/testthat/edition": "3", + "Config/Needs/website": "r-lib/asciicast, glue, htmlwidgets, igraph,\ntibble, tidyverse/tidytemplate", + "NeedsCompilation": "no", + "Packaged": "2022-11-02 15:17:20 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre, cph] (),\nWinston Chang [aut],\nRStudio [cph, fnd],\nMango Solutions [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "RSPM", + "Date/Publication": "2022-11-02 16:40:11 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:53:50 UTC; unix" + } + }, + "caret": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "caret", + "Title": "Classification and Regression Training", + "Version": "6.0-94", + "Authors@R": "c(person(given = \"Max\",\nfamily = \"Kuhn\",\nrole = c(\"aut\", \"cre\"),\nemail = \"mxkuhn@gmail.com\",\ncomment = c(ORCID = \"0000-0003-2402-136X\")),\nperson(given = \"Jed\",\nfamily = \"Wing\",\nrole = \"ctb\"),\nperson(given = \"Steve\",\nfamily = \"Weston\",\nrole = \"ctb\"),\nperson(given = \"Andre\",\nfamily = \"Williams\",\nrole = \"ctb\"),\nperson(given = \"Chris\",\nfamily = \"Keefer\",\nrole = \"ctb\"),\nperson(given = \"Allan\",\nfamily = \"Engelhardt\",\nrole = \"ctb\"),\nperson(given = \"Tony\",\nfamily = \"Cooper\",\nrole = \"ctb\"),\nperson(given = \"Zachary\",\nfamily = \"Mayer\",\nrole = \"ctb\"),\nperson(given = \"Brenton\",\nfamily = \"Kenkel\",\nrole = \"ctb\"),\nperson(given = \"R Core Team\",\nrole = \"ctb\"),\nperson(given = \"Michael\",\nfamily = \"Benesty\",\nrole = \"ctb\"),\nperson(given = \"Reynald\",\nfamily = \"Lescarbeau\",\nrole = \"ctb\"),\nperson(given = \"Andrew\",\nfamily = \"Ziem\",\nrole = \"ctb\"),\nperson(given = \"Luca\",\nfamily = \"Scrucca\",\nrole = \"ctb\"),\nperson(given = \"Yuan\",\nfamily = \"Tang\",\nrole = \"ctb\"),\nperson(given = \"Can\",\nfamily = \"Candan\",\nrole = \"ctb\"),\nperson(given = \"Tyler\",\nfamily = \"Hunt\",\nrole = \"ctb\"))", + "Description": "Misc functions for training and plotting classification and\nregression models.", + "License": "GPL (>= 2)", + "URL": "https://github.com/topepo/caret/", + "BugReports": "https://github.com/topepo/caret/issues", + "Depends": "ggplot2, lattice (>= 0.20), R (>= 3.2.0)", + "Imports": "e1071, foreach, grDevices, methods, ModelMetrics (>= 1.2.2.2),\nnlme, plyr, pROC, recipes (>= 0.1.10), reshape2, stats, stats4,\nutils, withr (>= 2.0.0)", + "Suggests": "BradleyTerry2, covr, Cubist, dplyr, earth (>= 2.2-3),\nellipse, fastICA, gam (>= 1.15), ipred, kernlab, klaR, knitr,\nMASS, Matrix, mda, mgcv, mlbench, MLmetrics, nnet, pamr, party\n(>= 0.9-99992), pls, proxy, randomForest, RANN, rmarkdown,\nrpart, spls, subselect, superpc, testthat (>= 0.9.1), themis\n(>= 0.1.3)", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-03-21 18:04:50 UTC; max", + "Author": "Max Kuhn [aut, cre] (),\nJed Wing [ctb],\nSteve Weston [ctb],\nAndre Williams [ctb],\nChris Keefer [ctb],\nAllan Engelhardt [ctb],\nTony Cooper [ctb],\nZachary Mayer [ctb],\nBrenton Kenkel [ctb],\nR Core Team [ctb],\nMichael Benesty [ctb],\nReynald Lescarbeau [ctb],\nAndrew Ziem [ctb],\nLuca Scrucca [ctb],\nYuan Tang [ctb],\nCan Candan [ctb],\nTyler Hunt [ctb]", + "Maintainer": "Max Kuhn ", + "Repository": "RSPM", + "Date/Publication": "2023-03-21 19:30:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:20:39 UTC; unix" + } + }, + "class": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "class", + "Priority": "recommended", + "Version": "7.3-22", + "Date": "2023-05-02", + "Depends": "R (>= 3.0.0), stats, utils", + "Imports": "MASS", + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\nemail = \"ripley@stats.ox.ac.uk\"),\nperson(\"William\", \"Venables\", role = \"cph\"))", + "Description": "Various functions for classification, including k-nearest\nneighbour, Learning Vector Quantization and Self-Organizing Maps.", + "Title": "Functions for Classification", + "ByteCompile": "yes", + "License": "GPL-2 | GPL-3", + "URL": "http://www.stats.ox.ac.uk/pub/MASS4/", + "NeedsCompilation": "yes", + "Packaged": "2023-05-02 16:15:43 UTC; ripley", + "Author": "Brian Ripley [aut, cre, cph],\nWilliam Venables [cph]", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN", + "Date/Publication": "2023-05-03 11:01:28 UTC", + "Built": "R 4.3.1; x86_64-pc-linux-gnu; 'Thu, 29 Jun 2023 02:14:27 +0000'; unix" + } + }, + "classInt": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "classInt", + "Version": "0.4-10", + "Date": "2023-08-24", + "Title": "Choose Univariate Class Intervals", + "Authors@R": "c(\nperson(\"Roger\", \"Bivand\", role=c(\"aut\", \"cre\"), email=\"Roger.Bivand@nhh.no\", comment=c(ORCID=\"0000-0003-2392-6140\")),\nperson(\"Bill\", \"Denney\", role=\"ctb\", comment=c(ORCID=\"0000-0002-5759-428X\")),\nperson(\"Richard\", \"Dunlap\", role=\"ctb\"),\nperson(\"Diego\", \"Hernangómez\", role=\"ctb\", comment=c(ORCID=\"0000-0001-8457-4658\")),\nperson(\"Hisaji\", \"Ono\", role=\"ctb\"),\nperson(\"Josiah\", \"Parry\", role = \"ctb\", comment = c(ORCID = \"0000-0001-9910-865X\")),\nperson(\"Matthieu\", \"Stigler\", role=\"ctb\", comment =c(ORCID=\"0000-0002-6802-4290\")))", + "Depends": "R (>= 2.2)", + "Imports": "grDevices, stats, graphics, e1071, class, KernSmooth", + "Suggests": "spData (>= 0.2.6.2), units, knitr, rmarkdown, tinytest", + "NeedsCompilation": "yes", + "Description": "Selected commonly used methods for choosing univariate class intervals for mapping or other graphics purposes.", + "License": "GPL (>= 2)", + "URL": "https://r-spatial.github.io/classInt/,\nhttps://github.com/r-spatial/classInt/", + "BugReports": "https://github.com/r-spatial/classInt/issues/", + "RoxygenNote": "6.1.1", + "Encoding": "UTF-8", + "VignetteBuilder": "knitr", + "Packaged": "2023-09-05 08:36:55 UTC; rsb", + "Author": "Roger Bivand [aut, cre] (),\nBill Denney [ctb] (),\nRichard Dunlap [ctb],\nDiego Hernangómez [ctb] (),\nHisaji Ono [ctb],\nJosiah Parry [ctb] (),\nMatthieu Stigler [ctb] ()", + "Maintainer": "Roger Bivand ", + "Repository": "RSPM", + "Date/Publication": "2023-09-05 13:00:06 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-06 11:25:06 UTC; unix" + } + }, + "cli": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "cli", + "Title": "Helpers for Developing Command Line Interfaces", + "Version": "3.6.1", + "Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"Hadley\", \"Wickham\", role = \"ctb\"),\nperson(\"Kirill\", \"Müller\", role = \"ctb\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "A suite of tools to build attractive command line interfaces\n('CLIs'), from semantic elements: headings, lists, alerts, paragraphs,\netc. Supports custom themes via a 'CSS'-like language. It also\ncontains a number of lower level 'CLI' elements: rules, boxes, trees,\nand 'Unicode' symbols with 'ASCII' alternatives. It support ANSI\ncolors and text styles as well.", + "License": "MIT + file LICENSE", + "URL": "https://cli.r-lib.org, https://github.com/r-lib/cli#readme", + "BugReports": "https://github.com/r-lib/cli/issues", + "Depends": "R (>= 3.4)", + "Imports": "utils", + "Suggests": "callr, covr, crayon, digest, glue (>= 1.6.0), grDevices,\nhtmltools, htmlwidgets, knitr, methods, mockery, processx, ps\n(>= 1.3.4.9000), rlang (>= 1.0.2.9003), rmarkdown, rprojroot,\nrstudioapi, testthat, tibble, whoami, withr", + "Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc,\nfansi, prettyunits, sessioninfo, tidyverse/tidytemplate,\nusethis, vctrs", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1.9000", + "NeedsCompilation": "yes", + "Packaged": "2023-03-22 13:59:32 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre],\nHadley Wickham [ctb],\nKirill Müller [ctb],\nRStudio [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "RSPM", + "Date/Publication": "2023-03-23 12:52:05 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:44:50 UTC; unix" + } + }, + "clipr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Type": "Package", + "Package": "clipr", + "Title": "Read and Write from the System Clipboard", + "Version": "0.8.0", + "Authors@R": "c(\nperson(\"Matthew\", \"Lincoln\", , \"matthew.d.lincoln@gmail.com\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-4387-3384\")),\nperson(\"Louis\", \"Maddox\", role = \"ctb\"),\nperson(\"Steve\", \"Simpson\", role = \"ctb\"),\nperson(\"Jennifer\", \"Bryan\", role = \"ctb\")\n)", + "Description": "Simple utility functions to read from and write to\nthe Windows, OS X, and X11 clipboards.", + "License": "GPL-3", + "URL": "https://github.com/mdlincoln/clipr,\nhttp://matthewlincoln.net/clipr/", + "BugReports": "https://github.com/mdlincoln/clipr/issues", + "Imports": "utils", + "Suggests": "covr, knitr, rmarkdown, rstudioapi (>= 0.5), testthat (>=\n2.0.0)", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.1.2", + "SystemRequirements": "xclip (https://github.com/astrand/xclip) or xsel\n(http://www.vergenet.net/~conrad/software/xsel/) for accessing\nthe X11 clipboard, or wl-clipboard\n(https://github.com/bugaevc/wl-clipboard) for systems using\nWayland.", + "NeedsCompilation": "no", + "Packaged": "2022-02-19 02:20:21 UTC; mlincoln", + "Author": "Matthew Lincoln [aut, cre] (),\nLouis Maddox [ctb],\nSteve Simpson [ctb],\nJennifer Bryan [ctb]", + "Maintainer": "Matthew Lincoln ", + "Repository": "RSPM", + "Date/Publication": "2022-02-22 00:58:45 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:44:55 UTC; unix" + } + }, + "clock": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "clock", + "Title": "Date-Time Types and Tools", + "Version": "0.7.0", + "Authors@R": "c(\nperson(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Provides a comprehensive library for date-time manipulations\nusing a new family of orthogonal date-time classes (durations, time\npoints, zoned-times, and calendars) that partition responsibilities so\nthat the complexities of time zones are only considered when they are\nreally needed. Capabilities include: date-time parsing, formatting,\narithmetic, extraction and updating of components, and rounding.", + "License": "MIT + file LICENSE", + "URL": "https://clock.r-lib.org, https://github.com/r-lib/clock", + "BugReports": "https://github.com/r-lib/clock/issues", + "Depends": "R (>= 3.5.0)", + "Imports": "cli (>= 3.6.1), lifecycle (>= 1.0.3), rlang (>= 1.1.0), tzdb\n(>= 0.4.0), vctrs (>= 0.6.1)", + "Suggests": "covr, knitr, magrittr, pillar, rmarkdown, slider (>= 0.3.0),\ntestthat (>= 3.0.0), withr", + "LinkingTo": "cpp11 (>= 0.4.3), tzdb (>= 0.4.0)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "lubridate, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-05-15 17:58:13 UTC; davis", + "Author": "Davis Vaughan [aut, cre],\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "RSPM", + "Date/Publication": "2023-05-15 19:10:05 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-21 11:14:28 UTC; unix" + } + }, + "cluster": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "cluster", + "Version": "2.1.4", + "Date": "2022-08-19", + "Priority": "recommended", + "Title": "\"Finding Groups in Data\": Cluster Analysis Extended Rousseeuw et\nal.", + "Description": "Methods for Cluster analysis. Much extended the original from\nPeter Rousseeuw, Anja Struyf and Mia Hubert,\nbased on Kaufman and Rousseeuw (1990) \"Finding Groups in Data\".", + "Maintainer": "Martin Maechler ", + "Authors@R": "c(person(\"Martin\",\"Maechler\", role = c(\"aut\",\"cre\"),\nemail=\"maechler@stat.math.ethz.ch\", comment = c(ORCID = \"0000-0002-8685-9910\"))\n,person(\"Peter\", \"Rousseeuw\", role=\"aut\", email=\"peter.rousseeuw@kuleuven.be\",\ncomment = c(\"Fortran original\", ORCID = \"0000-0002-3807-5353\"))\n,person(\"Anja\", \"Struyf\", role=\"aut\", comment= \"S original\")\n,person(\"Mia\", \"Hubert\", role=\"aut\", email= \"Mia.Hubert@uia.ua.ac.be\",\ncomment = c(\"S original\", ORCID = \"0000-0001-6398-4850\"))\n,person(\"Kurt\", \"Hornik\", role=c(\"trl\", \"ctb\"),\nemail=\"Kurt.Hornik@R-project.org\",\ncomment=c(\"port to R; maintenance(1999-2000)\", ORCID=\"0000-0003-4198-9911\"))\n,person(\"Matthias\", \"Studer\", role=\"ctb\")\n,person(\"Pierre\", \"Roudier\", role=\"ctb\")\n,person(\"Juan\", \"Gonzalez\", role=\"ctb\")\n,person(\"Kamil\", \"Kozlowski\", role=\"ctb\")\n,person(\"Erich\", \"Schubert\", role=\"ctb\", comment = c(\"fastpam options for pam()\",\nORCID = \"0000-0001-9143-4880\"))\n,person(\"Keefe\", \"Murphy\", role=\"ctb\", comment = \"volume.ellipsoid({d >= 3})\")\n)", + "Depends": "R (>= 3.5.0)", + "Imports": "graphics, grDevices, stats, utils", + "Suggests": "MASS, Matrix", + "SuggestsNote": "MASS: two examples using cov.rob() and mvrnorm(); Matrix\ntools for testing", + "LazyLoad": "yes", + "LazyData": "yes", + "ByteCompile": "yes", + "BuildResaveData": "no", + "License": "GPL (>= 2)", + "URL": "https://svn.r-project.org/R-packages/trunk/cluster/", + "NeedsCompilation": "yes", + "Packaged": "2022-08-19 13:31:31 UTC; maechler", + "Author": "Martin Maechler [aut, cre] (),\nPeter Rousseeuw [aut] (Fortran original,\n),\nAnja Struyf [aut] (S original),\nMia Hubert [aut] (S original, ),\nKurt Hornik [trl, ctb] (port to R; maintenance(1999-2000),\n),\nMatthias Studer [ctb],\nPierre Roudier [ctb],\nJuan Gonzalez [ctb],\nKamil Kozlowski [ctb],\nErich Schubert [ctb] (fastpam options for pam(),\n),\nKeefe Murphy [ctb] (volume.ellipsoid({d >= 3}))", + "Repository": "CRAN", + "Date/Publication": "2022-08-22 10:10:02 UTC", + "Built": "R 4.2.1; x86_64-pc-linux-gnu; 'Wed, 24 Aug 2022 01:28:00 +0000'; unix" + } + }, + "codetools": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "codetools", + "Version": "0.2-19", + "Priority": "recommended", + "Author": "Luke Tierney ", + "Description": "Code analysis tools for R.", + "Title": "Code Analysis Tools for R", + "Depends": "R (>= 2.1)", + "Maintainer": "Luke Tierney ", + "URL": "https://gitlab.com/luke-tierney/codetools", + "License": "GPL", + "NeedsCompilation": "no", + "Packaged": "2023-01-31 19:16:51 UTC; luke", + "Repository": "CRAN", + "Date/Publication": "2023-02-01 13:21:59 UTC", + "Built": "R 4.2.2; ; 'Sat, 04 Feb 2023 14:51:19 +0000'; unix" + } + }, + "colorspace": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "colorspace", + "Version": "2.1-0", + "Date": "2023-01-23", + "Title": "A Toolbox for Manipulating and Assessing Colors and Palettes", + "Authors@R": "c(person(given = \"Ross\", family = \"Ihaka\", role = \"aut\", email = \"ihaka@stat.auckland.ac.nz\"),\nperson(given = \"Paul\", family = \"Murrell\", role = \"aut\", email = \"paul@stat.auckland.ac.nz\",\ncomment = c(ORCID = \"0000-0002-3224-8858\")),\nperson(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"Kurt.Hornik@R-project.org\",\ncomment = c(ORCID = \"0000-0003-4198-9911\")),\nperson(given = c(\"Jason\", \"C.\"), family = \"Fisher\", role = \"aut\", email = \"jfisher@usgs.gov\",\ncomment = c(ORCID = \"0000-0001-9032-8912\")),\nperson(given = \"Reto\", family = \"Stauffer\", role = \"aut\", email = \"Reto.Stauffer@uibk.ac.at\",\ncomment = c(ORCID = \"0000-0002-3798-5507\")),\nperson(given = c(\"Claus\", \"O.\"), family = \"Wilke\", role = \"aut\", email = \"wilke@austin.utexas.edu\",\ncomment = c(ORCID = \"0000-0002-7470-9261\")),\nperson(given = c(\"Claire\", \"D.\"), family = \"McWhite\", role = \"aut\", email = \"claire.mcwhite@utmail.utexas.edu\",\ncomment = c(ORCID = \"0000-0001-7346-3047\")),\nperson(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\",\ncomment = c(ORCID = \"0000-0003-0918-3766\")))", + "Description": "Carries out mapping between assorted color spaces including RGB, HSV, HLS,\nCIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB, and polar CIELAB.\nQualitative, sequential, and diverging color palettes based on HCL colors\nare provided along with corresponding ggplot2 color scales.\nColor palette choice is aided by an interactive app (with either a Tcl/Tk\nor a shiny graphical user interface) and shiny apps with an HCL color picker and a\ncolor vision deficiency emulator. Plotting functions for displaying\nand assessing palettes include color swatches, visualizations of the\nHCL space, and trajectories in HCL and/or RGB spectrum. Color manipulation\nfunctions include: desaturation, lightening/darkening, mixing, and\nsimulation of color vision deficiencies (deutanomaly, protanomaly, tritanomaly).\nDetails can be found on the project web page at \nand in the accompanying scientific paper: Zeileis et al. (2020, Journal of Statistical\nSoftware, ).", + "Depends": "R (>= 3.0.0), methods", + "Imports": "graphics, grDevices, stats", + "Suggests": "datasets, utils, KernSmooth, MASS, kernlab, mvtnorm, vcd,\ntcltk, shiny, shinyjs, ggplot2, dplyr, scales, grid, png, jpeg,\nknitr, rmarkdown, RColorBrewer, rcartocolor, scico, viridis,\nwesanderson", + "VignetteBuilder": "knitr", + "License": "BSD_3_clause + file LICENSE", + "URL": "https://colorspace.R-Forge.R-project.org/, https://hclwizard.org/", + "BugReports": "https://colorspace.R-Forge.R-project.org/contact.html", + "LazyData": "yes", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-01-23 08:50:11 UTC; zeileis", + "Author": "Ross Ihaka [aut],\nPaul Murrell [aut] (),\nKurt Hornik [aut] (),\nJason C. Fisher [aut] (),\nReto Stauffer [aut] (),\nClaus O. Wilke [aut] (),\nClaire D. McWhite [aut] (),\nAchim Zeileis [aut, cre] ()", + "Maintainer": "Achim Zeileis ", + "Repository": "RSPM", + "Date/Publication": "2023-01-23 11:40:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:54:01 UTC; unix" + } + }, + "commonmark": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "commonmark", + "Type": "Package", + "Title": "High Performance CommonMark and Github Markdown Rendering in R", + "Version": "1.9.0", + "Authors@R": "c(\nperson(\"Jeroen\", \"Ooms\", ,\"jeroen@berkeley.edu\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-4035-0289\")),\nperson(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))", + "URL": "https://docs.ropensci.org/commonmark/\nhttps://r-lib.r-universe.dev/commonmark\nhttps://github.github.com/gfm/ (spec)", + "BugReports": "https://github.com/r-lib/commonmark/issues", + "Description": "The CommonMark specification defines a rationalized version of markdown\nsyntax. This package uses the 'cmark' reference implementation for converting\nmarkdown text into various formats including html, latex and groff man. In\naddition it exposes the markdown parse tree in xml format. Also includes opt-in\nsupport for GFM extensions including tables, autolinks, and strikethrough text.", + "License": "BSD_2_clause + file LICENSE", + "Suggests": "curl, testthat, xml2", + "RoxygenNote": "7.2.3", + "Language": "en-US", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2023-03-17 18:02:44 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (),\nJohn MacFarlane [cph] (Author of cmark)", + "Maintainer": "Jeroen Ooms ", + "Repository": "RSPM", + "Date/Publication": "2023-03-17 18:40:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:32 UTC; unix" + } + }, + "cpp11": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "cpp11", + "Title": "A C++11 Interface for R's C Interface", + "Version": "0.4.6", + "Authors@R": "c(\nperson(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")),\nperson(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")),\nperson(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")),\nperson(\"Benjamin\", \"Kietzman\", role = \"ctb\"),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Provides a header only, C++11 interface to R's C\ninterface. Compared to other approaches 'cpp11' strives to be safe\nagainst long jumps from the C API as well as C++ exceptions, conform\nto normal R function semantics and supports interaction with 'ALTREP'\nvectors.", + "License": "MIT + file LICENSE", + "URL": "https://cpp11.r-lib.org, https://github.com/r-lib/cpp11", + "BugReports": "https://github.com/r-lib/cpp11/issues", + "Depends": "R (>= 3.5.0)", + "Suggests": "bench, brio, callr, cli, covr, decor, desc, ggplot2, glue,\nknitr, lobstr, mockery, progress, rmarkdown, scales, Rcpp,\ntestthat, tibble, utils, vctrs, withr", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/Needs/cpp11/cpp_register": "brio, cli, decor, desc, glue, tibble,\nvctrs", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-08-08 21:27:43 UTC; davis", + "Author": "Davis Vaughan [aut, cre] (),\nJim Hester [aut] (),\nRomain François [aut] (),\nBenjamin Kietzman [ctb],\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "RSPM", + "Date/Publication": "2023-08-10 06:50:07 UTC", + "Built": "R 4.3.0; ; 2023-08-11 13:04:02 UTC; unix" + } + }, + "crayon": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "crayon", + "Title": "Colored Terminal Output", + "Version": "1.5.2", + "Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\",\nrole = c(\"aut\", \"cre\")),\nperson(\n\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\nrole=c(\"ctb\"))\n)", + "Description": "The crayon package is now superseded. Please use the 'cli' package\nfor new projects.\nColored terminal output on terminals that support 'ANSI'\ncolor and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI'\ncolor support is automatically detected. Colors and highlighting can\nbe combined and nested. New styles can also be created easily.\nThis package was inspired by the 'chalk' 'JavaScript' project.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/crayon#readme", + "BugReports": "https://github.com/r-lib/crayon/issues", + "Collate": "'aaa-rstudio-detect.R' 'aaaa-rematch2.R'\n'aab-num-ansi-colors.R' 'aac-num-ansi-colors.R' 'ansi-256.r'\n'ansi-palette.R' 'combine.r' 'string.r' 'utils.r'\n'crayon-package.r' 'disposable.r' 'enc-utils.R' 'has_ansi.r'\n'has_color.r' 'link.R' 'styles.r' 'machinery.r' 'parts.r'\n'print.r' 'style-var.r' 'show.r' 'string_operations.r'", + "Imports": "grDevices, methods, utils", + "Suggests": "mockery, rstudioapi, testthat, withr", + "RoxygenNote": "7.1.2", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2022-09-29 06:24:10 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre],\nBrodie Gaslam [ctb]", + "Maintainer": "Gábor Csárdi ", + "Repository": "RSPM", + "Date/Publication": "2022-09-29 16:20:24 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:45:59 UTC; unix" + } + }, + "crosstalk": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "crosstalk", + "Type": "Package", + "Title": "Inter-Widget Interactivity for HTML Widgets", + "Version": "1.2.0", + "Authors@R": "c(\nperson(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"),\nperson(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"),\nemail = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(family = \"RStudio\", role = \"cph\"),\nperson(family = \"jQuery Foundation\", role = \"cph\",\ncomment = \"jQuery library and jQuery UI library\"),\nperson(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\ncomment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\nperson(\"Mark\", \"Otto\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(\"Jacob\", \"Thornton\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(family = \"Bootstrap contributors\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(family = \"Twitter, Inc\", role = \"cph\",\ncomment = \"Bootstrap library\"),\nperson(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\ncomment = \"selectize.js library\"),\nperson(\"Kristopher Michael\", \"Kowal\", role = c(\"ctb\", \"cph\"),\ncomment = \"es5-shim library\"),\nperson(family = \"es5-shim contributors\", role = c(\"ctb\", \"cph\"),\ncomment = \"es5-shim library\"),\nperson(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\ncomment = \"ion.rangeSlider library\"),\nperson(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\ncomment = \"Javascript strftime library\")\n)", + "Description": "Provides building blocks for allowing HTML widgets to communicate\nwith each other, with Shiny or without (i.e. static .html files). Currently\nsupports linked brushing and filtering.", + "License": "MIT + file LICENSE", + "Imports": "htmltools (>= 0.3.6), jsonlite, lazyeval, R6", + "Suggests": "shiny, ggplot2, testthat (>= 2.1.0), sass, bslib", + "URL": "https://rstudio.github.io/crosstalk/", + "BugReports": "https://github.com/rstudio/crosstalk/issues", + "RoxygenNote": "7.1.1", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2021-11-04 15:35:47 UTC; cpsievert", + "Author": "Joe Cheng [aut],\nCarson Sievert [aut, cre] (),\nRStudio [cph],\njQuery Foundation [cph] (jQuery library and jQuery UI library),\njQuery contributors [ctb, cph] (jQuery library; authors listed in\ninst/www/shared/jquery-AUTHORS.txt),\nMark Otto [ctb] (Bootstrap library),\nJacob Thornton [ctb] (Bootstrap library),\nBootstrap contributors [ctb] (Bootstrap library),\nTwitter, Inc [cph] (Bootstrap library),\nBrian Reavis [ctb, cph] (selectize.js library),\nKristopher Michael Kowal [ctb, cph] (es5-shim library),\nes5-shim contributors [ctb, cph] (es5-shim library),\nDenis Ineshin [ctb, cph] (ion.rangeSlider library),\nSami Samhuri [ctb, cph] (Javascript strftime library)", + "Maintainer": "Carson Sievert ", + "Repository": "RSPM", + "Date/Publication": "2021-11-04 16:30:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 22:20:39 UTC; unix" + } + }, + "crul": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "crul", + "Title": "HTTP Client", + "Description": "A simple HTTP client, with tools for making HTTP requests,\nand mocking HTTP requests. The package is built on R6, and takes\ninspiration from Ruby's 'faraday' gem ().\nThe package name is a play on curl, the widely used command line tool\nfor HTTP, and this package is built on top of the R package 'curl', an\ninterface to 'libcurl' ().", + "Version": "1.4.0", + "License": "MIT + file LICENSE", + "Authors@R": "c(\nperson(\"Scott\", \"Chamberlain\", role = c(\"aut\", \"cre\"),\nemail = \"myrmecocystus@gmail.com\",\ncomment = c(ORCID = \"0000-0003-1444-9135\"))\n)", + "URL": "https://docs.ropensci.org/crul/ (website)\nhttps://github.com/ropensci/crul (devel)\nhttps://books.ropensci.org/http-testing/ (user manual)", + "BugReports": "https://github.com/ropensci/crul/issues", + "Encoding": "UTF-8", + "Language": "en-US", + "Imports": "curl (>= 3.3), R6 (>= 2.2.0), urltools (>= 1.6.0), httpcode\n(>= 0.2.0), jsonlite, mime", + "Suggests": "testthat, roxygen2 (>= 7.1.1), fauxpas (>= 0.1.0), webmockr\n(>= 0.1.0), knitr, rmarkdown", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.2.3", + "X-schema.org-applicationCategory": "Web", + "X-schema.org-keywords": "http, https, API, web-services, curl, download,\nlibcurl, async, mocking, caching", + "X-schema.org-isPartOf": "https://ropensci.org", + "NeedsCompilation": "no", + "Packaged": "2023-05-13 02:57:08 UTC; sckott", + "Author": "Scott Chamberlain [aut, cre] ()", + "Maintainer": "Scott Chamberlain ", + "Repository": "RSPM", + "Date/Publication": "2023-05-17 07:30:02 UTC", + "Built": "R 4.3.0; ; 2023-05-18 11:50:55 UTC; unix" + } + }, + "curl": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "curl", + "Type": "Package", + "Title": "A Modern and Flexible Web Client for R", + "Version": "5.1.0", + "Authors@R": "c(\nperson(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroen@berkeley.edu\",\ncomment = c(ORCID = \"0000-0002-4035-0289\")),\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"ctb\"),\nperson(\"RStudio\", role = \"cph\")\n)", + "Description": "The curl() and curl_download() functions provide highly\nconfigurable drop-in replacements for base url() and download.file() with\nbetter performance, support for encryption (https, ftps), gzip compression,\nauthentication, and other 'libcurl' goodies. The core of the package implements a\nframework for performing fully customized requests where data can be processed\neither in memory, on disk, or streaming via the callback or connection\ninterfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly\nweb client see the 'httr' package which builds on this package with http\nspecific tools and logic.", + "License": "MIT + file LICENSE", + "SystemRequirements": "libcurl: libcurl-devel (rpm) or\nlibcurl4-openssl-dev (deb).", + "URL": "https://jeroen.r-universe.dev/curl https://curl.se/libcurl/", + "BugReports": "https://github.com/jeroen/curl/issues", + "Suggests": "spelling, testthat (>= 1.0.0), knitr, jsonlite, rmarkdown,\nmagrittr, httpuv (>= 1.4.4), webutils", + "VignetteBuilder": "knitr", + "Depends": "R (>= 3.0.0)", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "Language": "en-US", + "NeedsCompilation": "yes", + "Packaged": "2023-09-30 07:44:16 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (),\nHadley Wickham [ctb],\nRStudio [cph]", + "Maintainer": "Jeroen Ooms ", + "Repository": "RSPM", + "Date/Publication": "2023-10-02 15:20:07 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-10-03 11:18:38 UTC; unix" + } + }, + "data.table": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "data.table", + "Version": "1.14.8", + "Title": "Extension of `data.frame`", + "Authors@R": "c(\nperson(\"Matt\",\"Dowle\", role=c(\"aut\",\"cre\"), email=\"mattjdowle@gmail.com\"),\nperson(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"asrini@pm.me\"),\nperson(\"Jan\",\"Gorecki\", role=\"ctb\"),\nperson(\"Michael\",\"Chirico\", role=\"ctb\"),\nperson(\"Pasha\",\"Stetsenko\", role=\"ctb\"),\nperson(\"Tom\",\"Short\", role=\"ctb\"),\nperson(\"Steve\",\"Lianoglou\", role=\"ctb\"),\nperson(\"Eduard\",\"Antonyan\", role=\"ctb\"),\nperson(\"Markus\",\"Bonsch\", role=\"ctb\"),\nperson(\"Hugh\",\"Parsonage\", role=\"ctb\"),\nperson(\"Scott\",\"Ritchie\", role=\"ctb\"),\nperson(\"Kun\",\"Ren\", role=\"ctb\"),\nperson(\"Xianying\",\"Tan\", role=\"ctb\"),\nperson(\"Rick\",\"Saporta\", role=\"ctb\"),\nperson(\"Otto\",\"Seiskari\", role=\"ctb\"),\nperson(\"Xianghui\",\"Dong\", role=\"ctb\"),\nperson(\"Michel\",\"Lang\", role=\"ctb\"),\nperson(\"Watal\",\"Iwasaki\", role=\"ctb\"),\nperson(\"Seth\",\"Wenchel\", role=\"ctb\"),\nperson(\"Karl\",\"Broman\", role=\"ctb\"),\nperson(\"Tobias\",\"Schmidt\", role=\"ctb\"),\nperson(\"David\",\"Arenburg\", role=\"ctb\"),\nperson(\"Ethan\",\"Smith\", role=\"ctb\"),\nperson(\"Francois\",\"Cocquemas\", role=\"ctb\"),\nperson(\"Matthieu\",\"Gomez\", role=\"ctb\"),\nperson(\"Philippe\",\"Chataignon\", role=\"ctb\"),\nperson(\"Nello\",\"Blaser\", role=\"ctb\"),\nperson(\"Dmitry\",\"Selivanov\", role=\"ctb\"),\nperson(\"Andrey\",\"Riabushenko\", role=\"ctb\"),\nperson(\"Cheng\",\"Lee\", role=\"ctb\"),\nperson(\"Declan\",\"Groves\", role=\"ctb\"),\nperson(\"Daniel\",\"Possenriede\", role=\"ctb\"),\nperson(\"Felipe\",\"Parages\", role=\"ctb\"),\nperson(\"Denes\",\"Toth\", role=\"ctb\"),\nperson(\"Mus\",\"Yaramaz-David\", role=\"ctb\"),\nperson(\"Ayappan\",\"Perumal\", role=\"ctb\"),\nperson(\"James\",\"Sams\", role=\"ctb\"),\nperson(\"Martin\",\"Morgan\", role=\"ctb\"),\nperson(\"Michael\",\"Quinn\", role=\"ctb\"),\nperson(\"@javrucebo\",\"\", role=\"ctb\"),\nperson(\"@marc-outins\",\"\", role=\"ctb\"),\nperson(\"Roy\",\"Storey\", role=\"ctb\"),\nperson(\"Manish\",\"Saraswat\", role=\"ctb\"),\nperson(\"Morgan\",\"Jacob\", role=\"ctb\"),\nperson(\"Michael\",\"Schubmehl\", role=\"ctb\"),\nperson(\"Davis\",\"Vaughan\", role=\"ctb\"),\nperson(\"Toby\",\"Hocking\", role=\"ctb\"),\nperson(\"Leonardo\",\"Silvestri\", role=\"ctb\"),\nperson(\"Tyson\",\"Barrett\", role=\"ctb\"),\nperson(\"Jim\",\"Hester\", role=\"ctb\"),\nperson(\"Anthony\",\"Damico\", role=\"ctb\"),\nperson(\"Sebastian\",\"Freundt\", role=\"ctb\"),\nperson(\"David\",\"Simons\", role=\"ctb\"),\nperson(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"),\nperson(\"Cole\",\"Miller\", role=\"ctb\"),\nperson(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"),\nperson(\"Vaclav\",\"Tlapak\", role=\"ctb\"),\nperson(\"Kevin\",\"Ushey\", role=\"ctb\"),\nperson(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"),\nperson(\"Ben\",\"Schwen\", role=\"ctb\"))", + "Depends": "R (>= 3.1.0)", + "Imports": "methods", + "Suggests": "bit64 (>= 4.0.0), bit (>= 4.0.4), curl, R.utils, xts,\nnanotime, zoo (>= 1.8-1), yaml, knitr, rmarkdown", + "SystemRequirements": "zlib", + "Description": "Fast aggregation of large data (e.g. 100GB in RAM), fast ordered joins, fast add/modify/delete of columns by group using no copies at all, list columns, friendly and fast character-separated-value read/write. Offers a natural and flexible syntax, for faster development.", + "License": "MPL-2.0 | file LICENSE", + "URL": "https://r-datatable.com, https://Rdatatable.gitlab.io/data.table,\nhttps://github.com/Rdatatable/data.table", + "BugReports": "https://github.com/Rdatatable/data.table/issues", + "VignetteBuilder": "knitr", + "ByteCompile": "TRUE", + "NeedsCompilation": "yes", + "Packaged": "2023-02-16 16:37:18 UTC; mdowle", + "Author": "Matt Dowle [aut, cre],\nArun Srinivasan [aut],\nJan Gorecki [ctb],\nMichael Chirico [ctb],\nPasha Stetsenko [ctb],\nTom Short [ctb],\nSteve Lianoglou [ctb],\nEduard Antonyan [ctb],\nMarkus Bonsch [ctb],\nHugh Parsonage [ctb],\nScott Ritchie [ctb],\nKun Ren [ctb],\nXianying Tan [ctb],\nRick Saporta [ctb],\nOtto Seiskari [ctb],\nXianghui Dong [ctb],\nMichel Lang [ctb],\nWatal Iwasaki [ctb],\nSeth Wenchel [ctb],\nKarl Broman [ctb],\nTobias Schmidt [ctb],\nDavid Arenburg [ctb],\nEthan Smith [ctb],\nFrancois Cocquemas [ctb],\nMatthieu Gomez [ctb],\nPhilippe Chataignon [ctb],\nNello Blaser [ctb],\nDmitry Selivanov [ctb],\nAndrey Riabushenko [ctb],\nCheng Lee [ctb],\nDeclan Groves [ctb],\nDaniel Possenriede [ctb],\nFelipe Parages [ctb],\nDenes Toth [ctb],\nMus Yaramaz-David [ctb],\nAyappan Perumal [ctb],\nJames Sams [ctb],\nMartin Morgan [ctb],\nMichael Quinn [ctb],\n@javrucebo [ctb],\n@marc-outins [ctb],\nRoy Storey [ctb],\nManish Saraswat [ctb],\nMorgan Jacob [ctb],\nMichael Schubmehl [ctb],\nDavis Vaughan [ctb],\nToby Hocking [ctb],\nLeonardo Silvestri [ctb],\nTyson Barrett [ctb],\nJim Hester [ctb],\nAnthony Damico [ctb],\nSebastian Freundt [ctb],\nDavid Simons [ctb],\nElliott Sales de Andrade [ctb],\nCole Miller [ctb],\nJens Peder Meldgaard [ctb],\nVaclav Tlapak [ctb],\nKevin Ushey [ctb],\nDirk Eddelbuettel [ctb],\nBen Schwen [ctb]", + "Maintainer": "Matt Dowle ", + "Repository": "RSPM", + "Date/Publication": "2023-02-17 12:20:12 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-05 10:00:42 UTC; unix" + } + }, + "desc": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "desc", + "Title": "Manipulate DESCRIPTION Files", + "Version": "1.4.2", + "Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"Kirill\", \"Müller\", role = \"aut\"),\nperson(\"Jim\", \"Hester\", , \"james.f.hester@gmail.com\", role = \"aut\"),\nperson(\"Maëlle\", \"Salmon\", role = \"ctb\",\ncomment = c(ORCID = \"0000-0002-2815-0399\")),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Maintainer": "Gábor Csárdi ", + "Description": "Tools to read, write, create, and manipulate DESCRIPTION\nfiles. It is intended for packages that create or manipulate other\npackages.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/desc#readme,\nhttps://r-lib.github.io/desc/", + "BugReports": "https://github.com/r-lib/desc/issues", + "Depends": "R (>= 3.4)", + "Imports": "cli, R6, rprojroot, utils", + "Suggests": "callr, covr, gh, spelling, testthat, whoami, withr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.1.9000", + "Collate": "'assertions.R' 'authors-at-r.R' 'built.R' 'classes.R'\n'collate.R' 'constants.R' 'deps.R' 'desc-package.R'\n'description.R' 'encoding.R' 'latex.R' 'non-oo-api.R'\n'package-archives.R' 'read.R' 'remotes.R' 'str.R'\n'syntax_checks.R' 'urls.R' 'utils.R' 'validate.R' 'version.R'", + "NeedsCompilation": "no", + "Packaged": "2022-09-08 09:02:11 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre],\nKirill Müller [aut],\nJim Hester [aut],\nMaëlle Salmon [ctb] (),\nRStudio [cph, fnd]", + "Repository": "RSPM", + "Date/Publication": "2022-09-08 10:52:55 UTC", + "Built": "R 4.3.0; ; 2023-04-21 22:25:02 UTC; unix" + } + }, + "diagram": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "diagram", + "Version": "1.6.5", + "Title": "Functions for Visualising Simple Graphs (Networks), Plotting\nFlow Diagrams", + "Author": "Karline Soetaert ", + "Maintainer": "Karline Soetaert ", + "Depends": "R (>= 2.01), shape", + "Imports": "stats, graphics", + "Description": "Visualises simple graphs (networks) based on a transition matrix, utilities to plot flow diagrams,\nvisualising webs, electrical networks, etc.\nSupport for the book \"A practical guide to ecological modelling -\nusing R as a simulation platform\"\nby Karline Soetaert and Peter M.J. Herman (2009), Springer.\nand the book \"Solving Differential Equations in R\"\nby Karline Soetaert, Jeff Cash and Francesca Mazzia (2012), Springer.\nIncludes demo(flowchart), demo(plotmat), demo(plotweb).", + "License": "GPL (>= 2)", + "LazyData": "yes", + "NeedsCompilation": "no", + "Packaged": "2020-09-29 06:59:04 UTC; karlines", + "Repository": "RSPM", + "Date/Publication": "2020-09-30 07:20:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:20:36 UTC; unix" + } + }, + "diffobj": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "diffobj", + "Type": "Package", + "Title": "Diffs for R Objects", + "Description": "Generate a colorized diff of two R objects for an intuitive\nvisualization of their differences.", + "Version": "0.3.5", + "Authors@R": "c(\nperson(\n\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\nrole=c(\"aut\", \"cre\")),\nperson(\n\"Michael B.\", \"Allen\", email=\"ioplex@gmail.com\",\nrole=c(\"ctb\", \"cph\"),\ncomment=\"Original C implementation of Myers Diff Algorithm\"))", + "Depends": "R (>= 3.1.0)", + "License": "GPL-2 | GPL-3", + "URL": "https://github.com/brodieG/diffobj", + "BugReports": "https://github.com/brodieG/diffobj/issues", + "RoxygenNote": "7.1.1", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Suggests": "knitr, rmarkdown", + "Collate": "'capt.R' 'options.R' 'pager.R' 'check.R' 'finalizer.R'\n'misc.R' 'html.R' 'styles.R' 's4.R' 'core.R' 'diff.R' 'get.R'\n'guides.R' 'hunks.R' 'layout.R' 'myerssimple.R' 'rdiff.R'\n'rds.R' 'set.R' 'subset.R' 'summmary.R' 'system.R' 'text.R'\n'tochar.R' 'trim.R' 'word.R'", + "Imports": "crayon (>= 1.3.2), tools, methods, utils, stats", + "NeedsCompilation": "yes", + "Packaged": "2021-10-05 01:16:56 UTC; bg", + "Author": "Brodie Gaslam [aut, cre],\nMichael B. Allen [ctb, cph] (Original C implementation of Myers Diff\nAlgorithm)", + "Maintainer": "Brodie Gaslam ", + "Repository": "RSPM", + "Date/Publication": "2021-10-05 07:10:17 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 22:20:56 UTC; unix" + } + }, + "digest": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "digest", + "Author": "Dirk Eddelbuettel with contributions\nby Antoine Lucas, Jarek Tuszynski, Henrik Bengtsson, Simon Urbanek,\nMario Frasca, Bryan Lewis, Murray Stokely, Hannes Muehleisen,\nDuncan Murdoch, Jim Hester, Wush Wu, Qiang Kou, Thierry Onkelinx,\nMichel Lang, Viliam Simko, Kurt Hornik, Radford Neal, Kendon Bell,\nMatthew de Queljoe, Ion Suruceanu, Bill Denney, Dirk Schumacher,\nWinston Chang, and Dean Attali.", + "Version": "0.6.33", + "Date": "2023-06-28", + "Maintainer": "Dirk Eddelbuettel ", + "Title": "Create Compact Hash Digests of R Objects", + "Description": "Implementation of a function 'digest()' for the creation of hash\ndigests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32',\n'xxhash', 'murmurhash', 'spookyhash', 'blake3' and 'crc32c' algorithms) permitting\neasy comparison of R language objects, as well as functions such as'hmac()' to\ncreate hash-based message authentication code. Please note that this package\nis not meant to be deployed for cryptographic purposes for which more\ncomprehensive (and widely tested) libraries such as 'OpenSSL' should be\nused.", + "URL": "https://github.com/eddelbuettel/digest,\nhttps://dirk.eddelbuettel.com/code/digest.html", + "BugReports": "https://github.com/eddelbuettel/digest/issues", + "Depends": "R (>= 3.3.0)", + "Imports": "utils", + "License": "GPL (>= 2)", + "Suggests": "tinytest, simplermarkdown", + "VignetteBuilder": "simplermarkdown", + "NeedsCompilation": "yes", + "Packaged": "2023-06-28 02:46:18 UTC; edd", + "Repository": "RSPM", + "Date/Publication": "2023-07-07 14:10:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 11:40:03 UTC; unix" + } + }, + "dismo": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "dismo", + "Type": "Package", + "Title": "Species Distribution Modeling", + "Description": "Methods for species distribution modeling, that is, predicting the environmental similarity of any site to that of the locations of known occurrences of a species.", + "Version": "1.3-14", + "Date": "2023-05-20", + "Imports": "Rcpp, methods, terra (>= 1.5-34)", + "LinkingTo": "Rcpp", + "Encoding": "UTF-8", + "Depends": "R (>= 3.6.3), raster (>= 3.5-21), sp (>= 1.4-5)", + "Suggests": "rJava (>= 0.9-7), XML, ROCR, deldir, gstat, randomForest,\nkernlab, jsonlite, gbm (>= 2.1.1)", + "SystemRequirements": "Java (>= 8)", + "Author": "Robert J. Hijmans, Steven Phillips, John Leathwick and Jane Elith", + "Maintainer": "Robert J. Hijmans ", + "License": "GPL (>= 3)", + "LazyLoad": "yes", + "URL": "https://rspatial.org/raster/sdm/", + "BugReports": "https://github.com/rspatial/dismo/issues/", + "NeedsCompilation": "yes", + "Packaged": "2023-05-20 15:55:45 UTC; rhijm", + "Repository": "RSPM", + "Date/Publication": "2023-05-21 23:50:06 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 04:18:12 UTC; unix" + } + }, + "doParallel": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "doParallel", + "Type": "Package", + "Title": "Foreach Parallel Adaptor for the 'parallel' Package", + "Version": "1.0.17", + "Authors@R": "c(person(\"Folashade\", \"Daniel\", role=\"cre\", email=\"fdaniel@microsoft.com\"),\nperson(\"Microsoft\", \"Corporation\", role=c(\"aut\", \"cph\")),\nperson(\"Steve\", \"Weston\", role=\"aut\"),\nperson(\"Dan\", \"Tenenbaum\", role=\"ctb\"))", + "Description": "Provides a parallel backend for the %dopar% function using\nthe parallel package.", + "Depends": "R (>= 2.14.0), foreach (>= 1.2.0), iterators (>= 1.0.0),\nparallel, utils", + "Suggests": "caret, mlbench, rpart, RUnit", + "Enhances": "compiler", + "License": "GPL-2", + "URL": "https://github.com/RevolutionAnalytics/doparallel", + "BugReports": "https://github.com/RevolutionAnalytics/doparallel/issues", + "NeedsCompilation": "no", + "Packaged": "2022-01-16 17:54:13 UTC; folashade", + "Author": "Folashade Daniel [cre],\nMicrosoft Corporation [aut, cph],\nSteve Weston [aut],\nDan Tenenbaum [ctb]", + "Maintainer": "Folashade Daniel ", + "Repository": "RSPM", + "Date/Publication": "2022-02-07 12:50:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-07-10 04:00:31 UTC; unix" + } + }, + "dplyr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Type": "Package", + "Package": "dplyr", + "Title": "A Grammar of Data Manipulation", + "Version": "1.1.3", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0003-4757-117X\")),\nperson(\"Romain\", \"François\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-2444-4226\")),\nperson(\"Lionel\", \"Henry\", role = \"aut\"),\nperson(\"Kirill\", \"Müller\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-1416-3412\")),\nperson(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\",\ncomment = c(ORCID = \"0000-0003-4777-038X\")),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "A fast, consistent tool for working with data frame like\nobjects, both in memory and out of memory.", + "License": "MIT + file LICENSE", + "URL": "https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyr", + "BugReports": "https://github.com/tidyverse/dplyr/issues", + "Depends": "R (>= 3.5.0)", + "Imports": "cli (>= 3.4.0), generics, glue (>= 1.3.2), lifecycle (>=\n1.0.3), magrittr (>= 1.5), methods, pillar (>= 1.9.0), R6,\nrlang (>= 1.1.0), tibble (>= 3.2.0), tidyselect (>= 1.2.0),\nutils, vctrs (>= 0.6.0)", + "Suggests": "bench, broom, callr, covr, DBI, dbplyr (>= 2.2.1), ggplot2,\nknitr, Lahman, lobstr, microbenchmark, nycflights13, purrr,\nrmarkdown, RMySQL, RPostgreSQL, RSQLite, stringi (>= 1.7.6),\ntestthat (>= 3.1.5), tidyr (>= 1.3.0), withr", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse, shiny, pkgdown, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-08-25 22:28:32 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre] (),\nRomain François [aut] (),\nLionel Henry [aut],\nKirill Müller [aut] (),\nDavis Vaughan [aut] (),\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2023-09-03 16:20:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-04 11:32:52 UTC; unix" + } + }, + "e1071": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "e1071", + "Version": "1.7-13", + "Title": "Misc Functions of the Department of Statistics, Probability\nTheory Group (Formerly: E1071), TU Wien", + "Imports": "graphics, grDevices, class, stats, methods, utils, proxy", + "Suggests": "cluster, mlbench, nnet, randomForest, rpart, SparseM, xtable,\nMatrix, MASS, slam", + "Authors@R": "c(person(given = \"David\", family = \"Meyer\", role = c(\"aut\", \"cre\"),\nemail = \"David.Meyer@R-project.org\",\ncomment = c(ORCID = \"0000-0002-5196-3048\")),\nperson(given = \"Evgenia\", family = \"Dimitriadou\", role = c(\"aut\",\"cph\")),\nperson(given = \"Kurt\", family = \"Hornik\", role = \"aut\",\nemail = \"Kurt.Hornik@R-project.org\",\ncomment = c(ORCID = \"0000-0003-4198-9911\")),\nperson(given = \"Andreas\", family = \"Weingessel\", role = \"aut\"),\nperson(given = \"Friedrich\", family = \"Leisch\", role = \"aut\"),\nperson(given = \"Chih-Chung\", family = \"Chang\", role = c(\"ctb\",\"cph\"), comment = \"libsvm C++-code\"),\nperson(given = \"Chih-Chen\", family = \"Lin\", role = c(\"ctb\",\"cph\"), comment = \"libsvm C++-code\"))", + "Description": "Functions for latent class analysis, short time Fourier\ntransform, fuzzy clustering, support vector machines,\nshortest path computation, bagged clustering, naive Bayes\nclassifier, generalized k-nearest neighbour ...", + "License": "GPL-2 | GPL-3", + "LazyLoad": "yes", + "NeedsCompilation": "yes", + "Packaged": "2023-02-01 11:02:04 UTC; hornik", + "Author": "David Meyer [aut, cre] (),\nEvgenia Dimitriadou [aut, cph],\nKurt Hornik [aut] (),\nAndreas Weingessel [aut],\nFriedrich Leisch [aut],\nChih-Chung Chang [ctb, cph] (libsvm C++-code),\nChih-Chen Lin [ctb, cph] (libsvm C++-code)", + "Maintainer": "David Meyer ", + "Repository": "RSPM", + "Date/Publication": "2023-02-01 13:22:01 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:12:23 UTC; unix" + } + }, + "ellipsis": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "ellipsis", + "Version": "0.3.2", + "Title": "Tools for Working with ...", + "Description": "The ellipsis is a powerful tool for extending functions. Unfortunately\nthis power comes at a cost: misspelled arguments will be silently ignored.\nThe ellipsis package provides a collection of functions to catch problems\nand alert the user.", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")),\nperson(\"RStudio\", role = \"cph\")\n)", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.1", + "URL": "https://ellipsis.r-lib.org, https://github.com/r-lib/ellipsis", + "BugReports": "https://github.com/r-lib/ellipsis/issues", + "Depends": "R (>= 3.2)", + "Imports": "rlang (>= 0.3.0)", + "Suggests": "covr, testthat", + "NeedsCompilation": "yes", + "Packaged": "2021-04-29 12:06:44 UTC; lionel", + "Author": "Hadley Wickham [aut, cre],\nRStudio [cph]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2021-04-29 12:40:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:20 UTC; unix" + } + }, + "evaluate": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "evaluate", + "Type": "Package", + "Title": "Parsing and Evaluation Tools that Provide More Details than the\nDefault", + "Version": "0.22", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", role = \"aut\"),\nperson(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\nperson(\"Michael\", \"Lawrence\", role = \"ctb\"),\nperson(\"Thomas\", \"Kluyver\", role = \"ctb\"),\nperson(\"Jeroen\", \"Ooms\", role = \"ctb\"),\nperson(\"Barret\", \"Schloerke\", role = \"ctb\"),\nperson(\"Adam\", \"Ryczkowski\", role = \"ctb\"),\nperson(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\nperson(\"Michel\", \"Lang\", role = \"ctb\"),\nperson(\"Karolis\", \"Koncevičius\", role = \"ctb\"),\nperson(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Parsing and evaluation tools that make it easy to recreate the\ncommand line behaviour of R.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/evaluate", + "BugReports": "https://github.com/r-lib/evaluate/issues", + "Depends": "R (>= 3.0.2)", + "Imports": "methods", + "Suggests": "covr, ggplot2, lattice, rlang, testthat (>= 3.0.0), withr", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Packaged": "2023-09-29 02:32:03 UTC; yihui", + "Author": "Hadley Wickham [aut],\nYihui Xie [aut, cre] (),\nMichael Lawrence [ctb],\nThomas Kluyver [ctb],\nJeroen Ooms [ctb],\nBarret Schloerke [ctb],\nAdam Ryczkowski [ctb],\nHiroaki Yutani [ctb],\nMichel Lang [ctb],\nKarolis Koncevičius [ctb],\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Yihui Xie ", + "Repository": "RSPM", + "Date/Publication": "2023-09-29 04:30:05 UTC", + "Built": "R 4.3.0; ; 2023-10-02 11:42:50 UTC; unix" + } + }, + "fansi": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "fansi", + "Title": "ANSI Control Sequence Aware String Functions", + "Description": "Counterparts to R string manipulation functions that account for\nthe effects of ANSI text formatting control sequences.", + "Version": "1.0.5", + "Authors@R": "c(\nperson(\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\nrole=c(\"aut\", \"cre\")),\nperson(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"),\nperson(family=\"R Core Team\",\nemail=\"R-core@r-project.org\", role=\"cph\",\ncomment=\"UTF8 byte length calcs from src/util.c\"\n))", + "Depends": "R (>= 3.1.0)", + "License": "GPL-2 | GPL-3", + "URL": "https://github.com/brodieG/fansi", + "BugReports": "https://github.com/brodieG/fansi/issues", + "VignetteBuilder": "knitr", + "Suggests": "unitizer, knitr, rmarkdown", + "Imports": "grDevices, utils", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "Collate": "'constants.R' 'fansi-package.R' 'internal.R' 'load.R' 'misc.R'\n'nchar.R' 'strwrap.R' 'strtrim.R' 'strsplit.R' 'substr2.R'\n'trimws.R' 'tohtml.R' 'unhandled.R' 'normalize.R' 'sgr.R'", + "NeedsCompilation": "yes", + "Packaged": "2023-10-07 16:15:12 UTC; bg", + "Author": "Brodie Gaslam [aut, cre],\nElliott Sales De Andrade [ctb],\nR Core Team [cph] (UTF8 byte length calcs from src/util.c)", + "Maintainer": "Brodie Gaslam ", + "Repository": "RSPM", + "Date/Publication": "2023-10-08 19:30:05 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-10-09 11:49:34 UTC; unix" + } + }, + "farver": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Type": "Package", + "Package": "farver", + "Title": "High Performance Colour Space Manipulation", + "Version": "2.1.1", + "Authors@R": "c(\nperson(\"Thomas Lin\", \"Pedersen\", , \"thomasp85@gmail.com\", role = c(\"cre\", \"aut\"),\ncomment = c(ORCID = \"0000-0002-5147-4711\")),\nperson(\"Berendea\", \"Nicolae\", role = \"aut\",\ncomment = \"Author of the ColorSpace C++ library\"),\nperson(\"Romain\", \"François\", , \"romain@purrple.cat\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-2444-4226\"))\n)", + "Maintainer": "Thomas Lin Pedersen ", + "Description": "The encoding of colour can be handled in many different ways,\nusing different colour spaces. As different colour spaces have\ndifferent uses, efficient conversion between these representations are\nimportant. The 'farver' package provides a set of functions that gives\naccess to very fast colour space conversion and comparisons\nimplemented in C++, and offers speed improvements over the\n'convertColor' function in the 'grDevices' package.", + "License": "MIT + file LICENSE", + "URL": "https://farver.data-imaginist.com,\nhttps://github.com/thomasp85/farver", + "BugReports": "https://github.com/thomasp85/farver/issues", + "Suggests": "covr, testthat (>= 3.0.0)", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.0", + "SystemRequirements": "C++11", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Packaged": "2022-07-06 12:54:24 UTC; thomas", + "Author": "Thomas Lin Pedersen [cre, aut]\n(),\nBerendea Nicolae [aut] (Author of the ColorSpace C++ library),\nRomain François [aut] ()", + "Repository": "RSPM", + "Date/Publication": "2022-07-06 13:50:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:44:54 UTC; unix" + } + }, + "fastcluster": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "fastcluster", + "Encoding": "UTF-8", + "Type": "Package", + "Version": "1.2.3", + "Date": "2021-05-24", + "Title": "Fast Hierarchical Clustering Routines for R and 'Python'", + "Authors@R": "c(person(\"Daniel\", \"Müllner\", email = \"daniel@danifold.net\", role = c(\"aut\", \"cph\", \"cre\")),\nperson(\"Google Inc.\", role=\"cph\"))", + "Copyright": "Until package version 1.1.23: © 2011 Daniel Müllner\n. All changes from version 1.1.24 on: ©\nGoogle Inc. .", + "Enhances": "stats, flashClust", + "Depends": "R (>= 3.0.0)", + "Description": "This is a two-in-one package which provides interfaces to\nboth R and 'Python'. It implements fast hierarchical, agglomerative\nclustering routines. Part of the functionality is designed as drop-in\nreplacement for existing routines: linkage() in the 'SciPy' package\n'scipy.cluster.hierarchy', hclust() in R's 'stats' package, and the\n'flashClust' package. It provides the same functionality with the\nbenefit of a much faster implementation. Moreover, there are\nmemory-saving routines for clustering of vector data, which go beyond\nwhat the existing packages provide. For information on how to install\nthe 'Python' files, see the file INSTALL in the source distribution.\nBased on the present package, Christoph Dalitz also wrote a pure 'C++'\ninterface to 'fastcluster':\n.", + "License": "FreeBSD | GPL-2 | file LICENSE", + "URL": "http://danifold.net/fastcluster.html", + "NeedsCompilation": "yes", + "Packaged": "2021-05-24 17:28:44 UTC; muellner", + "Author": "Daniel Müllner [aut, cph, cre],\nGoogle Inc. [cph]", + "Maintainer": "Daniel Müllner ", + "Repository": "RSPM", + "Date/Publication": "2021-05-24 23:50:06 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-22 00:44:41 UTC; unix" + } + }, + "fastmap": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "fastmap", + "Title": "Fast Data Structures", + "Version": "1.1.1", + "Authors@R": "c(\nperson(\"Winston\", \"Chang\", email = \"winston@rstudio.com\", role = c(\"aut\", \"cre\")),\nperson(given = \"RStudio\", role = c(\"cph\", \"fnd\")),\nperson(given = \"Tessil\", role = \"cph\", comment = \"hopscotch_map library\")\n)", + "Description": "Fast implementation of data structures, including a key-value\nstore, stack, and queue. Environments are commonly used as key-value stores\nin R, but every time a new key is used, it is added to R's global symbol\ntable, causing a small amount of memory leakage. This can be problematic in\ncases where many different keys are used. Fastmap avoids this memory leak\nissue by implementing the map using data structures in C++.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "Suggests": "testthat (>= 2.1.1)", + "URL": "https://r-lib.github.io/fastmap/, https://github.com/r-lib/fastmap", + "BugReports": "https://github.com/r-lib/fastmap/issues", + "NeedsCompilation": "yes", + "Packaged": "2023-02-24 16:01:27 UTC; winston", + "Author": "Winston Chang [aut, cre],\nRStudio [cph, fnd],\nTessil [cph] (hopscotch_map library)", + "Maintainer": "Winston Chang ", + "Repository": "RSPM", + "Date/Publication": "2023-02-24 16:30:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:07 UTC; unix" + } + }, + "fontawesome": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Type": "Package", + "Package": "fontawesome", + "Version": "0.5.2", + "Title": "Easily Work with 'Font Awesome' Icons", + "Description": "Easily and flexibly insert 'Font Awesome' icons into 'R Markdown'\ndocuments and 'Shiny' apps. These icons can be inserted into HTML content\nthrough inline 'SVG' tags or 'i' tags. There is also a utility function for\nexporting 'Font Awesome' icons as 'PNG' images for those situations where\nraster graphics are needed.", + "Authors@R": "c(\nperson(\"Richard\", \"Iannone\", , \"rich@posit.co\", c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0003-3925-190X\")),\nperson(\"Christophe\", \"Dervieux\", , \"cderv@posit.co\", role = \"ctb\",\ncomment = c(ORCID = \"0000-0003-4474-2498\")),\nperson(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"ctb\"),\nperson(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"),\ncomment = \"Font-Awesome font\"),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "License": "MIT + file LICENSE", + "URL": "https://github.com/rstudio/fontawesome,\nhttps://rstudio.github.io/fontawesome/", + "BugReports": "https://github.com/rstudio/fontawesome/issues", + "Encoding": "UTF-8", + "ByteCompile": "true", + "RoxygenNote": "7.2.3", + "Depends": "R (>= 3.3.0)", + "Imports": "rlang (>= 1.0.6), htmltools (>= 0.5.1.1)", + "Suggests": "covr, dplyr (>= 1.0.8), knitr (>= 1.31), testthat (>= 3.0.0),\nrsvg", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Packaged": "2023-08-19 02:32:12 UTC; rich", + "Author": "Richard Iannone [aut, cre] (),\nChristophe Dervieux [ctb] (),\nWinston Chang [ctb],\nDave Gandy [ctb, cph] (Font-Awesome font),\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Richard Iannone ", + "Repository": "RSPM", + "Date/Publication": "2023-08-19 04:52:40 UTC", + "Built": "R 4.3.0; ; 2023-08-21 12:16:43 UTC; unix" + } + }, + "foreach": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "foreach", + "Type": "Package", + "Title": "Provides Foreach Looping Construct", + "Version": "1.5.2", + "Authors@R": "c(person(\"Folashade\", \"Daniel\", role=\"cre\", email=\"fdaniel@microsoft.com\"),\nperson(\"Hong\", \"Ooi\", role=\"ctb\"),\nperson(\"Rich\", \"Calaway\", role=\"ctb\"),\nperson(\"Microsoft\", role=c(\"aut\", \"cph\")),\nperson(\"Steve\", \"Weston\", role=\"aut\"))", + "Description": "Support for the foreach looping construct. Foreach is an\nidiom that allows for iterating over elements in a collection,\nwithout the use of an explicit loop counter. This package in\nparticular is intended to be used for its return value, rather\nthan for its side effects. In that sense, it is similar to the\nstandard lapply function, but doesn't require the evaluation\nof a function. Using foreach without side effects also\nfacilitates executing the loop in parallel.", + "License": "Apache License (== 2.0)", + "URL": "https://github.com/RevolutionAnalytics/foreach", + "BugReports": "https://github.com/RevolutionAnalytics/foreach/issues", + "Depends": "R (>= 2.5.0)", + "Imports": "codetools, utils, iterators", + "Suggests": "randomForest, doMC, doParallel, testthat, knitr, rmarkdown", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.1.1", + "Collate": "'callCombine.R' 'foreach.R' 'do.R' 'foreach-ext.R'\n'foreach-pkg.R' 'getDoPar.R' 'getDoSeq.R' 'getsyms.R' 'iter.R'\n'nextElem.R' 'onLoad.R' 'setDoPar.R' 'setDoSeq.R' 'times.R'\n'utils.R'", + "NeedsCompilation": "no", + "Packaged": "2022-01-11 04:21:12 UTC; fdaniel", + "Author": "Folashade Daniel [cre],\nHong Ooi [ctb],\nRich Calaway [ctb],\nMicrosoft [aut, cph],\nSteve Weston [aut]", + "Maintainer": "Folashade Daniel ", + "Repository": "RSPM", + "Date/Publication": "2022-02-02 09:20:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:24:59 UTC; unix" + } + }, + "fs": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "fs", + "Title": "Cross-Platform File System Operations Based on 'libuv'", + "Version": "1.6.3", + "Authors@R": "c(\nperson(\"Jim\", \"Hester\", role = \"aut\"),\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"aut\"),\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"libuv project contributors\", role = \"cph\",\ncomment = \"libuv library\"),\nperson(\"Joyent, Inc. and other Node contributors\", role = \"cph\",\ncomment = \"libuv library\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "A cross-platform interface to file system operations, built\non top of the 'libuv' C library.", + "License": "MIT + file LICENSE", + "URL": "https://fs.r-lib.org, https://github.com/r-lib/fs", + "BugReports": "https://github.com/r-lib/fs/issues", + "Depends": "R (>= 3.4)", + "Imports": "methods", + "Suggests": "covr, crayon, knitr, pillar (>= 1.0.0), rmarkdown, spelling,\ntestthat (>= 3.0.0), tibble (>= 1.1.0), vctrs (>= 0.3.0), withr", + "VignetteBuilder": "knitr", + "ByteCompile": "true", + "Copyright": "file COPYRIGHTS", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.3", + "SystemRequirements": "GNU make", + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "yes", + "Packaged": "2023-07-10 16:24:00 UTC; gaborcsardi", + "Author": "Jim Hester [aut],\nHadley Wickham [aut],\nGábor Csárdi [aut, cre],\nlibuv project contributors [cph] (libuv library),\nJoyent, Inc. and other Node contributors [cph] (libuv library),\nRStudio [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "RSPM", + "Date/Publication": "2023-07-20 10:30:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-11 13:57:57 UTC; unix" + } + }, + "future": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "future", + "Version": "1.33.0", + "Title": "Unified Parallel and Distributed Processing in R for Everyone", + "Imports": "digest, globals (>= 0.16.1), listenv (>= 0.8.0), parallel,\nparallelly (>= 1.34.0), utils", + "Suggests": "methods, RhpcBLASctl, R.rsp, markdown", + "VignetteBuilder": "R.rsp", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\nemail = \"henrikb@braju.com\"))", + "Description": "The purpose of this package is to provide a lightweight and\nunified Future API for sequential and parallel processing of R\nexpression via futures. The simplest way to evaluate an expression\nin parallel is to use `x %<-% { expression }` with `plan(multisession)`.\nThis package implements sequential, multicore, multisession, and\ncluster futures. With these, R expressions can be evaluated on the\nlocal machine, in parallel a set of local machines, or distributed\non a mix of local and remote machines.\nExtensions to this package implement additional backends for\nprocessing futures via compute cluster schedulers, etc.\nBecause of its unified API, there is no need to modify any code in order\nswitch from sequential on the local machine to, say, distributed\nprocessing on a remote compute cluster.\nAnother strength of this package is that global variables and functions\nare automatically identified and exported as needed, making it\nstraightforward to tweak existing code to make use of futures.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "ByteCompile": "TRUE", + "URL": "https://future.futureverse.org,\nhttps://github.com/HenrikBengtsson/future", + "BugReports": "https://github.com/HenrikBengtsson/future/issues", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-07-01 15:44:52 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "RSPM", + "Date/Publication": "2023-07-01 18:00:03 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-07-03 12:12:32 UTC; unix" + } + }, + "future.apply": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "future.apply", + "Version": "1.11.0", + "Title": "Apply Function to Elements in Parallel using Futures", + "Depends": "R (>= 3.2.0), future (>= 1.28.0)", + "Imports": "globals (>= 0.16.1), parallel, utils", + "Suggests": "datasets, stats, tools, listenv (>= 0.8.0), R.rsp, markdown", + "VignetteBuilder": "R.rsp", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\nemail = \"henrikb@braju.com\"),\nperson(\"R Core Team\", role = c(\"cph\", \"ctb\")))", + "Description": "Implementations of apply(), by(), eapply(), lapply(), Map(), .mapply(), mapply(), replicate(), sapply(), tapply(), and vapply() that can be resolved using any future-supported backend, e.g. parallel on the local machine or distributed on a compute cluster. These future_*apply() functions come with the same pros and cons as the corresponding base-R *apply() functions but with the additional feature of being able to be processed via the future framework.", + "License": "GPL (>= 2)", + "LazyLoad": "TRUE", + "URL": "https://future.apply.futureverse.org,\nhttps://github.com/HenrikBengtsson/future.apply", + "BugReports": "https://github.com/HenrikBengtsson/future.apply/issues", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-05-21 00:24:39 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph],\nR Core Team [cph, ctb]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "RSPM", + "Date/Publication": "2023-05-21 04:10:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-05-22 11:17:26 UTC; unix" + } + }, + "gdistance": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "gdistance", + "Type": "Package", + "Title": "Distances and Routes on Geographical Grids", + "Version": "1.6.4", + "Authors@R": "c(\nperson(\"Jacob\", \"van Etten\", role = c(\"aut\"),\ncomment = c(ORCID = \"0000-0001-7554-2558\")),\nperson(\"Kauê\", \"de Sousa\", role = c(\"ctb\"),\ncomment = c(ORCID = \"0000-0002-7571-7845\")),\nperson(\"Andrew\", \"Marx\", role = c(\"cre\", \"ctb\"),\nemail = \"ajm.rpackages@gmail.com\",\ncomment = c(ORCID = \"0000-0002-7456-1631\")))", + "URL": "https://AgrDataSci.github.io/gdistance/", + "BugReports": "https://github.com/AgrDataSci/gdistance/issues", + "Description": "Provides classes and functions to calculate various\ndistance measures and routes in heterogeneous geographic\nspaces represented as grids. The package implements measures\nto model dispersal histories first presented by van Etten and\nHijmans (2010) . Least-cost\ndistances as well as more complex distances based on (constrained)\nrandom walks can be calculated. The distances implemented in\nthe package are used in geographical genetics, accessibility\nindicators, and may also have applications in other fields of\ngeospatial analysis.", + "License": "GPL (>= 2)", + "Encoding": "UTF-8", + "LazyData": "true", + "Depends": "R (>= 3.2.0), raster (>= 1.9-19), methods, igraph (>= 0.7.0),\nMatrix", + "Imports": "sp, stats, terra", + "Suggests": "knitr, markdown, rmarkdown, testthat (>= 2.1.0)", + "RoxygenNote": "7.2.3", + "VignetteBuilder": "knitr", + "NeedsCompilation": "no", + "Packaged": "2023-06-19 20:47:27 UTC; andrewjmarx", + "Author": "Jacob van Etten [aut] (),\nKauê de Sousa [ctb] (),\nAndrew Marx [cre, ctb] ()", + "Maintainer": "Andrew Marx ", + "Repository": "RSPM", + "Date/Publication": "2023-06-19 21:20:02 UTC", + "Built": "R 4.3.0; ; 2023-06-20 23:23:39 UTC; unix" + } + }, + "generics": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "generics", + "Title": "Common S3 Generics not Provided by Base R Methods Related to\nModel Fitting", + "Version": "0.1.3", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")),\nperson(\"Max\", \"Kuhn\", , \"max@rstudio.com\", role = \"aut\"),\nperson(\"Davis\", \"Vaughan\", , \"davis@rstudio.com\", role = \"aut\"),\nperson(\"RStudio\", role = \"cph\")\n)", + "Description": "In order to reduce potential package dependencies and\nconflicts, generics provides a number of commonly used S3 generics.", + "License": "MIT + file LICENSE", + "URL": "https://generics.r-lib.org, https://github.com/r-lib/generics", + "BugReports": "https://github.com/r-lib/generics/issues", + "Depends": "R (>= 3.2)", + "Imports": "methods", + "Suggests": "covr, pkgload, testthat (>= 3.0.0), tibble, withr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.0", + "NeedsCompilation": "no", + "Packaged": "2022-07-05 14:52:13 UTC; davis", + "Author": "Hadley Wickham [aut, cre],\nMax Kuhn [aut],\nDavis Vaughan [aut],\nRStudio [cph]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2022-07-05 19:40:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:44:54 UTC; unix" + } + }, + "geojsonsf": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "geojsonsf", + "Type": "Package", + "Title": "GeoJSON to Simple Feature Converter", + "Version": "2.0.3", + "Date": "2022-05-31", + "Authors@R": "c(\nperson(\"David\", \"Cooley\", ,\"dcooley@symbolix.com.au\", role = c(\"aut\", \"cre\"))\n)", + "Description": "Converts Between GeoJSON and simple feature objects.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/SymbolixAU/geojsonsf", + "BugReports": "https://github.com/SymbolixAU/geojsonsf/issues", + "Encoding": "UTF-8", + "LazyData": "true", + "Depends": "R (>= 3.3.0)", + "SystemRequirements": "C++11", + "LinkingTo": "geometries, jsonify (>= 1.1.1), rapidjsonr (>= 1.2.0), Rcpp,\nsfheaders (>= 0.2.2)", + "Imports": "Rcpp", + "RoxygenNote": "7.1.0", + "Suggests": "covr, jsonify, knitr, rmarkdown, tinytest", + "VignetteBuilder": "knitr", + "NeedsCompilation": "yes", + "Packaged": "2022-05-30 22:52:38 UTC; david", + "Author": "David Cooley [aut, cre]", + "Maintainer": "David Cooley ", + "Repository": "RSPM", + "Date/Publication": "2022-05-30 23:20:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 03:57:32 UTC; unix" + } + }, + "geometries": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "geometries", + "Type": "Package", + "Title": "Convert Between R Objects and Geometric Structures", + "Date": "2023-06-22", + "Version": "0.2.3", + "Authors@R": "c(\nperson(\"David\", \"Cooley\", ,\"david.cooley.au@gmail.com\", role = c(\"aut\", \"cre\"))\n)", + "Description": "Geometry shapes in 'R' are typically represented by matrices (points, lines), with more complex\nshapes being lists of matrices (polygons). 'Geometries' will convert various 'R' objects into these shapes.\nConversion functions are available at both the 'R' level, and through 'Rcpp'.", + "License": "MIT + file LICENSE", + "URL": "https://dcooley.github.io/geometries/", + "BugReports": "https://github.com/dcooley/geometries/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "LinkingTo": "Rcpp", + "Imports": "Rcpp (>= 1.0.10)", + "Suggests": "covr, knitr, rmarkdown, tinytest", + "VignetteBuilder": "knitr", + "NeedsCompilation": "yes", + "Packaged": "2023-06-22 04:40:28 UTC; david", + "Author": "David Cooley [aut, cre]", + "Maintainer": "David Cooley ", + "Repository": "RSPM", + "Date/Publication": "2023-06-22 05:40:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 03:46:13 UTC; unix" + } + }, + "geometry": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "geometry", + "License": "GPL (>= 3)", + "Title": "Mesh Generation and Surface Tessellation", + "Authors@R": "c(\nperson(\"Jean-Romain\", \"Roussel\" , role=c(\"cph\", \"ctb\"), comment = \"wrote tsearch function with QuadTrees\"),\nperson(\"C. B.\", \"Barber\" , role=\"cph\"),\nperson(\"Kai\", \"Habel\", role=c(\"cph\",\"aut\")),\nperson(\"Raoul\", \"Grasman\", role=c(\"cph\",\"aut\")),\nperson(\"Robert B.\", \"Gramacy\", role=c(\"cph\",\"aut\")),\nperson(\"Pavlo\", \"Mozharovskyi\", role=c(\"cph\",\"aut\")),\nperson(\"David C.\", \"Sterratt\", role=c(\"cph\",\"aut\",\"cre\"), email=\"david.c.sterratt@ed.ac.uk\", comment=c(ORCID=\"0000-0001-9092-9099\")))", + "Description": "Makes the 'Qhull' library \navailable in R, in a similar manner as in Octave and MATLAB. Qhull\ncomputes convex hulls, Delaunay triangulations, halfspace\nintersections about a point, Voronoi diagrams, furthest-site\nDelaunay triangulations, and furthest-site Voronoi diagrams. It\nruns in 2D, 3D, 4D, and higher dimensions. It implements the\nQuickhull algorithm for computing the convex hull. Qhull does not\nsupport constrained Delaunay triangulations, or mesh generation of\nnon-convex objects, but the package does include some R functions\nthat allow for this.", + "Version": "0.4.7", + "URL": "https://davidcsterratt.github.io/geometry/", + "Date": "2023-02-03", + "BugReports": "https://github.com/davidcsterratt/geometry/issues", + "Depends": "R (>= 3.0.0)", + "Imports": "magic, Rcpp, lpSolve, linprog", + "Suggests": "spelling, testthat, rgl, R.matlab, interp", + "LinkingTo": "Rcpp, RcppProgress", + "Encoding": "UTF-8", + "Language": "en-GB", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-02-03 22:24:09 UTC; dcs", + "Author": "Jean-Romain Roussel [cph, ctb] (wrote tsearch function with QuadTrees),\nC. B. Barber [cph],\nKai Habel [cph, aut],\nRaoul Grasman [cph, aut],\nRobert B. Gramacy [cph, aut],\nPavlo Mozharovskyi [cph, aut],\nDavid C. Sterratt [cph, aut, cre]\n()", + "Maintainer": "David C. Sterratt ", + "Repository": "RSPM", + "Date/Publication": "2023-02-03 23:02:29 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 02:19:27 UTC; unix" + } + }, + "geosphere": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "geosphere", + "Type": "Package", + "Title": "Spherical Trigonometry", + "Version": "1.5-18", + "Date": "2022-11-13", + "LinkingTo": "Rcpp", + "Imports": "Rcpp, sp", + "Depends": "R (>= 3.0.0)", + "Suggests": "methods, raster", + "Authors@R": "c(\nperson(\"Robert J.\", \"Hijmans\", role = c(\"cre\", \"aut\"), email = \"r.hijmans@gmail.com\"),\nperson(\"Charles\", \"Karney\", role = \"ctb\", comment=\"GeographicLib\"),\nperson(\"Ed\", \"Williams\", role = \"ctb\"),\nperson(\"Chris\", \"Vennes\", role = \"ctb\"))", + "Description": "Spherical trigonometry for geographic applications. That is, compute distances and related measures for angular (longitude/latitude) locations.", + "BugReports": "https://github.com/rspatial/geosphere/issues/", + "License": "GPL (>= 3)", + "LazyLoad": "yes", + "NeedsCompilation": "yes", + "Packaged": "2022-11-13 17:35:52 UTC; rhijm", + "Author": "Robert J. Hijmans [cre, aut],\nCharles Karney [ctb] (GeographicLib),\nEd Williams [ctb],\nChris Vennes [ctb]", + "Maintainer": "Robert J. Hijmans ", + "Repository": "RSPM", + "Date/Publication": "2022-11-15 22:40:08 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 03:47:08 UTC; unix" + } + }, + "ggplot2": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "ggplot2", + "Version": "3.4.3", + "Title": "Create Elegant Data Visualisations Using the Grammar of Graphics", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\",\ncomment = c(ORCID = \"0000-0003-4757-117X\")),\nperson(\"Winston\", \"Chang\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-1576-2126\")),\nperson(\"Lionel\", \"Henry\", role = \"aut\"),\nperson(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-5147-4711\")),\nperson(\"Kohske\", \"Takahashi\", role = \"aut\"),\nperson(\"Claus\", \"Wilke\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-7470-9261\")),\nperson(\"Kara\", \"Woo\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-5125-4188\")),\nperson(\"Hiroaki\", \"Yutani\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-3385-7233\")),\nperson(\"Dewey\", \"Dunnington\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-9415-4582\")),\nperson(\"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "A system for 'declaratively' creating graphics, based on \"The\nGrammar of Graphics\". You provide the data, tell 'ggplot2' how to map\nvariables to aesthetics, what graphical primitives to use, and it\ntakes care of the details.", + "License": "MIT + file LICENSE", + "URL": "https://ggplot2.tidyverse.org,\nhttps://github.com/tidyverse/ggplot2", + "BugReports": "https://github.com/tidyverse/ggplot2/issues", + "Depends": "R (>= 3.3)", + "Imports": "cli, glue, grDevices, grid, gtable (>= 0.1.1), isoband,\nlifecycle (> 1.0.1), MASS, mgcv, rlang (>= 1.1.0), scales (>=\n1.2.0), stats, tibble, vctrs (>= 0.5.0), withr (>= 2.5.0)", + "Suggests": "covr, dplyr, ggplot2movies, hexbin, Hmisc, knitr, lattice,\nmapproj, maps, maptools, multcomp, munsell, nlme, profvis,\nquantreg, ragg, RColorBrewer, rgeos, rmarkdown, rpart, sf (>=\n0.7-3), svglite (>= 1.2.0.9001), testthat (>= 3.1.2), vdiffr\n(>= 1.0.0), xml2", + "Enhances": "sp", + "VignetteBuilder": "knitr", + "Config/Needs/website": "ggtext, tidyr, forcats, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "Collate": "'ggproto.R' 'ggplot-global.R' 'aaa-.R'\n'aes-colour-fill-alpha.R' 'aes-evaluation.R'\n'aes-group-order.R' 'aes-linetype-size-shape.R'\n'aes-position.R' 'compat-plyr.R' 'utilities.R' 'aes.R'\n'utilities-checks.R' 'legend-draw.R' 'geom-.R'\n'annotation-custom.R' 'annotation-logticks.R' 'geom-polygon.R'\n'geom-map.R' 'annotation-map.R' 'geom-raster.R'\n'annotation-raster.R' 'annotation.R' 'autolayer.R' 'autoplot.R'\n'axis-secondary.R' 'backports.R' 'bench.R' 'bin.R' 'coord-.R'\n'coord-cartesian-.R' 'coord-fixed.R' 'coord-flip.R'\n'coord-map.R' 'coord-munch.R' 'coord-polar.R'\n'coord-quickmap.R' 'coord-sf.R' 'coord-transform.R' 'data.R'\n'facet-.R' 'facet-grid-.R' 'facet-null.R' 'facet-wrap.R'\n'fortify-lm.R' 'fortify-map.R' 'fortify-multcomp.R'\n'fortify-spatial.R' 'fortify.R' 'stat-.R' 'geom-abline.R'\n'geom-rect.R' 'geom-bar.R' 'geom-bin2d.R' 'geom-blank.R'\n'geom-boxplot.R' 'geom-col.R' 'geom-path.R' 'geom-contour.R'\n'geom-count.R' 'geom-crossbar.R' 'geom-segment.R'\n'geom-curve.R' 'geom-defaults.R' 'geom-ribbon.R'\n'geom-density.R' 'geom-density2d.R' 'geom-dotplot.R'\n'geom-errorbar.R' 'geom-errorbarh.R' 'geom-freqpoly.R'\n'geom-function.R' 'geom-hex.R' 'geom-histogram.R'\n'geom-hline.R' 'geom-jitter.R' 'geom-label.R'\n'geom-linerange.R' 'geom-point.R' 'geom-pointrange.R'\n'geom-quantile.R' 'geom-rug.R' 'geom-sf.R' 'geom-smooth.R'\n'geom-spoke.R' 'geom-text.R' 'geom-tile.R' 'geom-violin.R'\n'geom-vline.R' 'ggplot2-package.R' 'grob-absolute.R'\n'grob-dotstack.R' 'grob-null.R' 'grouping.R' 'guide-bins.R'\n'guide-colorbar.R' 'guide-colorsteps.R' 'guide-legend.R'\n'guides-.R' 'guides-axis.R' 'guides-grid.R' 'guides-none.R'\n'hexbin.R' 'import-standalone-obj-type.R'\n'import-standalone-types-check.R' 'labeller.R' 'labels.R'\n'layer.R' 'layer-sf.R' 'layout.R' 'limits.R' 'margins.R'\n'performance.R' 'plot-build.R' 'plot-construction.R'\n'plot-last.R' 'plot.R' 'position-.R' 'position-collide.R'\n'position-dodge.R' 'position-dodge2.R' 'position-identity.R'\n'position-jitter.R' 'position-jitterdodge.R' 'position-nudge.R'\n'position-stack.R' 'quick-plot.R' 'reshape-add-margins.R'\n'save.R' 'scale-.R' 'scale-alpha.R' 'scale-binned.R'\n'scale-brewer.R' 'scale-colour.R' 'scale-continuous.R'\n'scale-date.R' 'scale-discrete-.R' 'scale-expansion.R'\n'scale-gradient.R' 'scale-grey.R' 'scale-hue.R'\n'scale-identity.R' 'scale-linetype.R' 'scale-linewidth.R'\n'scale-manual.R' 'scale-shape.R' 'scale-size.R' 'scale-steps.R'\n'scale-type.R' 'scale-view.R' 'scale-viridis.R' 'scales-.R'\n'stat-align.R' 'stat-bin.R' 'stat-bin2d.R' 'stat-bindot.R'\n'stat-binhex.R' 'stat-boxplot.R' 'stat-contour.R'\n'stat-count.R' 'stat-density-2d.R' 'stat-density.R'\n'stat-ecdf.R' 'stat-ellipse.R' 'stat-function.R'\n'stat-identity.R' 'stat-qq-line.R' 'stat-qq.R'\n'stat-quantilemethods.R' 'stat-sf-coordinates.R' 'stat-sf.R'\n'stat-smooth-methods.R' 'stat-smooth.R' 'stat-sum.R'\n'stat-summary-2d.R' 'stat-summary-bin.R' 'stat-summary-hex.R'\n'stat-summary.R' 'stat-unique.R' 'stat-ydensity.R'\n'summarise-plot.R' 'summary.R' 'theme-elements.R' 'theme.R'\n'theme-defaults.R' 'theme-current.R' 'utilities-break.R'\n'utilities-grid.R' 'utilities-help.R' 'utilities-matrix.R'\n'utilities-resolution.R' 'utilities-table.R'\n'utilities-tidy-eval.R' 'zxx.R' 'zzz.R'", + "NeedsCompilation": "no", + "Packaged": "2023-08-07 18:07:11 UTC; teunv", + "Author": "Hadley Wickham [aut] (),\nWinston Chang [aut] (),\nLionel Henry [aut],\nThomas Lin Pedersen [aut, cre]\n(),\nKohske Takahashi [aut],\nClaus Wilke [aut] (),\nKara Woo [aut] (),\nHiroaki Yutani [aut] (),\nDewey Dunnington [aut] (),\nPosit, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "RSPM", + "Date/Publication": "2023-08-14 11:20:02 UTC", + "Built": "R 4.3.0; ; 2023-08-15 11:26:44 UTC; unix" + } + }, + "globals": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "globals", + "Version": "0.16.2", + "Depends": "R (>= 3.1.2)", + "Imports": "codetools", + "Title": "Identify Global Objects in R Expressions", + "Authors@R": "c(\nperson(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\nemail=\"henrikb@braju.com\"),\nperson(\"Davis\",\"Vaughan\", role=\"ctb\",\nemail=\"davis@rstudio.com\"))", + "Description": "Identifies global (\"unknown\" or \"free\") objects in R expressions\nby code inspection using various strategies (ordered, liberal, or\nconservative). The objective of this package is to make it as simple as\npossible to identify global objects for the purpose of exporting them in\nparallel, distributed compute environments.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "ByteCompile": "TRUE", + "URL": "https://globals.futureverse.org,\nhttps://github.com/HenrikBengtsson/globals", + "BugReports": "https://github.com/HenrikBengtsson/globals/issues", + "RoxygenNote": "7.2.2", + "NeedsCompilation": "no", + "Packaged": "2022-11-21 20:18:24 UTC; hb", + "Author": "Henrik Bengtsson [aut, cre, cph],\nDavis Vaughan [ctb]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "RSPM", + "Date/Publication": "2022-11-21 21:10:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:20:23 UTC; unix" + } + }, + "glue": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "glue", + "Title": "Interpreted String Literals", + "Version": "1.6.2", + "Authors@R": "c(\nperson(\"Jim\", \"Hester\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-2739-7082\")),\nperson(\"Jennifer\", \"Bryan\", , \"jenny@rstudio.com\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-6983-2759\")),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "An implementation of interpreted string literals, inspired by\nPython's Literal String Interpolation\n and Docstrings\n and Julia's Triple-Quoted\nString Literals\n.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/tidyverse/glue, https://glue.tidyverse.org/", + "BugReports": "https://github.com/tidyverse/glue/issues", + "Depends": "R (>= 3.4)", + "Imports": "methods", + "Suggests": "covr, crayon, DBI, dplyr, forcats, ggplot2, knitr, magrittr,\nmicrobenchmark, R.utils, rmarkdown, rprintf, RSQLite, stringr,\ntestthat (>= 3.0.0), vctrs (>= 0.3.0), waldo (>= 0.3.0), withr", + "VignetteBuilder": "knitr", + "ByteCompile": "true", + "Config/Needs/website": "hadley/emo, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "NeedsCompilation": "yes", + "Packaged": "2022-02-23 22:50:40 UTC; jenny", + "Author": "Jim Hester [aut] (),\nJennifer Bryan [aut, cre] (),\nRStudio [cph, fnd]", + "Maintainer": "Jennifer Bryan ", + "Repository": "RSPM", + "Date/Publication": "2022-02-24 07:50:20 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:44:49 UTC; unix" + } + }, + "gower": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "gower", + "Maintainer": "Mark van der Loo ", + "License": "GPL-3", + "Title": "Gower's Distance", + "Type": "Package", + "LazyLoad": "yes", + "Authors@R": "c( person(\"Mark\", \"van der Loo\", role=c(\"aut\",\"cre\"),email=\"mark.vanderloo@gmail.com\")\n, person(\"David\", \"Turner\", role=\"ctb\"))", + "Description": "Compute Gower's distance (or similarity) coefficient between records. Compute\nthe top-n matches between records. Core algorithms are executed in parallel on systems\nsupporting OpenMP.", + "Version": "1.0.1", + "URL": "https://github.com/markvanderloo/gower", + "BugReports": "https://github.com/markvanderloo/gower/issues", + "Suggests": "tinytest (>= 0.9.3),", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "yes", + "Packaged": "2022-12-22 08:37:04 UTC; mark", + "Author": "Mark van der Loo [aut, cre],\nDavid Turner [ctb]", + "Repository": "RSPM", + "Date/Publication": "2022-12-22 09:40:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 22:19:30 UTC; unix" + } + }, + "gridExtra": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "gridExtra", + "Authors@R": "c(person(\"Baptiste\", \"Auguie\",\nemail = \"baptiste.auguie@gmail.com\",\nrole = c(\"aut\", \"cre\")), person(\"Anton\", \"Antonov\",\nemail = \"tonytonov@gmail.com\",\nrole = c(\"ctb\")))", + "License": "GPL (>= 2)", + "Title": "Miscellaneous Functions for \"Grid\" Graphics", + "Type": "Package", + "Description": "Provides a number of user-level functions to work with \"grid\"\ngraphics, notably to arrange multiple grid-based plots on a page, and draw\ntables.", + "Version": "2.3", + "VignetteBuilder": "knitr", + "Imports": "gtable, grid, grDevices, graphics, utils", + "Suggests": "ggplot2, egg, lattice, knitr, testthat", + "RoxygenNote": "6.0.1", + "NeedsCompilation": "no", + "Packaged": "2017-09-08 22:52:09 UTC; baptiste", + "Author": "Baptiste Auguie [aut, cre],\nAnton Antonov [ctb]", + "Maintainer": "Baptiste Auguie ", + "Repository": "RSPM", + "Date/Publication": "2017-09-09 14:12:08 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:24:37 UTC; unix" + } + }, + "gtable": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "gtable", + "Title": "Arrange 'Grobs' in Tables", + "Version": "0.3.4", + "Authors@R": "c(person(given = \"Hadley\",\nfamily = \"Wickham\",\nrole = \"aut\",\nemail = \"hadley@posit.co\"),\nperson(given = \"Thomas Lin\",\nfamily = \"Pedersen\",\nrole = c(\"aut\", \"cre\"),\nemail = \"thomas.pedersen@posit.co\"),\nperson(given = \"Posit Software, PBC\",\nrole = \"cph\"))", + "Description": "Tools to make it easier to work with \"tables\" of\n'grobs'. The 'gtable' package defines a 'gtable' grob class that specifies a\ngrid along with a list of grobs and their placement in the grid. Further the\npackage makes it easy to manipulate and combine 'gtable' objects so that\ncomplex compositions can be built up sequentially.", + "License": "MIT + file LICENSE", + "Depends": "R (>= 3.5)", + "Imports": "cli, glue, grid, lifecycle, rlang (>= 1.1.0)", + "Suggests": "covr, ggplot2, knitr, profvis, rmarkdown, testthat (>= 3.0.0)", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "URL": "https://gtable.r-lib.org, https://github.com/r-lib/gtable", + "BugReports": "https://github.com/r-lib/gtable/issues", + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "no", + "Packaged": "2023-08-21 10:36:53 UTC; thomas", + "Author": "Hadley Wickham [aut],\nThomas Lin Pedersen [aut, cre],\nPosit Software, PBC [cph]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "RSPM", + "Date/Publication": "2023-08-21 11:20:02 UTC", + "Built": "R 4.3.0; ; 2023-08-22 11:58:57 UTC; unix" + } + }, + "hardhat": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "hardhat", + "Title": "Construct Modeling Packages", + "Version": "1.3.0", + "Authors@R": "c(\nperson(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\nperson(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Building modeling packages is hard. A large amount of effort\ngenerally goes into providing an implementation for a new method that\nis efficient, fast, and correct, but often less emphasis is put on the\nuser interface. A good interface requires specialized knowledge about\nS3 methods and formulas, which the average package developer might not\nhave. The goal of 'hardhat' is to reduce the burden around building\nnew modeling packages by providing functionality for preprocessing,\npredicting, and validating input.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/tidymodels/hardhat,\nhttps://hardhat.tidymodels.org", + "BugReports": "https://github.com/tidymodels/hardhat/issues", + "Depends": "R (>= 3.5.0)", + "Imports": "cli (>= 3.6.0), glue (>= 1.6.2), rlang (>= 1.1.0), tibble (>=\n3.2.1), vctrs (>= 0.6.0)", + "Suggests": "covr, crayon, devtools, knitr, Matrix, modeldata (>= 0.0.2),\nrecipes (>= 1.0.5), rmarkdown (>= 2.3), roxygen2, testthat (>=\n3.0.0), usethis (>= 2.1.5)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-03-29 18:31:14 UTC; davis", + "Author": "Davis Vaughan [aut, cre],\nMax Kuhn [aut],\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "RSPM", + "Date/Publication": "2023-03-30 09:20:12 UTC", + "Built": "R 4.3.0; ; 2023-04-21 22:20:25 UTC; unix" + } + }, + "here": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "here", + "Title": "A Simpler Way to Find Your Files", + "Version": "1.0.1", + "Date": "2020-12-13", + "Authors@R": "c(person(given = \"Kirill\",\nfamily = \"M\\u00fcller\",\nrole = c(\"aut\", \"cre\"),\nemail = \"krlmlr+r@mailbox.org\",\ncomment = c(ORCID = \"0000-0002-1416-3412\")),\nperson(given = \"Jennifer\",\nfamily = \"Bryan\",\nrole = \"ctb\",\nemail = \"jenny@rstudio.com\",\ncomment = c(ORCID = \"0000-0002-6983-2759\")))", + "Description": "Constructs paths to your project's files.\nDeclare the relative path of a file within your project with 'i_am()'.\nUse the 'here()' function as a drop-in replacement for 'file.path()',\nit will always locate the files relative to your project root.", + "License": "MIT + file LICENSE", + "URL": "https://here.r-lib.org/, https://github.com/r-lib/here", + "BugReports": "https://github.com/r-lib/here/issues", + "Imports": "rprojroot (>= 2.0.2)", + "Suggests": "conflicted, covr, fs, knitr, palmerpenguins, plyr, readr,\nrlang, rmarkdown, testthat, uuid, withr", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.1.1.9000", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Packaged": "2020-12-13 06:59:33 UTC; kirill", + "Author": "Kirill Müller [aut, cre] (),\nJennifer Bryan [ctb] ()", + "Maintainer": "Kirill Müller ", + "Repository": "RSPM", + "Date/Publication": "2020-12-13 07:30:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 23:11:59 UTC; unix" + } + }, + "highr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "highr", + "Type": "Package", + "Title": "Syntax Highlighting for R Source Code", + "Version": "0.10", + "Authors@R": "c(\nperson(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\nperson(\"Yixuan\", \"Qiu\", role = \"aut\"),\nperson(\"Christopher\", \"Gandrud\", role = \"ctb\"),\nperson(\"Qiang\", \"Li\", role = \"ctb\")\n)", + "Description": "Provides syntax highlighting for R source code. Currently it\nsupports LaTeX and HTML output. Source code of other languages is supported\nvia Andre Simon's highlight package ().", + "Depends": "R (>= 3.3.0)", + "Imports": "xfun (>= 0.18)", + "Suggests": "knitr, markdown, testit", + "License": "GPL", + "URL": "https://github.com/yihui/highr", + "BugReports": "https://github.com/yihui/highr/issues", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2022-12-22 06:43:07 UTC; yihui", + "Author": "Yihui Xie [aut, cre] (),\nYixuan Qiu [aut],\nChristopher Gandrud [ctb],\nQiang Li [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "RSPM", + "Date/Publication": "2022-12-22 07:00:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:46:33 UTC; unix" + } + }, + "hitandrun": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "hitandrun", + "Type": "Package", + "Title": "\"Hit and Run\" and \"Shake and Bake\" for Sampling Uniformly from\nConvex Shapes", + "Version": "0.5-6", + "Date": "2022-05-26", + "Authors@R": "c(\nperson(\"Gert\", \"van Valkenhoef\", email=\"gert@gertvv.nl\", role=c(\"aut\", \"cre\", \"cph\")),\nperson(\"Tommi\", \"Tervonen\", role=c(\"aut\")))", + "Description": "The \"Hit and Run\" Markov Chain Monte Carlo method for sampling uniformly from convex shapes defined by linear constraints, and the \"Shake and Bake\" method for sampling from the boundary of such shapes. Includes specialized functions for sampling normalized weights with arbitrary linear constraints. Tervonen, T., van Valkenhoef, G., Basturk, N., and Postmus, D. (2012) . van Valkenhoef, G., Tervonen, T., and Postmus, D. (2014) .", + "URL": "https://github.com/gertvv/hitandrun", + "License": "GPL-3", + "LazyLoad": "yes", + "Imports": "rcdd (>= 1.1), stats", + "Suggests": "testthat (>= 0.8)", + "NeedsCompilation": "yes", + "Packaged": "2022-05-27 11:31:10 UTC; gert", + "Author": "Gert van Valkenhoef [aut, cre, cph],\nTommi Tervonen [aut]", + "Maintainer": "Gert van Valkenhoef ", + "Repository": "RSPM", + "Date/Publication": "2022-05-27 13:10:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-22 02:09:06 UTC; unix" + } + }, + "hms": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "hms", + "Title": "Pretty Time of Day", + "Date": "2023-03-21", + "Version": "1.1.3", + "Authors@R": "c(\nperson(\"Kirill\", \"Müller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")),\nperson(\"R Consortium\", role = \"fnd\"),\nperson(\"RStudio\", role = \"fnd\")\n)", + "Description": "Implements an S3 class for storing and formatting time-of-day\nvalues, based on the 'difftime' class.", + "Imports": "lifecycle, methods, pkgconfig, rlang (>= 1.0.2), vctrs (>=\n0.3.8)", + "Suggests": "crayon, lubridate, pillar (>= 1.1.0), testthat (>= 3.0.0)", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "URL": "https://hms.tidyverse.org/, https://github.com/tidyverse/hms", + "BugReports": "https://github.com/tidyverse/hms/issues", + "RoxygenNote": "7.2.3", + "Config/testthat/edition": "3", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "false", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "no", + "Packaged": "2023-03-21 16:52:11 UTC; kirill", + "Author": "Kirill Müller [aut, cre] (),\nR Consortium [fnd],\nRStudio [fnd]", + "Maintainer": "Kirill Müller ", + "Repository": "RSPM", + "Date/Publication": "2023-03-21 18:10:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:47:57 UTC; unix" + } + }, + "htmltools": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "htmltools", + "Type": "Package", + "Title": "Tools for HTML", + "Version": "0.5.6.1", + "Authors@R": "c(\nperson(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"),\nperson(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(\"Barret\", \"Schloerke\", role = \"aut\", email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")),\nperson(\"Winston\", \"Chang\", role = \"aut\", email = \"winston@posit.co\", comment = c(ORCID = \"0000-0002-1576-2126\")),\nperson(\"Yihui\", \"Xie\", role = \"aut\", email = \"yihui@posit.co\"),\nperson(\"Jeff\", \"Allen\", role = \"aut\"),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Tools for HTML generation and output.", + "Depends": "R (>= 2.14.1)", + "Imports": "utils, digest, grDevices, base64enc, rlang (>= 0.4.12),\nfastmap (>= 1.1.0), ellipsis", + "Suggests": "markdown, testthat, withr, Cairo, ragg, shiny", + "Enhances": "knitr", + "License": "GPL (>= 2)", + "URL": "https://github.com/rstudio/htmltools,\nhttps://rstudio.github.io/htmltools/", + "BugReports": "https://github.com/rstudio/htmltools/issues", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "Collate": "'colors.R' 'fill.R' 'html_dependency.R' 'html_escape.R'\n'html_print.R' 'htmltools-package.R' 'images.R' 'known_tags.R'\n'selector.R' 'staticimports.R' 'tag_query.R' 'utils.R' 'tags.R'\n'template.R'", + "Config/Needs/check": "knitr", + "Config/Needs/website": "rstudio/quillt, bench", + "NeedsCompilation": "yes", + "Packaged": "2023-10-06 15:29:21 UTC; cpsievert", + "Author": "Joe Cheng [aut],\nCarson Sievert [aut, cre] (),\nBarret Schloerke [aut] (),\nWinston Chang [aut] (),\nYihui Xie [aut],\nJeff Allen [aut],\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Carson Sievert ", + "Repository": "RSPM", + "Date/Publication": "2023-10-06 20:40:06 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-10-09 11:49:47 UTC; unix" + } + }, + "htmlwidgets": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "htmlwidgets", + "Type": "Package", + "Title": "HTML Widgets for R", + "Version": "1.6.2", + "Authors@R": "c(\nperson(\"Ramnath\", \"Vaidyanathan\", role = c(\"aut\", \"cph\")),\nperson(\"Yihui\", \"Xie\", role = c(\"aut\")),\nperson(\"JJ\", \"Allaire\", role = c(\"aut\")),\nperson(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"joe@rstudio.com\"),\nperson(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(\"Kenton\", \"Russell\", role = c(\"aut\", \"cph\")),\nperson(\"Ellis\", \"Hughes\", role = c(\"ctb\")),\nperson(family = \"RStudio\", role = \"cph\")\n)", + "Description": "A framework for creating HTML widgets that render in various\ncontexts including the R console, 'R Markdown' documents, and 'Shiny'\nweb applications.", + "License": "MIT + file LICENSE", + "VignetteBuilder": "knitr", + "Imports": "grDevices, htmltools (>= 0.5.4), jsonlite (>= 0.9.16), yaml,\nknitr (>= 1.8), rmarkdown", + "Suggests": "testthat", + "Enhances": "shiny (>= 1.1)", + "URL": "https://github.com/ramnathv/htmlwidgets", + "BugReports": "https://github.com/ramnathv/htmlwidgets/issues", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2023-03-17 15:34:40 UTC; cpsievert", + "Author": "Ramnath Vaidyanathan [aut, cph],\nYihui Xie [aut],\nJJ Allaire [aut],\nJoe Cheng [aut],\nCarson Sievert [aut, cre] (),\nKenton Russell [aut, cph],\nEllis Hughes [ctb],\nRStudio [cph]", + "Maintainer": "Carson Sievert ", + "Repository": "RSPM", + "Date/Publication": "2023-03-17 16:50:06 UTC", + "Built": "R 4.3.0; ; 2023-04-21 22:22:03 UTC; unix" + } + }, + "httpcode": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "httpcode", + "Title": "'HTTP' Status Code Helper", + "Description": "Find and explain the meaning of 'HTTP' status codes.\nFunctions included for searching for codes by full or partial number,\nby message, and get appropriate dog and cat images for many\nstatus codes.", + "Version": "0.3.0", + "Authors@R": "person(\"Scott\", \"Chamberlain\", role = c(\"aut\",\"cre\"),\nemail = \"myrmecocystus@gmail.com\",\ncomment = c(ORCID = \"0000-0003-1444-9135\"))", + "License": "MIT + file LICENSE", + "URL": "https://github.com/sckott/httpcode", + "BugReports": "https://github.com/sckott/httpcode/issues", + "Encoding": "UTF-8", + "Language": "en-US", + "Suggests": "testthat", + "RoxygenNote": "7.1.0", + "NeedsCompilation": "no", + "Packaged": "2020-04-10 03:18:28 UTC; sckott", + "Author": "Scott Chamberlain [aut, cre] ()", + "Maintainer": "Scott Chamberlain ", + "Repository": "RSPM", + "Date/Publication": "2020-04-10 06:20:02 UTC", + "Built": "R 4.3.0; ; 2023-05-05 10:00:40 UTC; unix" + } + }, + "httpuv": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "httpuv", + "Type": "Package", + "Encoding": "UTF-8", + "Title": "HTTP and WebSocket Server Library", + "Version": "1.6.11", + "Authors@R": "c(\nperson(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"joe@rstudio.com\"),\nperson(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@rstudio.com\"),\nperson(\"Posit, PBC\", role = \"cph\", \"fnd\"),\nperson(\"Hector\", \"Corrada Bravo\", role = \"ctb\"),\nperson(\"Jeroen\", \"Ooms\", role = \"ctb\"),\nperson(\"Andrzej\", \"Krzemienski\", role = \"cph\", comment = \"optional.hpp\"),\nperson(\"libuv project contributors\", role = \"cph\",\ncomment = \"libuv library, see src/libuv/AUTHORS file\"),\nperson(\"Joyent, Inc. and other Node contributors\", role = \"cph\",\ncomment = \"libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file\"),\nperson(\"Niels\", \"Provos\", role = \"cph\", comment = \"libuv subcomponent: tree.h\"),\nperson(\"Internet Systems Consortium, Inc.\", role = \"cph\",\ncomment = \"libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c\"),\nperson(\"Alexander\", \"Chemeris\", role = \"cph\",\ncomment = \"libuv subcomponent: stdint-msvc2008.h (from msinttypes)\"),\nperson(\"Google, Inc.\", role = \"cph\", comment = \"libuv subcomponent: pthread-fixes.c\"),\nperson(\"Sony Mobile Communcations AB\", role = \"cph\",\ncomment = \"libuv subcomponent: pthread-fixes.c\"),\nperson(\"Berkeley Software Design Inc.\", role = \"cph\",\ncomment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"),\nperson(\"Kenneth\", \"MacKay\", role = \"cph\",\ncomment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"),\nperson(\"Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016)\", role = \"cph\",\ncomment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"),\nperson(\"Steve\", \"Reid\", role = \"aut\", comment = \"SHA-1 implementation\"),\nperson(\"James\", \"Brown\", role = \"aut\", comment = \"SHA-1 implementation\"),\nperson(\"Bob\", \"Trower\", role = \"aut\", comment = \"base64 implementation\"),\nperson(\"Alexander\", \"Peslyak\", role = \"aut\", comment = \"MD5 implementation\"),\nperson(\"Trantor Standard Systems\", role = \"cph\", comment = \"base64 implementation\"),\nperson(\"Igor\", \"Sysoev\", role = \"cph\", comment = \"http-parser\")\n)", + "Description": "Provides low-level socket and protocol support for handling\nHTTP and WebSocket requests directly from within R. It is primarily\nintended as a building block for other packages, rather than making it\nparticularly easy to create complete web applications using httpuv alone.\nhttpuv is built on top of the libuv and http-parser C libraries, both of\nwhich were developed by Joyent, Inc. (See LICENSE file for libuv and\nhttp-parser license information.)", + "License": "GPL (>= 2) | file LICENSE", + "Depends": "R (>= 2.15.1)", + "Imports": "Rcpp (>= 1.0.7), utils, R6, promises, later (>= 0.8.0)", + "LinkingTo": "Rcpp, later", + "URL": "https://github.com/rstudio/httpuv", + "SystemRequirements": "GNU make, zlib", + "RoxygenNote": "7.2.3", + "Suggests": "testthat, callr, curl, websocket", + "Collate": "'RcppExports.R' 'httpuv.R' 'random_port.R' 'server.R'\n'static_paths.R' 'utils.R'", + "NeedsCompilation": "yes", + "Packaged": "2023-05-11 01:48:49 UTC; jcheng", + "Author": "Joe Cheng [aut],\nWinston Chang [aut, cre],\nPosit, PBC fnd [cph],\nHector Corrada Bravo [ctb],\nJeroen Ooms [ctb],\nAndrzej Krzemienski [cph] (optional.hpp),\nlibuv project contributors [cph] (libuv library, see src/libuv/AUTHORS\nfile),\nJoyent, Inc. and other Node contributors [cph] (libuv library, see\nsrc/libuv/AUTHORS file; and http-parser library, see\nsrc/http-parser/AUTHORS file),\nNiels Provos [cph] (libuv subcomponent: tree.h),\nInternet Systems Consortium, Inc. [cph] (libuv subcomponent: inet_pton\nand inet_ntop, contained in src/libuv/src/inet.c),\nAlexander Chemeris [cph] (libuv subcomponent: stdint-msvc2008.h (from\nmsinttypes)),\nGoogle, Inc. [cph] (libuv subcomponent: pthread-fixes.c),\nSony Mobile Communcations AB [cph] (libuv subcomponent:\npthread-fixes.c),\nBerkeley Software Design Inc. [cph] (libuv subcomponent:\nandroid-ifaddrs.h, android-ifaddrs.c),\nKenneth MacKay [cph] (libuv subcomponent: android-ifaddrs.h,\nandroid-ifaddrs.c),\nEmergya (Cloud4all, FP7/2007-2013, grant agreement no 289016) [cph]\n(libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c),\nSteve Reid [aut] (SHA-1 implementation),\nJames Brown [aut] (SHA-1 implementation),\nBob Trower [aut] (base64 implementation),\nAlexander Peslyak [aut] (MD5 implementation),\nTrantor Standard Systems [cph] (base64 implementation),\nIgor Sysoev [cph] (http-parser)", + "Maintainer": "Winston Chang ", + "Repository": "RSPM", + "Date/Publication": "2023-05-11 08:00:05 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-11 14:01:37 UTC; unix" + } + }, + "httr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "httr", + "Title": "Tools for Working with URLs and HTTP", + "Version": "1.4.7", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\nperson(\"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Useful tools for working with HTTP organised by HTTP verbs\n(GET(), POST(), etc). Configuration functions make it easy to control\nadditional request components (authenticate(), add_headers() and so\non).", + "License": "MIT + file LICENSE", + "URL": "https://httr.r-lib.org/, https://github.com/r-lib/httr", + "BugReports": "https://github.com/r-lib/httr/issues", + "Depends": "R (>= 3.5)", + "Imports": "curl (>= 5.0.2), jsonlite, mime, openssl (>= 0.8), R6", + "Suggests": "covr, httpuv, jpeg, knitr, png, readr, rmarkdown, testthat\n(>= 0.8.0), xml2", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-08-15 02:56:56 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\nPosit, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2023-08-15 09:00:02 UTC", + "Built": "R 4.3.0; ; 2023-08-16 11:12:55 UTC; unix" + } + }, + "hypervolume": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "hypervolume", + "Type": "Package", + "Title": "High Dimensional Geometry, Set Operations, Projection, and\nInference Using Kernel Density Estimation, Support Vector\nMachines, and Convex Hulls", + "Version": "3.1.3", + "Date": "2023-09-13", + "Author": "Benjamin Blonder, with contributions from Cecina Babich Morrow, Stuart Brown, Gregoire Butruille, Daniel Chen, Alex Laini, and David J. Harris", + "Maintainer": "Benjamin Blonder ", + "Description": "Estimates the shape and volume of high-dimensional datasets and performs set operations: intersection / overlap, union, unique components, inclusion test, and hole detection. Uses stochastic geometry approach to high-dimensional kernel density estimation, support vector machine delineation, and convex hull generation. Applications include modeling trait and niche hypervolumes and species distribution modeling.", + "License": "GPL-3", + "Depends": "Rcpp, methods, R (>= 3.5.0)", + "LinkingTo": "Rcpp, RcppArmadillo, progress", + "Imports": "raster, maps, MASS, geometry, ks, hitandrun, pdist,\nfastcluster, compiler, e1071, progress, mvtnorm, data.table,\nterra, sp, foreach, doParallel, parallel, ggplot2, pbapply,\npalmerpenguins, purrr, dplyr, caret", + "Suggests": "rgl, magick, alphahull, knitr, rmarkdown, gridExtra", + "NeedsCompilation": "yes", + "RoxygenNote": "7.1.1", + "VignetteBuilder": "knitr", + "Packaged": "2023-09-14 09:30:45 UTC; benjaminblonder", + "Repository": "RSPM", + "Date/Publication": "2023-09-14 10:20:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-15 11:44:13 UTC; unix" + } + }, + "igraph": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "igraph", + "Version": "1.5.1", + "Title": "Network Analysis and Visualization", + "Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"aut\",\ncomment = c(ORCID = \"0000-0001-7098-9676\")),\nperson(\"Tamás\", \"Nepusz\", , \"ntamas@gmail.com\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-1451-338X\")),\nperson(\"Vincent\", \"Traag\", role = \"aut\",\ncomment = c(ORCID = \"0000-0003-3170-3879\")),\nperson(\"Szabolcs\", \"Horvát\", , \"szhorvat@gmail.com\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-3100-523X\")),\nperson(\"Fabio\", \"Zanini\", , \"fabio.zanini@unsw.edu.au\", role = \"aut\",\ncomment = c(ORCID = \"0000-0001-7097-8539\")),\nperson(\"Daniel\", \"Noom\", role = \"aut\"),\nperson(\"Kirill\", \"Müller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-1416-3412\")),\nperson(\"Maëlle\", \"Salmon\", role = \"ctb\"),\nperson(\"Chan Zuckerberg Initiative\", role = \"fnd\")\n)", + "Description": "Routines for simple graphs and network analysis. It can\nhandle large graphs very well and provides functions for generating\nrandom and regular graphs, graph visualization, centrality methods and\nmuch more.", + "License": "GPL (>= 2)", + "URL": "https://r.igraph.org/, https://igraph.org/,\nhttps://igraph.discourse.group/", + "BugReports": "https://github.com/igraph/rigraph/issues", + "Depends": "methods, R (>= 3.5.0)", + "Imports": "cli, graphics, grDevices, lifecycle, magrittr, Matrix,\npkgconfig (>= 2.0.0), rlang, stats, utils", + "Suggests": "ape (>= 5.7-0.1), callr, decor, digest, graph, igraphdata,\nknitr, rgl, rmarkdown, scales, stats4, tcltk, testthat, vdiffr,\nwithr", + "LinkingTo": "cpp11 (>= 0.2.0)", + "VignetteBuilder": "knitr", + "Config/Needs/build": "roxygen2, devtools, irlba, pkgconfig", + "Config/Needs/coverage": "covr", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "vs-es, scan, vs-operators, weakref,\nwatts.strogatz.game", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "SystemRequirements": "gmp (optional), libxml2 (optional), glpk (>= 4.57,\noptional)", + "NeedsCompilation": "yes", + "Packaged": "2023-08-09 04:30:08 UTC; kirill", + "Author": "Gábor Csárdi [aut] (),\nTamás Nepusz [aut] (),\nVincent Traag [aut] (),\nSzabolcs Horvát [aut] (),\nFabio Zanini [aut] (),\nDaniel Noom [aut],\nKirill Müller [aut, cre] (),\nMaëlle Salmon [ctb],\nChan Zuckerberg Initiative [fnd]", + "Maintainer": "Kirill Müller ", + "Repository": "RSPM", + "Date/Publication": "2023-08-10 09:00:05 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-11 13:05:02 UTC; unix" + } + }, + "ipred": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "ipred", + "Title": "Improved Predictors", + "Version": "0.9-14", + "Date": "2023-03-09", + "Authors@R": "c(person(\"Andrea\", \"Peters\", role = \"aut\"),\nperson(\"Torsten\", \"Hothorn\", role = c(\"aut\", \"cre\"),\nemail = \"Torsten.Hothorn@R-project.org\"),\nperson(\"Brian D.\", \"Ripley\", role = \"ctb\"),\nperson(\"Terry\", \"Therneau\", role = \"ctb\"),\nperson(\"Beth\", \"Atkinson\", role = \"ctb\"))", + "Description": "Improved predictive models by indirect classification and\nbagging for classification, regression and survival problems\nas well as resampling based estimators of prediction error.", + "Depends": "R (>= 2.10)", + "Imports": "rpart (>= 3.1-8), MASS, survival, nnet, class, prodlim", + "Suggests": "mvtnorm, mlbench, TH.data, randomForest, party", + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Packaged": "2023-03-09 13:48:29 UTC; hothorn", + "Author": "Andrea Peters [aut],\nTorsten Hothorn [aut, cre],\nBrian D. Ripley [ctb],\nTerry Therneau [ctb],\nBeth Atkinson [ctb]", + "Maintainer": "Torsten Hothorn ", + "Repository": "RSPM", + "Date/Publication": "2023-03-09 14:50:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 22:28:01 UTC; unix" + } + }, + "isoband": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "isoband", + "Title": "Generate Isolines and Isobands from Regularly Spaced Elevation\nGrids", + "Version": "0.2.7", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0003-4757-117X\")),\nperson(\"Claus O.\", \"Wilke\", , \"wilke@austin.utexas.edu\", role = \"aut\",\ncomment = c(\"Original author\", ORCID = \"0000-0002-7470-9261\")),\nperson(\"Thomas Lin\", \"Pedersen\", , \"thomasp85@gmail.com\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-5147-4711\"))\n)", + "Description": "A fast C++ implementation to generate contour lines\n(isolines) and contour polygons (isobands) from regularly spaced grids\ncontaining elevation data.", + "License": "MIT + file LICENSE", + "URL": "https://isoband.r-lib.org", + "BugReports": "https://github.com/r-lib/isoband/issues", + "Imports": "grid, utils", + "Suggests": "covr, ggplot2, knitr, magick, microbenchmark, rmarkdown, sf,\ntestthat, xml2", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "SystemRequirements": "C++11", + "NeedsCompilation": "yes", + "Packaged": "2022-12-19 20:10:02 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre] (),\nClaus O. Wilke [aut] (Original author,\n),\nThomas Lin Pedersen [aut] ()", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2022-12-20 10:00:13 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:47:22 UTC; unix" + } + }, + "iterators": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "iterators", + "Type": "Package", + "Title": "Provides Iterator Construct", + "Version": "1.0.14", + "Authors@R": "c(person(\"Folashade\", \"Daniel\", role=\"cre\", email=\"fdaniel@microsoft.com\"),\nperson(\"Revolution\", \"Analytics\", role=c(\"aut\", \"cph\")),\nperson(\"Steve\", \"Weston\", role=\"aut\"))", + "Description": "Support for iterators, which allow a programmer to traverse\nthrough all the elements of a vector, list, or other collection of data.", + "URL": "https://github.com/RevolutionAnalytics/iterators", + "Depends": "R (>= 2.5.0), utils", + "Suggests": "RUnit, foreach", + "License": "Apache License (== 2.0)", + "NeedsCompilation": "no", + "Packaged": "2022-01-16 18:19:31 UTC; folashade", + "Author": "Folashade Daniel [cre],\nRevolution Analytics [aut, cph],\nSteve Weston [aut]", + "Maintainer": "Folashade Daniel ", + "Repository": "RSPM", + "Date/Publication": "2022-02-05 00:50:08 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:24:51 UTC; unix" + } + }, + "jquerylib": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "jquerylib", + "Title": "Obtain 'jQuery' as an HTML Dependency Object", + "Version": "0.1.4", + "Authors@R": "c(\nperson(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"),\nperson(family = \"RStudio\", role = \"cph\"),\nperson(family = \"jQuery Foundation\", role = \"cph\",\ncomment = \"jQuery library and jQuery UI library\"),\nperson(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\ncomment = \"jQuery library; authors listed in inst/lib/jquery-AUTHORS.txt\")\n)", + "Description": "Obtain any major version of 'jQuery' () and use it in any webpage generated by 'htmltools' (e.g. 'shiny', 'htmlwidgets', and 'rmarkdown').\nMost R users don't need to use this package directly, but other R packages (e.g. 'shiny', 'rmarkdown', etc.) depend on this package to avoid bundling redundant copies of 'jQuery'.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Config/testthat/edition": "3", + "RoxygenNote": "7.0.2", + "Imports": "htmltools", + "Suggests": "testthat", + "NeedsCompilation": "no", + "Packaged": "2021-04-26 16:40:21 UTC; cpsievert", + "Author": "Carson Sievert [aut, cre] (),\nJoe Cheng [aut],\nRStudio [cph],\njQuery Foundation [cph] (jQuery library and jQuery UI library),\njQuery contributors [ctb, cph] (jQuery library; authors listed in\ninst/lib/jquery-AUTHORS.txt)", + "Maintainer": "Carson Sievert ", + "Repository": "RSPM", + "Date/Publication": "2021-04-26 17:10:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:47:50 UTC; unix" + } + }, + "jsonify": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "jsonify", + "Type": "Package", + "Title": "Convert Between 'R' Objects and Javascript Object Notation\n(JSON)", + "Version": "1.2.2", + "Date": "2022-11-10", + "Authors@R": "c(\nperson(\"David\", \"Cooley\", ,\"dcooley@symbolix.com.au\", role = c(\"aut\", \"cre\")),\nperson(\"Chris\", \"Muir\", role = \"ctb\"),\nperson(\"Brendan\", \"Knapp\", role = \"ctb\", comment = c(ORCID = \"0000-0003-3284-4972\"))\n)", + "Description": "Conversions between 'R' objects and Javascript Object Notation (JSON) using\nthe 'rapidjsonr' library .", + "License": "MIT + file LICENSE", + "Depends": "R (>= 3.3.0)", + "SystemRequirements": "C++11", + "Imports": "Rcpp (>= 0.12.18)", + "LinkingTo": "rapidjsonr (>= 1.2.0), Rcpp", + "RoxygenNote": "7.1.0", + "Suggests": "covr, testthat, knitr, rmarkdown", + "Encoding": "UTF-8", + "VignetteBuilder": "knitr", + "NeedsCompilation": "yes", + "Packaged": "2022-11-09 21:45:14 UTC; david", + "Author": "David Cooley [aut, cre],\nChris Muir [ctb],\nBrendan Knapp [ctb] ()", + "Maintainer": "David Cooley ", + "Repository": "RSPM", + "Date/Publication": "2022-11-09 22:20:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 02:16:18 UTC; unix" + } + }, + "jsonlite": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "jsonlite", + "Version": "1.8.7", + "Title": "A Simple and Robust JSON Parser and Generator for R", + "License": "MIT + file LICENSE", + "Depends": "methods", + "Authors@R": "c(\nperson(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroen@berkeley.edu\",\ncomment = c(ORCID = \"0000-0002-4035-0289\")),\nperson(\"Duncan\", \"Temple Lang\", role = \"ctb\"),\nperson(\"Lloyd\", \"Hilaiel\", role = \"cph\", comment=\"author of bundled libyajl\"))", + "URL": "https://jeroen.r-universe.dev/jsonlite\nhttps://arxiv.org/abs/1403.2805", + "BugReports": "https://github.com/jeroen/jsonlite/issues", + "Maintainer": "Jeroen Ooms ", + "VignetteBuilder": "knitr, R.rsp", + "Description": "A reasonably fast JSON parser and generator, optimized for statistical\ndata and the web. Offers simple, flexible tools for working with JSON in R, and\nis particularly powerful for building pipelines and interacting with a web API.\nThe implementation is based on the mapping described in the vignette (Ooms, 2014).\nIn addition to converting JSON data from/to R objects, 'jsonlite' contains\nfunctions to stream, validate, and prettify JSON data. The unit tests included\nwith the package verify that all edge cases are encoded and decoded consistently\nfor use with dynamic data in systems and applications.", + "Suggests": "httr, vctrs, testthat, knitr, rmarkdown, R.rsp, sf", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2023-06-29 08:00:03 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (),\nDuncan Temple Lang [ctb],\nLloyd Hilaiel [cph] (author of bundled libyajl)", + "Repository": "RSPM", + "Date/Publication": "2023-06-29 22:10:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-06-30 11:28:52 UTC; unix" + } + }, + "kernlab": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "kernlab", + "Version": "0.9-32", + "Title": "Kernel-Based Machine Learning Lab", + "Authors@R": "c(person(\"Alexandros\", \"Karatzoglou\", role = c(\"aut\", \"cre\"),\nemail = \"alexandros.karatzoglou@gmail.com\"),\nperson(\"Alex\", \"Smola\", role = \"aut\"),\nperson(\"Kurt\", \"Hornik\", role = \"aut\",\nemail = \"Kurt.Hornik@R-project.org\",\ncomment = c(ORCID = \"0000-0003-4198-9911\")),\nperson(\"National ICT Australia (NICTA)\",\nrole = \"cph\"),\nperson(c(\"Michael\", \"A.\"), \"Maniscalco\",\nrole = c(\"ctb\", \"cph\")),\nperson(c(\"Choon\", \"Hui\"), \"Teo\", role = \"ctb\"))", + "Description": "Kernel-based machine learning methods for classification,\nregression, clustering, novelty detection, quantile regression\nand dimensionality reduction. Among other methods 'kernlab'\nincludes Support Vector Machines, Spectral Clustering, Kernel\nPCA, Gaussian Processes and a QP solver.", + "Depends": "R (>= 2.10)", + "Imports": "methods, stats, grDevices, graphics", + "LazyLoad": "Yes", + "License": "GPL-2", + "NeedsCompilation": "yes", + "Packaged": "2023-01-31 14:16:15 UTC; hornik", + "Author": "Alexandros Karatzoglou [aut, cre],\nAlex Smola [aut],\nKurt Hornik [aut] (),\nNational ICT Australia (NICTA) [cph],\nMichael A. Maniscalco [ctb, cph],\nChoon Hui Teo [ctb]", + "Maintainer": "Alexandros Karatzoglou ", + "Repository": "RSPM", + "Date/Publication": "2023-01-31 15:26:48 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:11:59 UTC; unix" + } + }, + "kewr": { + "Source": "github", + "Repository": null, + "description": { + "Package": "kewr", + "Title": "R Package to Access Kew Data APIs", + "Version": "0.6.1", + "Authors@R": "person(given = \"Barnaby\",\nfamily = \"Walker\",\nrole = c(\"aut\", \"cre\"),\nemail = \"barnabywalker08@gmail.com\",\ncomment = c(ORCID = \"0000-0002-3884-671X\"))", + "Description": "An R package to access data from RGB Kew’s APIs.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "LazyData": "true", + "Roxygen": "list(markdown = TRUE)", + "RoxygenNote": "7.2.0", + "Suggests": "testthat, knitr, rmarkdown, ggplot2, progress", + "URL": "https://barnabywalker.github.io/kewr/,\nhttps://github.com/barnabywalker/kewr/", + "BugReports": "https://github.com/barnabywalker/kewr/issues", + "Imports": "httr, jsonlite, glue, tibble, purrr, dplyr, stringr, rvest,\nhere, tidyr, rlang, generics", + "VignetteBuilder": "knitr", + "Depends": "R (>= 2.10)", + "RemoteType": "github", + "RemoteHost": "api.github.com", + "RemoteRepo": "kewr", + "RemoteUsername": "barnabywalker", + "RemoteRef": "HEAD", + "RemoteSha": "d40e2ad916c73237578b03bea5beac85099df638", + "GithubRepo": "kewr", + "GithubUsername": "barnabywalker", + "GithubRef": "HEAD", + "GithubSHA1": "d40e2ad916c73237578b03bea5beac85099df638", + "NeedsCompilation": "no", + "Packaged": "2023-08-07 10:37:38 UTC; tim", + "Author": "Barnaby Walker [aut, cre] ()", + "Maintainer": "Barnaby Walker ", + "Built": "R 4.3.1; ; 2023-08-07 10:37:38 UTC; unix" + } + }, + "knitr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "knitr", + "Type": "Package", + "Title": "A General-Purpose Package for Dynamic Report Generation in R", + "Version": "1.44", + "Authors@R": "c(\nperson(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\nperson(\"Abhraneel\", \"Sarma\", role = \"ctb\"),\nperson(\"Adam\", \"Vogt\", role = \"ctb\"),\nperson(\"Alastair\", \"Andrew\", role = \"ctb\"),\nperson(\"Alex\", \"Zvoleff\", role = \"ctb\"),\nperson(\"Amar\", \"Al-Zubaidi\", role = \"ctb\"),\nperson(\"Andre\", \"Simon\", role = \"ctb\", comment = \"the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de\"),\nperson(\"Aron\", \"Atkins\", role = \"ctb\"),\nperson(\"Aaron\", \"Wolen\", role = \"ctb\"),\nperson(\"Ashley\", \"Manton\", role = \"ctb\"),\nperson(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")),\nperson(\"Ben\", \"Baumer\", role = \"ctb\"),\nperson(\"Brian\", \"Diggs\", role = \"ctb\"),\nperson(\"Brian\", \"Zhang\", role = \"ctb\"),\nperson(\"Bulat\", \"Yapparov\", role = \"ctb\"),\nperson(\"Cassio\", \"Pereira\", role = \"ctb\"),\nperson(\"Christophe\", \"Dervieux\", role = \"ctb\"),\nperson(\"David\", \"Hall\", role = \"ctb\"),\nperson(\"David\", \"Hugh-Jones\", role = \"ctb\"),\nperson(\"David\", \"Robinson\", role = \"ctb\"),\nperson(\"Doug\", \"Hemken\", role = \"ctb\"),\nperson(\"Duncan\", \"Murdoch\", role = \"ctb\"),\nperson(\"Elio\", \"Campitelli\", role = \"ctb\"),\nperson(\"Ellis\", \"Hughes\", role = \"ctb\"),\nperson(\"Emily\", \"Riederer\", role = \"ctb\"),\nperson(\"Fabian\", \"Hirschmann\", role = \"ctb\"),\nperson(\"Fitch\", \"Simeon\", role = \"ctb\"),\nperson(\"Forest\", \"Fang\", role = \"ctb\"),\nperson(c(\"Frank\", \"E\", \"Harrell\", \"Jr\"), role = \"ctb\", comment = \"the Sweavel package at inst/misc/Sweavel.sty\"),\nperson(\"Garrick\", \"Aden-Buie\", role = \"ctb\"),\nperson(\"Gregoire\", \"Detrez\", role = \"ctb\"),\nperson(\"Hadley\", \"Wickham\", role = \"ctb\"),\nperson(\"Hao\", \"Zhu\", role = \"ctb\"),\nperson(\"Heewon\", \"Jeon\", role = \"ctb\"),\nperson(\"Henrik\", \"Bengtsson\", role = \"ctb\"),\nperson(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\nperson(\"Ian\", \"Lyttle\", role = \"ctb\"),\nperson(\"Hodges\", \"Daniel\", role = \"ctb\"),\nperson(\"Jacob\", \"Bien\", role = \"ctb\"),\nperson(\"Jake\", \"Burkhead\", role = \"ctb\"),\nperson(\"James\", \"Manton\", role = \"ctb\"),\nperson(\"Jared\", \"Lander\", role = \"ctb\"),\nperson(\"Jason\", \"Punyon\", role = \"ctb\"),\nperson(\"Javier\", \"Luraschi\", role = \"ctb\"),\nperson(\"Jeff\", \"Arnold\", role = \"ctb\"),\nperson(\"Jenny\", \"Bryan\", role = \"ctb\"),\nperson(\"Jeremy\", \"Ashkenas\", role = c(\"ctb\", \"cph\"), comment = \"the CSS file at inst/misc/docco-classic.css\"),\nperson(\"Jeremy\", \"Stephens\", role = \"ctb\"),\nperson(\"Jim\", \"Hester\", role = \"ctb\"),\nperson(\"Joe\", \"Cheng\", role = \"ctb\"),\nperson(\"Johannes\", \"Ranke\", role = \"ctb\"),\nperson(\"John\", \"Honaker\", role = \"ctb\"),\nperson(\"John\", \"Muschelli\", role = \"ctb\"),\nperson(\"Jonathan\", \"Keane\", role = \"ctb\"),\nperson(\"JJ\", \"Allaire\", role = \"ctb\"),\nperson(\"Johan\", \"Toloe\", role = \"ctb\"),\nperson(\"Jonathan\", \"Sidi\", role = \"ctb\"),\nperson(\"Joseph\", \"Larmarange\", role = \"ctb\"),\nperson(\"Julien\", \"Barnier\", role = \"ctb\"),\nperson(\"Kaiyin\", \"Zhong\", role = \"ctb\"),\nperson(\"Kamil\", \"Slowikowski\", role = \"ctb\"),\nperson(\"Karl\", \"Forner\", role = \"ctb\"),\nperson(c(\"Kevin\", \"K.\"), \"Smith\", role = \"ctb\"),\nperson(\"Kirill\", \"Mueller\", role = \"ctb\"),\nperson(\"Kohske\", \"Takahashi\", role = \"ctb\"),\nperson(\"Lorenz\", \"Walthert\", role = \"ctb\"),\nperson(\"Lucas\", \"Gallindo\", role = \"ctb\"),\nperson(\"Marius\", \"Hofert\", role = \"ctb\"),\nperson(\"Martin\", \"Modrák\", role = \"ctb\"),\nperson(\"Michael\", \"Chirico\", role = \"ctb\"),\nperson(\"Michael\", \"Friendly\", role = \"ctb\"),\nperson(\"Michal\", \"Bojanowski\", role = \"ctb\"),\nperson(\"Michel\", \"Kuhlmann\", role = \"ctb\"),\nperson(\"Miller\", \"Patrick\", role = \"ctb\"),\nperson(\"Nacho\", \"Caballero\", role = \"ctb\"),\nperson(\"Nick\", \"Salkowski\", role = \"ctb\"),\nperson(\"Niels Richard\", \"Hansen\", role = \"ctb\"),\nperson(\"Noam\", \"Ross\", role = \"ctb\"),\nperson(\"Obada\", \"Mahdi\", role = \"ctb\"),\nperson(\"Pavel N.\", \"Krivitsky\", role = \"ctb\", comment=c(ORCID = \"0000-0002-9101-3362\")),\nperson(\"Pedro\", \"Faria\", role = \"ctb\"),\nperson(\"Qiang\", \"Li\", role = \"ctb\"),\nperson(\"Ramnath\", \"Vaidyanathan\", role = \"ctb\"),\nperson(\"Richard\", \"Cotton\", role = \"ctb\"),\nperson(\"Robert\", \"Krzyzanowski\", role = \"ctb\"),\nperson(\"Rodrigo\", \"Copetti\", role = \"ctb\"),\nperson(\"Romain\", \"Francois\", role = \"ctb\"),\nperson(\"Ruaridh\", \"Williamson\", role = \"ctb\"),\nperson(\"Sagiru\", \"Mati\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1413-3974\")),\nperson(\"Scott\", \"Kostyshak\", role = \"ctb\"),\nperson(\"Sebastian\", \"Meyer\", role = \"ctb\"),\nperson(\"Sietse\", \"Brouwer\", role = \"ctb\"),\nperson(c(\"Simon\", \"de\"), \"Bernard\", role = \"ctb\"),\nperson(\"Sylvain\", \"Rousseau\", role = \"ctb\"),\nperson(\"Taiyun\", \"Wei\", role = \"ctb\"),\nperson(\"Thibaut\", \"Assus\", role = \"ctb\"),\nperson(\"Thibaut\", \"Lamadon\", role = \"ctb\"),\nperson(\"Thomas\", \"Leeper\", role = \"ctb\"),\nperson(\"Tim\", \"Mastny\", role = \"ctb\"),\nperson(\"Tom\", \"Torsney-Weir\", role = \"ctb\"),\nperson(\"Trevor\", \"Davis\", role = \"ctb\"),\nperson(\"Viktoras\", \"Veitas\", role = \"ctb\"),\nperson(\"Weicheng\", \"Zhu\", role = \"ctb\"),\nperson(\"Wush\", \"Wu\", role = \"ctb\"),\nperson(\"Zachary\", \"Foster\", role = \"ctb\"),\nperson(\"Zhian N.\", \"Kamvar\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1458-7108\")),\nperson(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Provides a general-purpose tool for dynamic report generation in R\nusing Literate Programming techniques.", + "Depends": "R (>= 3.3.0)", + "Imports": "evaluate (>= 0.15), highr, methods, tools, xfun (>= 0.39),\nyaml (>= 2.1.19)", + "Suggests": "bslib, codetools, DBI (>= 0.4-1), digest, formatR, gifski,\ngridSVG, htmlwidgets (>= 0.7), curl, jpeg, JuliaCall (>=\n0.11.1), magick, markdown (>= 1.3), png, ragg, reticulate (>=\n1.4), rgl (>= 0.95.1201), rlang, rmarkdown, sass, showtext,\nstyler (>= 1.2.0), targets (>= 0.6.0), testit, tibble,\ntikzDevice (>= 0.10), tinytex (>= 0.46), webshot, rstudioapi,\nsvglite, xml2 (>= 1.2.0)", + "License": "GPL", + "URL": "https://yihui.org/knitr/", + "BugReports": "https://github.com/yihui/knitr/issues", + "Encoding": "UTF-8", + "VignetteBuilder": "knitr", + "SystemRequirements": "Package vignettes based on R Markdown v2 or\nreStructuredText require Pandoc (http://pandoc.org). The\nfunction rst2pdf() requires rst2pdf\n(https://github.com/rst2pdf/rst2pdf).", + "Collate": "'block.R' 'cache.R' 'utils.R' 'citation.R' 'hooks-html.R'\n'plot.R' 'defaults.R' 'concordance.R' 'engine.R' 'highlight.R'\n'themes.R' 'header.R' 'hooks-asciidoc.R' 'hooks-chunk.R'\n'hooks-extra.R' 'hooks-latex.R' 'hooks-md.R' 'hooks-rst.R'\n'hooks-textile.R' 'hooks.R' 'output.R' 'package.R' 'pandoc.R'\n'params.R' 'parser.R' 'pattern.R' 'rocco.R' 'spin.R' 'table.R'\n'template.R' 'utils-conversion.R' 'utils-rd2html.R'\n'utils-string.R' 'utils-sweave.R' 'utils-upload.R'\n'utils-vignettes.R' 'zzz.R'", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-09-08 19:55:48 UTC; yihui", + "Author": "Yihui Xie [aut, cre] (),\nAbhraneel Sarma [ctb],\nAdam Vogt [ctb],\nAlastair Andrew [ctb],\nAlex Zvoleff [ctb],\nAmar Al-Zubaidi [ctb],\nAndre Simon [ctb] (the CSS files under inst/themes/ were derived from\nthe Highlight package http://www.andre-simon.de),\nAron Atkins [ctb],\nAaron Wolen [ctb],\nAshley Manton [ctb],\nAtsushi Yasumoto [ctb] (),\nBen Baumer [ctb],\nBrian Diggs [ctb],\nBrian Zhang [ctb],\nBulat Yapparov [ctb],\nCassio Pereira [ctb],\nChristophe Dervieux [ctb],\nDavid Hall [ctb],\nDavid Hugh-Jones [ctb],\nDavid Robinson [ctb],\nDoug Hemken [ctb],\nDuncan Murdoch [ctb],\nElio Campitelli [ctb],\nEllis Hughes [ctb],\nEmily Riederer [ctb],\nFabian Hirschmann [ctb],\nFitch Simeon [ctb],\nForest Fang [ctb],\nFrank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty),\nGarrick Aden-Buie [ctb],\nGregoire Detrez [ctb],\nHadley Wickham [ctb],\nHao Zhu [ctb],\nHeewon Jeon [ctb],\nHenrik Bengtsson [ctb],\nHiroaki Yutani [ctb],\nIan Lyttle [ctb],\nHodges Daniel [ctb],\nJacob Bien [ctb],\nJake Burkhead [ctb],\nJames Manton [ctb],\nJared Lander [ctb],\nJason Punyon [ctb],\nJavier Luraschi [ctb],\nJeff Arnold [ctb],\nJenny Bryan [ctb],\nJeremy Ashkenas [ctb, cph] (the CSS file at\ninst/misc/docco-classic.css),\nJeremy Stephens [ctb],\nJim Hester [ctb],\nJoe Cheng [ctb],\nJohannes Ranke [ctb],\nJohn Honaker [ctb],\nJohn Muschelli [ctb],\nJonathan Keane [ctb],\nJJ Allaire [ctb],\nJohan Toloe [ctb],\nJonathan Sidi [ctb],\nJoseph Larmarange [ctb],\nJulien Barnier [ctb],\nKaiyin Zhong [ctb],\nKamil Slowikowski [ctb],\nKarl Forner [ctb],\nKevin K. Smith [ctb],\nKirill Mueller [ctb],\nKohske Takahashi [ctb],\nLorenz Walthert [ctb],\nLucas Gallindo [ctb],\nMarius Hofert [ctb],\nMartin Modrák [ctb],\nMichael Chirico [ctb],\nMichael Friendly [ctb],\nMichal Bojanowski [ctb],\nMichel Kuhlmann [ctb],\nMiller Patrick [ctb],\nNacho Caballero [ctb],\nNick Salkowski [ctb],\nNiels Richard Hansen [ctb],\nNoam Ross [ctb],\nObada Mahdi [ctb],\nPavel N. Krivitsky [ctb] (),\nPedro Faria [ctb],\nQiang Li [ctb],\nRamnath Vaidyanathan [ctb],\nRichard Cotton [ctb],\nRobert Krzyzanowski [ctb],\nRodrigo Copetti [ctb],\nRomain Francois [ctb],\nRuaridh Williamson [ctb],\nSagiru Mati [ctb] (),\nScott Kostyshak [ctb],\nSebastian Meyer [ctb],\nSietse Brouwer [ctb],\nSimon de Bernard [ctb],\nSylvain Rousseau [ctb],\nTaiyun Wei [ctb],\nThibaut Assus [ctb],\nThibaut Lamadon [ctb],\nThomas Leeper [ctb],\nTim Mastny [ctb],\nTom Torsney-Weir [ctb],\nTrevor Davis [ctb],\nViktoras Veitas [ctb],\nWeicheng Zhu [ctb],\nWush Wu [ctb],\nZachary Foster [ctb],\nZhian N. Kamvar [ctb] (),\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Yihui Xie ", + "Repository": "RSPM", + "Date/Publication": "2023-09-11 17:20:19 UTC", + "Built": "R 4.3.0; ; 2023-09-12 11:22:41 UTC; unix" + } + }, + "ks": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "ks", + "Version": "1.14.1", + "Date": "2023-10-07", + "Title": "Kernel Smoothing", + "Authors@R": "c(person(\"Tarn\", \"Duong\", role=c(\"aut\",\"cre\"), email=\"tarn.duong@gmail.com\", comment=c(ORCID=\"0000-0002-1198-3482\")),\nperson(\"Matt\", \"Wand\", role=\"ctb\", comment=c(ORCID=\"0000-0003-2555-896X\")),\nperson(\"Jose\", \"Chacon\", role=\"ctb\"),\nperson(\"Artur\", \"Gramacki\", role=\"ctb\", comment=c(ORCID=\"0000-0002-1610-9743\")))", + "Maintainer": "Tarn Duong ", + "Depends": "R (>= 2.10.0)", + "Imports": "FNN (>= 1.1), kernlab, KernSmooth (>= 2.22), Matrix, mclust,\nmgcv, multicool, mvtnorm (>= 1.0-0), plot3D, pracma", + "Suggests": "geometry, MASS, misc3d (>= 0.4-0), oz, rgl (>= 0.66)", + "Description": "Kernel smoothers for univariate and multivariate data, with comprehensive visualisation and bandwidth selection capabilities, including for densities, density derivatives, cumulative distributions, clustering, classification, density ridges, significant modal regions, and two-sample hypothesis tests. Chacon & Duong (2018) .", + "License": "GPL-2 | GPL-3", + "URL": "https://www.mvstat.net/mvksa/", + "NeedsCompilation": "yes", + "Packaged": "2023-08-10 16:57:12 UTC; tduong", + "Author": "Tarn Duong [aut, cre] (),\nMatt Wand [ctb] (),\nJose Chacon [ctb],\nArtur Gramacki [ctb] ()", + "Repository": "RSPM", + "Date/Publication": "2023-08-10 18:50:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-11 13:04:11 UTC; unix" + } + }, + "labeling": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "labeling", + "Type": "Package", + "Title": "Axis Labeling", + "Version": "0.4.3", + "Date": "2023-08-29", + "Author": "Justin Talbot,", + "Maintainer": "Nuno Sempere ", + "Description": "Functions which provide a range of axis labeling algorithms.", + "License": "MIT + file LICENSE | Unlimited", + "Collate": "'labeling.R'", + "NeedsCompilation": "no", + "Imports": "stats, graphics", + "Packaged": "2023-08-29 21:01:57 UTC; loki", + "Repository": "RSPM", + "Date/Publication": "2023-08-29 22:20:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-08-30 23:36:37 UTC; unix" + } + }, + "later": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "later", + "Type": "Package", + "Title": "Utilities for Scheduling Functions to Execute Later with Event\nLoops", + "Version": "1.3.1", + "Authors@R": "c(\nperson(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@rstudio.com\"),\nperson(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"joe@rstudio.com\"),\nperson(family = \"RStudio\", role = \"cph\"),\nperson(\"Marcus\", \"Geelnard\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\"),\nperson(\"Evan\", \"Nemerson\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\")\n)", + "Description": "Executes arbitrary R or C functions some time after the current\ntime, after the R execution stack has emptied. The functions are scheduled\nin an event loop.", + "URL": "https://r-lib.github.io/later/, https://github.com/r-lib/later", + "BugReports": "https://github.com/r-lib/later/issues", + "License": "MIT + file LICENSE", + "Imports": "Rcpp (>= 0.12.9), rlang", + "LinkingTo": "Rcpp", + "RoxygenNote": "7.2.3", + "Suggests": "knitr, rmarkdown, testthat (>= 2.1.0)", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2023-05-01 21:09:55 UTC; winston", + "Author": "Winston Chang [aut, cre],\nJoe Cheng [aut],\nRStudio [cph],\nMarcus Geelnard [ctb, cph] (TinyCThread library,\nhttps://tinycthread.github.io/),\nEvan Nemerson [ctb, cph] (TinyCThread library,\nhttps://tinycthread.github.io/)", + "Maintainer": "Winston Chang ", + "Repository": "RSPM", + "Date/Publication": "2023-05-02 18:10:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-04 22:21:01 UTC; unix" + } + }, + "lattice": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "lattice", + "Version": "0.21-8", + "Date": "2023-04-05", + "Priority": "recommended", + "Title": "Trellis Graphics for R", + "Authors@R": "c(person(\"Deepayan\", \"Sarkar\", role = c(\"aut\", \"cre\"),\nemail = \"deepayan.sarkar@r-project.org\",\ncomment = c(ORCID = \"0000-0003-4107-1553\")),\nperson(\"Felix\", \"Andrews\", role = \"ctb\"),\nperson(\"Kevin\", \"Wright\", role = \"ctb\", comment = \"documentation\"),\nperson(\"Neil\", \"Klepeis\", role = \"ctb\"),\nperson(\"Johan\", \"Larsson\", role = \"ctb\", comment = \"miscellaneous improvements\"),\nperson(\"Zhijian (Jason)\", \"Wen\", role = \"cph\", comment = \"filled contour code\"),\nperson(\"Paul\", \"Murrell\", role = \"ctb\", email = \"paul@stat.auckland.ac.nz\"),\nperson(\"Stefan\", \"Eng\", role = \"ctb\", comment = \"violin plot improvements\"),\nperson(\"Achim\", \"Zeileis\", role = \"ctb\", comment = \"modern colors\")\n)", + "Description": "A powerful and elegant high-level data visualization\nsystem inspired by Trellis graphics, with an emphasis on\nmultivariate data. Lattice is sufficient for typical graphics needs,\nand is also flexible enough to handle most nonstandard requirements.\nSee ?Lattice for an introduction.", + "Depends": "R (>= 4.0.0)", + "Suggests": "KernSmooth, MASS, latticeExtra, colorspace", + "Imports": "grid, grDevices, graphics, stats, utils", + "Enhances": "chron", + "LazyLoad": "yes", + "LazyData": "yes", + "License": "GPL (>= 2)", + "URL": "https://lattice.r-forge.r-project.org/", + "BugReports": "https://github.com/deepayan/lattice/issues", + "NeedsCompilation": "yes", + "Packaged": "2023-04-05 15:31:40 UTC; deepayan", + "Author": "Deepayan Sarkar [aut, cre] (),\nFelix Andrews [ctb],\nKevin Wright [ctb] (documentation),\nNeil Klepeis [ctb],\nJohan Larsson [ctb] (miscellaneous improvements),\nZhijian (Jason) Wen [cph] (filled contour code),\nPaul Murrell [ctb],\nStefan Eng [ctb] (violin plot improvements),\nAchim Zeileis [ctb] (modern colors)", + "Maintainer": "Deepayan Sarkar ", + "Repository": "CRAN", + "Date/Publication": "2023-04-05 17:43:19 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 'Sat, 29 Apr 2023 15:31:54 +0000'; unix" + } + }, + "lava": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "lava", + "Type": "Package", + "Title": "Latent Variable Models", + "Version": "1.7.2.1", + "Date": "2023-02-25", + "Authors@R": "c(person(\"Klaus K.\", \"Holst\", email=\"klaus@holst.it\", role=c(\"aut\", \"cre\")),\nperson(\"Brice\", \"Ozenne\", role = \"ctb\"),\nperson(\"Thomas\", \"Gerds\", role = \"ctb\"))", + "Author": "Klaus K. Holst [aut, cre],\nBrice Ozenne [ctb],\nThomas Gerds [ctb]", + "Maintainer": "Klaus K. Holst ", + "Description": "A general implementation of Structural Equation Models\nwith latent variables (MLE, 2SLS, and composite likelihood\nestimators) with both continuous, censored, and ordinal\noutcomes (Holst and Budtz-Joergensen (2013) ).\nMixture latent variable models and non-linear latent variable models\n(Holst and Budtz-Joergensen (2020) ).\nThe package also provides methods for graph exploration (d-separation,\nback-door criterion), simulation of general non-linear latent variable\nmodels, and estimation of influence functions for a broad range of\nstatistical models.", + "URL": "https://kkholst.github.io/lava/", + "BugReports": "https://github.com/kkholst/lava/issues", + "License": "GPL-3", + "LazyLoad": "yes", + "Depends": "R (>= 3.0)", + "Imports": "future.apply, grDevices, graphics, methods, numDeriv,\nprogressr, stats, survival, SQUAREM, utils", + "Suggests": "KernSmooth, Matrix, Rgraphviz, data.table, ellipse, fields,\ngeepack, graph, knitr, bookdown, rmarkdown, igraph (>= 0.6),\nlavaSearch2, lme4, mets (>= 1.1), nlme, optimx, polycor,\nquantreg, rgl, R.rsp (>= 0.40), targeted (>= 0.2), testthat (>=\n0.11), visNetwork, zoo", + "VignetteBuilder": "knitr", + "ByteCompile": "yes", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-02-25 19:47:09 UTC; Klaus.Holst", + "Repository": "RSPM", + "Date/Publication": "2023-02-27 08:12:30 UTC", + "Built": "R 4.3.0; ; 2023-04-21 22:25:49 UTC; unix" + } + }, + "lazyeval": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "lazyeval", + "Version": "0.2.2", + "Title": "Lazy (Non-Standard) Evaluation", + "Description": "An alternative approach to non-standard evaluation using\nformulas. Provides a full implementation of LISP style 'quasiquotation',\nmaking it easier to generate code with other code.", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", ,\"hadley@rstudio.com\", c(\"aut\", \"cre\")),\nperson(\"RStudio\", role = \"cph\")\n)", + "License": "GPL-3", + "LazyData": "true", + "Depends": "R (>= 3.1.0)", + "Suggests": "knitr, rmarkdown (>= 0.2.65), testthat, covr", + "VignetteBuilder": "knitr", + "RoxygenNote": "6.1.1", + "NeedsCompilation": "yes", + "Packaged": "2019-03-15 14:18:01 UTC; lionel", + "Author": "Hadley Wickham [aut, cre],\nRStudio [cph]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2019-03-15 17:50:07 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 22:19:30 UTC; unix" + } + }, + "leafem": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "leafem", + "Title": "'leaflet' Extensions for 'mapview'", + "Version": "0.2.3", + "Authors@R": "c(person(given = \"Tim\",\nfamily = \"Appelhans\",\nrole = c(\"cre\", \"aut\"),\nemail = \"tim.appelhans@gmail.com\"),\nperson(given = \"Christoph\",\nfamily = \"Reudenbach\",\nrole = \"ctb\",\nemail = \"reudenbach@geo.uni-marburg.de\"),\nperson(given = \"Kenton\",\nfamily = \"Russell\",\nrole = \"ctb\"),\nperson(given = \"Jochen\",\nfamily = \"Darley\",\nrole = \"ctb\",\nemail = \"Debugger@jedimasters.de\"),\nperson(given = \"Daniel\",\nfamily = \"Montague\",\nrole = c(\"ctb\", \"cph\"),\ncomment = \"Leaflet.EasyButton plugin\"),\nperson(given = \"Lorenzo\",\nfamily = \"Busetto\",\nrole = c(\"ctb\"),\nemail = \"lbusett@gmail.com\"),\nperson(given = \"Luigi\",\nfamily = \"Ranghetti\",\nrole = c(\"ctb\")),\nperson(given = \"Miles\",\nfamily = \"McBain\",\nrole = c(\"ctb\")),\nperson(given = \"Sebastian\",\nfamily = \"Gatscha\",\nrole = \"ctb\",\nemail = \"sebastian_gatscha@gmx.at\"),\nperson(given = \"Björn\",\nfamily = \"Harrtell\",\nrole = c(\"ctb\", \"cph\"),\ncomment = \"FlatGeobuf plugin\"),\nperson(given = \"Daniel\",\nfamily = \"Dufour\",\nrole = c(\"ctb\", \"cph\"),\ncomment = \"georaster-layer-for-leaflet\"),\nperson(given = \"Yeedle\",\nfamily = \"Neuwirth\",\nrole = \"ctb\"),\nperson(given = \"Derek\",\nfamily = \"Friend\",\nrole = \"ctb\",\nemail = \"dafriend.r@gmail.com\"),\nperson(given = \"Kevin\",\nfamily = \"Cazelles\",\nrole = \"ctb\",\nemail = \"kevin.cazelles@gmail.com\",\ncomment = c(ORCID = \"0000-0001-6619-9874\")))", + "Maintainer": "Tim Appelhans ", + "Description": "Provides extensions for packages 'leaflet' & 'mapdeck',\nmany of which are used by package 'mapview'.\nFocus is on functionality readily available in\nGeographic Information Systems such as 'Quantum GIS'. Includes functions\nto display coordinates of mouse pointer position, query image values via\nmouse pointer and zoom-to-layer buttons. Additionally, provides a feature\ntype agnostic function to add points, lines, polygons to a map.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-spatial/leafem,\nhttps://r-spatial.github.io/leafem/", + "BugReports": "https://github.com/r-spatial/leafem/issues", + "Depends": "R (>= 3.1.0)", + "Imports": "base64enc, geojsonsf, htmltools (>= 0.3), htmlwidgets, leaflet\n(>= 2.0.1), methods, raster, sf, png", + "Suggests": "clipr, leafgl, lwgeom, mapdeck, plainview, stars", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-09-17 08:29:29 UTC; tim", + "Author": "Tim Appelhans [cre, aut],\nChristoph Reudenbach [ctb],\nKenton Russell [ctb],\nJochen Darley [ctb],\nDaniel Montague [ctb, cph] (Leaflet.EasyButton plugin),\nLorenzo Busetto [ctb],\nLuigi Ranghetti [ctb],\nMiles McBain [ctb],\nSebastian Gatscha [ctb],\nBjörn Harrtell [ctb, cph] (FlatGeobuf plugin),\nDaniel Dufour [ctb, cph] (georaster-layer-for-leaflet),\nYeedle Neuwirth [ctb],\nDerek Friend [ctb],\nKevin Cazelles [ctb] ()", + "Repository": "RSPM", + "Date/Publication": "2023-09-17 23:40:02 UTC", + "Built": "R 4.3.0; ; 2023-09-18 12:01:24 UTC; unix" + } + }, + "leaflet": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Type": "Package", + "Package": "leaflet", + "Title": "Create Interactive Web Maps with the JavaScript 'Leaflet'\nLibrary", + "Version": "2.2.0", + "Authors@R": "c(\nperson(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = c(\"aut\", \"cre\")),\nperson(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\",\ncomment = c(ORCID = \"0000-0001-9986-114X\")),\nperson(\"Bhaskar\", \"Karambelkar\", role = \"aut\"),\nperson(\"Yihui\", \"Xie\", role = \"aut\"),\nperson(\"Hadley\", \"Wickham\", role = \"ctb\"),\nperson(\"Kenton\", \"Russell\", role = \"ctb\"),\nperson(\"Kent\", \"Johnson\", role = \"ctb\"),\nperson(\"Vladimir\", \"Agafonkin\", role = c(\"ctb\", \"cph\"),\ncomment = \"Leaflet library\"),\nperson(\"CloudMade\", role = \"cph\",\ncomment = \"Leaflet library\"),\nperson(\"Leaflet contributors\", role = \"ctb\",\ncomment = \"Leaflet library\"),\nperson(\"Brandon Copeland\", role = c(\"ctb\", \"cph\"),\ncomment = \"leaflet-measure plugin\"),\nperson(\"Joerg Dietrich\", role = c(\"ctb\", \"cph\"),\ncomment = \"Leaflet.Terminator plugin\"),\nperson(\"Benjamin Becquet\", role = c(\"ctb\", \"cph\"),\ncomment = \"Leaflet.MagnifyingGlass plugin\"),\nperson(\"Norkart AS\", role = c(\"ctb\", \"cph\"),\ncomment = \"Leaflet.MiniMap plugin\"),\nperson(\"L. Voogdt\", role = c(\"ctb\", \"cph\"),\ncomment = \"Leaflet.awesome-markers plugin\"),\nperson(\"Daniel Montague\", role = c(\"ctb\", \"cph\"),\ncomment = \"Leaflet.EasyButton plugin\"),\nperson(\"Kartena AB\", role = c(\"ctb\", \"cph\"),\ncomment = \"Proj4Leaflet plugin\"),\nperson(\"Robert Kajic\", role = c(\"ctb\", \"cph\"),\ncomment = \"leaflet-locationfilter plugin\"),\nperson(\"Mapbox\", role = c(\"ctb\", \"cph\"),\ncomment = \"leaflet-omnivore plugin\"),\nperson(\"Michael Bostock\", role = c(\"ctb\", \"cph\"),\ncomment = \"topojson\"),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Create and customize interactive maps using the 'Leaflet'\nJavaScript library and the 'htmlwidgets' package. These maps can be\nused directly from the R console, from 'RStudio', in Shiny\napplications and R Markdown documents.", + "License": "GPL-3", + "URL": "https://rstudio.github.io/leaflet/,\nhttps://github.com/rstudio/leaflet", + "BugReports": "https://github.com/rstudio/leaflet/issues", + "Depends": "R (>= 3.1.0)", + "Imports": "crosstalk, htmltools, htmlwidgets (>= 1.5.4), jquerylib,\nleaflet.providers (>= 1.8.0), magrittr, methods, png, raster\n(>= 3.6.3), RColorBrewer, scales (>= 1.0.0), sp, stats, viridis\n(>= 0.5.1), xfun", + "Suggests": "knitr, maps, purrr, R6, RJSONIO, s2, sf (>= 0.9-6), shiny,\nterra, testthat (>= 3.0.0)", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-08-30 20:51:10 UTC; garrick", + "Author": "Joe Cheng [aut, cre],\nBarret Schloerke [aut] (),\nBhaskar Karambelkar [aut],\nYihui Xie [aut],\nHadley Wickham [ctb],\nKenton Russell [ctb],\nKent Johnson [ctb],\nVladimir Agafonkin [ctb, cph] (Leaflet library),\nCloudMade [cph] (Leaflet library),\nLeaflet contributors [ctb] (Leaflet library),\nBrandon Copeland [ctb, cph] (leaflet-measure plugin),\nJoerg Dietrich [ctb, cph] (Leaflet.Terminator plugin),\nBenjamin Becquet [ctb, cph] (Leaflet.MagnifyingGlass plugin),\nNorkart AS [ctb, cph] (Leaflet.MiniMap plugin),\nL. Voogdt [ctb, cph] (Leaflet.awesome-markers plugin),\nDaniel Montague [ctb, cph] (Leaflet.EasyButton plugin),\nKartena AB [ctb, cph] (Proj4Leaflet plugin),\nRobert Kajic [ctb, cph] (leaflet-locationfilter plugin),\nMapbox [ctb, cph] (leaflet-omnivore plugin),\nMichael Bostock [ctb, cph] (topojson),\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Joe Cheng ", + "Repository": "RSPM", + "Date/Publication": "2023-08-31 07:30:06 UTC", + "Built": "R 4.3.0; ; 2023-09-01 11:14:57 UTC; unix" + } + }, + "leaflet.extras": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "leaflet.extras", + "Type": "Package", + "Title": "Extra Functionality for 'leaflet' Package", + "Version": "1.0.0", + "Authors@R": "c(\nperson(\"Bhaskar\", \"Karambelkar\", email = \"bhaskarvk@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"Barret\", \"Schloerke\", email = \"barret@rstudio.com\", role = c(\"aut\")),\nperson(\"Bangyou\", \"Zheng\", email= \"Bangyou.Zheng@csiro.au\", role = c(\"ctb\"),\ncomment = \"Leaflet-search and Leaflet-GPS plugin integration\"),\nperson(\"Robin\", \"Cura\", email= \"robin@cura.info\", role = c(\"ctb\"),\ncomment = \"Fixes for Draw Options\"),\nperson(\"Markus\", \"Voge\", email= \"markus.voge@ea-aw.de\", role = c(\"ctb\"),\ncomment = \"Enhancements for Draw Options\"),\nperson(\"Markus\", \"Dumke\", role = c(\"ctb\"), comment = \"Bounce Marker addition\"),\nperson(family = \"Mapbox\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-omnivore, csv2geojson, and togeojson libraries\"),\nperson(\"Henry\", \"Thasler\", role = c(\"ctb\", \"cph\"), comment = \"Leaflet.Geodesic library\"),\nperson(\"Dennis\", \"Wilhelm\", role = c(\"ctb\", \"cph\"), comment = \"Leaflet.StyleEditor library\"),\nperson(\"Kirollos\", \"Risk\", role = c(\"ctb\", \"cph\"), comment = \"fuse.js library\"),\nperson(\"Tim\", \"Wisniewski\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-choropleth library\"),\nperson(family = \"Leaflet\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-draw library\"),\nperson(\"Alexander\", \"Milevski\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-draw-drag library\"),\nperson(\"John\", \"Firebaugh\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-fullscreen library\"),\nperson(\"Stefano\", \"Cudini\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-gps library\"),\nperson(\"Johannes\", \"Rudolph\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-hash library\"),\nperson(\"Per\", \"Liedman\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-measure-path library\"),\nperson(\"Pavel\", \"Shramov\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-plugins library\"),\nperson(\"Filip\", \"Zavadil\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-pulse-icon library\"),\nperson(\"Stefano\", \"Cudini\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-search library\"),\nperson(family = \"CliffCloud\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-sleep library\"),\nperson(family = \"Ursudio\", role = c(\"ctb\", \"cph\"), comment = \"leaflet-webgl-heatmap library\"),\nperson(\"Maxime\", \"Hadjinlian\", role = c(\"ctb\", \"cph\"), comment = \"leaflet.BounceMarker library\"),\nperson(\"Vladimir\", \"Agafonkin\", role = c(\"ctb\", \"cph\"), comment = \"leaflet.heat library\"),\nperson(\"Iván Sánchez\", \"Ortega\", role = c(\"ctb\", \"cph\"), comment = \"leaflet.tilelayer.pouchdbcached library\"),\nperson(\"Dale\", \"Harvey\", role = c(\"ctb\", \"cph\"), comment = \"pouchdb-browser library\"),\nperson(\"Mike\", \"Bostock\", role = c(\"ctb\", \"cph\"), comment = \"topojson library\")\n)", + "Description": "The 'leaflet' JavaScript library provides many plugins some of which\nare available in the core 'leaflet' package, but there are many more. It is not\npossible to support them all in the core 'leaflet' package. This package serves\nas an add-on to the 'leaflet' package by providing extra functionality via 'leaflet'\nplugins.", + "License": "GPL-3 | file LICENSE", + "Encoding": "UTF-8", + "LazyData": "true", + "Depends": "R (>= 3.1.0), leaflet (>= 2.0.0)", + "Imports": "htmlwidgets, htmltools, stringr, magrittr", + "Suggests": "jsonlite, readr", + "URL": "https://github.com/bhaskarvk/leaflet.extras,\nhttps://bhaskarvk.github.io/leaflet.extras/", + "BugReports": "https://github.com/bhaskarvk/leaflet.extras/issues", + "RoxygenNote": "6.0.1", + "NeedsCompilation": "no", + "Packaged": "2018-04-21 16:06:46 UTC; barret", + "Author": "Bhaskar Karambelkar [aut, cre],\nBarret Schloerke [aut],\nBangyou Zheng [ctb] (Leaflet-search and Leaflet-GPS plugin integration),\nRobin Cura [ctb] (Fixes for Draw Options),\nMarkus Voge [ctb] (Enhancements for Draw Options),\nMarkus Dumke [ctb] (Bounce Marker addition),\nMapbox [ctb, cph] (leaflet-omnivore, csv2geojson, and togeojson\nlibraries),\nHenry Thasler [ctb, cph] (Leaflet.Geodesic library),\nDennis Wilhelm [ctb, cph] (Leaflet.StyleEditor library),\nKirollos Risk [ctb, cph] (fuse.js library),\nTim Wisniewski [ctb, cph] (leaflet-choropleth library),\nLeaflet [ctb, cph] (leaflet-draw library),\nAlexander Milevski [ctb, cph] (leaflet-draw-drag library),\nJohn Firebaugh [ctb, cph] (leaflet-fullscreen library),\nStefano Cudini [ctb, cph] (leaflet-gps library),\nJohannes Rudolph [ctb, cph] (leaflet-hash library),\nPer Liedman [ctb, cph] (leaflet-measure-path library),\nPavel Shramov [ctb, cph] (leaflet-plugins library),\nFilip Zavadil [ctb, cph] (leaflet-pulse-icon library),\nStefano Cudini [ctb, cph] (leaflet-search library),\nCliffCloud [ctb, cph] (leaflet-sleep library),\nUrsudio [ctb, cph] (leaflet-webgl-heatmap library),\nMaxime Hadjinlian [ctb, cph] (leaflet.BounceMarker library),\nVladimir Agafonkin [ctb, cph] (leaflet.heat library),\nIván Sánchez Ortega [ctb, cph] (leaflet.tilelayer.pouchdbcached\nlibrary),\nDale Harvey [ctb, cph] (pouchdb-browser library),\nMike Bostock [ctb, cph] (topojson library)", + "Maintainer": "Bhaskar Karambelkar ", + "Repository": "RSPM", + "Date/Publication": "2018-04-21 21:20:53 UTC", + "Built": "R 4.3.0; ; 2023-04-22 00:42:15 UTC; unix" + } + }, + "leaflet.providers": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Type": "Package", + "Package": "leaflet.providers", + "Title": "Leaflet Providers", + "Version": "1.13.0", + "Authors@R": "c(\nperson(\"Leslie\", \"Huang\", , \"lesliehuang@nyu.edu\", role = \"aut\"),\nperson(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = c(\"ctb\", \"cre\"),\ncomment = c(ORCID = \"0000-0001-9986-114X\")),\nperson(\"Leaflet Providers contributors\", role = c(\"ctb\", \"cph\"),\ncomment = \"Leaflet Providers plugin\"),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Contains third-party map tile provider information from\n'Leaflet.js', ,\nto be used with the 'leaflet' R package. Additionally,\n'leaflet.providers' enables users to retrieve up-to-date provider\ninformation between package updates.", + "License": "BSD_2_clause + file LICENSE", + "URL": "https://rstudio.github.io/leaflet.providers/,\nhttps://github.com/rstudio/leaflet.providers", + "BugReports": "https://github.com/rstudio/leaflet.providers/issues", + "Depends": "R (>= 3.6)", + "Suggests": "jsonlite, testthat (>= 3.0.0), V8", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.3", + "Collate": "'providers_data.R' 'get_current_providers.R'\n'leaflet.providers-package.R'", + "NeedsCompilation": "no", + "Packaged": "2023-08-09 14:30:44 UTC; garrick", + "Author": "Leslie Huang [aut],\nBarret Schloerke [ctb, cre] (),\nLeaflet Providers contributors [ctb, cph] (Leaflet Providers plugin),\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Barret Schloerke ", + "Repository": "RSPM", + "Date/Publication": "2023-08-10 14:20:02 UTC", + "Built": "R 4.3.0; ; 2023-08-11 13:03:44 UTC; unix" + } + }, + "lifecycle": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "lifecycle", + "Title": "Manage the Life Cycle of your Package Functions", + "Version": "1.0.3", + "Authors@R": "c(\nperson(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = c(\"aut\", \"cre\")),\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"aut\",\ncomment = c(ORCID = \"0000-0003-4757-117X\")),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Manage the life cycle of your exported functions with shared\nconventions, documentation badges, and user-friendly deprecation\nwarnings.", + "License": "MIT + file LICENSE", + "URL": "https://lifecycle.r-lib.org/, https://github.com/r-lib/lifecycle", + "BugReports": "https://github.com/r-lib/lifecycle/issues", + "Depends": "R (>= 3.4)", + "Imports": "cli (>= 3.4.0), glue, rlang (>= 1.0.6)", + "Suggests": "covr, crayon, knitr, lintr, rmarkdown, testthat (>= 3.0.1),\ntibble, tidyverse, tools, vctrs, withr", + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Packaged": "2022-10-07 08:50:55 UTC; lionel", + "Author": "Lionel Henry [aut, cre],\nHadley Wickham [aut] (),\nRStudio [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "RSPM", + "Date/Publication": "2022-10-07 09:50:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:46:36 UTC; unix" + } + }, + "linprog": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "linprog", + "Version": "0.9-4", + "Date": "2022-03-09", + "Title": "Linear Programming / Optimization", + "Author": "Arne Henningsen", + "Maintainer": "Arne Henningsen ", + "Depends": "R (>= 2.4.0), lpSolve", + "Description": "Can be used to solve Linear Programming / Linear\nOptimization problems by using the simplex algorithm.", + "License": "GPL (>= 2)", + "URL": "http://linprog.r-forge.r-project.org/", + "NeedsCompilation": "no", + "Packaged": "2022-03-09 17:21:04 UTC; gsl324", + "Repository": "RSPM", + "Date/Publication": "2022-03-09 21:10:08 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-22 00:27:35 UTC; unix" + } + }, + "listenv": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "listenv", + "Version": "0.9.0", + "Depends": "R (>= 3.1.2)", + "Suggests": "R.utils, R.rsp, markdown", + "VignetteBuilder": "R.rsp", + "Title": "Environments Behaving (Almost) as Lists", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\nemail = \"henrikb@braju.com\"))", + "Description": "List environments are environments that have list-like properties. For instance, the elements of a list environment are ordered and can be accessed and iterated over using index subsetting, e.g. 'x <- listenv(a = 1, b = 2); for (i in seq_along(x)) x[[i]] <- x[[i]] ^ 2; y <- as.list(x)'.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "URL": "https://listenv.futureverse.org,\nhttps://github.com/HenrikBengtsson/listenv", + "BugReports": "https://github.com/HenrikBengtsson/listenv/issues", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2022-12-16 03:07:59 UTC; hb", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "RSPM", + "Date/Publication": "2022-12-16 07:40:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:24:34 UTC; unix" + } + }, + "lpSolve": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "lpSolve", + "Version": "5.6.19", + "Title": "Interface to 'Lp_solve' v. 5.5 to Solve Linear/Integer Programs", + "Author": "Michel Berkelaar and others", + "Maintainer": "Gábor Csárdi ", + "Description": "Lp_solve is freely available (under LGPL 2) software for\nsolving linear, integer and mixed integer programs. In this\nimplementation we supply a \"wrapper\" function in C and some R\nfunctions that solve general linear/integer problems,\nassignment problems, and transportation problems. This version\ncalls lp_solve version 5.5.", + "License": "LGPL-2", + "URL": "https://github.com/gaborcsardi/lpSolve", + "BugReports": "https://github.com/gaborcsardi/lpSolve/issues", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2023-09-12 18:07:47 UTC; gaborcsardi", + "Repository": "RSPM", + "Date/Publication": "2023-09-13 11:20:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-14 11:32:40 UTC; unix" + } + }, + "lubridate": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Type": "Package", + "Package": "lubridate", + "Title": "Make Dealing with Dates a Little Easier", + "Version": "1.9.3", + "Authors@R": "c(\nperson(\"Vitalie\", \"Spinu\", , \"spinuvit@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"Garrett\", \"Grolemund\", role = \"aut\"),\nperson(\"Hadley\", \"Wickham\", role = \"aut\"),\nperson(\"Davis\", \"Vaughan\", role = \"ctb\"),\nperson(\"Ian\", \"Lyttle\", role = \"ctb\"),\nperson(\"Imanuel\", \"Costigan\", role = \"ctb\"),\nperson(\"Jason\", \"Law\", role = \"ctb\"),\nperson(\"Doug\", \"Mitarotonda\", role = \"ctb\"),\nperson(\"Joseph\", \"Larmarange\", role = \"ctb\"),\nperson(\"Jonathan\", \"Boiser\", role = \"ctb\"),\nperson(\"Chel Hee\", \"Lee\", role = \"ctb\")\n)", + "Maintainer": "Vitalie Spinu ", + "Description": "Functions to work with date-times and time-spans: fast and\nuser friendly parsing of date-time data, extraction and updating of\ncomponents of a date-time (years, months, days, hours, minutes, and\nseconds), algebraic manipulation on date-time and time-span objects.\nThe 'lubridate' package has a consistent and memorable syntax that\nmakes working with dates easy and fun.", + "License": "GPL (>= 2)", + "URL": "https://lubridate.tidyverse.org,\nhttps://github.com/tidyverse/lubridate", + "BugReports": "https://github.com/tidyverse/lubridate/issues", + "Depends": "methods, R (>= 3.2)", + "Imports": "generics, timechange (>= 0.1.1)", + "Suggests": "covr, knitr, rmarkdown, testthat (>= 2.1.0), vctrs (>= 0.5.0)", + "Enhances": "chron, data.table, timeDate, tis, zoo", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "SystemRequirements": "C++11, A system with zoneinfo data (e.g.\n/usr/share/zoneinfo). On Windows the zoneinfo included with R\nis used.", + "Collate": "'Dates.r' 'POSIXt.r' 'util.r' 'parse.r' 'timespans.r'\n'intervals.r' 'difftimes.r' 'durations.r' 'periods.r'\n'accessors-date.R' 'accessors-day.r' 'accessors-dst.r'\n'accessors-hour.r' 'accessors-minute.r' 'accessors-month.r'\n'accessors-quarter.r' 'accessors-second.r' 'accessors-tz.r'\n'accessors-week.r' 'accessors-year.r' 'am-pm.r' 'time-zones.r'\n'numeric.r' 'coercion.r' 'constants.r' 'cyclic_encoding.r'\n'data.r' 'decimal-dates.r' 'deprecated.r' 'format_ISO8601.r'\n'guess.r' 'hidden.r' 'instants.r' 'leap-years.r'\n'ops-addition.r' 'ops-compare.r' 'ops-division.r'\n'ops-integer-division.r' 'ops-m+.r' 'ops-modulo.r'\n'ops-multiplication.r' 'ops-subtraction.r' 'package.r'\n'pretty.r' 'round.r' 'stamp.r' 'tzdir.R' 'update.r' 'vctrs.R'\n'zzz.R'", + "NeedsCompilation": "yes", + "Packaged": "2023-09-24 18:46:12 UTC; vspinu", + "Author": "Vitalie Spinu [aut, cre],\nGarrett Grolemund [aut],\nHadley Wickham [aut],\nDavis Vaughan [ctb],\nIan Lyttle [ctb],\nImanuel Costigan [ctb],\nJason Law [ctb],\nDoug Mitarotonda [ctb],\nJoseph Larmarange [ctb],\nJonathan Boiser [ctb],\nChel Hee Lee [ctb]", + "Repository": "RSPM", + "Date/Publication": "2023-09-27 09:20:06 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-28 17:36:46 UTC; unix" + } + }, + "magic": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "magic", + "Version": "1.6-1", + "Title": "Create and Investigate Magic Squares", + "Authors@R": "person(given=c(\"Robin\", \"K. S.\"), family=\"Hankin\", role = c(\"aut\",\"cre\"), email=\"hankin.robin@gmail.com\", comment = c(ORCID = \"0000-0001-5982-0415\"))", + "Depends": "R (>= 2.10), abind", + "Description": "A collection of functions for the manipulation and\nanalysis of arbitrarily dimensioned arrays. The original motivation\nfor the package was the development of efficient, vectorized\nalgorithms for the creation and investigation of magic squares and\nhigh-dimensional magic hypercubes.", + "Maintainer": "Robin K. S. Hankin ", + "License": "GPL-2", + "URL": "https://github.com/RobinHankin/magic", + "BugReports": "https://github.com/RobinHankin/magic/issues", + "NeedsCompilation": "no", + "Packaged": "2022-11-14 19:20:55 UTC; rhankin", + "Author": "Robin K. S. Hankin [aut, cre] ()", + "Repository": "RSPM", + "Date/Publication": "2022-11-16 03:50:05 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 23:11:55 UTC; unix" + } + }, + "magrittr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Type": "Package", + "Package": "magrittr", + "Title": "A Forward-Pipe Operator for R", + "Version": "2.0.3", + "Authors@R": "c(\nperson(\"Stefan Milton\", \"Bache\", , \"stefan@stefanbache.dk\", role = c(\"aut\", \"cph\"),\ncomment = \"Original author and creator of magrittr\"),\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"aut\"),\nperson(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = \"cre\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Provides a mechanism for chaining commands with a new\nforward-pipe operator, %>%. This operator will forward a value, or the\nresult of an expression, into the next function call/expression.\nThere is flexible support for the type of right-hand side expressions.\nFor more information, see package vignette. To quote Rene Magritte,\n\"Ceci n'est pas un pipe.\"", + "License": "MIT + file LICENSE", + "URL": "https://magrittr.tidyverse.org,\nhttps://github.com/tidyverse/magrittr", + "BugReports": "https://github.com/tidyverse/magrittr/issues", + "Depends": "R (>= 3.4.0)", + "Suggests": "covr, knitr, rlang, rmarkdown, testthat", + "VignetteBuilder": "knitr", + "ByteCompile": "Yes", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "NeedsCompilation": "yes", + "Packaged": "2022-03-29 09:34:37 UTC; lionel", + "Author": "Stefan Milton Bache [aut, cph] (Original author and creator of\nmagrittr),\nHadley Wickham [aut],\nLionel Henry [cre],\nRStudio [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "RSPM", + "Date/Publication": "2022-03-30 07:30:09 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:21 UTC; unix" + } + }, + "maps": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "maps", + "Title": "Draw Geographical Maps", + "Version": "3.4.1", + "Date": "2022-10-29", + "Author": "Original S code by Richard A. Becker and Allan R. Wilks.\nR version by Ray Brownrigg.\nEnhancements by Thomas P Minka and Alex Deckmyn.", + "Description": "Display of maps. Projection code and larger maps are in\nseparate packages ('mapproj' and 'mapdata').", + "Depends": "R (>= 3.5.0)", + "Imports": "graphics, utils", + "LazyData": "yes", + "Suggests": "mapproj (>= 1.2-0), mapdata (>= 2.3.0), sp, rnaturalearth", + "License": "GPL-2", + "Maintainer": "Alex Deckmyn ", + "NeedsCompilation": "yes", + "Repository": "RSPM", + "Packaged": "2022-10-29 22:58:49 UTC; alex", + "Date/Publication": "2022-10-30 23:27:38 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:13:13 UTC; unix" + } + }, + "mclust": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "mclust", + "Version": "6.0.0", + "Date": "2022-10-31", + "Title": "Gaussian Mixture Modelling for Model-Based Clustering,\nClassification, and Density Estimation", + "Description": "Gaussian finite mixture models fitted via EM algorithm for\nmodel-based clustering, classification, and density estimation,\nincluding Bayesian regularization, dimension reduction for\nvisualisation, and resampling-based inference.", + "Authors@R": "c(person(\"Chris\", \"Fraley\", role = \"aut\"),\nperson(\"Adrian E.\", \"Raftery\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-6589-301X\")),\nperson(\"Luca\", \"Scrucca\", role = c(\"aut\", \"cre\"),\nemail = \"luca.scrucca@unipg.it\",\ncomment = c(ORCID = \"0000-0003-3826-0484\")),\nperson(\"Thomas Brendan\", \"Murphy\", role = \"ctb\",\ncomment = c(ORCID = \"0000-0002-5668-7046\")),\nperson(\"Michael\", \"Fop\", role = \"ctb\",\ncomment = c(ORCID = \"0000-0003-3936-2757\")))", + "Depends": "R (>= 3.0)", + "Imports": "stats, utils, graphics, grDevices", + "Suggests": "knitr (>= 1.12), rmarkdown (>= 0.9), mix (>= 1.0), geometry\n(>= 0.3-6), MASS", + "License": "GPL (>= 2)", + "URL": "https://mclust-org.github.io/mclust/", + "VignetteBuilder": "knitr", + "Repository": "RSPM", + "ByteCompile": "true", + "NeedsCompilation": "yes", + "LazyData": "yes", + "Encoding": "UTF-8", + "Packaged": "2022-10-31 09:52:43 UTC; luca", + "Author": "Chris Fraley [aut],\nAdrian E. Raftery [aut] (),\nLuca Scrucca [aut, cre] (),\nThomas Brendan Murphy [ctb] (),\nMichael Fop [ctb] ()", + "Maintainer": "Luca Scrucca ", + "Date/Publication": "2022-10-31 10:57:37 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:44:35 UTC; unix" + } + }, + "memoise": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "memoise", + "Title": "'Memoisation' of Functions", + "Version": "2.0.1", + "Authors@R": "c(person(given = \"Hadley\",\nfamily = \"Wickham\",\nrole = \"aut\",\nemail = \"hadley@rstudio.com\"),\nperson(given = \"Jim\",\nfamily = \"Hester\",\nrole = \"aut\"),\nperson(given = \"Winston\",\nfamily = \"Chang\",\nrole = c(\"aut\", \"cre\"),\nemail = \"winston@rstudio.com\"),\nperson(given = \"Kirill\",\nfamily = \"Müller\",\nrole = \"aut\",\nemail = \"krlmlr+r@mailbox.org\"),\nperson(given = \"Daniel\",\nfamily = \"Cook\",\nrole = \"aut\",\nemail = \"danielecook@gmail.com\"),\nperson(given = \"Mark\",\nfamily = \"Edmondson\",\nrole = \"ctb\",\nemail = \"r@sunholo.com\"))", + "Description": "Cache the results of a function so that when you\ncall it again with the same arguments it returns the previously computed\nvalue.", + "License": "MIT + file LICENSE", + "URL": "https://memoise.r-lib.org, https://github.com/r-lib/memoise", + "BugReports": "https://github.com/r-lib/memoise/issues", + "Imports": "rlang (>= 0.4.10), cachem", + "Suggests": "digest, aws.s3, covr, googleAuthR, googleCloudStorageR, httr,\ntestthat", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "NeedsCompilation": "no", + "Packaged": "2021-11-24 21:24:50 UTC; jhester", + "Author": "Hadley Wickham [aut],\nJim Hester [aut],\nWinston Chang [aut, cre],\nKirill Müller [aut],\nDaniel Cook [aut],\nMark Edmondson [ctb]", + "Maintainer": "Winston Chang ", + "Repository": "RSPM", + "Date/Publication": "2021-11-26 16:11:10 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:46:33 UTC; unix" + } + }, + "mgcv": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "mgcv", + "Version": "1.9-0", + "Author": "Simon Wood ", + "Maintainer": "Simon Wood ", + "Title": "Mixed GAM Computation Vehicle with Automatic Smoothness\nEstimation", + "Description": "Generalized additive (mixed) models, some of their extensions and\nother generalized ridge regression with multiple smoothing\nparameter estimation by (Restricted) Marginal Likelihood,\nGeneralized Cross Validation and similar, or using iterated\nnested Laplace approximation for fully Bayesian inference. See\nWood (2017) for an overview.\nIncludes a gam() function, a wide variety of smoothers, 'JAGS'\nsupport and distributions beyond the exponential family.", + "Priority": "recommended", + "Depends": "R (>= 3.6.0), nlme (>= 3.1-64)", + "Imports": "methods, stats, graphics, Matrix, splines, utils", + "Suggests": "parallel, survival, MASS", + "LazyLoad": "yes", + "ByteCompile": "yes", + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Packaged": "2023-07-07 06:01:32 UTC; sw283", + "Repository": "CRAN", + "Date/Publication": "2023-07-11 08:40:18 UTC", + "Built": "R 4.3.1; x86_64-pc-linux-gnu; 'Thu, 20 Jul 2023 20:06:40 +0000'; unix" + } + }, + "mime": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "mime", + "Type": "Package", + "Title": "Map Filenames to MIME Types", + "Version": "0.12", + "Authors@R": "c(\nperson(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\nperson(\"Jeffrey\", \"Horner\", role = \"ctb\"),\nperson(\"Beilei\", \"Bian\", role = \"ctb\")\n)", + "Description": "Guesses the MIME type from a filename extension using the data\nderived from /etc/mime.types in UNIX-type systems.", + "Imports": "tools", + "License": "GPL", + "URL": "https://github.com/yihui/mime", + "BugReports": "https://github.com/yihui/mime/issues", + "RoxygenNote": "7.1.1", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2021-09-28 02:06:04 UTC; yihui", + "Author": "Yihui Xie [aut, cre] (),\nJeffrey Horner [ctb],\nBeilei Bian [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "RSPM", + "Date/Publication": "2021-09-28 05:00:05 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:13 UTC; unix" + } + }, + "misc3d": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "misc3d", + "Title": "Miscellaneous 3D Plots", + "Version": "0.9-1", + "Author": "Dai Feng and Luke Tierney", + "Maintainer": "Luke Tierney ", + "Suggests": "rgl, tkrplot, MASS", + "Imports": "grDevices, graphics, stats, tcltk", + "Description": "A collection of miscellaneous 3d plots, including\nisosurfaces.", + "URL": "https://gitlab.com/luke-tierney/misc3d", + "License": "GPL", + "NeedsCompilation": "no", + "Packaged": "2021-10-07 19:24:30 UTC; luke", + "Repository": "RSPM", + "Date/Publication": "2021-10-07 20:10:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 23:45:01 UTC; unix" + } + }, + "multicool": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "multicool", + "Type": "Package", + "Title": "Permutations of Multisets in Cool-Lex Order", + "Version": "0.1-12", + "Date": "2021-06-28", + "Author": "James Curran, Aaron Williams, Jerome Kelleher, Dave Barber", + "Maintainer": "James Curran ", + "Description": "A set of tools to permute multisets without loops or hash tables and to generate integer partitions. The permutation functions are based on C code from Aaron Williams. Cool-lex order is similar to colexicographical order. The algorithm is described in Williams, A. Loopless Generation of Multiset Permutations by Prefix Shifts. SODA 2009, Symposium on Discrete Algorithms, New York, United States. The permutation code is distributed without restrictions. The code for stable and efficient computation of multinomial coefficients comes from Dave Barber. The code can be download from and is distributed without conditions. The package also generates the integer partitions of a positive, non-zero integer n. The C++ code for this is based on Python code from Jerome Kelleher which can be found here . The C++ code and Python code are distributed without conditions.", + "Encoding": "UTF-8", + "License": "GPL-2", + "Depends": "methods, Rcpp (>= 0.11.2)", + "LinkingTo": "Rcpp", + "SystemRequirements": "C++11", + "RcppModules": "Multicool", + "RoxygenNote": "7.1.1", + "NeedsCompilation": "yes", + "Packaged": "2021-06-29 02:24:17 UTC; jcur002", + "Repository": "RSPM", + "Date/Publication": "2021-06-29 04:50:01 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 02:15:00 UTC; unix" + } + }, + "munsell": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "munsell", + "Type": "Package", + "Title": "Utilities for Using Munsell Colours", + "Version": "0.5.0", + "Author": "Charlotte Wickham ", + "Maintainer": "Charlotte Wickham ", + "Description": "Provides easy access to, and manipulation of, the Munsell\ncolours. Provides a mapping between Munsell's\noriginal notation (e.g. \"5R 5/10\") and hexadecimal strings suitable\nfor use directly in R graphics. Also provides utilities\nto explore slices through the Munsell colour tree, to transform\nMunsell colours and display colour palettes.", + "Suggests": "ggplot2, testthat", + "Imports": "colorspace, methods", + "License": "MIT + file LICENSE", + "URL": "https://cran.r-project.org/package=munsell,\nhttps://github.com/cwickham/munsell/", + "RoxygenNote": "6.0.1", + "NeedsCompilation": "no", + "Packaged": "2018-06-11 23:15:15 UTC; wickhamc", + "Repository": "RSPM", + "Date/Publication": "2018-06-12 04:29:06 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 21:54:52 UTC; unix" + } + }, + "mvtnorm": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "mvtnorm", + "Title": "Multivariate Normal and t Distributions", + "Version": "1.2-3", + "Date": "2023-08-17", + "Authors@R": "c(person(\"Alan\", \"Genz\", role = \"aut\"),\nperson(\"Frank\", \"Bretz\", role = \"aut\"),\nperson(\"Tetsuhisa\", \"Miwa\", role = \"aut\"),\nperson(\"Xuefei\", \"Mi\", role = \"aut\"),\nperson(\"Friedrich\", \"Leisch\", role = \"ctb\"),\nperson(\"Fabian\", \"Scheipl\", role = \"ctb\"),\nperson(\"Bjoern\", \"Bornkamp\", role = \"ctb\", comment = c(ORCID = \"0000-0002-6294-8185\")),\nperson(\"Martin\", \"Maechler\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8685-9910\")),\nperson(\"Torsten\", \"Hothorn\", role = c(\"aut\", \"cre\"),\nemail = \"Torsten.Hothorn@R-project.org\", comment = c(ORCID = \"0000-0001-8301-0471\")))", + "Description": "Computes multivariate normal and t probabilities, quantiles, random deviates,\nand densities. Log-likelihoods for multivariate Gaussian models and Gaussian copulae\nparameterised by Cholesky factors of covariance or precision matrices are implemented\nfor interval-censored and exact data, or a mix thereof. Score functions for these\nlog-likelihoods are available. A class representing multiple lower triangular matrices\nand corresponding methods are part of this package.", + "Imports": "stats", + "Depends": "R(>= 3.5.0)", + "Suggests": "qrng, numDeriv", + "License": "GPL-2", + "URL": "http://mvtnorm.R-forge.R-project.org", + "NeedsCompilation": "yes", + "Packaged": "2023-08-17 08:50:49 UTC; hothorn", + "Author": "Alan Genz [aut],\nFrank Bretz [aut],\nTetsuhisa Miwa [aut],\nXuefei Mi [aut],\nFriedrich Leisch [ctb],\nFabian Scheipl [ctb],\nBjoern Bornkamp [ctb] (),\nMartin Maechler [ctb] (),\nTorsten Hothorn [aut, cre] ()", + "Maintainer": "Torsten Hothorn ", + "Repository": "RSPM", + "Date/Publication": "2023-08-25 14:00:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-28 11:38:04 UTC; unix" + } + }, + "nlme": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "nlme", + "Version": "3.1-162", + "Date": "2023-01-30", + "Priority": "recommended", + "Title": "Linear and Nonlinear Mixed Effects Models", + "Authors@R": "c(person(\"José\", \"Pinheiro\", role = \"aut\", comment = \"S version\"),\nperson(\"Douglas\", \"Bates\", role = \"aut\", comment = \"up to 2007\"),\nperson(\"Saikat\", \"DebRoy\", role = \"ctb\", comment = \"up to 2002\"),\nperson(\"Deepayan\", \"Sarkar\", role = \"ctb\", comment = \"up to 2005\"),\nperson(\"EISPACK authors\", role = \"ctb\", comment = \"src/rs.f\"),\nperson(\"Siem\", \"Heisterkamp\", role = \"ctb\", comment = \"Author fixed sigma\"),\nperson(\"Bert\", \"Van Willigen\",role = \"ctb\", comment = \"Programmer fixed sigma\"),\nperson(\"Johannes\", \"Ranke\", role = \"ctb\", comment = \"varConstProp()\"),\nperson(\"R Core Team\", email = \"R-core@R-project.org\",\nrole = c(\"aut\", \"cre\")))", + "Contact": "see 'MailingList'", + "Description": "Fit and compare Gaussian linear and nonlinear mixed-effects models.", + "Depends": "R (>= 3.5.0)", + "Imports": "graphics, stats, utils, lattice", + "Suggests": "Hmisc, MASS, SASmixed", + "LazyData": "yes", + "Encoding": "UTF-8", + "License": "GPL (>= 2)", + "BugReports": "https://bugs.r-project.org", + "MailingList": "R-help@r-project.org", + "URL": "https://svn.r-project.org/R-packages/trunk/nlme/", + "NeedsCompilation": "yes", + "Packaged": "2023-01-31 08:57:23 UTC; maechler", + "Author": "José Pinheiro [aut] (S version),\nDouglas Bates [aut] (up to 2007),\nSaikat DebRoy [ctb] (up to 2002),\nDeepayan Sarkar [ctb] (up to 2005),\nEISPACK authors [ctb] (src/rs.f),\nSiem Heisterkamp [ctb] (Author fixed sigma),\nBert Van Willigen [ctb] (Programmer fixed sigma),\nJohannes Ranke [ctb] (varConstProp()),\nR Core Team [aut, cre]", + "Maintainer": "R Core Team ", + "Repository": "CRAN", + "Date/Publication": "2023-01-31 16:50:09 UTC", + "Built": "R 4.2.2; x86_64-pc-linux-gnu; 'Sat, 04 Feb 2023 14:50:57 +0000'; unix" + } + }, + "nls2": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "nls2", + "Version": "0.3-3", + "Date": "2022-05-01", + "Title": "Non-Linear Regression with Brute Force", + "Author": "G. Grothendieck", + "Maintainer": "G. Grothendieck ", + "Description": "Adds brute force and multiple starting values to nls.", + "Depends": "proto, stats", + "Suggests": "nlstools, lhs", + "License": "GPL-2", + "BugReports": "https://github.com/ggrothendieck/nls2/issues", + "URL": "https://github.com/ggrothendieck/nls2", + "NeedsCompilation": "no", + "Packaged": "2022-05-01 19:03:39 UTC; Louis", + "Repository": "RSPM", + "Date/Publication": "2022-05-02 05:30:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-24 09:26:25 UTC; unix" + } + }, + "nnet": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "nnet", + "Priority": "recommended", + "Version": "7.3-19", + "Date": "2023-05-02", + "Depends": "R (>= 3.0.0), stats, utils", + "Suggests": "MASS", + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\nemail = \"ripley@stats.ox.ac.uk\"),\nperson(\"William\", \"Venables\", role = \"cph\"))", + "Description": "Software for feed-forward neural networks with a single\nhidden layer, and for multinomial log-linear models.", + "Title": "Feed-Forward Neural Networks and Multinomial Log-Linear Models", + "ByteCompile": "yes", + "License": "GPL-2 | GPL-3", + "URL": "http://www.stats.ox.ac.uk/pub/MASS4/", + "NeedsCompilation": "yes", + "Packaged": "2023-05-02 16:07:11 UTC; ripley", + "Author": "Brian Ripley [aut, cre, cph],\nWilliam Venables [cph]", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN", + "Date/Publication": "2023-05-03 11:01:30 UTC", + "Built": "R 4.3.1; x86_64-pc-linux-gnu; 'Thu, 29 Jun 2023 02:14:07 +0000'; unix" + } + }, + "numDeriv": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "numDeriv", + "Version": "2016.8-1.1", + "Title": "Accurate Numerical Derivatives", + "Description": "Methods for calculating (usually) accurate\nnumerical first and second order derivatives. Accurate calculations\nare done using 'Richardson''s' extrapolation or, when applicable, a\ncomplex step derivative is available. A simple difference\nmethod is also provided. Simple difference is (usually) less accurate\nbut is much quicker than 'Richardson''s' extrapolation and provides a\nuseful cross-check.\nMethods are provided for real scalar and vector valued functions.", + "Depends": "R (>= 2.11.1)", + "LazyLoad": "yes", + "ByteCompile": "yes", + "License": "GPL-2", + "Copyright": "2006-2011, Bank of Canada. 2012-2016, Paul Gilbert", + "Author": "Paul Gilbert and Ravi Varadhan", + "Maintainer": "Paul Gilbert ", + "URL": "http://optimizer.r-forge.r-project.org/", + "NeedsCompilation": "no", + "Packaged": "2019-06-04 11:04:44 UTC; hornik", + "Repository": "RSPM", + "Date/Publication": "2019-06-06 09:51:09 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:20:37 UTC; unix" + } + }, + "oai": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "oai", + "Type": "Package", + "Title": "General Purpose 'Oai-PMH' Services Client", + "Description": "A general purpose client to work with any 'OAI-PMH'\n(Open Archives Initiative Protocol for 'Metadata' Harvesting) service.\nThe 'OAI-PMH' protocol is described at\n.\nFunctions are provided to work with the 'OAI-PMH' verbs: 'GetRecord',\n'Identify', 'ListIdentifiers', 'ListMetadataFormats', 'ListRecords', and\n'ListSets'.", + "Version": "0.4.0", + "License": "MIT + file LICENSE", + "Authors@R": "c(\nperson(\"Scott\", \"Chamberlain\", role = \"aut\",\nemail = \"myrmecocystus@gmail.com\"),\nperson(\"Michal\", \"Bojanowski\", role = c(\"aut\", \"cre\"),\nemail = \"michal2992@gmail.com\",\ncomment=c(ORCID=\"0000-0001-7503-852X\")),\nperson(\"National Science Centre\", role = \"fnd\",\ncomment = \"Supported MB through grant 2012/07/D/HS6/01971, \")\n)", + "URL": "https://docs.ropensci.org/oai/, https://github.com/ropensci/oai", + "BugReports": "https://github.com/ropensci/oai/issues", + "VignetteBuilder": "knitr", + "LazyData": "true", + "Encoding": "UTF-8", + "Imports": "xml2 (>= 1.0.0), httr (>= 1.2.0), plyr (>= 1.8.4), stringr (>=\n1.1.0), tibble (>= 1.2)", + "Suggests": "DBI, knitr, RSQLite, testthat, markdown, covr", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Packaged": "2022-11-10 11:32:01 UTC; mbojan", + "Author": "Scott Chamberlain [aut],\nMichal Bojanowski [aut, cre] (),\nNational Science Centre [fnd] (Supported MB through grant\n2012/07/D/HS6/01971, )", + "Maintainer": "Michal Bojanowski ", + "Repository": "RSPM", + "Date/Publication": "2022-11-10 16:10:02 UTC", + "Built": "R 4.3.0; ; 2023-04-22 00:38:26 UTC; unix" + } + }, + "openssl": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "openssl", + "Type": "Package", + "Title": "Toolkit for Encryption, Signatures and Certificates Based on\nOpenSSL", + "Version": "2.1.1", + "Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroen@berkeley.edu\",\ncomment = c(ORCID = \"0000-0002-4035-0289\")),\nperson(\"Oliver\", \"Keyes\", role = \"ctb\"))", + "Description": "Bindings to OpenSSL libssl and libcrypto, plus custom SSH key parsers.\nSupports RSA, DSA and EC curves P-256, P-384, P-521, and curve25519. Cryptographic\nsignatures can either be created and verified manually or via x509 certificates.\nAES can be used in cbc, ctr or gcm mode for symmetric encryption; RSA for asymmetric\n(public key) encryption or EC for Diffie Hellman. High-level envelope functions\ncombine RSA and AES for encrypting arbitrary sized data. Other utilities include key\ngenerators, hash functions (md5, sha1, sha256, etc), base64 encoder, a secure random\nnumber generator, and 'bignum' math methods for manually performing crypto\ncalculations on large multibyte integers.", + "License": "MIT + file LICENSE", + "URL": "https://jeroen.r-universe.dev/openssl", + "BugReports": "https://github.com/jeroen/openssl/issues", + "SystemRequirements": "OpenSSL >= 1.0.2", + "VignetteBuilder": "knitr", + "Imports": "askpass", + "Suggests": "curl, testthat (>= 2.1.0), digest, knitr, rmarkdown,\njsonlite, jose, sodium", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2023-09-25 17:30:46 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (),\nOliver Keyes [ctb]", + "Maintainer": "Jeroen Ooms ", + "Repository": "RSPM", + "Date/Publication": "2023-09-25 19:10:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-26 11:26:46 UTC; unix" + } + }, + "pROC": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "pROC", + "Type": "Package", + "Title": "Display and Analyze ROC Curves", + "Version": "1.18.4", + "Date": "2023-07-04", + "Encoding": "UTF-8", + "Depends": "R (>= 2.14)", + "Imports": "methods, plyr, Rcpp (>= 0.11.1)", + "Suggests": "microbenchmark, tcltk, MASS, logcondens, doParallel,\ntestthat, vdiffr, ggplot2, rlang", + "LinkingTo": "Rcpp", + "Authors@R": "c(person(\"Xavier\", \"Robin\", role = c(\"cre\", \"aut\"),\nemail = \"pROC-cran@xavier.robin.name\",\ncomment = c(ORCID = \"0000-0002-6813-3200\")),\nperson(\"Natacha\", \"Turck\", role = \"aut\"),\nperson(\"Alexandre\", \"Hainard\", role = \"aut\"),\nperson(\"Natalia\", \"Tiberti\", role = \"aut\"),\nperson(\"Frédérique\", \"Lisacek\", role = \"aut\"),\nperson(\"Jean-Charles\", \"Sanchez\", role = \"aut\"),\nperson(\"Markus\", \"Müller\", role = \"aut\"),\nperson(\"Stefan\", \"Siegert\", role = \"ctb\",\ncomment = \"Fast DeLong code\",\nemail = \"stefan_siegert@gmx.de\"),\nperson(\"Matthias\", \"Doering\", role = \"ctb\",\ncomment = \"Hand & Till Multiclass\"),\nperson(\"Zane\", \"Billings\", role = \"ctb\",\ncomment = \"DeLong paired test CI\"))", + "Description": "Tools for visualizing, smoothing and comparing receiver operating characteristic (ROC curves). (Partial) area under the curve (AUC) can be compared with statistical tests based on U-statistics or bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.", + "License": "GPL (>= 3)", + "URL": "http://expasy.org/tools/pROC/", + "BugReports": "https://github.com/xrobin/pROC/issues", + "LazyData": "yes", + "NeedsCompilation": "yes", + "Packaged": "2023-07-04 06:40:59 UTC; xavier", + "Author": "Xavier Robin [cre, aut] (),\nNatacha Turck [aut],\nAlexandre Hainard [aut],\nNatalia Tiberti [aut],\nFrédérique Lisacek [aut],\nJean-Charles Sanchez [aut],\nMarkus Müller [aut],\nStefan Siegert [ctb] (Fast DeLong code),\nMatthias Doering [ctb] (Hand & Till Multiclass),\nZane Billings [ctb] (DeLong paired test CI)", + "Maintainer": "Xavier Robin ", + "Repository": "RSPM", + "Date/Publication": "2023-07-06 00:10:56 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 03:16:32 UTC; unix" + } + }, + "palmerpenguins": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "palmerpenguins", + "Title": "Palmer Archipelago (Antarctica) Penguin Data", + "Version": "0.1.1", + "Date": "2022-08-12", + "Authors@R": "c(\nperson(given = \"Allison\",\nfamily = \"Horst\",\nrole = c(\"aut\", \"cre\"),\nemail = \"ahorst@ucsb.edu\",\ncomment = c(ORCID = \"0000-0002-6047-5564\")),\nperson(given = \"Alison\",\nfamily = \"Hill\",\nrole = c(\"aut\"),\nemail = \"apresstats@gmail.com\",\ncomment = c(ORCID = \"0000-0002-8082-1890\")),\nperson(given = \"Kristen\",\nfamily = \"Gorman\",\nrole = c(\"aut\"),\nemail = \"kbgorman@alaska.edu\",\ncomment = c(ORCID = \"0000-0002-0258-9264\"))\n)", + "Description": "Size measurements, clutch observations, and blood isotope ratios for adult foraging Adélie, Chinstrap, and Gentoo penguins observed on islands in the Palmer Archipelago near Palmer Station, Antarctica. Data were collected and made available by Dr. Kristen Gorman and the Palmer Station Long Term Ecological Research (LTER) Program.", + "License": "CC0", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.1.9000", + "Depends": "R (>= 2.10)", + "Suggests": "knitr, rmarkdown, tibble, ggplot2, dplyr, tidyr, recipes", + "URL": "https://allisonhorst.github.io/palmerpenguins/,\nhttps://github.com/allisonhorst/palmerpenguins", + "BugReports": "https://github.com/allisonhorst/palmerpenguins/issues", + "NeedsCompilation": "no", + "Packaged": "2022-08-13 17:49:08 UTC; allison", + "Author": "Allison Horst [aut, cre] (),\nAlison Hill [aut] (),\nKristen Gorman [aut] ()", + "Maintainer": "Allison Horst ", + "Repository": "RSPM", + "Date/Publication": "2022-08-15 07:40:07 UTC", + "Built": "R 4.3.0; ; 2023-04-21 23:12:37 UTC; unix" + } + }, + "parallelly": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "parallelly", + "Version": "1.36.0", + "Title": "Enhancing the 'parallel' Package", + "Imports": "parallel, tools, utils", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\nemail = \"henrikb@braju.com\"))", + "Description": "Utility functions that enhance the 'parallel' package and support the built-in parallel backends of the 'future' package. For example, availableCores() gives the number of CPU cores available to your R process as given by the operating system, 'cgroups' and Linux containers, R options, and environment variables, including those set by job schedulers on high-performance compute clusters. If none is set, it will fall back to parallel::detectCores(). Another example is makeClusterPSOCK(), which is backward compatible with parallel::makePSOCKcluster() while doing a better job in setting up remote cluster workers without the need for configuring the firewall to do port-forwarding to your local computer.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "ByteCompile": "TRUE", + "URL": "https://parallelly.futureverse.org,\nhttps://github.com/HenrikBengtsson/parallelly", + "BugReports": "https://github.com/HenrikBengtsson/parallelly/issues", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-05-26 19:40:22 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "RSPM", + "Date/Publication": "2023-05-26 20:30:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-05-29 14:57:53 UTC; unix" + } + }, + "pbapply": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "pbapply", + "Type": "Package", + "Title": "Adding Progress Bar to '*apply' Functions", + "Version": "1.7-2", + "Date": "2023-06-27", + "Authors@R": "c(person(given = \"Peter\",\nfamily = \"Solymos\",\ncomment = c(ORCID = \"0000-0001-7337-1740\"),\nrole = c(\"aut\", \"cre\"),\nemail = \"psolymos@gmail.com\"),\nperson(given = \"Zygmunt\",\nfamily = \"Zawadzki\",\nrole = \"aut\",\nemail = \"zygmunt@zstat.pl\"),\nperson(given = \"Henrik\",\nfamily = \"Bengtsson\",\nrole = \"ctb\",\nemail = \"henrikb@braju.com\"),\nperson(\"R Core Team\", role = c(\"cph\", \"ctb\")))", + "Maintainer": "Peter Solymos ", + "Description": "A lightweight package that adds\nprogress bar to vectorized R functions\n('*apply'). The implementation can easily be added\nto functions where showing the progress is\nuseful (e.g. bootstrap). The type and style of the\nprogress bar (with percentages or remaining time)\ncan be set through options.\nSupports several parallel processing backends including future.", + "Depends": "R (>= 3.2.0)", + "Imports": "parallel", + "Suggests": "shiny, future, future.apply", + "License": "GPL (>= 2)", + "URL": "https://github.com/psolymos/pbapply", + "BugReports": "https://github.com/psolymos/pbapply/issues", + "NeedsCompilation": "no", + "Packaged": "2023-06-27 07:08:27 UTC; Peter", + "Author": "Peter Solymos [aut, cre] (),\nZygmunt Zawadzki [aut],\nHenrik Bengtsson [ctb],\nR Core Team [cph, ctb]", + "Repository": "RSPM", + "Date/Publication": "2023-06-27 09:10:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-06-28 11:12:18 UTC; unix" + } + }, + "pdist": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "pdist", + "Type": "Package", + "Title": "Partitioned Distance Function", + "Version": "1.2.1", + "Date": "2013-01-31", + "Author": "Jeffrey Wong", + "Maintainer": "Jeffrey Wong ", + "URL": "https://github.com/jeffwong/pdist", + "Description": "Computes the euclidean distance between rows of a matrix X\nand rows of another matrix Y. Previously, this could be done\nby binding the two matrices together and calling 'dist', but\nthis creates unnecessary computation by computing the distances\nbetween a row of X and another row of X, and likewise for Y.\npdist strictly computes distances across the two matrices, not\nwithin the same matrix, making computations significantly\nfaster for certain use cases.", + "License": "GPL", + "LazyLoad": "yes", + "Depends": "methods", + "Collate": "'pdist.R' 'setup.R'", + "Packaged": "2022-05-02 10:08:08 UTC; hornik", + "Repository": "RSPM", + "Date/Publication": "2022-05-02 13:01:57 UTC", + "NeedsCompilation": "yes", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:59:40 UTC; unix" + } + }, + "permute": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "permute", + "Title": "Functions for Generating Restricted Permutations of Data", + "Version": "0.9-7", + "Date": "2022-01-27", + "Authors@R": "c(person(given = \"Gavin L.\", family = \"Simpson\",\nemail = \"ucfagls@gmail.com\",\nrole = c(\"aut\", \"cph\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-9084-8413\")),\nperson(given = \"R Core Team\", role = \"cph\"),\nperson(given = \"Douglas M.\", family = \"Bates\", role = \"ctb\"),\nperson(given = \"Jari\", family = \"Oksanen\", role = \"ctb\"))", + "Depends": "R (>= 2.14.0)", + "Imports": "stats", + "Suggests": "vegan (>= 2.0-0), testthat (>= 0.5), parallel, knitr,\nrmarkdown, bookdown, sessioninfo", + "Description": "A set of restricted permutation designs for freely exchangeable, line transects (time series), and spatial grid designs plus permutation of blocks (groups of samples) is provided. 'permute' also allows split-plot designs, in which the whole-plots or split-plots or both can be freely-exchangeable or one of the restricted designs. The 'permute' package is modelled after the permutation schemes of 'Canoco 3.1' (and later) by Cajo ter Braak.", + "License": "GPL-2", + "ByteCompile": "true", + "URL": "https://github.com/gavinsimpson/permute", + "BugReports": "https://github.com/gavinsimpson/permute/issues", + "Copyright": "see file COPYRIGHTS", + "VignetteBuilder": "knitr", + "NeedsCompilation": "no", + "Packaged": "2022-01-27 11:11:56 UTC; au690221", + "Author": "Gavin L. Simpson [aut, cph, cre]\n(),\nR Core Team [cph],\nDouglas M. Bates [ctb],\nJari Oksanen [ctb]", + "Maintainer": "Gavin L. Simpson ", + "Repository": "RSPM", + "Date/Publication": "2022-01-27 11:50:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 23:45:15 UTC; unix" + } + }, + "pillar": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "pillar", + "Title": "Coloured Formatting for Columns", + "Version": "1.9.0", + "Authors@R": "c(person(given = \"Kirill\",\nfamily = \"M\\u00fcller\",\nrole = c(\"aut\", \"cre\"),\nemail = \"kirill@cynkra.com\",\ncomment = c(ORCID = \"0000-0002-1416-3412\")),\nperson(given = \"Hadley\",\nfamily = \"Wickham\",\nrole = \"aut\"),\nperson(given = \"RStudio\",\nrole = \"cph\"))", + "Description": "Provides 'pillar' and 'colonnade' generics designed\nfor formatting columns of data using the full range of colours\nprovided by modern terminals.", + "License": "MIT + file LICENSE", + "URL": "https://pillar.r-lib.org/, https://github.com/r-lib/pillar", + "BugReports": "https://github.com/r-lib/pillar/issues", + "Imports": "cli (>= 2.3.0), fansi, glue, lifecycle, rlang (>= 1.0.2), utf8\n(>= 1.1.0), utils, vctrs (>= 0.5.0)", + "Suggests": "bit64, DBI, debugme, DiagrammeR, dplyr, formattable, ggplot2,\nknitr, lubridate, nanotime, nycflights13, palmerpenguins,\nrmarkdown, scales, stringi, survival, testthat (>= 3.1.1),\ntibble, units (>= 0.7.2), vdiffr, withr", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "format_multi_fuzz, format_multi_fuzz_2,\nformat_multi, ctl_colonnade, ctl_colonnade_1, ctl_colonnade_2", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "true", + "Config/gha/extra-packages": "DiagrammeR=?ignore-before-r=3.5.0", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "no", + "Packaged": "2023-03-21 08:42:46 UTC; kirill", + "Author": "Kirill Müller [aut, cre] (),\nHadley Wickham [aut],\nRStudio [cph]", + "Maintainer": "Kirill Müller ", + "Repository": "RSPM", + "Date/Publication": "2023-03-22 08:10:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:47:44 UTC; unix" + } + }, + "pkgbuild": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "pkgbuild", + "Title": "Find Tools Needed to Build R Packages", + "Version": "1.4.2", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", role = \"aut\"),\nperson(\"Jim\", \"Hester\", role = \"aut\"),\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Provides functions used to build R packages. Locates\ncompilers needed to build R packages on various platforms and ensures\nthe PATH is configured appropriately so R can use them.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/pkgbuild, https://pkgbuild.r-lib.org", + "BugReports": "https://github.com/r-lib/pkgbuild/issues", + "Depends": "R (>= 3.4)", + "Imports": "callr (>= 3.2.0), cli (>= 3.4.0), crayon, desc, prettyunits,\nprocessx, R6, rprojroot", + "Suggests": "covr, cpp11, knitr, mockery, Rcpp, rmarkdown, testthat (>=\n3.0.0), withr (>= 2.3.0)", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Packaged": "2023-06-26 11:12:19 UTC; gaborcsardi", + "Author": "Hadley Wickham [aut],\nJim Hester [aut],\nGábor Csárdi [aut, cre],\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "RSPM", + "Date/Publication": "2023-06-26 11:50:02 UTC", + "Built": "R 4.3.0; ; 2023-06-27 11:25:29 UTC; unix" + } + }, + "pkgconfig": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "pkgconfig", + "Title": "Private Configuration for 'R' Packages", + "Version": "2.0.3", + "Author": "Gábor Csárdi", + "Maintainer": "Gábor Csárdi ", + "Description": "Set configuration options on a per-package basis.\nOptions set by a given package only apply to that package,\nother packages are unaffected.", + "License": "MIT + file LICENSE", + "LazyData": "true", + "Imports": "utils", + "Suggests": "covr, testthat, disposables (>= 1.0.3)", + "URL": "https://github.com/r-lib/pkgconfig#readme", + "BugReports": "https://github.com/r-lib/pkgconfig/issues", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2019-09-22 08:42:40 UTC; gaborcsardi", + "Repository": "RSPM", + "Date/Publication": "2019-09-22 09:20:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:46:12 UTC; unix" + } + }, + "pkgload": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "pkgload", + "Title": "Simulate Package Installation and Attach", + "Version": "1.3.3", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", role = \"aut\"),\nperson(\"Winston\", \"Chang\", role = \"aut\"),\nperson(\"Jim\", \"Hester\", role = \"aut\"),\nperson(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\nperson(\"R Core team\", role = \"ctb\",\ncomment = \"Some namespace and vignette code extracted from base R\")\n)", + "Description": "Simulates the process of installing a package and then\nattaching it. This is a key part of the 'devtools' package as it\nallows you to rapidly iterate while developing a package.", + "License": "GPL-3", + "URL": "https://github.com/r-lib/pkgload, https://pkgload.r-lib.org", + "BugReports": "https://github.com/r-lib/pkgload/issues", + "Depends": "R (>= 3.4.0)", + "Imports": "cli (>= 3.3.0), crayon, desc, fs, glue, methods, pkgbuild,\nrlang (>= 1.1.1), rprojroot, utils, withr (>= 2.4.3)", + "Suggests": "bitops, covr, mathjaxr, mockr, pak, Rcpp, remotes,\nrstudioapi, testthat (>= 3.1.0)", + "Config/Needs/website": "tidyverse/tidytemplate, ggplot2", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-09-22 06:20:58 UTC; lionel", + "Author": "Hadley Wickham [aut],\nWinston Chang [aut],\nJim Hester [aut],\nLionel Henry [aut, cre],\nPosit Software, PBC [cph, fnd],\nR Core team [ctb] (Some namespace and vignette code extracted from base\nR)", + "Maintainer": "Lionel Henry ", + "Repository": "RSPM", + "Date/Publication": "2023-09-22 07:50:02 UTC", + "Built": "R 4.3.0; ; 2023-09-25 11:31:58 UTC; unix" + } + }, + "plot3D": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "plot3D", + "Version": "1.4", + "Title": "Plotting Multi-Dimensional Data", + "Author": "Karline Soetaert ", + "Maintainer": "Karline Soetaert ", + "Depends": "R (>= 2.15)", + "Imports": "misc3d, stats, graphics, grDevices, methods", + "Description": "Functions for viewing 2-D and 3-D data, including perspective plots, slice plots, surface plots, scatter plots, etc. Includes data sets from oceanography.", + "License": "GPL (>= 3.0)", + "LazyData": "yes", + "NeedsCompilation": "no", + "Packaged": "2021-05-20 06:28:24 UTC; karlines", + "Repository": "RSPM", + "Date/Publication": "2021-05-22 15:10:08 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 23:45:22 UTC; unix" + } + }, + "plyr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "plyr", + "Title": "Tools for Splitting, Applying and Combining Data", + "Version": "1.8.9", + "Authors@R": "person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\"))", + "Description": "A set of tools that solves a common set of problems: you need\nto break a big problem down into manageable pieces, operate on each\npiece and then put all the pieces back together. For example, you\nmight want to fit a model to each spatial location or time point in\nyour study, summarise data by panels or collapse high-dimensional\narrays to simpler summary statistics. The development of 'plyr' has\nbeen generously supported by 'Becton Dickinson'.", + "License": "MIT + file LICENSE", + "URL": "http://had.co.nz/plyr, https://github.com/hadley/plyr", + "BugReports": "https://github.com/hadley/plyr/issues", + "Depends": "R (>= 3.1.0)", + "Imports": "Rcpp (>= 0.11.0)", + "Suggests": "abind, covr, doParallel, foreach, iterators, itertools,\ntcltk, testthat", + "LinkingTo": "Rcpp", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-09-27 13:58:04 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2023-10-02 06:50:08 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-10-03 11:18:31 UTC; unix" + } + }, + "png": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "png", + "Version": "0.1-8", + "Title": "Read and write PNG images", + "Author": "Simon Urbanek ", + "Maintainer": "Simon Urbanek ", + "Depends": "R (>= 2.9.0)", + "Description": "This package provides an easy and simple way to read, write and display bitmap images stored in the PNG format. It can read and write both files and in-memory raw vectors.", + "License": "GPL-2 | GPL-3", + "SystemRequirements": "libpng", + "URL": "http://www.rforge.net/png/", + "NeedsCompilation": "yes", + "Packaged": "2022-11-29 09:42:31 UTC; rforge", + "Repository": "RSPM", + "Date/Publication": "2022-11-29 11:12:53 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:21:04 UTC; unix" + } + }, + "pracma": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "pracma", + "Type": "Package", + "Version": "2.4.2", + "Date": "2022-09-21", + "Title": "Practical Numerical Math Functions", + "Authors@R": "person(\"Hans W.\", \"Borchers\",\nemail=\"hwborchers@googlemail.com\",\nrole=c(\"aut\", \"cre\"))", + "Depends": "R (>= 3.1.0)", + "Imports": "graphics, grDevices, stats, utils", + "Suggests": "NlcOptim, quadprog", + "Description": "Provides a large number of functions from numerical analysis and\nlinear algebra, numerical optimization, differential equations,\ntime series, plus some well-known special mathematical functions.\nUses 'MATLAB' function names where appropriate to simplify porting.", + "License": "GPL (>= 3)", + "ByteCompile": "true", + "LazyData": "yes", + "Author": "Hans W. Borchers [aut, cre]", + "Maintainer": "Hans W. Borchers ", + "Repository": "RSPM", + "Repository/R-Forge/Project": "optimist", + "Repository/R-Forge/Revision": "532", + "Repository/R-Forge/DateTimeStamp": "2022-09-22 12:27:41", + "Date/Publication": "2022-09-22 14:50:02 UTC", + "NeedsCompilation": "no", + "Packaged": "2022-09-22 12:32:08 UTC; rforge", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 23:12:02 UTC; unix" + } + }, + "praise": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "praise", + "Title": "Praise Users", + "Version": "1.0.0", + "Author": "Gabor Csardi, Sindre Sorhus", + "Maintainer": "Gabor Csardi ", + "Description": "Build friendly R packages that\npraise their users if they have done something\ngood, or they just need it to feel better.", + "License": "MIT + file LICENSE", + "LazyData": "true", + "URL": "https://github.com/gaborcsardi/praise", + "BugReports": "https://github.com/gaborcsardi/praise/issues", + "Suggests": "testthat", + "Collate": "'adjective.R' 'adverb.R' 'exclamation.R' 'verb.R' 'rpackage.R'\n'package.R'", + "NeedsCompilation": "no", + "Packaged": "2015-08-11 02:01:43 UTC; gaborcsardi", + "Repository": "RSPM", + "Date/Publication": "2015-08-11 08:22:28", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:20:15 UTC; unix" + } + }, + "predicts": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "predicts", + "Type": "Package", + "Title": "Spatial Prediction Tools", + "Description": "Methods for spatial predictive modeling, especially for spatial distribution models. This includes algorithms for model fitting and prediction, as well as methods for model evaluation.", + "Version": "0.1-8", + "Date": "2023-04-08", + "Depends": "R (>= 3.5.0), methods, terra", + "Suggests": "disdat, rJava", + "Authors@R": "c(\nperson(\"Robert J.\", \"Hijmans\", role = c(\"cre\", \"aut\"),\nemail = \"r.hijmans@gmail.com\", comment = c(ORCID = \"0000-0001-5872-2872\")),\nperson(\"Steven\", \"Phillips\", role = \"ctb\"),\nperson(\"Chris\", \"Brunsdon\", role = \"ctb\"),\nperson(\"Barry\", \"Rowlingson\", role = \"ctb\"))", + "Maintainer": "Robert J. Hijmans ", + "License": "GPL (>= 3)", + "LazyLoad": "yes", + "URL": "https://rspatial.org/sdm/", + "BugReports": "https://github.com/rspatial/predicts/issues/", + "NeedsCompilation": "no", + "Packaged": "2023-04-09 16:54:46 UTC; rhijm", + "Author": "Robert J. Hijmans [cre, aut] (),\nSteven Phillips [ctb],\nChris Brunsdon [ctb],\nBarry Rowlingson [ctb]", + "Repository": "RSPM", + "Date/Publication": "2023-04-09 18:20:04 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-22 01:36:44 UTC; unix" + } + }, + "prettyunits": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "prettyunits", + "Title": "Pretty, Human Readable Formatting of Quantities", + "Version": "1.2.0", + "Authors@R": "c(\nperson(\"Gabor\", \"Csardi\", email=\"csardi.gabor@gmail.com\", role=c(\"aut\", \"cre\")),\nperson(\"Bill\", \"Denney\", email=\"wdenney@humanpredictions.com\", role=c(\"ctb\"), comment=c(ORCID=\"0000-0002-5759-428X\")),\nperson(\"Christophe\", \"Regouby\", email=\"christophe.regouby@free.fr\", role=c(\"ctb\"))\n)", + "Description": "Pretty, human readable formatting of quantities.\nTime intervals: '1337000' -> '15d 11h 23m 20s'.\nVague time intervals: '2674000' -> 'about a month ago'.\nBytes: '1337' -> '1.34 kB'.\nRounding: '99' with 3 significant digits -> '99.0'\np-values: '0.00001' -> '<0.0001'.\nColors: '#FF0000' -> 'red'.\nQuantities: '1239437' -> '1.24 M'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/prettyunits", + "BugReports": "https://github.com/r-lib/prettyunits/issues", + "Depends": "R(>= 2.10)", + "Suggests": "codetools, covr, testthat", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2023-09-24 10:53:19 UTC; gaborcsardi", + "Author": "Gabor Csardi [aut, cre],\nBill Denney [ctb] (),\nChristophe Regouby [ctb]", + "Maintainer": "Gabor Csardi ", + "Repository": "RSPM", + "Date/Publication": "2023-09-24 21:10:02 UTC", + "Built": "R 4.3.0; ; 2023-09-25 11:31:17 UTC; unix" + } + }, + "processx": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "processx", + "Title": "Execute and Control System Processes", + "Version": "3.8.2", + "Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"),\ncomment = c(ORCID = \"0000-0001-7098-9676\")),\nperson(\"Winston\", \"Chang\", role = \"aut\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\")),\nperson(\"Mango Solutions\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Tools to run system processes in the background. It can\ncheck if a background process is running; wait on a background process\nto finish; get the exit status of finished processes; kill background\nprocesses. It can read the standard output and error of the processes,\nusing non-blocking connections. 'processx' can poll a process for\nstandard output or error, with a timeout. It can also poll several\nprocesses at once.", + "License": "MIT + file LICENSE", + "URL": "https://processx.r-lib.org,\nhttps://github.com/r-lib/processx#readme", + "BugReports": "https://github.com/r-lib/processx/issues", + "Depends": "R (>= 3.4.0)", + "Imports": "ps (>= 1.2.0), R6, utils", + "Suggests": "callr (>= 3.7.3), cli (>= 3.3.0), codetools, covr, curl,\ndebugme, parallel, rlang (>= 1.0.2), testthat (>= 3.0.0),\nwebfakes, withr", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.0", + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "yes", + "Packaged": "2023-06-30 10:01:10 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre, cph] (),\nWinston Chang [aut],\nRStudio [cph, fnd],\nMango Solutions [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "RSPM", + "Date/Publication": "2023-06-30 20:40:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-03 12:12:28 UTC; unix" + } + }, + "prodlim": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "prodlim", + "Title": "Product-Limit Estimation for Censored Event History Analysis", + "Version": "2023.08.28", + "Author": "Thomas A. Gerds", + "Description": "Fast and user friendly implementation of nonparametric estimators\nfor censored event history (survival) analysis. Kaplan-Meier and\nAalen-Johansen method.", + "Depends": "R (>= 2.9.0)", + "Imports": "Rcpp (>= 0.11.5), stats, data.table, grDevices, graphics,\ndiagram, survival, KernSmooth, lava", + "LinkingTo": "Rcpp", + "Maintainer": "Thomas A. Gerds ", + "License": "GPL (>= 2)", + "Packaged": "2023-08-28 09:26:22 UTC; tag", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Repository": "RSPM", + "Date/Publication": "2023-08-28 11:00:06 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-29 11:12:08 UTC; unix" + } + }, + "progress": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "progress", + "Title": "Terminal Progress Bars", + "Version": "1.2.2", + "Author": "Gábor Csárdi [aut, cre], Rich FitzJohn [aut]", + "Maintainer": "Gábor Csárdi ", + "Description": "Configurable Progress bars, they may include percentage,\nelapsed time, and/or the estimated completion time. They work in\nterminals, in 'Emacs' 'ESS', 'RStudio', 'Windows' 'Rgui' and the\n'macOS' 'R.app'. The package also provides a 'C++' 'API', that works\nwith or without 'Rcpp'.", + "License": "MIT + file LICENSE", + "LazyData": "true", + "URL": "https://github.com/r-lib/progress#readme", + "BugReports": "https://github.com/r-lib/progress/issues", + "Imports": "hms, prettyunits, R6, crayon", + "Suggests": "Rcpp, testthat, withr", + "RoxygenNote": "6.1.0", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2019-05-15 20:28:47 UTC; gaborcsardi", + "Repository": "RSPM", + "Date/Publication": "2019-05-16 21:30:03 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:51:32 UTC; unix" + } + }, + "progressr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "progressr", + "Version": "0.14.0", + "Title": "An Inclusive, Unifying API for Progress Updates", + "Description": "A minimal, unifying API for scripts and packages to report progress updates from anywhere including when using parallel processing. The package is designed such that the developer can to focus on what progress should be reported on without having to worry about how to present it. The end user has full control of how, where, and when to render these progress updates, e.g. in the terminal using utils::txtProgressBar(), cli::cli_progress_bar(), in a graphical user interface using utils::winProgressBar(), tcltk::tkProgressBar() or shiny::withProgress(), via the speakers using beepr::beep(), or on a file system via the size of a file. Anyone can add additional, customized, progression handlers. The 'progressr' package uses R's condition framework for signaling progress updated. Because of this, progress can be reported from almost anywhere in R, e.g. from classical for and while loops, from map-reduce API:s like the lapply() family of functions, 'purrr', 'plyr', and 'foreach'. It will also work with parallel processing via the 'future' framework, e.g. future.apply::future_lapply(), furrr::future_map(), and 'foreach' with 'doFuture'. The package is compatible with Shiny applications.", + "Authors@R": "c(\nperson(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\nemail = \"henrikb@braju.com\"))", + "License": "GPL (>= 3)", + "Depends": "R (>= 3.5.0)", + "Imports": "digest, utils", + "Suggests": "graphics, tcltk, beepr, cli, crayon, pbmcapply, progress,\npurrr, foreach, plyr, doFuture, future, future.apply, furrr,\nRPushbullet, rstudioapi, shiny, commonmark, base64enc, tools", + "VignetteBuilder": "progressr", + "URL": "https://progressr.futureverse.org,\nhttps://github.com/HenrikBengtsson/progressr", + "BugReports": "https://github.com/HenrikBengtsson/progressr/issues", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-08-10 12:56:44 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "RSPM", + "Date/Publication": "2023-08-10 22:50:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-08-11 13:03:44 UTC; unix" + } + }, + "promises": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Type": "Package", + "Package": "promises", + "Title": "Abstractions for Promise-Based Asynchronous Programming", + "Version": "1.2.1", + "Authors@R": "c(\nperson(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = c(\"aut\", \"cre\")),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Provides fundamental abstractions for doing asynchronous\nprogramming in R using promises. Asynchronous programming is useful\nfor allowing a single R process to orchestrate multiple tasks in the\nbackground while also attending to something else. Semantics are\nsimilar to 'JavaScript' promises, but with a syntax that is idiomatic\nR.", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/promises/,\nhttps://github.com/rstudio/promises", + "BugReports": "https://github.com/rstudio/promises/issues", + "Imports": "fastmap (>= 1.1.0), later, magrittr (>= 1.5), R6, Rcpp, rlang,\nstats", + "Suggests": "future (>= 1.21.0), knitr, purrr, rmarkdown, spelling,\ntestthat, vembedr", + "LinkingTo": "later, Rcpp", + "VignetteBuilder": "knitr", + "Config/Needs/website": "rsconnect", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-08-09 20:29:25 UTC; garrick", + "Author": "Joe Cheng [aut, cre],\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Joe Cheng ", + "Repository": "RSPM", + "Date/Publication": "2023-08-10 16:00:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-11 13:03:51 UTC; unix" + } + }, + "proto": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "proto", + "Version": "1.0.0", + "Title": "Prototype Object-Based Programming", + "Description": "An object oriented system using object-based, also\ncalled prototype-based, rather than class-based object oriented ideas.", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", \"cre\"),\nperson(\"Gabor\", \"Grothendieck\", , \"ggrothendieck@gmail.com\", \"aut\"),\nperson(\"Louis\", \"Kates\", role = \"aut\"),\nperson(\"Thomas\", \"Petzoldt\", role = \"aut\")\n)", + "License": "GPL-2", + "URL": "https://github.com/hadley/proto", + "BugReports": "https://github.com/hadley/proto/issues", + "Suggests": "testthat, covr", + "RoxygenNote": "5.0.1.9000", + "NeedsCompilation": "no", + "Packaged": "2016-10-28 22:08:08 UTC; hadley", + "Author": "Hadley Wickham [cre],\nGabor Grothendieck [aut],\nLouis Kates [aut],\nThomas Petzoldt [aut]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2016-10-29 00:23:07", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 23:59:27 UTC; unix" + } + }, + "proxy": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "proxy", + "Type": "Package", + "Title": "Distance and Similarity Measures", + "Version": "0.4-27", + "Authors@R": "c(person(given = \"David\", family = \"Meyer\", role = c(\"aut\", \"cre\"), email = \"David.Meyer@R-project.org\"),\nperson(given = \"Christian\", family = \"Buchta\", role = \"aut\"))", + "Description": "Provides an extensible framework for the efficient calculation of auto- and cross-proximities, along with implementations of the most popular ones.", + "Depends": "R (>= 3.4.0)", + "Imports": "stats, utils", + "Suggests": "cba", + "Collate": "registry.R database.R dist.R similarities.R dissimilarities.R\nutil.R seal.R", + "License": "GPL-2", + "NeedsCompilation": "yes", + "Packaged": "2022-06-08 21:36:02 UTC; meyer", + "Author": "David Meyer [aut, cre],\nChristian Buchta [aut]", + "Maintainer": "David Meyer ", + "Repository": "RSPM", + "Date/Publication": "2022-06-09 06:15:32 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:11:58 UTC; unix" + } + }, + "ps": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "ps", + "Title": "List, Query, Manipulate System Processes", + "Version": "1.7.5", + "Authors@R": "c(\nperson(\"Jay\", \"Loden\", role = \"aut\"),\nperson(\"Dave\", \"Daeschler\", role = \"aut\"),\nperson(\"Giampaolo\", \"Rodola'\", role = \"aut\"),\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "List, query and manipulate all system processes, on\n'Windows', 'Linux' and 'macOS'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/ps#readme, https://ps.r-lib.org/", + "BugReports": "https://github.com/r-lib/ps/issues", + "Depends": "R (>= 3.4)", + "Imports": "utils", + "Suggests": "callr, covr, curl, pillar, pingr, processx (>= 3.1.0), R6,\nrlang, testthat (>= 3.0.0), webfakes", + "Biarch": "true", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1", + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "yes", + "Packaged": "2023-04-18 14:27:32 UTC; gaborcsardi", + "Author": "Jay Loden [aut],\nDave Daeschler [aut],\nGiampaolo Rodola' [aut],\nGábor Csárdi [aut, cre],\nRStudio [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "RSPM", + "Date/Publication": "2023-04-18 19:30:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:08 UTC; unix" + } + }, + "purrr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "purrr", + "Title": "Functional Programming Tools", + "Version": "1.0.2", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0003-4757-117X\")),\nperson(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = \"aut\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "A complete and consistent functional programming toolkit for\nR.", + "License": "MIT + file LICENSE", + "URL": "https://purrr.tidyverse.org/, https://github.com/tidyverse/purrr", + "BugReports": "https://github.com/tidyverse/purrr/issues", + "Depends": "R (>= 3.5.0)", + "Imports": "cli (>= 3.6.1), lifecycle (>= 1.0.3), magrittr (>= 1.5.0),\nrlang (>= 1.1.1), vctrs (>= 0.6.3)", + "Suggests": "covr, dplyr (>= 0.7.8), httr, knitr, lubridate, rmarkdown,\ntestthat (>= 3.0.0), tibble, tidyselect", + "LinkingTo": "cli", + "VignetteBuilder": "knitr", + "Biarch": "true", + "Config/Needs/website": "tidyverse/tidytemplate, tidyr", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-08-08 16:13:31 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre] (),\nLionel Henry [aut],\nRStudio [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2023-08-10 08:20:07 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-11 13:03:49 UTC; unix" + } + }, + "rapidjsonr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "rapidjsonr", + "Type": "Package", + "Title": "'Rapidjson' C++ Header Files", + "Version": "1.2.0", + "Date": "2020-03-08", + "Authors@R": "c(\nperson(\"David\", \"Cooley\", ,\"dcooley@symbolix.com.au\", role = c(\"aut\", \"cre\")),\nperson(\"Milo\", \"Yip\", , role = \"ctb\", comment = \"Author of c++ rapidjson library, provided through THL A29 Limited, a Tencent company\"),\nperson(\"Alexander\", \"Chemeris\", role = \"ctb\", comment = \"Author of c++ msinttypes library\")\n)", + "Description": "Provides JSON parsing capability through the 'Rapidjson' 'C++' header-only library.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.0.2", + "SystemRequirements": "GNU make", + "NeedsCompilation": "yes", + "Packaged": "2020-03-08 06:44:13 UTC; dave", + "Author": "David Cooley [aut, cre],\nMilo Yip [ctb] (Author of c++ rapidjson library, provided through THL\nA29 Limited, a Tencent company),\nAlexander Chemeris [ctb] (Author of c++ msinttypes library)", + "Maintainer": "David Cooley ", + "Repository": "RSPM", + "Date/Publication": "2020-03-08 07:10:02 UTC", + "Built": "R 4.3.0; ; 2023-05-30 12:26:31 UTC; unix" + } + }, + "rappdirs": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Type": "Package", + "Package": "rappdirs", + "Title": "Application Directories: Determine Where to Save Data, Caches,\nand Logs", + "Version": "0.3.3", + "Authors@R": "c(person(given = \"Hadley\",\nfamily = \"Wickham\",\nrole = c(\"trl\", \"cre\", \"cph\"),\nemail = \"hadley@rstudio.com\"),\nperson(given = \"RStudio\",\nrole = \"cph\"),\nperson(given = \"Sridhar\",\nfamily = \"Ratnakumar\",\nrole = \"aut\"),\nperson(given = \"Trent\",\nfamily = \"Mick\",\nrole = \"aut\"),\nperson(given = \"ActiveState\",\nrole = \"cph\",\ncomment = \"R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs\"),\nperson(given = \"Eddy\",\nfamily = \"Petrisor\",\nrole = \"ctb\"),\nperson(given = \"Trevor\",\nfamily = \"Davis\",\nrole = c(\"trl\", \"aut\")),\nperson(given = \"Gabor\",\nfamily = \"Csardi\",\nrole = \"ctb\"),\nperson(given = \"Gregory\",\nfamily = \"Jefferis\",\nrole = \"ctb\"))", + "Description": "An easy way to determine which directories on the\nusers computer you should use to save data, caches and logs. A port of\nPython's 'Appdirs' () to\nR.", + "License": "MIT + file LICENSE", + "URL": "https://rappdirs.r-lib.org, https://github.com/r-lib/rappdirs", + "BugReports": "https://github.com/r-lib/rappdirs/issues", + "Depends": "R (>= 3.2)", + "Suggests": "roxygen2, testthat (>= 3.0.0), covr, withr", + "Copyright": "Original python appdirs module copyright (c) 2010\nActiveState Software Inc. R port copyright Hadley Wickham,\nRStudio. See file LICENSE for details.", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.1", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Packaged": "2021-01-28 22:29:57 UTC; hadley", + "Author": "Hadley Wickham [trl, cre, cph],\nRStudio [cph],\nSridhar Ratnakumar [aut],\nTrent Mick [aut],\nActiveState [cph] (R/appdir.r, R/cache.r, R/data.r, R/log.r translated\nfrom appdirs),\nEddy Petrisor [ctb],\nTrevor Davis [trl, aut],\nGabor Csardi [ctb],\nGregory Jefferis [ctb]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2021-01-31 05:40:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:15 UTC; unix" + } + }, + "raster": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "raster", + "Type": "Package", + "Title": "Geographic Data Analysis and Modeling", + "Version": "3.6-23", + "Date": "2023-07-03", + "Imports": "Rcpp, methods, terra (>= 1.7-29)", + "LinkingTo": "Rcpp", + "Depends": "sp (>= 1.4-5), R (>= 3.5.0)", + "Suggests": "ncdf4, igraph, tcltk, parallel, rasterVis, MASS, sf,\ntinytest, gstat, fields, exactextractr", + "Description": "Reading, writing, manipulating, analyzing and modeling of spatial data. This package has been superseded by the \"terra\" package .", + "License": "GPL (>= 3)", + "URL": "https://rspatial.org/raster", + "BugReports": "https://github.com/rspatial/raster/issues/", + "Authors@R": "c(\nperson(\"Robert J.\", \"Hijmans\", role = c(\"cre\", \"aut\"),\nemail = \"r.hijmans@gmail.com\",\ncomment = c(ORCID = \"0000-0001-5872-2872\")),\nperson(\"Jacob\", \"van Etten\", role = \"ctb\"),\nperson(\"Michael\", \"Sumner\", role = \"ctb\"),\nperson(\"Joe\", \"Cheng\", role = \"ctb\"),\nperson(\"Dan\", \"Baston\", role = \"ctb\"),\nperson(\"Andrew\", \"Bevan\", role = \"ctb\"),\nperson(\"Roger\", \"Bivand\", role = \"ctb\"),\nperson(\"Lorenzo\", \"Busetto\", role = \"ctb\"),\nperson(\"Mort\", \"Canty\", role = \"ctb\"),\nperson(\"Ben\", \"Fasoli\", role = \"ctb\"),\nperson(\"David\", \"Forrest\", role = \"ctb\"),\nperson(\"Aniruddha\", \"Ghosh\", role = \"ctb\"),\nperson(\"Duncan\", \"Golicher\", role = \"ctb\"),\nperson(\"Josh\", \"Gray\", role = \"ctb\"),\nperson(\"Jonathan A.\", \"Greenberg\", role = \"ctb\"),\nperson(\"Paul\", \"Hiemstra\", role = \"ctb\"),\nperson(\"Kassel\", \"Hingee\", role = \"ctb\"),\nperson(\"Alex\", \"Ilich\", role = \"ctb\"),\nperson(\"Institute for Mathematics Applied Geosciences\", role=\"cph\"),\nperson(\"Charles\", \"Karney\", role = \"ctb\"),\nperson(\"Matteo\", \"Mattiuzzi\", role = \"ctb\"),\nperson(\"Steven\", \"Mosher\", role = \"ctb\"),\nperson(\"Babak\", \"Naimi\", role = \"ctb\"),\nperson(\"Jakub\", \"Nowosad\", role = \"ctb\"),\nperson(\"Edzer\", \"Pebesma\", role = \"ctb\"),\nperson(\"Oscar\", \"Perpinan Lamigueiro\", role = \"ctb\"),\nperson(\"Etienne B.\", \"Racine\", role = \"ctb\"),\nperson(\"Barry\", \"Rowlingson\", role = \"ctb\"),\nperson(\"Ashton\", \"Shortridge\", role = \"ctb\"),\nperson(\"Bill\", \"Venables\", role = \"ctb\"),\nperson(\"Rafael\", \"Wueest\", role = \"ctb\")\n)", + "NeedsCompilation": "yes", + "Packaged": "2023-07-03 17:12:54 UTC; rhijm", + "Author": "Robert J. Hijmans [cre, aut] (),\nJacob van Etten [ctb],\nMichael Sumner [ctb],\nJoe Cheng [ctb],\nDan Baston [ctb],\nAndrew Bevan [ctb],\nRoger Bivand [ctb],\nLorenzo Busetto [ctb],\nMort Canty [ctb],\nBen Fasoli [ctb],\nDavid Forrest [ctb],\nAniruddha Ghosh [ctb],\nDuncan Golicher [ctb],\nJosh Gray [ctb],\nJonathan A. Greenberg [ctb],\nPaul Hiemstra [ctb],\nKassel Hingee [ctb],\nAlex Ilich [ctb],\nInstitute for Mathematics Applied Geosciences [cph],\nCharles Karney [ctb],\nMatteo Mattiuzzi [ctb],\nSteven Mosher [ctb],\nBabak Naimi [ctb],\nJakub Nowosad [ctb],\nEdzer Pebesma [ctb],\nOscar Perpinan Lamigueiro [ctb],\nEtienne B. Racine [ctb],\nBarry Rowlingson [ctb],\nAshton Shortridge [ctb],\nBill Venables [ctb],\nRafael Wueest [ctb]", + "Maintainer": "Robert J. Hijmans ", + "Repository": "RSPM", + "Date/Publication": "2023-07-04 11:40:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 03:54:47 UTC; unix" + } + }, + "rcdd": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "rcdd", + "Version": "1.5-2", + "Date": "2023-04-23", + "Title": "Computational Geometry", + "Author": "Charles J. Geyer and\nGlen D. Meeden , incorporates code from\ncddlib (ver 0.94f) written by Komei Fukuda ", + "Maintainer": "Charles J. Geyer ", + "Depends": "R (>= 3.0.2)", + "Imports": "methods", + "SystemRequirements": "GMP (GNU MP bignum library from\n)", + "Description": "R interface to (some of) cddlib\n().\nConverts back and forth between two representations of a convex polytope:\nas solution of a set of linear equalities and inequalities and as\nconvex hull of set of points and rays.\nAlso does linear programming and redundant generator elimination\n(for example, convex hull in n dimensions). All functions can use exact\ninfinite-precision rational arithmetic.", + "License": "GPL-2", + "URL": "https://www.stat.umn.edu/geyer/rcdd/,\nhttps://github.com/cjgeyer/rcdd", + "NeedsCompilation": "yes", + "Packaged": "2023-04-24 17:35:58 UTC; geyer", + "Repository": "RSPM", + "Date/Publication": "2023-04-24 20:30:11 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-27 00:27:49 UTC; unix" + } + }, + "readr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "readr", + "Title": "Read Rectangular Text Data", + "Version": "2.1.4", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\nperson(\"Jim\", \"Hester\", role = \"aut\"),\nperson(\"Romain\", \"Francois\", role = \"ctb\"),\nperson(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-6983-2759\")),\nperson(\"Shelby\", \"Bearrows\", role = \"ctb\"),\nperson(\"Posit, PBC\", role = c(\"cph\", \"fnd\")),\nperson(\"https://github.com/mandreyel/\", role = \"cph\",\ncomment = \"mio library\"),\nperson(\"Jukka\", \"Jylänki\", role = c(\"ctb\", \"cph\"),\ncomment = \"grisu3 implementation\"),\nperson(\"Mikkel\", \"Jørgensen\", role = c(\"ctb\", \"cph\"),\ncomment = \"grisu3 implementation\")\n)", + "Description": "The goal of 'readr' is to provide a fast and friendly way to\nread rectangular data (like 'csv', 'tsv', and 'fwf'). It is designed\nto flexibly parse many types of data found in the wild, while still\ncleanly failing when data unexpectedly changes.", + "License": "MIT + file LICENSE", + "URL": "https://readr.tidyverse.org, https://github.com/tidyverse/readr", + "BugReports": "https://github.com/tidyverse/readr/issues", + "Depends": "R (>= 3.5)", + "Imports": "cli (>= 3.2.0), clipr, crayon, hms (>= 0.4.1), lifecycle (>=\n0.2.0), methods, R6, rlang, tibble, utils, vroom (>= 1.6.0)", + "Suggests": "covr, curl, datasets, knitr, rmarkdown, spelling, stringi,\ntestthat (>= 3.1.2), tzdb (>= 0.1.1), waldo, withr, xml2", + "LinkingTo": "cpp11, tzdb (>= 0.1.1)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "false", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-02-10 00:05:55 UTC; jenny", + "Author": "Hadley Wickham [aut],\nJim Hester [aut],\nRomain Francois [ctb],\nJennifer Bryan [aut, cre] (),\nShelby Bearrows [ctb],\nPosit, PBC [cph, fnd],\nhttps://github.com/mandreyel/ [cph] (mio library),\nJukka Jylänki [ctb, cph] (grisu3 implementation),\nMikkel Jørgensen [ctb, cph] (grisu3 implementation)", + "Maintainer": "Jennifer Bryan ", + "Repository": "RSPM", + "Date/Publication": "2023-02-10 09:20:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:56:52 UTC; unix" + } + }, + "recipes": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "recipes", + "Title": "Preprocessing and Feature Engineering Steps for Modeling", + "Version": "1.0.8", + "Authors@R": "c(\nperson(\"Max\", \"Kuhn\", , \"max@posit.co\", role = c(\"aut\", \"cre\")),\nperson(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\nperson(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = \"aut\"),\nperson(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "A recipe prepares your data for modeling. We provide an\nextensible framework for pipeable sequences of feature engineering\nsteps provides preprocessing tools to be applied to data. Statistical\nparameters for the steps can be estimated from an initial data set and\nthen applied to other data sets. The resulting processed output can\nthen be used as inputs for statistical or machine learning models.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/tidymodels/recipes,\nhttps://recipes.tidymodels.org/", + "BugReports": "https://github.com/tidymodels/recipes/issues", + "Depends": "dplyr (>= 1.1.0), R (>= 3.6)", + "Imports": "cli, clock (>= 0.6.1), ellipsis, generics (>= 0.1.2), glue,\ngower, hardhat (>= 1.3.0), ipred (>= 0.9-12), lifecycle (>=\n1.0.3), lubridate (>= 1.8.0), magrittr, Matrix, purrr (>=\n1.0.0), rlang (>= 1.0.3), stats, tibble, tidyr (>= 1.0.0),\ntidyselect (>= 1.2.0), timeDate, utils, vctrs (>= 0.5.0), withr", + "Suggests": "covr, ddalpha, dials (>= 1.2.0), ggplot2, igraph, kernlab,\nknitr, modeldata (>= 0.1.1), parsnip (>= 0.1.7), RANN,\nRcppRoll, rmarkdown, rpart, rsample, RSpectra, splines2,\ntestthat (>= 3.0.0), workflows, xml2", + "VignetteBuilder": "knitr", + "RdMacros": "lifecycle", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-08-25 22:07:09 UTC; max", + "Author": "Max Kuhn [aut, cre],\nHadley Wickham [aut],\nEmil Hvitfeldt [aut],\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Max Kuhn ", + "Repository": "RSPM", + "Date/Publication": "2023-08-25 22:50:06 UTC", + "Built": "R 4.3.0; ; 2023-08-28 11:38:54 UTC; unix" + } + }, + "red": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "red", + "Title": "IUCN Redlisting Tools", + "Version": "1.6.1", + "Date": "2023-09-08", + "Author": "Pedro Cardoso [aut] (),\nVasco V. Branco [cre, aut] ()", + "Maintainer": "Vasco V. Branco ", + "Description": "Includes algorithms to facilitate the assessment of extinction risk of species according to the IUCN (International Union for Conservation of Nature, see for more information) red list criteria.", + "Depends": "R (>= 3.0.0)", + "Imports": "BAT, dismo, gdistance, geosphere, graphics, grDevices,\njsonlite, methods, sp, stats, utils, terra, predicts", + "Authors@R": "c(person(\"Pedro\", \"Cardoso\", role = c(\"aut\"),\nemail = \"pedro.cardoso@helsinki.fi\",\ncomment = c(ORCID = \"0000-0001-8119-9960\")),\nperson(\"Vasco V.\", \"Branco\", role = c(\"cre\",\"aut\"),\nemail = \"vasco.branco@helsinki.fi\",\ncomment = c(ORCID = \"0000-0001-7797-3183\")))", + "License": "GPL-3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-09-08 12:25:31 UTC; witch-king-of-angmar", + "Repository": "RSPM", + "Date/Publication": "2023-09-08 21:50:09 UTC", + "Built": "R 4.3.0; ; 2023-09-12 03:31:47 UTC; unix" + } + }, + "rematch2": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "rematch2", + "Title": "Tidy Output from Regular Expression Matching", + "Version": "2.1.2", + "Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", email = \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"Matthew\", \"Lincoln\", email = \"matthew.d.lincoln@gmail.com\", role = c(\"ctb\")))", + "Description": "Wrappers on 'regexpr' and 'gregexpr' to return the match\nresults in tidy data frames.", + "License": "MIT + file LICENSE", + "LazyData": "true", + "URL": "https://github.com/r-lib/rematch2#readme", + "BugReports": "https://github.com/r-lib/rematch2/issues", + "RoxygenNote": "7.1.0", + "Imports": "tibble", + "Suggests": "covr, testthat", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2020-04-30 10:31:13 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre],\nMatthew Lincoln [ctb]", + "Maintainer": "Gábor Csárdi ", + "Repository": "RSPM", + "Date/Publication": "2020-05-01 06:50:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:48:15 UTC; unix" + } + }, + "reshape2": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "reshape2", + "Title": "Flexibly Reshape Data: A Reboot of the Reshape Package", + "Version": "1.4.4", + "Author": "Hadley Wickham ", + "Maintainer": "Hadley Wickham ", + "Description": "Flexibly restructure and aggregate data using just two\nfunctions: melt and 'dcast' (or 'acast').", + "License": "MIT + file LICENSE", + "URL": "https://github.com/hadley/reshape", + "BugReports": "https://github.com/hadley/reshape/issues", + "Depends": "R (>= 3.1)", + "Imports": "plyr (>= 1.8.1), Rcpp, stringr", + "Suggests": "covr, lattice, testthat (>= 0.8.0)", + "LinkingTo": "Rcpp", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.1.0", + "NeedsCompilation": "yes", + "Packaged": "2020-04-09 12:27:19 UTC; hadley", + "Repository": "RSPM", + "Date/Publication": "2020-04-09 13:50:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 04:28:52 UTC; unix" + } + }, + "rgbif": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "rgbif", + "Title": "Interface to the Global Biodiversity Information Facility API", + "Description": "A programmatic interface to the Web Service methods\nprovided by the Global Biodiversity Information Facility (GBIF;\n). GBIF is a database\nof species occurrence records from sources all over the globe.\nrgbif includes functions for searching for taxonomic names,\nretrieving information on data providers, getting species occurrence\nrecords, getting counts of occurrence records, and using the GBIF\ntile map service to make rasters summarizing huge amounts of data.", + "Version": "3.7.8", + "License": "MIT + file LICENSE", + "Authors@R": "c(\nperson(\"Scott\", \"Chamberlain\", role = \"aut\", comment = c(ORCID=\"0000-0003-1444-9135\")),\nperson(\"Damiano\", \"Oldoni\", role = \"aut\", comment = c(ORCID = \"0000-0003-3445-7562\")),\nperson(\"Vijay\", \"Barve\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4852-2567\")),\nperson(\"Peter\", \"Desmet\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8442-8025\")),\nperson(\"Laurens\", \"Geffert\", role = \"ctb\"),\nperson(\"Dan\", \"Mcglinn\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2359-3526\")),\nperson(\"Karthik\", \"Ram\", role = \"ctb\", comment = c(ORCID = \"0000-0002-0233-1757\")),\nperson(given = \"rOpenSci\", role = \"fnd\", comment = \"https://ropensci.org/\"),\nperson(\"John\",\"Waller\", role = c(\"aut\", \"cre\"), email = \"jwaller@gbif.org\", comment = c(ORCID =\"0000-0002-7302-5976\"))\n)", + "URL": "https://github.com/ropensci/rgbif (devel),\nhttps://docs.ropensci.org/rgbif/ (documentation)", + "BugReports": "https://github.com/ropensci/rgbif/issues", + "LazyData": "true", + "LazyLoad": "true", + "Encoding": "UTF-8", + "Language": "en-US", + "Imports": "xml2, ggplot2, crul (>= 0.7.4), data.table, whisker, magrittr,\njsonlite (>= 1.6), oai (>= 0.2.2), tibble, lazyeval, R6, stats,\nwk", + "Suggests": "testthat, png, terra, magick, protolite (>= 2.0), sf, vcr (>=\n1.2.0), knitr, rmarkdown", + "RoxygenNote": "7.2.3", + "X-schema.org-applicationCategory": "Biodiversity", + "X-schema.org-keywords": "GBIF, specimens, API, web-services, occurrences,\nspecies, taxonomy", + "X-schema.org-isPartOf": "https://ropensci.org", + "NeedsCompilation": "no", + "Packaged": "2023-09-11 07:41:59 UTC; ftw712", + "Author": "Scott Chamberlain [aut] (),\nDamiano Oldoni [aut] (),\nVijay Barve [ctb] (),\nPeter Desmet [ctb] (),\nLaurens Geffert [ctb],\nDan Mcglinn [ctb] (),\nKarthik Ram [ctb] (),\nrOpenSci [fnd] (https://ropensci.org/),\nJohn Waller [aut, cre] ()", + "Maintainer": "John Waller ", + "Repository": "RSPM", + "Date/Publication": "2023-09-11 08:10:02 UTC", + "Built": "R 4.3.0; ; 2023-09-12 11:23:25 UTC; unix" + } + }, + "rgdal": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "rgdal", + "Title": "Bindings for the 'Geospatial' Data Abstraction Library", + "Version": "1.6-7", + "Date": "2023-05-31", + "Depends": "R (>= 3.5.0), methods, sp (>= 1.1-0)", + "Imports": "grDevices, graphics, stats, utils", + "LinkingTo": "sp", + "Suggests": "knitr, DBI, RSQLite, maptools, mapview, rmarkdown, curl,\nrgeos", + "NeedsCompilation": "yes", + "Description": "Provides bindings to the 'Geospatial' Data Abstraction Library ('GDAL') (>= 1.11.4) and access to projection/transformation operations from the 'PROJ' library. Please note that 'rgdal' will be retired during October 2023, plan transition to sf/stars/'terra' functions using 'GDAL' and 'PROJ' at your earliest convenience (see and earlier blogs for guidance). Use is made of classes defined in the 'sp' package. Raster and vector map data can be imported into R, and raster and vector 'sp' objects exported. The 'GDAL' and 'PROJ' libraries are external to the package, and, when installing the package from source, must be correctly installed first; it is important that 'GDAL' < 3 be matched with 'PROJ' < 6. From 'rgdal' 1.5-8, installed with to 'GDAL' >=3, 'PROJ' >=6 and 'sp' >= 1.4, coordinate reference systems use 'WKT2_2019' strings, not 'PROJ' strings. 'Windows' and 'macOS' binaries (including 'GDAL', 'PROJ' and their dependencies) are provided on 'CRAN'.", + "Authors@R": "c(\nperson(\"Roger\", \"Bivand\", role = c(\"cre\", \"aut\"), email = \"Roger.Bivand@nhh.no\", comment=c(ORCID=\"0000-0003-2392-6140\")),\nperson(\"Tim\", \"Keitt\", role = \"aut\"),\nperson(\"Barry\", \"Rowlingson\", role = c(\"aut\", \"ctb\")),\nperson(\"Edzer\", \"Pebesma\", role = \"ctb\"),\nperson(\"Michael\", \"Sumner\", role = \"ctb\"),\nperson(\"Robert\", \"Hijmans\", role = \"ctb\"),\nperson(\"Daniel\", \"Baston\", role = \"ctb\"),\nperson(\"Even\", \"Rouault\", role = c(\"cph\", \"ctb\")),\nperson(\"Frank\", \"Warmerdam\", role = c(\"cph\", \"ctb\")),\nperson(\"Jeroen\", \"Ooms\", role = \"ctb\"),\nperson(\"Colin\", \"Rundel\", role = \"ctb\"))", + "License": "GPL (>= 2)", + "URL": "http://rgdal.r-forge.r-project.org, https://gdal.org,\nhttps://proj.org, https://r-forge.r-project.org/projects/rgdal/", + "SystemRequirements": "PROJ (>= 4.8.0, https://proj.org/download.html) and\nGDAL (>= 1.11.4, https://gdal.org/download.html), with versions\neither (A) PROJ < 6 and GDAL < 3 or (B) PROJ >= 6 and GDAL >=\n3. For degraded PROJ 6 or 7 and GDAL < 3, use the configure\nargument '--with-proj_api=\"proj_api.h\"'.", + "VignetteBuilder": "knitr", + "Packaged": "2023-05-31 10:08:43 UTC; rsb", + "Author": "Roger Bivand [cre, aut] (),\nTim Keitt [aut],\nBarry Rowlingson [aut, ctb],\nEdzer Pebesma [ctb],\nMichael Sumner [ctb],\nRobert Hijmans [ctb],\nDaniel Baston [ctb],\nEven Rouault [cph, ctb],\nFrank Warmerdam [cph, ctb],\nJeroen Ooms [ctb],\nColin Rundel [ctb]", + "Maintainer": "Roger Bivand ", + "Repository": "RSPM", + "Date/Publication": "2023-05-31 22:30:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-06-23 11:35:59 UTC; unix" + } + }, + "rlang": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "rlang", + "Version": "1.1.1", + "Title": "Functions for Base Types and Core R and 'Tidyverse' Features", + "Description": "A toolbox for working with base types, core R features\nlike the condition system, and core 'Tidyverse' features like tidy\nevaluation.", + "Authors@R": "c(\nperson(\"Lionel\", \"Henry\", ,\"lionel@posit.co\", c(\"aut\", \"cre\")),\nperson(\"Hadley\", \"Wickham\", ,\"hadley@posit.co\", \"aut\"),\nperson(given = \"mikefc\",\nemail = \"mikefc@coolbutuseless.com\",\nrole = \"cph\",\ncomment = \"Hash implementation based on Mike's xxhashlite\"),\nperson(given = \"Yann\",\nfamily = \"Collet\",\nrole = \"cph\",\ncomment = \"Author of the embedded xxHash library\"),\nperson(given = \"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "License": "MIT + file LICENSE", + "ByteCompile": "true", + "Biarch": "true", + "Depends": "R (>= 3.5.0)", + "Imports": "utils", + "Suggests": "cli (>= 3.1.0), covr, crayon, fs, glue, knitr, magrittr,\nmethods, pillar, rmarkdown, stats, testthat (>= 3.0.0), tibble,\nusethis, vctrs (>= 0.2.3), withr", + "Enhances": "winch", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "URL": "https://rlang.r-lib.org, https://github.com/r-lib/rlang", + "BugReports": "https://github.com/r-lib/rlang/issues", + "Config/testthat/edition": "3", + "Config/Needs/website": "dplyr, tidyverse/tidytemplate", + "NeedsCompilation": "yes", + "Packaged": "2023-04-28 10:48:43 UTC; lionel", + "Author": "Lionel Henry [aut, cre],\nHadley Wickham [aut],\nmikefc [cph] (Hash implementation based on Mike's xxhashlite),\nYann Collet [cph] (Author of the embedded xxHash library),\nPosit, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "RSPM", + "Date/Publication": "2023-04-28 22:30:03 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-01 18:18:48 UTC; unix" + } + }, + "rmarkdown": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Type": "Package", + "Package": "rmarkdown", + "Title": "Dynamic Documents for R", + "Version": "2.25", + "Authors@R": "c(\nperson(\"JJ\", \"Allaire\", , \"jj@posit.co\", role = \"aut\"),\nperson(\"Yihui\", \"Xie\", , \"xie@yihui.name\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0645-5666\")),\nperson(\"Christophe\", \"Dervieux\", , \"cderv@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4474-2498\")),\nperson(\"Jonathan\", \"McPherson\", , \"jonathan@posit.co\", role = \"aut\"),\nperson(\"Javier\", \"Luraschi\", role = \"aut\"),\nperson(\"Kevin\", \"Ushey\", , \"kevin@posit.co\", role = \"aut\"),\nperson(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = \"aut\"),\nperson(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\nperson(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"),\nperson(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\"),\nperson(\"Richard\", \"Iannone\", , \"rich@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-3925-190X\")),\nperson(\"Andrew\", \"Dunning\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0464-5036\")),\nperson(\"Atsushi\", \"Yasumoto\", role = c(\"ctb\", \"cph\"), comment = c(ORCID = \"0000-0002-8335-495X\", cph = \"Number sections Lua filter\")),\nperson(\"Barret\", \"Schloerke\", role = \"ctb\"),\nperson(\"Carson\", \"Sievert\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(\"Devon\", \"Ryan\", , \"dpryan79@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8549-0971\")),\nperson(\"Frederik\", \"Aust\", , \"frederik.aust@uni-koeln.de\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4900-788X\")),\nperson(\"Jeff\", \"Allen\", , \"jeff@posit.co\", role = \"ctb\"),\nperson(\"JooYoung\", \"Seo\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4064-6012\")),\nperson(\"Malcolm\", \"Barrett\", role = \"ctb\"),\nperson(\"Rob\", \"Hyndman\", , \"Rob.Hyndman@monash.edu\", role = \"ctb\"),\nperson(\"Romain\", \"Lesur\", role = \"ctb\"),\nperson(\"Roy\", \"Storey\", role = \"ctb\"),\nperson(\"Ruben\", \"Arslan\", , \"ruben.arslan@uni-goettingen.de\", role = \"ctb\"),\nperson(\"Sergio\", \"Oller\", role = \"ctb\"),\nperson(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\nperson(, \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery UI library; authors listed in inst/rmd/h/jqueryui/AUTHORS.txt\"),\nperson(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"),\nperson(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"),\nperson(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"),\nperson(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"),\nperson(\"Alexander\", \"Farkas\", role = c(\"ctb\", \"cph\"), comment = \"html5shiv library\"),\nperson(\"Scott\", \"Jehl\", role = c(\"ctb\", \"cph\"), comment = \"Respond.js library\"),\nperson(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\"),\nperson(\"Greg\", \"Franko\", role = c(\"ctb\", \"cph\"), comment = \"tocify library\"),\nperson(\"John\", \"MacFarlane\", role = c(\"ctb\", \"cph\"), comment = \"Pandoc templates\"),\nperson(, \"Google, Inc.\", role = c(\"ctb\", \"cph\"), comment = \"ioslides library\"),\nperson(\"Dave\", \"Raggett\", role = \"ctb\", comment = \"slidy library\"),\nperson(, \"W3C\", role = \"cph\", comment = \"slidy library\"),\nperson(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"), comment = \"Font-Awesome\"),\nperson(\"Ben\", \"Sperry\", role = \"ctb\", comment = \"Ionicons\"),\nperson(, \"Drifty\", role = \"cph\", comment = \"Ionicons\"),\nperson(\"Aidan\", \"Lister\", role = c(\"ctb\", \"cph\"), comment = \"jQuery StickyTabs\"),\nperson(\"Benct Philip\", \"Jonsson\", role = c(\"ctb\", \"cph\"), comment = \"pagebreak Lua filter\"),\nperson(\"Albert\", \"Krewinkel\", role = c(\"ctb\", \"cph\"), comment = \"pagebreak Lua filter\")\n)", + "Maintainer": "Yihui Xie ", + "Description": "Convert R Markdown documents into a variety of formats.", + "License": "GPL-3", + "URL": "https://github.com/rstudio/rmarkdown,\nhttps://pkgs.rstudio.com/rmarkdown/", + "BugReports": "https://github.com/rstudio/rmarkdown/issues", + "Depends": "R (>= 3.0)", + "Imports": "bslib (>= 0.2.5.1), evaluate (>= 0.13), fontawesome (>=\n0.5.0), htmltools (>= 0.5.1), jquerylib, jsonlite, knitr (>=\n1.22), methods, stringr (>= 1.2.0), tinytex (>= 0.31), tools,\nutils, xfun (>= 0.36), yaml (>= 2.1.19)", + "Suggests": "digest, dygraphs, fs, rsconnect, downlit (>= 0.4.0), katex\n(>= 1.4.0), sass (>= 0.4.0), shiny (>= 1.6.0), testthat (>=\n3.0.3), tibble, vctrs, cleanrmd, withr (>= 2.4.2)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "rstudio/quillt, pkgdown", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "SystemRequirements": "pandoc (>= 1.14) - http://pandoc.org", + "NeedsCompilation": "no", + "Packaged": "2023-09-15 16:52:22 UTC; yihui", + "Author": "JJ Allaire [aut],\nYihui Xie [aut, cre] (),\nChristophe Dervieux [aut] (),\nJonathan McPherson [aut],\nJavier Luraschi [aut],\nKevin Ushey [aut],\nAron Atkins [aut],\nHadley Wickham [aut],\nJoe Cheng [aut],\nWinston Chang [aut],\nRichard Iannone [aut] (),\nAndrew Dunning [ctb] (),\nAtsushi Yasumoto [ctb, cph] (,\nNumber sections Lua filter),\nBarret Schloerke [ctb],\nCarson Sievert [ctb] (),\nDevon Ryan [ctb] (),\nFrederik Aust [ctb] (),\nJeff Allen [ctb],\nJooYoung Seo [ctb] (),\nMalcolm Barrett [ctb],\nRob Hyndman [ctb],\nRomain Lesur [ctb],\nRoy Storey [ctb],\nRuben Arslan [ctb],\nSergio Oller [ctb],\nPosit Software, PBC [cph, fnd],\njQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\ninst/rmd/h/jqueryui/AUTHORS.txt),\nMark Otto [ctb] (Bootstrap library),\nJacob Thornton [ctb] (Bootstrap library),\nBootstrap contributors [ctb] (Bootstrap library),\nTwitter, Inc [cph] (Bootstrap library),\nAlexander Farkas [ctb, cph] (html5shiv library),\nScott Jehl [ctb, cph] (Respond.js library),\nIvan Sagalaev [ctb, cph] (highlight.js library),\nGreg Franko [ctb, cph] (tocify library),\nJohn MacFarlane [ctb, cph] (Pandoc templates),\nGoogle, Inc. [ctb, cph] (ioslides library),\nDave Raggett [ctb] (slidy library),\nW3C [cph] (slidy library),\nDave Gandy [ctb, cph] (Font-Awesome),\nBen Sperry [ctb] (Ionicons),\nDrifty [cph] (Ionicons),\nAidan Lister [ctb, cph] (jQuery StickyTabs),\nBenct Philip Jonsson [ctb, cph] (pagebreak Lua filter),\nAlbert Krewinkel [ctb, cph] (pagebreak Lua filter)", + "Repository": "RSPM", + "Date/Publication": "2023-09-18 09:30:02 UTC", + "Built": "R 4.3.0; ; 2023-09-19 11:50:47 UTC; unix" + } + }, + "rpart": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "rpart", + "Priority": "recommended", + "Version": "4.1.19", + "Date": "2022-10-21", + "Authors@R": "c(person(\"Terry\", \"Therneau\", role = \"aut\",\nemail = \"therneau@mayo.edu\"),\nperson(\"Beth\", \"Atkinson\", role = c(\"aut\", \"cre\"),\nemail = \"atkinson@mayo.edu\"),\nperson(\"Brian\", \"Ripley\", role = \"trl\",\nemail = \"ripley@stats.ox.ac.uk\",\ncomment = \"producer of the initial R port, maintainer 1999-2017\"))", + "Description": "Recursive partitioning for classification,\nregression and survival trees. An implementation of most of the\nfunctionality of the 1984 book by Breiman, Friedman, Olshen and Stone.", + "Title": "Recursive Partitioning and Regression Trees", + "Depends": "R (>= 2.15.0), graphics, stats, grDevices", + "Suggests": "survival", + "License": "GPL-2 | GPL-3", + "LazyData": "yes", + "ByteCompile": "yes", + "NeedsCompilation": "yes", + "Author": "Terry Therneau [aut],\nBeth Atkinson [aut, cre],\nBrian Ripley [trl] (producer of the initial R port, maintainer\n1999-2017)", + "Maintainer": "Beth Atkinson ", + "Repository": "CRAN", + "URL": "https://github.com/bethatkinson/rpart,\nhttps://cran.r-project.org/package=rpart", + "BugReports": "https://github.com/bethatkinson/rpart/issues", + "Packaged": "2022-10-21 17:17:04 UTC; atkinson", + "Date/Publication": "2022-10-21 18:42:41 UTC", + "Built": "R 4.2.1; x86_64-pc-linux-gnu; 'Mon, 31 Oct 2022 00:51:24 +0000'; unix" + } + }, + "rprojroot": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "rprojroot", + "Title": "Finding Files in Project Subdirectories", + "Version": "2.0.3", + "Authors@R": "person(given = \"Kirill\",\nfamily = \"M\\u00fcller\",\nrole = c(\"aut\", \"cre\"),\nemail = \"krlmlr+r@mailbox.org\",\ncomment = c(ORCID = \"0000-0002-1416-3412\"))", + "Description": "Robust, reliable and flexible paths to files below\na project root. The 'root' of a project is defined as a directory that\nmatches a certain criterion, e.g., it contains a certain regular file.", + "License": "MIT + file LICENSE", + "URL": "https://rprojroot.r-lib.org/, https://github.com/r-lib/rprojroot", + "BugReports": "https://github.com/r-lib/rprojroot/issues", + "Depends": "R (>= 3.0.0)", + "Suggests": "covr, knitr, lifecycle, mockr, rmarkdown, testthat (>=\n3.0.0), withr", + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "NeedsCompilation": "no", + "Packaged": "2022-04-02 16:14:00 UTC; kirill", + "Author": "Kirill Müller [aut, cre] ()", + "Maintainer": "Kirill Müller ", + "Repository": "RSPM", + "Date/Publication": "2022-04-02 16:40:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 22:24:27 UTC; unix" + } + }, + "rvest": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "rvest", + "Title": "Easily Harvest (Scrape) Web Pages", + "Version": "1.0.3", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Wrappers around the 'xml2' and 'httr' packages to make it\neasy to download, then manipulate, HTML and XML.", + "License": "MIT + file LICENSE", + "URL": "https://rvest.tidyverse.org/, https://github.com/tidyverse/rvest", + "BugReports": "https://github.com/tidyverse/rvest/issues", + "Depends": "R (>= 3.2)", + "Imports": "glue, cli, httr (>= 0.5), lifecycle (>= 1.0.0), magrittr,\nrlang (>= 1.0.0), selectr, tibble, xml2 (>= 1.3), withr", + "Suggests": "covr, knitr, readr, repurrrsive, rmarkdown, spelling, stringi\n(>= 0.3.1), testthat (>= 3.0.2), webfakes", + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Packaged": "2022-08-19 15:20:38 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\nRStudio [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2022-08-19 22:30:08 UTC", + "Built": "R 4.3.0; ; 2023-05-05 10:00:47 UTC; unix" + } + }, + "s2": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "s2", + "Title": "Spherical Geometry Operators Using the S2 Geometry Library", + "Version": "1.1.4", + "Authors@R": "c(\nperson(given = \"Dewey\",\nfamily = \"Dunnington\",\nrole = c(\"aut\"),\nemail = \"dewey@fishandwhistle.net\",\ncomment = c(ORCID = \"0000-0002-9415-4582\")),\nperson(given = \"Edzer\",\nfamily = \"Pebesma\",\nrole = c(\"aut\", \"cre\"),\nemail = \"edzer.pebesma@uni-muenster.de\",\ncomment = c(ORCID = \"0000-0001-8049-7069\")),\nperson(\"Ege\", \"Rubak\", email=\"rubak@math.aau.dk\", role = c(\"aut\")),\nperson(\"Jeroen\", \"Ooms\", , \"jeroen.ooms@stat.ucla.edu\", role = \"ctb\", comment = \"configure script\"),\nperson(family = \"Google, Inc.\", role = \"cph\", comment = \"Original s2geometry.io source code\")\n)", + "Description": "Provides R bindings for Google's s2 library for geometric calculations on\nthe sphere. High-performance constructors and exporters provide high compatibility\nwith existing spatial packages, transformers construct new geometries from existing\ngeometries, predicates provide a means to select geometries based on spatial\nrelationships, and accessors extract information about geometries.", + "License": "Apache License (== 2.0)", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "SystemRequirements": "OpenSSL >= 1.0.1", + "LinkingTo": "Rcpp, wk", + "Imports": "Rcpp, wk (>= 0.6.0)", + "Suggests": "bit64, testthat (>= 3.0.0), vctrs", + "URL": "https://r-spatial.github.io/s2/, https://github.com/r-spatial/s2,\nhttps://s2geometry.io/", + "BugReports": "https://github.com/r-spatial/s2/issues", + "Depends": "R (>= 3.0.0)", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Packaged": "2023-05-16 15:01:01 UTC; edzer", + "Author": "Dewey Dunnington [aut] (),\nEdzer Pebesma [aut, cre] (),\nEge Rubak [aut],\nJeroen Ooms [ctb] (configure script),\nGoogle, Inc. [cph] (Original s2geometry.io source code)", + "Maintainer": "Edzer Pebesma ", + "Repository": "RSPM", + "Date/Publication": "2023-05-17 10:40:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-18 11:50:52 UTC; unix" + } + }, + "sass": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Type": "Package", + "Package": "sass", + "Version": "0.4.7", + "Title": "Syntactically Awesome Style Sheets ('Sass')", + "Description": "An 'SCSS' compiler, powered by the 'LibSass' library. With this,\nR developers can use variables, inheritance, and functions to generate\ndynamic style sheets. The package uses the 'Sass CSS' extension language,\nwhich is stable, powerful, and CSS compatible.", + "Authors@R": "c(\nperson(\"Joe\", \"Cheng\", , \"joe@rstudio.com\", \"aut\"),\nperson(\"Timothy\", \"Mastny\", , \"tim.mastny@gmail.com\", \"aut\"),\nperson(\"Richard\", \"Iannone\", , \"rich@rstudio.com\", \"aut\",\ncomment = c(ORCID = \"0000-0003-3925-190X\")),\nperson(\"Barret\", \"Schloerke\", , \"barret@rstudio.com\", \"aut\",\ncomment = c(ORCID = \"0000-0001-9986-114X\")),\nperson(\"Carson\", \"Sievert\", , \"carson@rstudio.com\", c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(\"Christophe\", \"Dervieux\", , \"cderv@rstudio.com\", c(\"ctb\"),\ncomment = c(ORCID = \"0000-0003-4474-2498\")),\nperson(family = \"RStudio\", role = c(\"cph\", \"fnd\")),\nperson(family = \"Sass Open Source Foundation\", role = c(\"ctb\", \"cph\"),\ncomment = \"LibSass library\"),\nperson(\"Greter\", \"Marcel\", role = c(\"ctb\", \"cph\"),\ncomment = \"LibSass library\"),\nperson(\"Mifsud\", \"Michael\", role = c(\"ctb\", \"cph\"),\ncomment = \"LibSass library\"),\nperson(\"Hampton\", \"Catlin\", role = c(\"ctb\", \"cph\"),\ncomment = \"LibSass library\"),\nperson(\"Natalie\", \"Weizenbaum\", role = c(\"ctb\", \"cph\"),\ncomment = \"LibSass library\"),\nperson(\"Chris\", \"Eppstein\", role = c(\"ctb\", \"cph\"),\ncomment = \"LibSass library\"),\nperson(\"Adams\", \"Joseph\", role = c(\"ctb\", \"cph\"),\ncomment = \"json.cpp\"),\nperson(\"Trifunovic\", \"Nemanja\", role = c(\"ctb\", \"cph\"),\ncomment = \"utf8.h\")\n)", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/sass/, https://github.com/rstudio/sass", + "BugReports": "https://github.com/rstudio/sass/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "SystemRequirements": "GNU make", + "Imports": "fs (>= 1.2.4), rlang (>= 0.4.10), htmltools (>= 0.5.1), R6,\nrappdirs", + "Suggests": "testthat, knitr, rmarkdown, withr, shiny, curl", + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Packaged": "2023-07-14 14:57:43 UTC; cpsievert", + "Author": "Joe Cheng [aut],\nTimothy Mastny [aut],\nRichard Iannone [aut] (),\nBarret Schloerke [aut] (),\nCarson Sievert [aut, cre] (),\nChristophe Dervieux [ctb] (),\nRStudio [cph, fnd],\nSass Open Source Foundation [ctb, cph] (LibSass library),\nGreter Marcel [ctb, cph] (LibSass library),\nMifsud Michael [ctb, cph] (LibSass library),\nHampton Catlin [ctb, cph] (LibSass library),\nNatalie Weizenbaum [ctb, cph] (LibSass library),\nChris Eppstein [ctb, cph] (LibSass library),\nAdams Joseph [ctb, cph] (json.cpp),\nTrifunovic Nemanja [ctb, cph] (utf8.h)", + "Maintainer": "Carson Sievert ", + "Repository": "RSPM", + "Date/Publication": "2023-07-15 06:20:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-17 11:19:55 UTC; unix" + } + }, + "scales": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "scales", + "Title": "Scale Functions for Visualization", + "Version": "1.2.1", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")),\nperson(\"Dana\", \"Seidel\", role = \"aut\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Graphical scales map data to aesthetics, and provide methods\nfor automatically determining breaks and labels for axes and legends.", + "License": "MIT + file LICENSE", + "URL": "https://scales.r-lib.org, https://github.com/r-lib/scales", + "BugReports": "https://github.com/r-lib/scales/issues", + "Depends": "R (>= 3.2)", + "Imports": "farver (>= 2.0.3), labeling, lifecycle, munsell (>= 0.5), R6,\nRColorBrewer, rlang (>= 1.0.0), viridisLite", + "Suggests": "bit64, covr, dichromat, ggplot2, hms (>= 0.5.0), stringi,\ntestthat (>= 3.0.0), waldo (>= 0.4.0)", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "LazyLoad": "yes", + "RoxygenNote": "7.2.1", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Packaged": "2022-08-19 15:35:49 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\nDana Seidel [aut],\nRStudio [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2022-08-20 00:10:11 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:55:24 UTC; unix" + } + }, + "selectr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "selectr", + "Type": "Package", + "Title": "Translate CSS Selectors to XPath Expressions", + "Version": "0.4-2", + "Date": "2019-11-20", + "Authors@R": "c(person(\"Simon\", \"Potter\",\nrole = c(\"aut\", \"trl\", \"cre\"),\nemail = \"simon@sjp.co.nz\"),\nperson(\"Simon\", \"Sapin\", role = \"aut\"),\nperson(\"Ian\", \"Bicking\", role = \"aut\"))", + "License": "BSD_3_clause + file LICENCE", + "Depends": "R (>= 3.0)", + "Imports": "methods, stringr, R6", + "Suggests": "testthat, XML, xml2", + "URL": "https://sjp.co.nz/projects/selectr", + "BugReports": "https://github.com/sjp/selectr/issues", + "Description": "Translates a CSS3 selector into an equivalent XPath\nexpression. This allows us to use CSS selectors when working with\nthe XML package as it can only evaluate XPath expressions. Also\nprovided are convenience functions useful for using CSS selectors on\nXML nodes. This package is a port of the Python package 'cssselect'\n().", + "NeedsCompilation": "no", + "Packaged": "2019-11-20 06:04:49 UTC; simon", + "Author": "Simon Potter [aut, trl, cre],\nSimon Sapin [aut],\nIan Bicking [aut]", + "Maintainer": "Simon Potter ", + "Repository": "RSPM", + "Date/Publication": "2019-11-20 07:30:03 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-05-05 10:00:40 UTC; unix" + } + }, + "sf": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "sf", + "Version": "1.0-14", + "Title": "Simple Features for R", + "Authors@R": "c(person(given = \"Edzer\",\nfamily = \"Pebesma\",\nrole = c(\"aut\", \"cre\"),\nemail = \"edzer.pebesma@uni-muenster.de\",\ncomment = c(ORCID = \"0000-0001-8049-7069\")),\nperson(given = \"Roger\",\nfamily = \"Bivand\",\nrole = \"ctb\",\ncomment = c(ORCID = \"0000-0003-2392-6140\")),\nperson(given = \"Etienne\",\nfamily = \"Racine\",\nrole = \"ctb\"),\nperson(given = \"Michael\",\nfamily = \"Sumner\",\nrole = \"ctb\"),\nperson(given = \"Ian\",\nfamily = \"Cook\",\nrole = \"ctb\"),\nperson(given = \"Tim\",\nfamily = \"Keitt\",\nrole = \"ctb\"),\nperson(given = \"Robin\",\nfamily = \"Lovelace\",\nrole = \"ctb\"),\nperson(given = \"Hadley\",\nfamily = \"Wickham\",\nrole = \"ctb\"),\nperson(given = \"Jeroen\",\nfamily = \"Ooms\",\nrole = \"ctb\",\ncomment = c(ORCID = \"0000-0002-4035-0289\")),\nperson(given = \"Kirill\",\nfamily = \"M\\u00fcller\",\nrole = \"ctb\"),\nperson(given = \"Thomas Lin\",\nfamily = \"Pedersen\",\nrole = \"ctb\"),\nperson(given = \"Dan\",\nfamily = \"Baston\",\nrole = \"ctb\"),\nperson(given = \"Dewey\",\nfamily = \"Dunnington\",\nrole = \"ctb\",\ncomment = c(ORCID = \"0000-0002-9415-4582\"))\n)", + "Description": "Support for simple features, a standardized way to\nencode spatial vector data. Binds to 'GDAL' for reading and writing\ndata, to 'GEOS' for geometrical operations, and to 'PROJ' for\nprojection conversions and datum transformations. Uses by default the 's2'\npackage for spherical geometry operations on ellipsoidal (long/lat) coordinates.", + "License": "GPL-2 | MIT + file LICENSE", + "URL": "https://r-spatial.github.io/sf/, https://github.com/r-spatial/sf/", + "BugReports": "https://github.com/r-spatial/sf/issues/", + "Depends": "methods, R (>= 3.3.0)", + "Imports": "classInt (>= 0.4-1), DBI (>= 0.8), graphics, grDevices, grid,\nmagrittr, Rcpp (>= 0.12.18), s2 (>= 1.1.0), stats, tools, units\n(>= 0.7-0), utils", + "Suggests": "blob, covr, dplyr (>= 0.8-3), ggplot2, knitr, lwgeom (>=\n0.2-1), maps, mapview, Matrix, microbenchmark, odbc, pbapply,\npillar, pool, raster, rlang, rmarkdown, RPostgres (>= 1.1.0),\nRPostgreSQL, RSQLite, sp (>= 1.2-4), spatstat (>= 2.0-1),\nspatstat.geom, spatstat.random, spatstat.linnet,\nspatstat.utils, stars (>= 0.2-0), terra, testthat (>= 3.0.0),\ntibble (>= 1.4.1), tidyr (>= 1.2.0), tidyselect (>= 1.0.0),\ntmap (>= 2.0), vctrs, wk", + "LinkingTo": "Rcpp", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "Config/testhat/edition": "3", + "SystemRequirements": "GDAL (>= 2.0.1), GEOS (>= 3.4.0), PROJ (>= 4.8.0),\nsqlite3", + "Collate": "'RcppExports.R' 'init.R' 'crs.R' 'bbox.R' 'read.R' 'db.R'\n'sfc.R' 'sfg.R' 'sf.R' 'bind.R' 'wkb.R' 'wkt.R' 'plot.R'\n'geom-measures.R' 'geom-predicates.R' 'geom-transformers.R'\n'transform.R' 'proj.R' 'sp.R' 'grid.R' 'arith.R' 'tidyverse.R'\n'tidyverse-vctrs.R' 'cast_sfg.R' 'cast_sfc.R' 'graticule.R'\n'datasets.R' 'aggregate.R' 'agr.R' 'maps.R' 'join.R' 'sample.R'\n'valid.R' 'collection_extract.R' 'jitter.R' 'sgbp.R'\n'spatstat.R' 'stars.R' 'crop.R' 'gdal_utils.R' 'nearest.R'\n'normalize.R' 'defunct.R' 'z_range.R' 'm_range.R'\n'shift_longitude.R' 'make_grid.R' 's2.R' 'terra.R'\n'geos-overlayng.R' 'break_antimeridian.R'", + "NeedsCompilation": "yes", + "Packaged": "2023-07-10 10:57:27 UTC; edzer", + "Author": "Edzer Pebesma [aut, cre] (),\nRoger Bivand [ctb] (),\nEtienne Racine [ctb],\nMichael Sumner [ctb],\nIan Cook [ctb],\nTim Keitt [ctb],\nRobin Lovelace [ctb],\nHadley Wickham [ctb],\nJeroen Ooms [ctb] (),\nKirill Müller [ctb],\nThomas Lin Pedersen [ctb],\nDan Baston [ctb],\nDewey Dunnington [ctb] ()", + "Maintainer": "Edzer Pebesma ", + "Repository": "RSPM", + "Date/Publication": "2023-07-11 08:40:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-12 11:10:48 UTC; unix" + } + }, + "sfheaders": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "sfheaders", + "Type": "Package", + "Title": "Converts Between R Objects and Simple Feature Objects", + "Date": "2023-06-22", + "Version": "0.4.3", + "Authors@R": "c(\nperson(\"David\", \"Cooley\", ,\"david.cooley.au@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(given = \"Michael\", family = \"Sumner\", role = \"ctb\")\n)", + "Description": "Converts between R and Simple Feature 'sf' objects, without depending\non the Simple Feature library. Conversion functions are available at both the R level,\nand through 'Rcpp'.", + "License": "MIT + file LICENSE", + "URL": "https://dcooley.github.io/sfheaders/", + "BugReports": "https://github.com/dcooley/sfheaders/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "Depends": "R (>= 3.0.2)", + "LinkingTo": "geometries (>= 0.2.2), Rcpp", + "Imports": "Rcpp (>= 1.0.10)", + "Suggests": "covr, knitr, testthat", + "NeedsCompilation": "yes", + "Packaged": "2023-06-22 09:44:16 UTC; david", + "Author": "David Cooley [aut, cre],\nMichael Sumner [ctb]", + "Maintainer": "David Cooley ", + "Repository": "RSPM", + "Date/Publication": "2023-06-22 13:52:37 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 04:16:22 UTC; unix" + } + }, + "shape": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "shape", + "Version": "1.4.6", + "Title": "Functions for Plotting Graphical Shapes, Colors", + "Author": "Karline Soetaert ", + "Maintainer": "Karline Soetaert ", + "Depends": "R (>= 2.01)", + "Imports": "stats, graphics, grDevices", + "Description": "Functions for plotting graphical shapes\nsuch as ellipses, circles, cylinders, arrows, ...", + "License": "GPL (>= 3)", + "NeedsCompilation": "no", + "Packaged": "2021-05-19 06:02:02 UTC; karlines", + "Repository": "RSPM", + "Date/Publication": "2021-05-19 07:20:03 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:20:16 UTC; unix" + } + }, + "shiny": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "shiny", + "Type": "Package", + "Title": "Web Application Framework for R", + "Version": "1.7.5", + "Authors@R": "c(\nperson(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\", comment = c(ORCID = \"0000-0002-1576-2126\")),\nperson(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"),\nperson(\"JJ\", \"Allaire\", role = \"aut\", email = \"jj@posit.co\"),\nperson(\"Carson\", \"Sievert\", role = \"aut\", email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(\"Barret\", \"Schloerke\", role = \"aut\", email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")),\nperson(\"Yihui\", \"Xie\", role = \"aut\", email = \"yihui@posit.co\"),\nperson(\"Jeff\", \"Allen\", role = \"aut\"),\nperson(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"jonathan@posit.co\"),\nperson(\"Alan\", \"Dipert\", role = \"aut\"),\nperson(\"Barbara\", \"Borges\", role = \"aut\"),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\nperson(family = \"jQuery Foundation\", role = \"cph\",\ncomment = \"jQuery library and jQuery UI library\"),\nperson(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\ncomment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\nperson(family = \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"),\ncomment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt\"),\nperson(\"Mark\", \"Otto\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(\"Jacob\", \"Thornton\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(family = \"Bootstrap contributors\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(family = \"Twitter, Inc\", role = \"cph\",\ncomment = \"Bootstrap library\"),\nperson(\"Prem Nawaz\", \"Khan\", role = \"ctb\",\ncomment = \"Bootstrap accessibility plugin\"),\nperson(\"Victor\", \"Tsaran\", role = \"ctb\",\ncomment = \"Bootstrap accessibility plugin\"),\nperson(\"Dennis\", \"Lembree\", role = \"ctb\",\ncomment = \"Bootstrap accessibility plugin\"),\nperson(\"Srinivasu\", \"Chakravarthula\", role = \"ctb\",\ncomment = \"Bootstrap accessibility plugin\"),\nperson(\"Cathy\", \"O'Connor\", role = \"ctb\",\ncomment = \"Bootstrap accessibility plugin\"),\nperson(family = \"PayPal, Inc\", role = \"cph\",\ncomment = \"Bootstrap accessibility plugin\"),\nperson(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"),\ncomment = \"Bootstrap-datepicker library\"),\nperson(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"),\ncomment = \"Bootstrap-datepicker library\"),\nperson(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\ncomment = \"selectize.js library\"),\nperson(\"Salmen\", \"Bejaoui\", role = c(\"ctb\", \"cph\"),\ncomment = \"selectize-plugin-a11y library\"),\nperson(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\ncomment = \"ion.rangeSlider library\"),\nperson(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\ncomment = \"Javascript strftime library\"),\nperson(family = \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"),\ncomment = \"DataTables library\"),\nperson(\"John\", \"Fraser\", role = c(\"ctb\", \"cph\"),\ncomment = \"showdown.js library\"),\nperson(\"John\", \"Gruber\", role = c(\"ctb\", \"cph\"),\ncomment = \"showdown.js library\"),\nperson(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"),\ncomment = \"highlight.js library\"),\nperson(family = \"R Core Team\", role = c(\"ctb\", \"cph\"),\ncomment = \"tar implementation from R\")\n)", + "Description": "Makes it incredibly easy to build interactive web\napplications with R. Automatic \"reactive\" binding between inputs and\noutputs and extensive prebuilt widgets make it possible to build\nbeautiful, responsive, and powerful applications with minimal effort.", + "License": "GPL-3 | file LICENSE", + "Depends": "R (>= 3.0.2), methods", + "Imports": "utils, grDevices, httpuv (>= 1.5.2), mime (>= 0.3), jsonlite\n(>= 0.9.16), xtable, fontawesome (>= 0.4.0), htmltools (>=\n0.5.4), R6 (>= 2.0), sourcetools, later (>= 1.0.0), promises\n(>= 1.1.0), tools, crayon, rlang (>= 0.4.10), fastmap (>=\n1.1.1), withr, commonmark (>= 1.7), glue (>= 1.3.2), bslib (>=\n0.3.0), cachem, ellipsis, lifecycle (>= 0.2.0)", + "Suggests": "datasets, Cairo (>= 1.5-5), testthat (>= 3.0.0), knitr (>=\n1.6), markdown, rmarkdown, ggplot2, reactlog (>= 1.0.0),\nmagrittr, yaml, future, dygraphs, ragg, showtext, sass", + "URL": "https://shiny.posit.co/, https://github.com/rstudio/shiny", + "BugReports": "https://github.com/rstudio/shiny/issues", + "Collate": "'globals.R' 'app-state.R' 'app_template.R' 'bind-cache.R'\n'bind-event.R' 'bookmark-state-local.R' 'bookmark-state.R'\n'bootstrap-deprecated.R' 'bootstrap-layout.R' 'conditions.R'\n'map.R' 'utils.R' 'bootstrap.R' 'cache-utils.R' 'deprecated.R'\n'devmode.R' 'diagnose.R' 'fileupload.R' 'graph.R' 'reactives.R'\n'reactive-domains.R' 'history.R' 'hooks.R' 'html-deps.R'\n'image-interact-opts.R' 'image-interact.R' 'imageutils.R'\n'input-action.R' 'input-checkbox.R' 'input-checkboxgroup.R'\n'input-date.R' 'input-daterange.R' 'input-file.R'\n'input-numeric.R' 'input-password.R' 'input-radiobuttons.R'\n'input-select.R' 'input-slider.R' 'input-submit.R'\n'input-text.R' 'input-textarea.R' 'input-utils.R'\n'insert-tab.R' 'insert-ui.R' 'jqueryui.R' 'knitr.R'\n'middleware-shiny.R' 'middleware.R' 'timer.R' 'shiny.R'\n'mock-session.R' 'modal.R' 'modules.R' 'notifications.R'\n'priorityqueue.R' 'progress.R' 'react.R' 'reexports.R'\n'render-cached-plot.R' 'render-plot.R' 'render-table.R'\n'run-url.R' 'runapp.R' 'serializers.R'\n'server-input-handlers.R' 'server-resource-paths.R' 'server.R'\n'shiny-options.R' 'shiny-package.R' 'shinyapp.R' 'shinyui.R'\n'shinywrappers.R' 'showcase.R' 'snapshot.R' 'staticimports.R'\n'tar.R' 'test-export.R' 'test-server.R' 'test.R'\n'update-input.R' 'utils-lang.R' 'version_bs_date_picker.R'\n'version_ion_range_slider.R' 'version_jquery.R'\n'version_jqueryui.R' 'version_selectize.R' 'version_strftime.R'\n'viewer.R'", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "RdMacros": "lifecycle", + "Config/testthat/edition": "3", + "Config/Needs/check": "shinytest2", + "NeedsCompilation": "no", + "Packaged": "2023-08-11 15:54:00 UTC; cpsievert", + "Author": "Winston Chang [aut, cre] (),\nJoe Cheng [aut],\nJJ Allaire [aut],\nCarson Sievert [aut] (),\nBarret Schloerke [aut] (),\nYihui Xie [aut],\nJeff Allen [aut],\nJonathan McPherson [aut],\nAlan Dipert [aut],\nBarbara Borges [aut],\nPosit Software, PBC [cph, fnd],\njQuery Foundation [cph] (jQuery library and jQuery UI library),\njQuery contributors [ctb, cph] (jQuery library; authors listed in\ninst/www/shared/jquery-AUTHORS.txt),\njQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\ninst/www/shared/jqueryui/AUTHORS.txt),\nMark Otto [ctb] (Bootstrap library),\nJacob Thornton [ctb] (Bootstrap library),\nBootstrap contributors [ctb] (Bootstrap library),\nTwitter, Inc [cph] (Bootstrap library),\nPrem Nawaz Khan [ctb] (Bootstrap accessibility plugin),\nVictor Tsaran [ctb] (Bootstrap accessibility plugin),\nDennis Lembree [ctb] (Bootstrap accessibility plugin),\nSrinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin),\nCathy O'Connor [ctb] (Bootstrap accessibility plugin),\nPayPal, Inc [cph] (Bootstrap accessibility plugin),\nStefan Petre [ctb, cph] (Bootstrap-datepicker library),\nAndrew Rowls [ctb, cph] (Bootstrap-datepicker library),\nBrian Reavis [ctb, cph] (selectize.js library),\nSalmen Bejaoui [ctb, cph] (selectize-plugin-a11y library),\nDenis Ineshin [ctb, cph] (ion.rangeSlider library),\nSami Samhuri [ctb, cph] (Javascript strftime library),\nSpryMedia Limited [ctb, cph] (DataTables library),\nJohn Fraser [ctb, cph] (showdown.js library),\nJohn Gruber [ctb, cph] (showdown.js library),\nIvan Sagalaev [ctb, cph] (highlight.js library),\nR Core Team [ctb, cph] (tar implementation from R)", + "Maintainer": "Winston Chang ", + "Repository": "RSPM", + "Date/Publication": "2023-08-12 17:00:02 UTC", + "Built": "R 4.3.0; ; 2023-08-14 11:22:10 UTC; unix" + } + }, + "shinyWidgets": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "shinyWidgets", + "Title": "Custom Inputs Widgets for Shiny", + "Version": "0.8.0", + "Authors@R": "c(\nperson(\"Victor\", \"Perrier\", email = \"victor.perrier@dreamrs.fr\", role = c(\"aut\", \"cre\", \"cph\")),\nperson(\"Fanny\", \"Meyer\", role = \"aut\"),\nperson(\"David\", \"Granjon\", role = \"aut\"),\nperson(\"Ian\", \"Fellows\", role = \"ctb\", comment = \"Methods for mutating vertical tabs & updateMultiInput\"),\nperson(\"Wil\", \"Davis\", role = \"ctb\", comment = \"numericRangeInput function\"),\nperson(\"Spencer\", \"Matthews\", role = \"ctb\", comment = \"autoNumeric methods\"),\nperson(family = \"JavaScript and CSS libraries authors\", role = c(\"ctb\", \"cph\"), comment = \"All authors are listed in LICENSE.md\")\n)", + "Description": "Collection of custom input controls and user interface components for 'Shiny' applications.\nGive your applications a unique and colorful style !", + "URL": "https://github.com/dreamRs/shinyWidgets,\nhttps://dreamrs.github.io/shinyWidgets/", + "BugReports": "https://github.com/dreamRs/shinyWidgets/issues", + "License": "GPL-3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "Depends": "R (>= 3.1.0)", + "Imports": "anytime, bslib, sass, shiny (>= 1.6.0), htmltools (>= 0.5.1),\njsonlite, grDevices, rlang", + "Suggests": "testthat, covr, ggplot2, DT, scales, shinydashboard,\nshinydashboardPlus", + "NeedsCompilation": "no", + "Packaged": "2023-08-30 14:04:56 UTC; victorp", + "Author": "Victor Perrier [aut, cre, cph],\nFanny Meyer [aut],\nDavid Granjon [aut],\nIan Fellows [ctb] (Methods for mutating vertical tabs &\nupdateMultiInput),\nWil Davis [ctb] (numericRangeInput function),\nSpencer Matthews [ctb] (autoNumeric methods),\nJavaScript and CSS libraries authors [ctb, cph] (All authors are listed\nin LICENSE.md)", + "Maintainer": "Victor Perrier ", + "Repository": "RSPM", + "Date/Publication": "2023-08-30 15:00:02 UTC", + "Built": "R 4.3.0; ; 2023-08-31 11:21:53 UTC; unix" + } + }, + "shinycssloaders": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "shinycssloaders", + "Type": "Package", + "Title": "Add Loading Animations to a 'shiny' Output While It's\nRecalculating", + "Version": "1.0.0", + "Authors@R": "c(\nperson(\"Andras\",\"Sali\",email=\"andras.sali@alphacruncher.hu\",role=c(\"aut\"),comment=\"Original creator of shinycssloaders package\"),\nperson(\"Luke\",\"Hass\",role=c(\"ctb\",\"cph\"),comment=\"Author of included CSS loader code\"),\nperson(\"Dean\",\"Attali\",email=\"daattali@gmail.com\",role=c(\"aut\",\"cre\"),comment=\"Maintainer of shinycssloaders since 2019\")\n)", + "Description": "When a 'Shiny' output (such as a plot, table, map, etc.) is recalculating, it remains\nvisible but gets greyed out. Using 'shinycssloaders', you can add a loading animation (\"spinner\")\nto outputs instead. By wrapping a 'Shiny' output in 'withSpinner()', a spinner will automatically\nappear while the output is recalculating. See the demo online at\n.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/daattali/shinycssloaders", + "BugReports": "https://github.com/daattali/shinycssloaders/issues", + "Depends": "R (>= 3.1)", + "Imports": "digest, glue, grDevices, shiny", + "Suggests": "shinydisconnect, shinyjs", + "RoxygenNote": "7.1.0", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2020-07-28 15:50:54 UTC; D", + "Author": "Andras Sali [aut] (Original creator of shinycssloaders package),\nLuke Hass [ctb, cph] (Author of included CSS loader code),\nDean Attali [aut, cre] (Maintainer of shinycssloaders since 2019)", + "Maintainer": "Dean Attali ", + "Repository": "RSPM", + "Date/Publication": "2020-07-28 16:20:03 UTC", + "Built": "R 4.3.0; ; 2023-04-21 23:14:02 UTC; unix" + } + }, + "shinyjs": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "shinyjs", + "Title": "Easily Improve the User Experience of Your Shiny Apps in Seconds", + "Version": "2.1.0", + "Authors@R": "person(\"Dean\", \"Attali\",\nemail = \"daattali@gmail.com\",\nrole = c(\"aut\", \"cre\"),\ncomment= c(ORCID=\"0000-0002-5645-3493\"))", + "Description": "Perform common useful JavaScript operations in Shiny apps that will\ngreatly improve your apps without having to know any JavaScript. Examples\ninclude: hiding an element, disabling an input, resetting an input back to\nits original value, delaying code execution by a few seconds, and many more\nuseful functions for both the end user and the developer. 'shinyjs' can also\nbe used to easily call your own custom JavaScript functions from R.", + "URL": "https://deanattali.com/shinyjs/", + "BugReports": "https://github.com/daattali/shinyjs/issues", + "Depends": "R (>= 3.1.0)", + "Imports": "digest (>= 0.6.8), jsonlite, shiny (>= 1.0.0)", + "Suggests": "htmltools (>= 0.2.9), knitr (>= 1.7), rmarkdown, shinyAce,\nshinydisconnect, testthat (>= 0.9.1)", + "License": "MIT + file LICENSE", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.1.1", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2021-12-21 11:32:22 UTC; Dean-X1C", + "Author": "Dean Attali [aut, cre] ()", + "Maintainer": "Dean Attali ", + "Repository": "RSPM", + "Date/Publication": "2021-12-23 10:10:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 22:20:41 UTC; unix" + } + }, + "shinythemes": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "shinythemes", + "Title": "Themes for Shiny", + "Version": "1.2.0", + "Authors@R": "c(\nperson(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@rstudio.com\"),\nperson(family = \"RStudio\", role = \"cph\"),\nperson(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"), comment = \"Bootswatch themes\"),\nperson(\"Lukasz\", \"Dziedzic\", role = c(\"ctb\", \"cph\"), comment = \"Lato font\"),\nperson(\"Nathan\", \"Willis\", role = c(\"ctb\", \"cph\"), comment = \"News Cycle font\"),\nperson(family = \"Google Corporation\", role = c(\"ctb\", \"cph\"), comment = \"Open Sans and Roboto fonts\"),\nperson(\"Matt\", \"McInerney\", role = c(\"ctb\", \"cph\"), comment = \"Raleway font\"),\nperson(family = \"Adobe Systems Incorporated\", role = c(\"ctb\", \"cph\"), comment = \"Source Sans Pro font\"),\nperson(family = \"Canonical Ltd\", role = c(\"ctb\", \"cph\"), comment = \"Ubuntu font\")\n)", + "Description": "Themes for use with Shiny. Includes several Bootstrap themes\nfrom , which are packaged for use with Shiny\napplications.", + "Depends": "R (>= 3.0.0)", + "Imports": "shiny (>= 0.11)", + "URL": "https://rstudio.github.io/shinythemes/", + "License": "GPL-3 | file LICENSE", + "RoxygenNote": "7.1.1", + "NeedsCompilation": "no", + "Packaged": "2021-01-25 21:27:09 UTC; winston", + "Author": "Winston Chang [aut, cre],\nRStudio [cph],\nThomas Park [ctb, cph] (Bootswatch themes),\nLukasz Dziedzic [ctb, cph] (Lato font),\nNathan Willis [ctb, cph] (News Cycle font),\nGoogle Corporation [ctb, cph] (Open Sans and Roboto fonts),\nMatt McInerney [ctb, cph] (Raleway font),\nAdobe Systems Incorporated [ctb, cph] (Source Sans Pro font),\nCanonical Ltd [ctb, cph] (Ubuntu font)", + "Maintainer": "Winston Chang ", + "Repository": "RSPM", + "Date/Publication": "2021-01-25 22:00:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:21:57 UTC; unix" + } + }, + "sourcetools": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "sourcetools", + "Type": "Package", + "Title": "Tools for Reading, Tokenizing and Parsing R Code", + "Version": "0.1.7-1", + "Author": "Kevin Ushey", + "Maintainer": "Kevin Ushey ", + "Description": "Tools for the reading and tokenization of R code. The\n'sourcetools' package provides both an R and C++ interface for the tokenization\nof R code, and helpers for interacting with the tokenized representation of R\ncode.", + "License": "MIT + file LICENSE", + "Depends": "R (>= 3.0.2)", + "Suggests": "testthat", + "RoxygenNote": "5.0.1", + "BugReports": "https://github.com/kevinushey/sourcetools/issues", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2023-01-31 18:03:04 UTC; kevin", + "Repository": "RSPM", + "Date/Publication": "2023-02-01 10:10:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:44:53 UTC; unix" + } + }, + "sp": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "sp", + "Version": "2.1-0", + "Title": "Classes and Methods for Spatial Data", + "Authors@R": "c(person(\"Edzer\", \"Pebesma\", role = c(\"aut\", \"cre\"),\nemail = \"edzer.pebesma@uni-muenster.de\"),\nperson(\"Roger\", \"Bivand\", role = \"aut\",\nemail = \"Roger.Bivand@nhh.no\"),\nperson(\"Barry\", \"Rowlingson\", role = \"ctb\"),\nperson(\"Virgilio\", \"Gomez-Rubio\", role = \"ctb\"),\nperson(\"Robert\", \"Hijmans\", role = \"ctb\"),\nperson(\"Michael\", \"Sumner\", role = \"ctb\"),\nperson(\"Don\", \"MacQueen\", role = \"ctb\"),\nperson(\"Jim\", \"Lemon\", role = \"ctb\"),\nperson(\"Finn\", \"Lindgren\", role = \"ctb\"),\nperson(\"Josh\", \"O'Brien\", role = \"ctb\"),\nperson(\"Joseph\", \"O'Rourke\", role = \"ctb\"))", + "Depends": "R (>= 3.5.0), methods", + "Imports": "utils, stats, graphics, grDevices, lattice, grid", + "Suggests": "RColorBrewer, gstat, deldir, knitr, rmarkdown, sf, terra,\nraster", + "Description": "Classes and methods for spatial\ndata; the classes document where the spatial location information\nresides, for 2D or 3D data. Utility functions are provided, e.g. for\nplotting data as maps, spatial selection, as well as methods for\nretrieving coordinates, for subsetting, print, summary, etc. From this\nversion, 'rgdal', 'maptools', and 'rgeos' are no longer used at all,\nsee for details.", + "License": "GPL (>= 2)", + "URL": "https://github.com/edzer/sp/ https://edzer.github.io/sp/", + "BugReports": "https://github.com/edzer/sp/issues", + "Collate": "bpy.colors.R AAA.R Class-CRS.R CRS-methods.R Class-Spatial.R\nSpatial-methods.R projected.R Class-SpatialPoints.R\nSpatialPoints-methods.R Class-SpatialPointsDataFrame.R\nSpatialPointsDataFrame-methods.R Class-SpatialMultiPoints.R\nSpatialMultiPoints-methods.R\nClass-SpatialMultiPointsDataFrame.R\nSpatialMultiPointsDataFrame-methods.R Class-GridTopology.R\nClass-SpatialGrid.R Class-SpatialGridDataFrame.R\nClass-SpatialLines.R SpatialLines-methods.R\nClass-SpatialLinesDataFrame.R SpatialLinesDataFrame-methods.R\nClass-SpatialPolygons.R Class-SpatialPolygonsDataFrame.R\nSpatialPolygons-methods.R SpatialPolygonsDataFrame-methods.R\nGridTopology-methods.R SpatialGrid-methods.R\nSpatialGridDataFrame-methods.R SpatialPolygons-internals.R\npoint.in.polygon.R SpatialPolygons-displayMethods.R zerodist.R\nimage.R stack.R bubble.R mapasp.R select.spatial.R gridded.R\nasciigrid.R spplot.R over.R spsample.R recenter.R dms.R\ngridlines.R spdists.R rbind.R flipSGDF.R chfids.R loadmeuse.R\ncompassRose.R surfaceArea.R spOptions.R subset.R disaggregate.R\nsp_spat1.R merge.R aggregate.R elide.R", + "VignetteBuilder": "knitr", + "NeedsCompilation": "yes", + "Packaged": "2023-10-01 18:58:41 UTC; edzer", + "Author": "Edzer Pebesma [aut, cre],\nRoger Bivand [aut],\nBarry Rowlingson [ctb],\nVirgilio Gomez-Rubio [ctb],\nRobert Hijmans [ctb],\nMichael Sumner [ctb],\nDon MacQueen [ctb],\nJim Lemon [ctb],\nFinn Lindgren [ctb],\nJosh O'Brien [ctb],\nJoseph O'Rourke [ctb]", + "Maintainer": "Edzer Pebesma ", + "Repository": "RSPM", + "Date/Publication": "2023-10-02 06:50:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-10-03 11:18:30 UTC; unix" + } + }, + "stringi": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "stringi", + "Version": "1.7.12", + "Date": "2023-01-09", + "Title": "Fast and Portable Character String Processing Facilities", + "Description": "A collection of character string/text/natural language\nprocessing tools for pattern searching (e.g., with 'Java'-like regular\nexpressions or the 'Unicode' collation algorithm), random string generation,\ncase mapping, string transliteration, concatenation, sorting, padding,\nwrapping, Unicode normalisation, date-time formatting and parsing,\nand many more. They are fast, consistent, convenient, and -\nthanks to 'ICU' (International Components for Unicode) -\nportable across all locales and platforms. Documentation about 'stringi' is\nprovided via its website at and\nthe paper by Gagolewski (2022, ).", + "URL": "https://stringi.gagolewski.com/,\nhttps://github.com/gagolews/stringi, https://icu.unicode.org/", + "BugReports": "https://github.com/gagolews/stringi/issues", + "SystemRequirements": "C++11, ICU4C (>= 55, optional)", + "Type": "Package", + "Depends": "R (>= 3.1)", + "Imports": "tools, utils, stats", + "Biarch": "TRUE", + "License": "file LICENSE", + "Author": "Marek Gagolewski [aut, cre, cph] (),\nBartek Tartanus [ctb], and others (stringi source code);\nUnicode, Inc. and others (ICU4C source code, Unicode Character Database)", + "Maintainer": "Marek Gagolewski ", + "RoxygenNote": "7.2.1", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2023-01-09 07:28:38 UTC; gagolews", + "License_is_FOSS": "yes", + "Repository": "RSPM", + "Date/Publication": "2023-01-11 10:10:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:47:27 UTC; unix" + } + }, + "stringr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "stringr", + "Title": "Simple, Consistent Wrappers for Common String Operations", + "Version": "1.5.0", + "Authors@R": "c(person(given = \"Hadley\",\nfamily = \"Wickham\",\nrole = c(\"aut\", \"cre\", \"cph\"),\nemail = \"hadley@rstudio.com\"),\nperson(given = \"RStudio\",\nrole = c(\"cph\", \"fnd\")))", + "Description": "A consistent, simple and easy to use set of wrappers around\nthe fantastic 'stringi' package. All function and argument names (and\npositions) are consistent, all functions deal with \"NA\"'s and zero\nlength vectors in the same way, and the output from one function is\neasy to feed into the input of another.", + "License": "MIT + file LICENSE", + "URL": "https://stringr.tidyverse.org,\nhttps://github.com/tidyverse/stringr", + "BugReports": "https://github.com/tidyverse/stringr/issues", + "Depends": "R (>= 3.3)", + "Imports": "cli, glue (>= 1.6.1), lifecycle (>= 1.0.3), magrittr, rlang\n(>= 1.0.0), stringi (>= 1.5.3), vctrs", + "Suggests": "covr, htmltools, htmlwidgets, knitr, rmarkdown, testthat (>=\n3.0.0)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Packaged": "2022-12-01 20:53:42 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre, cph],\nRStudio [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2022-12-02 10:20:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:48:57 UTC; unix" + } + }, + "survival": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Title": "Survival Analysis", + "Priority": "recommended", + "Package": "survival", + "Version": "3.5-5", + "Date": "2023-03-11", + "Depends": "R (>= 3.5.0)", + "Imports": "graphics, Matrix, methods, splines, stats, utils", + "LazyData": "Yes", + "LazyDataCompression": "xz", + "ByteCompile": "Yes", + "Authors@R": "c(person(c(\"Terry\", \"M\"), \"Therneau\",\nemail=\"therneau.terry@mayo.edu\",\nrole=c(\"aut\", \"cre\")),\nperson(\"Thomas\", \"Lumley\", role=c(\"ctb\", \"trl\"),\ncomment=\"original S->R port and R maintainer until 2009\"),\nperson(\"Atkinson\", \"Elizabeth\", role=\"ctb\"),\nperson(\"Crowson\", \"Cynthia\", role=\"ctb\"))", + "Description": "Contains the core survival analysis routines, including\ndefinition of Surv objects,\nKaplan-Meier and Aalen-Johansen (multi-state) curves, Cox models,\nand parametric accelerated failure time models.", + "License": "LGPL (>= 2)", + "URL": "https://github.com/therneau/survival", + "NeedsCompilation": "yes", + "Packaged": "2023-03-11 22:45:07 UTC; therneau", + "Author": "Terry M Therneau [aut, cre],\nThomas Lumley [ctb, trl] (original S->R port and R maintainer until\n2009),\nAtkinson Elizabeth [ctb],\nCrowson Cynthia [ctb]", + "Maintainer": "Terry M Therneau ", + "Repository": "CRAN", + "Date/Publication": "2023-03-12 10:20:03 UTC", + "Built": "R 4.3.1; x86_64-pc-linux-gnu; 'Thu, 29 Jun 2023 02:23:04 +0000'; unix" + } + }, + "sys": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "sys", + "Type": "Package", + "Title": "Powerful and Reliable Tools for Running System Commands in R", + "Version": "3.4.2", + "Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"),\nemail = \"jeroen@berkeley.edu\", comment = c(ORCID = \"0000-0002-4035-0289\")),\nperson(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"ctb\"))", + "Description": "Drop-in replacements for the base system2() function with fine control\nand consistent behavior across platforms. Supports clean interruption, timeout,\nbackground tasks, and streaming STDIN / STDOUT / STDERR over binary or text\nconnections. Arguments on Windows automatically get encoded and quoted to work\non different locales.", + "License": "MIT + file LICENSE", + "URL": "https://jeroen.r-universe.dev/sys", + "BugReports": "https://github.com/jeroen/sys/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.1", + "Suggests": "unix (>= 1.4), spelling, testthat", + "Language": "en-US", + "NeedsCompilation": "yes", + "Packaged": "2023-05-22 21:45:03 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (),\nGábor Csárdi [ctb]", + "Maintainer": "Jeroen Ooms ", + "Repository": "RSPM", + "Date/Publication": "2023-05-23 07:50:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-24 12:19:24 UTC; unix" + } + }, + "terra": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "terra", + "Type": "Package", + "Title": "Spatial Data Analysis", + "Version": "1.7-46", + "Date": "2023-09-04", + "Depends": "R (>= 3.5.0)", + "Suggests": "parallel, tinytest, ncdf4, sf (>= 0.9-8), deldir, XML,\nleaflet, htmlwidgets", + "LinkingTo": "Rcpp", + "Imports": "methods, Rcpp (>= 1.0-10)", + "SystemRequirements": "C++17, GDAL (>= 2.2.3), GEOS (>= 3.4.0), PROJ (>=\n4.9.3), sqlite3", + "Encoding": "UTF-8", + "Language": "en-US", + "Maintainer": "Robert J. Hijmans ", + "Description": "Methods for spatial data analysis with vector (points, lines, polygons) and raster (grid) data. Methods for vector data include geometric operations such as intersect and buffer. Raster methods include local, focal, global, zonal and geometric operations. The predict and interpolate methods facilitate the use of regression type (interpolation, machine learning) models for spatial prediction, including with satellite remote sensing data. Processing of very large files is supported. See the manual and tutorials on to get started. 'terra' replaces the 'raster' package ('terra' can do more, and it is faster and easier to use).", + "License": "GPL (>= 3)", + "URL": "https://rspatial.org/", + "BugReports": "https://github.com/rspatial/terra/issues/", + "LazyLoad": "yes", + "Authors@R": "c(\nperson(\"Robert J.\", \"Hijmans\", role = c(\"cre\", \"aut\"),\nemail = \"r.hijmans@gmail.com\", comment = c(ORCID = \"0000-0001-5872-2872\")),\nperson(\"Roger\", \"Bivand\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2392-6140\")),\nperson(\"Edzer\", \"Pebesma\", role = \"ctb\", comment = c(ORCID = \"0000-0001-8049-7069\")),\nperson(\"Michael D.\", \"Sumner\", role = \"ctb\"))", + "NeedsCompilation": "yes", + "Packaged": "2023-09-04 20:35:10 UTC; rhijm", + "Author": "Robert J. Hijmans [cre, aut] (),\nRoger Bivand [ctb] (),\nEdzer Pebesma [ctb] (),\nMichael D. Sumner [ctb]", + "Repository": "RSPM", + "Date/Publication": "2023-09-06 09:10:07 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-07 11:34:36 UTC; unix" + } + }, + "testthat": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "testthat", + "Title": "Unit Testing for R", + "Version": "3.2.0", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\nperson(\"R Core team\", role = \"ctb\",\ncomment = \"Implementation of utils::recover()\")\n)", + "Description": "Software testing is important, but, in part because it is\nfrustrating and boring, many of us avoid it. 'testthat' is a testing\nframework for R that is easy to learn and use, and integrates with\nyour existing 'workflow'.", + "License": "MIT + file LICENSE", + "URL": "https://testthat.r-lib.org, https://github.com/r-lib/testthat", + "BugReports": "https://github.com/r-lib/testthat/issues", + "Depends": "R (>= 3.6.0)", + "Imports": "brio (>= 1.1.3), callr (>= 3.7.3), cli (>= 3.6.1), desc (>=\n1.4.2), digest (>= 0.6.33), ellipsis (>= 0.3.2), evaluate (>=\n0.21), jsonlite (>= 1.8.7), lifecycle (>= 1.0.3), magrittr (>=\n2.0.3), methods, pkgload (>= 1.3.2.1), praise (>= 1.0.0),\nprocessx (>= 3.8.2), ps (>= 1.7.5), R6 (>= 2.5.1), rlang (>=\n1.1.1), utils, waldo (>= 0.5.1), withr (>= 2.5.0)", + "Suggests": "covr, curl (>= 0.9.5), diffviewer (>= 0.1.0), knitr,\nrmarkdown, rstudioapi, shiny, usethis, vctrs (>= 0.1.0), xml2", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "watcher, parallel*", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-10-04 02:27:32 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\nPosit Software, PBC [cph, fnd],\nR Core team [ctb] (Implementation of utils::recover())", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2023-10-06 15:40:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-10-09 11:51:24 UTC; unix" + } + }, + "tibble": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "tibble", + "Title": "Simple Data Frames", + "Version": "3.2.1", + "Authors@R": "c(person(given = \"Kirill\",\nfamily = \"M\\u00fcller\",\nrole = c(\"aut\", \"cre\"),\nemail = \"kirill@cynkra.com\",\ncomment = c(ORCID = \"0000-0002-1416-3412\")),\nperson(given = \"Hadley\",\nfamily = \"Wickham\",\nrole = \"aut\",\nemail = \"hadley@rstudio.com\"),\nperson(given = \"Romain\",\nfamily = \"Francois\",\nrole = \"ctb\",\nemail = \"romain@r-enthusiasts.com\"),\nperson(given = \"Jennifer\",\nfamily = \"Bryan\",\nrole = \"ctb\",\nemail = \"jenny@rstudio.com\"),\nperson(given = \"RStudio\",\nrole = c(\"cph\", \"fnd\")))", + "Description": "Provides a 'tbl_df' class (the 'tibble') with stricter checking and better formatting than the traditional\ndata frame.", + "License": "MIT + file LICENSE", + "URL": "https://tibble.tidyverse.org/, https://github.com/tidyverse/tibble", + "BugReports": "https://github.com/tidyverse/tibble/issues", + "Depends": "R (>= 3.4.0)", + "Imports": "fansi (>= 0.4.0), lifecycle (>= 1.0.0), magrittr, methods,\npillar (>= 1.8.1), pkgconfig, rlang (>= 1.0.2), utils, vctrs\n(>= 0.4.2)", + "Suggests": "bench, bit64, blob, brio, callr, cli, covr, crayon (>=\n1.3.4), DiagrammeR, dplyr, evaluate, formattable, ggplot2,\nhere, hms, htmltools, knitr, lubridate, mockr, nycflights13,\npkgbuild, pkgload, purrr, rmarkdown, stringi, testthat (>=\n3.0.2), tidyr, withr", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "vignette-formats, as_tibble, add,\ninvariants", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "true", + "Config/autostyle/rmd": "false", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "yes", + "Packaged": "2023-03-19 09:23:10 UTC; kirill", + "Author": "Kirill Müller [aut, cre] (),\nHadley Wickham [aut],\nRomain Francois [ctb],\nJennifer Bryan [ctb],\nRStudio [cph, fnd]", + "Maintainer": "Kirill Müller ", + "Repository": "RSPM", + "Date/Publication": "2023-03-20 06:30:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:47:59 UTC; unix" + } + }, + "tidyr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "tidyr", + "Title": "Tidy Messy Data", + "Version": "1.3.0", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\nperson(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"),\nperson(\"Maximilian\", \"Girlich\", role = \"aut\"),\nperson(\"Kevin\", \"Ushey\", , \"kevin@posit.co\", role = \"ctb\"),\nperson(\"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Tools to help to create tidy data, where each column is a\nvariable, each row is an observation, and each cell contains a single\nvalue. 'tidyr' contains tools for changing the shape (pivoting) and\nhierarchy (nesting and 'unnesting') of a dataset, turning deeply\nnested lists into rectangular data frames ('rectangling'), and\nextracting values out of string columns. It also includes tools for\nworking with missing values (both implicit and explicit).", + "License": "MIT + file LICENSE", + "URL": "https://tidyr.tidyverse.org, https://github.com/tidyverse/tidyr", + "BugReports": "https://github.com/tidyverse/tidyr/issues", + "Depends": "R (>= 3.4.0)", + "Imports": "cli (>= 3.4.1), dplyr (>= 1.0.10), glue, lifecycle (>= 1.0.3),\nmagrittr, purrr (>= 1.0.1), rlang (>= 1.0.4), stringr (>=\n1.5.0), tibble (>= 2.1.1), tidyselect (>= 1.2.0), utils, vctrs\n(>= 0.5.2)", + "Suggests": "covr, data.table, knitr, readr, repurrrsive (>= 1.1.0),\nrmarkdown, testthat (>= 3.0.0)", + "LinkingTo": "cpp11 (>= 0.4.0)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "SystemRequirements": "C++11", + "NeedsCompilation": "yes", + "Packaged": "2023-01-23 22:21:00 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\nDavis Vaughan [aut],\nMaximilian Girlich [aut],\nKevin Ushey [ctb],\nPosit, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2023-01-24 16:00:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:53:29 UTC; unix" + } + }, + "tidyselect": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "tidyselect", + "Title": "Select from a Set of Strings", + "Version": "1.2.0", + "Authors@R": "c(\nperson(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = c(\"aut\", \"cre\")),\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"aut\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "A backend for the selecting functions of the 'tidyverse'. It\nmakes it easy to implement select-like functions in your own packages\nin a way that is consistent with other 'tidyverse' interfaces for\nselection.", + "License": "MIT + file LICENSE", + "URL": "https://tidyselect.r-lib.org, https://github.com/r-lib/tidyselect", + "BugReports": "https://github.com/r-lib/tidyselect/issues", + "Depends": "R (>= 3.4)", + "Imports": "cli (>= 3.3.0), glue (>= 1.3.0), lifecycle (>= 1.0.3), rlang\n(>= 1.0.4), vctrs (>= 0.4.1), withr", + "Suggests": "covr, crayon, dplyr, knitr, magrittr, rmarkdown, stringr,\ntestthat (>= 3.1.1), tibble (>= 2.1.3)", + "VignetteBuilder": "knitr", + "ByteCompile": "true", + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Packaged": "2022-10-10 14:09:03 UTC; hadleywickham", + "Author": "Lionel Henry [aut, cre],\nHadley Wickham [aut],\nRStudio [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "RSPM", + "Date/Publication": "2022-10-10 19:00:02 UTC", + "Built": "R 4.3.0; ; 2023-04-21 21:47:59 UTC; unix" + } + }, + "timeDate": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "timeDate", + "Title": "Rmetrics - Chronological and Calendar Objects", + "Version": "4022.108", + "Authors@R": "c(person(\"Diethelm\", \"Wuertz\", role=\"aut\", comment = \"original code\")\n, person(\"Tobias\", \"Setz\", role = c(\"aut\"), email = \"tobias.setz@live.com\")\n, person(\"Yohan\", \"Chalabi\", role = \"aut\")\n, person(\"Martin\",\"Maechler\", role = \"ctb\", email = \"maechler@stat.math.ethz.ch\", comment = c(ORCID = \"0000-0002-8685-9910\"))\n, person(given = c(\"Joe\", \"W.\"), family = \"Byers\", role = \"ctb\")\n, person(given = c(\"Georgi\", \"N.\"), family = \"Boshnakov\",\nrole = c(\"cre\", \"aut\"), email = \"georgi.boshnakov@manchester.ac.uk\") )", + "Description": "The 'timeDate' class fulfils the conventions of the ISO 8601\nstandard as well as of the ANSI C and POSIX standards. Beyond\nthese standards it provides the \"Financial Center\" concept\nwhich allows to handle data records collected in different time\nzones and mix them up to have always the proper time stamps with\nrespect to your personal financial center, or alternatively to the GMT\nreference time. It can thus also handle time stamps from historical\ndata records from the same time zone, even if the financial\ncenters changed day light saving times at different calendar\ndates.", + "Depends": "R (>= 3.6.0)", + "Imports": "graphics, utils, stats, methods", + "Suggests": "RUnit", + "License": "GPL (>= 2)", + "URL": "https://geobosh.github.io/timeDateDoc/ (doc),\nhttps://r-forge.r-project.org/scm/viewvc.php/pkg/timeDate/?root=rmetrics\n(devel), https://www.rmetrics.org", + "BugReports": "https://r-forge.r-project.org/projects/rmetrics", + "NeedsCompilation": "no", + "Packaged": "2023-01-07 11:04:07 UTC; georgi", + "Author": "Diethelm Wuertz [aut] (original code),\nTobias Setz [aut],\nYohan Chalabi [aut],\nMartin Maechler [ctb] (),\nJoe W. Byers [ctb],\nGeorgi N. Boshnakov [cre, aut]", + "Maintainer": "Georgi N. Boshnakov ", + "Repository": "RSPM", + "Date/Publication": "2023-01-07 14:10:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 22:20:56 UTC; unix" + } + }, + "timechange": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "timechange", + "Title": "Efficient Manipulation of Date-Times", + "Version": "0.2.0", + "Authors@R": "c(person(\"Vitalie\", \"Spinu\", email = \"spinuvit@gmail.com\", role = c(\"aut\", \"cre\")),\nperson(\"Google Inc.\", role = c(\"ctb\", \"cph\")))", + "Description": "Efficient routines for manipulation of date-time objects while\naccounting for time-zones and daylight saving times. The package includes\nutilities for updating of date-time components (year, month, day etc.),\nmodification of time-zones, rounding of date-times, period addition and\nsubtraction etc. Parts of the 'CCTZ' source code, released under the Apache\n2.0 License, are included in this package. See\n for more details.", + "Depends": "R (>= 3.3)", + "License": "GPL-3", + "Encoding": "UTF-8", + "LinkingTo": "cpp11 (>= 0.2.7)", + "Suggests": "testthat (>= 0.7.1.99), knitr", + "SystemRequirements": "A system with zoneinfo data (e.g.\n/usr/share/zoneinfo) as well as a recent-enough C++11 compiler\n(such as g++-4.8 or later). On Windows the zoneinfo included\nwith R is used.", + "BugReports": "https://github.com/vspinu/timechange/issues", + "URL": "https://github.com/vspinu/timechange/", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "yes", + "Packaged": "2023-01-11 17:55:58 UTC; vspinu", + "Author": "Vitalie Spinu [aut, cre],\nGoogle Inc. [ctb, cph]", + "Maintainer": "Vitalie Spinu ", + "Repository": "RSPM", + "Date/Publication": "2023-01-11 18:20:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:50 UTC; unix" + } + }, + "tinytex": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "tinytex", + "Type": "Package", + "Title": "Helper Functions to Install and Maintain TeX Live, and Compile\nLaTeX Documents", + "Version": "0.47", + "Authors@R": "c(\nperson(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\nperson(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\nperson(\"Christophe\", \"Dervieux\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4474-2498\")),\nperson(\"Devon\", \"Ryan\", role = \"ctb\", email = \"dpryan79@gmail.com\", comment = c(ORCID = \"0000-0002-8549-0971\")),\nperson(\"Ethan\", \"Heinzen\", role = \"ctb\"),\nperson(\"Fernando\", \"Cagua\", role = \"ctb\"),\nperson()\n)", + "Description": "Helper functions to install and maintain the 'LaTeX' distribution\nnamed 'TinyTeX' (), a lightweight, cross-platform,\nportable, and easy-to-maintain version of 'TeX Live'. This package also\ncontains helper functions to compile 'LaTeX' documents, and install missing\n'LaTeX' packages automatically.", + "Imports": "xfun (>= 0.29)", + "Suggests": "testit, rstudioapi", + "License": "MIT + file LICENSE", + "URL": "https://github.com/rstudio/tinytex", + "BugReports": "https://github.com/rstudio/tinytex/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-09-29 14:55:57 UTC; yihui", + "Author": "Yihui Xie [aut, cre, cph] (),\nPosit Software, PBC [cph, fnd],\nChristophe Dervieux [ctb] (),\nDevon Ryan [ctb] (),\nEthan Heinzen [ctb],\nFernando Cagua [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "RSPM", + "Date/Publication": "2023-09-29 16:00:02 UTC", + "Built": "R 4.3.0; ; 2023-10-02 11:42:52 UTC; unix" + } + }, + "triebeard": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "triebeard", + "Type": "Package", + "Title": "'Radix' Trees in 'Rcpp'", + "Version": "0.4.1", + "Author": "Os Keyes [aut, cre], Drew Schmidt [aut], Yuuki Takano [cph]", + "Maintainer": "Os Keyes ", + "Description": "'Radix trees', or 'tries', are key-value data structures optimised for efficient lookups, similar in purpose\nto hash tables. 'triebeard' provides an implementation of 'radix trees' for use in R programming and in\ndeveloping packages with 'Rcpp'.", + "License": "MIT + file LICENSE", + "LinkingTo": "Rcpp", + "Encoding": "UTF-8", + "Imports": "Rcpp", + "RoxygenNote": "7.1.2", + "Suggests": "knitr, rmarkdown, testthat", + "VignetteBuilder": "knitr", + "URL": "https://github.com/Ironholds/triebeard/", + "BugReports": "https://github.com/Ironholds/triebeard/issues", + "Date": "2023-03-04", + "NeedsCompilation": "yes", + "Packaged": "2023-03-04 21:40:31 UTC; ironholds", + "Repository": "RSPM", + "Date/Publication": "2023-03-04 23:30:07 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:16:45 UTC; unix" + } + }, + "tzdb": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "tzdb", + "Title": "Time Zone Database Information", + "Version": "0.4.0", + "Authors@R": "c(\nperson(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\nperson(\"Howard\", \"Hinnant\", role = \"cph\",\ncomment = \"Author of the included date library\"),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Provides an up-to-date copy of the Internet Assigned Numbers\nAuthority (IANA) Time Zone Database. It is updated periodically to\nreflect changes made by political bodies to time zone boundaries, UTC\noffsets, and daylight saving time rules. Additionally, this package\nprovides a C++ interface for working with the 'date' library. 'date'\nprovides comprehensive support for working with dates and date-times,\nwhich this package exposes to make it easier for other R packages to\nutilize. Headers are provided for calendar specific calculations,\nalong with a limited interface for time zone manipulations.", + "License": "MIT + file LICENSE", + "URL": "https://tzdb.r-lib.org, https://github.com/r-lib/tzdb", + "BugReports": "https://github.com/r-lib/tzdb/issues", + "Depends": "R (>= 3.5.0)", + "Suggests": "covr, testthat (>= 3.0.0)", + "LinkingTo": "cpp11 (>= 0.4.2)", + "Biarch": "yes", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-05-12 12:40:06 UTC; davis", + "Author": "Davis Vaughan [aut, cre],\nHoward Hinnant [cph] (Author of the included date library),\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "RSPM", + "Date/Publication": "2023-05-12 23:00:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-21 11:13:54 UTC; unix" + } + }, + "units": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "units", + "Version": "0.8-4", + "Title": "Measurement Units for R Vectors", + "Authors@R": "c(person(\"Edzer\", \"Pebesma\", role = c(\"aut\", \"cre\"), email = \"edzer.pebesma@uni-muenster.de\", comment = c(ORCID = \"0000-0001-8049-7069\")),\nperson(\"Thomas\", \"Mailund\", role = \"aut\", email = \"mailund@birc.au.dk\"),\nperson(\"Tomasz\", \"Kalinowski\", role = \"aut\"),\nperson(\"James\", \"Hiebert\", role = \"ctb\"),\nperson(\"Iñaki\", \"Ucar\", role = \"aut\", email = \"iucar@fedoraproject.org\", comment = c(ORCID = \"0000-0001-6403-5550\")),\nperson(\"Thomas Lin\", \"Pedersen\", role = \"ctb\")\n)", + "Depends": "R (>= 3.0.2)", + "Imports": "Rcpp", + "LinkingTo": "Rcpp (>= 0.12.10)", + "Suggests": "NISTunits, measurements, xml2, magrittr, pillar (>= 1.3.0),\ndplyr (>= 1.0.0), vctrs (>= 0.3.1), ggplot2 (> 3.2.1), testthat\n(>= 3.0.0), vdiffr, knitr, rmarkdown", + "VignetteBuilder": "knitr", + "Description": "Support for measurement units in R vectors, matrices\nand arrays: automatic propagation, conversion, derivation\nand simplification of units; raising errors in case of unit\nincompatibility. Compatible with the POSIXct, Date and difftime\nclasses. Uses the UNIDATA udunits library and unit database for\nunit compatibility checking and conversion.\nDocumentation about 'units' is provided in the paper by Pebesma, Mailund &\nHiebert (2016, ), included in this package as a\nvignette; see 'citation(\"units\")' for details.", + "SystemRequirements": "udunits-2", + "License": "GPL-2", + "URL": "https://r-quantities.github.io/units/,\nhttps://github.com/r-quantities/units", + "BugReports": "https://github.com/r-quantities/units/issues", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Packaged": "2023-09-12 18:26:45 UTC; edzer", + "Author": "Edzer Pebesma [aut, cre] (),\nThomas Mailund [aut],\nTomasz Kalinowski [aut],\nJames Hiebert [ctb],\nIñaki Ucar [aut] (),\nThomas Lin Pedersen [ctb]", + "Maintainer": "Edzer Pebesma ", + "Repository": "RSPM", + "Date/Publication": "2023-09-13 17:10:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-09-14 11:32:42 UTC; unix" + } + }, + "urltools": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "urltools", + "Type": "Package", + "Title": "Vectorised Tools for URL Handling and Parsing", + "Version": "1.7.3", + "Date": "2019-04-14", + "Author": "Os Keyes [aut, cre], Jay Jacobs [aut, cre], Drew Schmidt [aut],\nMark Greenaway [ctb], Bob Rudis [ctb], Alex Pinto [ctb], Maryam Khezrzadeh [ctb], Peter Meilstrup [ctb],\nAdam M. Costello [cph], Jeff Bezanson [cph], Peter Meilstrup [ctb], Xueyuan Jiang [ctb]", + "Maintainer": "Os Keyes ", + "Description": "A toolkit for all URL-handling needs, including encoding and decoding,\nparsing, parameter extraction and modification. All functions are\ndesigned to be both fast and entirely vectorised. It is intended to be\nuseful for people dealing with web-related datasets, such as server-side\nlogs, although may be useful for other situations involving large sets of\nURLs.", + "License": "MIT + file LICENSE", + "LazyData": "TRUE", + "LinkingTo": "Rcpp", + "Imports": "Rcpp, methods, triebeard", + "Suggests": "testthat, knitr", + "URL": "https://github.com/Ironholds/urltools/", + "BugReports": "https://github.com/Ironholds/urltools/issues", + "VignetteBuilder": "knitr", + "RoxygenNote": "6.1.1", + "Encoding": "UTF-8", + "Depends": "R (>= 2.10)", + "NeedsCompilation": "yes", + "Packaged": "2019-04-14 22:25:08 UTC; ironholds", + "Repository": "RSPM", + "Date/Publication": "2019-04-14 23:02:47 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:21:37 UTC; unix" + } + }, + "utf8": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "utf8", + "Title": "Unicode Text Processing", + "Version": "1.2.3", + "Authors@R": "c(person(given = c(\"Patrick\", \"O.\"),\nfamily = \"Perry\",\nrole = c(\"aut\", \"cph\")),\nperson(given = \"Kirill\",\nfamily = \"M\\u00fcller\",\nrole = \"cre\",\nemail = \"kirill@cynkra.com\"),\nperson(given = \"Unicode, Inc.\",\nrole = c(\"cph\", \"dtc\"),\ncomment = \"Unicode Character Database\"))", + "Description": "Process and print 'UTF-8' encoded international\ntext (Unicode). Input, validate, normalize, encode, format, and\ndisplay.", + "License": "Apache License (== 2.0) | file LICENSE", + "URL": "https://ptrckprry.com/r-utf8/, https://github.com/patperry/r-utf8", + "BugReports": "https://github.com/patperry/r-utf8/issues", + "Depends": "R (>= 2.10)", + "Suggests": "cli, covr, knitr, rlang, rmarkdown, testthat (>= 3.0.0),\nwithr", + "VignetteBuilder": "knitr, rmarkdown", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-01-31 05:28:43 UTC; kirill", + "Author": "Patrick O. Perry [aut, cph],\nKirill Müller [cre],\nUnicode, Inc. [cph, dtc] (Unicode Character Database)", + "Maintainer": "Kirill Müller ", + "Repository": "RSPM", + "Date/Publication": "2023-01-31 18:00:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:33 UTC; unix" + } + }, + "vctrs": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "vctrs", + "Title": "Vector Helpers", + "Version": "0.6.3", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\nperson(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"),\nperson(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\nperson(\"data.table team\", role = \"cph\",\ncomment = \"Radix sort based on data.table's forder() and their contribution to R's order()\"),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Defines new notions of prototype and size that are used to\nprovide tools for consistent and well-founded type-coercion and\nsize-recycling, and are in turn connected to ideas of type- and\nsize-stability useful for analysing function interfaces.", + "License": "MIT + file LICENSE", + "URL": "https://vctrs.r-lib.org/, https://github.com/r-lib/vctrs", + "BugReports": "https://github.com/r-lib/vctrs/issues", + "Depends": "R (>= 3.5.0)", + "Imports": "cli (>= 3.4.0), glue, lifecycle (>= 1.0.3), rlang (>= 1.1.0)", + "Suggests": "bit64, covr, crayon, dplyr (>= 0.8.5), generics, knitr,\npillar (>= 1.4.4), pkgdown (>= 2.0.1), rmarkdown, testthat (>=\n3.0.0), tibble (>= 3.1.3), waldo (>= 0.2.0), withr, xml2,\nzeallot", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-GB", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-06-14 21:04:57 UTC; davis", + "Author": "Hadley Wickham [aut],\nLionel Henry [aut],\nDavis Vaughan [aut, cre],\ndata.table team [cph] (Radix sort based on data.table's forder() and\ntheir contribution to R's order()),\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "RSPM", + "Date/Publication": "2023-06-14 23:40:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-06-16 15:28:59 UTC; unix" + } + }, + "vegan": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "vegan", + "Title": "Community Ecology Package", + "Version": "2.6-4", + "Authors@R": "c(person(\"Jari\", \"Oksanen\", role=c(\"aut\",\"cre\"),\nemail=\"jhoksane@gmail.com\"),\nperson(\"Gavin L.\", \"Simpson\", role=\"aut\",\nemail=\"ucfagls@gmail.com\"),\nperson(\"F. Guillaume\", \"Blanchet\", role=\"aut\"),\nperson(\"Roeland\", \"Kindt\", role=\"aut\"),\nperson(\"Pierre\", \"Legendre\", role=\"aut\"),\nperson(\"Peter R.\", \"Minchin\", role=\"aut\"),\nperson(\"R.B.\", \"O'Hara\", role=\"aut\"),\nperson(\"Peter\", \"Solymos\", role=\"aut\"),\nperson(\"M. Henry H.\", \"Stevens\", role=\"aut\"),\nperson(\"Eduard\", \"Szoecs\", role=\"aut\"),\nperson(\"Helene\", \"Wagner\", role=\"aut\"),\nperson(\"Matt\", \"Barbour\", role=\"aut\"),\nperson(\"Michael\", \"Bedward\", role=\"aut\"),\nperson(\"Ben\", \"Bolker\", role=\"aut\"),\nperson(\"Daniel\", \"Borcard\", role=\"aut\"),\nperson(\"Gustavo\", \"Carvalho\", role=\"aut\"),\nperson(\"Michael\", \"Chirico\", role=\"aut\"),\nperson(\"Miquel\", \"De Caceres\", role=\"aut\"),\nperson(\"Sebastien\", \"Durand\", role=\"aut\"),\nperson(\"Heloisa Beatriz Antoniazi\", \"Evangelista\", role=\"aut\"),\nperson(\"Rich\", \"FitzJohn\", role=\"aut\"),\nperson(\"Michael\", \"Friendly\", role=\"aut\"),\nperson(\"Brendan\",\"Furneaux\", role=\"aut\"),\nperson(\"Geoffrey\", \"Hannigan\", role=\"aut\"),\nperson(\"Mark O.\", \"Hill\", role=\"aut\"),\nperson(\"Leo\", \"Lahti\", role=\"aut\"),\nperson(\"Dan\", \"McGlinn\", role=\"aut\"),\nperson(\"Marie-Helene\", \"Ouellette\", role=\"aut\"),\nperson(\"Eduardo\", \"Ribeiro Cunha\", role=\"aut\"),\nperson(\"Tyler\", \"Smith\", role=\"aut\"),\nperson(\"Adrian\", \"Stier\", role=\"aut\"),\nperson(\"Cajo J.F.\", \"Ter Braak\", role=\"aut\"),\nperson(\"James\", \"Weedon\", role=\"aut\"))", + "Depends": "permute (>= 0.9-0), lattice, R (>= 3.4.0)", + "Suggests": "parallel, tcltk, knitr, markdown", + "Imports": "MASS, cluster, mgcv", + "VignetteBuilder": "utils, knitr", + "Description": "Ordination methods, diversity analysis and other\nfunctions for community and vegetation ecologists.", + "License": "GPL-2", + "BugReports": "https://github.com/vegandevs/vegan/issues", + "URL": "https://github.com/vegandevs/vegan", + "NeedsCompilation": "yes", + "Packaged": "2022-10-11 08:36:07 UTC; jarioksa", + "Author": "Jari Oksanen [aut, cre],\nGavin L. Simpson [aut],\nF. Guillaume Blanchet [aut],\nRoeland Kindt [aut],\nPierre Legendre [aut],\nPeter R. Minchin [aut],\nR.B. O'Hara [aut],\nPeter Solymos [aut],\nM. Henry H. Stevens [aut],\nEduard Szoecs [aut],\nHelene Wagner [aut],\nMatt Barbour [aut],\nMichael Bedward [aut],\nBen Bolker [aut],\nDaniel Borcard [aut],\nGustavo Carvalho [aut],\nMichael Chirico [aut],\nMiquel De Caceres [aut],\nSebastien Durand [aut],\nHeloisa Beatriz Antoniazi Evangelista [aut],\nRich FitzJohn [aut],\nMichael Friendly [aut],\nBrendan Furneaux [aut],\nGeoffrey Hannigan [aut],\nMark O. Hill [aut],\nLeo Lahti [aut],\nDan McGlinn [aut],\nMarie-Helene Ouellette [aut],\nEduardo Ribeiro Cunha [aut],\nTyler Smith [aut],\nAdrian Stier [aut],\nCajo J.F. Ter Braak [aut],\nJames Weedon [aut]", + "Maintainer": "Jari Oksanen ", + "Repository": "RSPM", + "Date/Publication": "2022-10-11 12:40:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 23:47:28 UTC; unix" + } + }, + "viridis": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "viridis", + "Type": "Package", + "Title": "Colorblind-Friendly Color Maps for R", + "Version": "0.6.4", + "Date": "2023-07-19", + "Authors@R": "c(\nperson(\"Simon\", \"Garnier\", email = \"garnier@njit.edu\", role = c(\"aut\", \"cre\")),\nperson(\"Noam\", \"Ross\", email = \"noam.ross@gmail.com\", role = c(\"ctb\", \"cph\")),\nperson(\"Bob\", \"Rudis\", email = \"bob@rud.is\", role = c(\"ctb\", \"cph\")),\nperson(\"Marco\", \"Sciaini\", email = \"sciaini.marco@gmail.com\", role = c(\"ctb\", \"cph\")),\nperson(\"Antônio Pedro\", \"Camargo\", role = c(\"ctb\", \"cph\")),\nperson(\"Cédric\", \"Scherer\", email = \"scherer@izw-berlin.de\", role = c(\"ctb\", \"cph\"))\n)", + "Maintainer": "Simon Garnier ", + "Description": "Color maps designed to improve graph readability for readers with\ncommon forms of color blindness and/or color vision deficiency. The color\nmaps are also perceptually-uniform, both in regular form and also when\nconverted to black-and-white for printing. This package also contains\n'ggplot2' bindings for discrete and continuous color and fill scales. A lean\nversion of the package called 'viridisLite' that does not include the\n'ggplot2' bindings can be found at\n.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Depends": "R (>= 2.10), viridisLite (>= 0.4.0)", + "Imports": "ggplot2 (>= 1.0.1), gridExtra", + "Suggests": "hexbin (>= 1.27.0), scales, MASS, knitr, dichromat,\ncolorspace, httr, mapproj, vdiffr, svglite (>= 1.2.0),\ntestthat, covr, rmarkdown, maps, terra", + "LazyData": "true", + "VignetteBuilder": "knitr", + "URL": "https://sjmgarnier.github.io/viridis/,\nhttps://github.com/sjmgarnier/viridis/", + "BugReports": "https://github.com/sjmgarnier/viridis/issues", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-07-19 13:52:50 UTC; simon", + "Author": "Simon Garnier [aut, cre],\nNoam Ross [ctb, cph],\nBob Rudis [ctb, cph],\nMarco Sciaini [ctb, cph],\nAntônio Pedro Camargo [ctb, cph],\nCédric Scherer [ctb, cph]", + "Repository": "RSPM", + "Date/Publication": "2023-07-22 12:50:02 UTC", + "Built": "R 4.3.0; ; 2023-07-24 11:18:44 UTC; unix" + } + }, + "viridisLite": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "viridisLite", + "Type": "Package", + "Title": "Colorblind-Friendly Color Maps (Lite Version)", + "Version": "0.4.2", + "Date": "2023-05-02", + "Authors@R": "c(\nperson(\"Simon\", \"Garnier\", email = \"garnier@njit.edu\", role = c(\"aut\", \"cre\")),\nperson(\"Noam\", \"Ross\", email = \"noam.ross@gmail.com\", role = c(\"ctb\", \"cph\")),\nperson(\"Bob\", \"Rudis\", email = \"bob@rud.is\", role = c(\"ctb\", \"cph\")),\nperson(\"Marco\", \"Sciaini\", email = \"sciaini.marco@gmail.com\", role = c(\"ctb\", \"cph\")),\nperson(\"Antônio Pedro\", \"Camargo\", role = c(\"ctb\", \"cph\")),\nperson(\"Cédric\", \"Scherer\", email = \"scherer@izw-berlin.de\", role = c(\"ctb\", \"cph\"))\n)", + "Maintainer": "Simon Garnier ", + "Description": "Color maps designed to improve graph readability for readers with\ncommon forms of color blindness and/or color vision deficiency. The color\nmaps are also perceptually-uniform, both in regular form and also when\nconverted to black-and-white for printing. This is the 'lite' version of the\n'viridis' package that also contains 'ggplot2' bindings for discrete and\ncontinuous color and fill scales and can be found at\n.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Depends": "R (>= 2.10)", + "Suggests": "hexbin (>= 1.27.0), ggplot2 (>= 1.0.1), testthat, covr", + "URL": "https://sjmgarnier.github.io/viridisLite/,\nhttps://github.com/sjmgarnier/viridisLite/", + "BugReports": "https://github.com/sjmgarnier/viridisLite/issues/", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-05-02 21:38:46 UTC; simon", + "Author": "Simon Garnier [aut, cre],\nNoam Ross [ctb, cph],\nBob Rudis [ctb, cph],\nMarco Sciaini [ctb, cph],\nAntônio Pedro Camargo [ctb, cph],\nCédric Scherer [ctb, cph]", + "Repository": "RSPM", + "Date/Publication": "2023-05-02 23:50:02 UTC", + "Built": "R 4.3.0; ; 2023-05-04 22:20:46 UTC; unix" + } + }, + "vroom": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "vroom", + "Title": "Read and Write Rectangular Text Data Quickly", + "Version": "1.6.4", + "Authors@R": "c(\nperson(\"Jim\", \"Hester\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-2739-7082\")),\nperson(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\",\ncomment = c(ORCID = \"0000-0003-4757-117X\")),\nperson(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-6983-2759\")),\nperson(\"Shelby\", \"Bearrows\", role = \"ctb\"),\nperson(\"https://github.com/mandreyel/\", role = \"cph\",\ncomment = \"mio library\"),\nperson(\"Jukka\", \"Jylänki\", role = \"cph\",\ncomment = \"grisu3 implementation\"),\nperson(\"Mikkel\", \"Jørgensen\", role = \"cph\",\ncomment = \"grisu3 implementation\"),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "The goal of 'vroom' is to read and write data (like 'csv',\n'tsv' and 'fwf') quickly. When reading it uses a quick initial\nindexing step, then reads the values lazily , so only the data you\nactually use needs to be read. The writer formats the data in\nparallel and writes to disk asynchronously from formatting.", + "License": "MIT + file LICENSE", + "URL": "https://vroom.r-lib.org, https://github.com/tidyverse/vroom", + "BugReports": "https://github.com/tidyverse/vroom/issues", + "Depends": "R (>= 3.6)", + "Imports": "bit64, cli (>= 3.2.0), crayon, glue, hms, lifecycle (>=\n1.0.3), methods, rlang (>= 0.4.2), stats, tibble (>= 2.0.0),\ntidyselect, tzdb (>= 0.1.1), vctrs (>= 0.2.0), withr", + "Suggests": "archive, bench (>= 1.1.0), covr, curl, dplyr, forcats, fs,\nggplot2, knitr, patchwork, prettyunits, purrr, rmarkdown,\nrstudioapi, scales, spelling, testthat (>= 2.1.0), tidyr,\nutils, waldo, xml2", + "LinkingTo": "cpp11 (>= 0.2.0), progress (>= 1.2.1), tzdb (>= 0.1.1)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "nycflights13, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "false", + "Copyright": "file COPYRIGHTS", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-10-02 04:48:51 UTC; jenny", + "Author": "Jim Hester [aut] (),\nHadley Wickham [aut] (),\nJennifer Bryan [aut, cre] (),\nShelby Bearrows [ctb],\nhttps://github.com/mandreyel/ [cph] (mio library),\nJukka Jylänki [cph] (grisu3 implementation),\nMikkel Jørgensen [cph] (grisu3 implementation),\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Jennifer Bryan ", + "Repository": "RSPM", + "Date/Publication": "2023-10-02 14:30:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-10-03 11:18:42 UTC; unix" + } + }, + "waldo": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "waldo", + "Title": "Find Differences Between R Objects", + "Version": "0.5.1", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)", + "Description": "Compare complex R objects and reveal the key differences.\nDesigned particularly for use in testing packages where being able to\nquickly isolate key differences makes understanding test failures much\neasier.", + "License": "MIT + file LICENSE", + "URL": "https://waldo.r-lib.org, https://github.com/r-lib/waldo", + "BugReports": "https://github.com/r-lib/waldo/issues", + "Imports": "cli, diffobj (>= 0.3.4), fansi, glue, methods, rematch2, rlang\n(>= 1.0.0), tibble", + "Suggests": "covr, R6, testthat (>= 3.0.0), withr, xml2", + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-05-08 21:54:20 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\nRStudio [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2023-05-08 22:20:02 UTC", + "Built": "R 4.3.0; ; 2023-05-09 11:15:07 UTC; unix" + } + }, + "whisker": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "whisker", + "Maintainer": "Edwin de Jonge ", + "License": "GPL-3", + "Title": "{{mustache}} for R, Logicless Templating", + "Type": "Package", + "LazyLoad": "yes", + "Author": "Edwin de Jonge", + "Description": "Implements 'Mustache' logicless templating.", + "Version": "0.4.1", + "URL": "https://github.com/edwindj/whisker", + "Suggests": "markdown", + "RoxygenNote": "6.1.1", + "NeedsCompilation": "no", + "Packaged": "2022-12-05 15:15:55 UTC; hornik", + "Repository": "RSPM", + "Date/Publication": "2022-12-05 15:33:50 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-22 00:26:48 UTC; unix" + } + }, + "withr": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "withr", + "Title": "Run Code 'With' Temporarily Modified Global State", + "Version": "2.5.1", + "Authors@R": "c(person(given = \"Jim\",\nfamily = \"Hester\",\nrole = \"aut\"),\nperson(given = \"Lionel\",\nfamily = \"Henry\",\nrole = c(\"aut\", \"cre\"),\nemail = \"lionel@posit.co\"),\nperson(given = \"Kirill\",\nfamily = \"Müller\",\nrole = \"aut\",\nemail = \"krlmlr+r@mailbox.org\"),\nperson(given = \"Kevin\",\nfamily = \"Ushey\",\nrole = \"aut\",\nemail = \"kevinushey@gmail.com\"),\nperson(given = \"Hadley\",\nfamily = \"Wickham\",\nrole = \"aut\",\nemail = \"hadley@rstudio.com\"),\nperson(given = \"Winston\",\nfamily = \"Chang\",\nrole = \"aut\"),\nperson(given = \"Jennifer\",\nfamily = \"Bryan\",\nrole = \"ctb\"),\nperson(given = \"Richard\",\nfamily = \"Cotton\",\nrole = \"ctb\"),\nperson(given = \"Posit Software, PBC\",\nrole = c(\"cph\", \"fnd\")))", + "Description": "A set of functions to run code 'with' safely and\ntemporarily modified global state. Many of these functions were\noriginally a part of the 'devtools' package, this provides a simple\npackage with limited dependencies to provide access to these\nfunctions.", + "License": "MIT + file LICENSE", + "URL": "https://withr.r-lib.org, https://github.com/r-lib/withr#readme", + "BugReports": "https://github.com/r-lib/withr/issues", + "Depends": "R (>= 3.2.0)", + "Imports": "graphics, grDevices, stats", + "Suggests": "callr, covr, DBI, knitr, lattice, methods, rlang, rmarkdown\n(>= 2.12), RSQLite, testthat (>= 3.0.0)", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "Collate": "'aaa.R' 'collate.R' 'compat-defer.R' 'connection.R' 'db.R'\n'defer.R' 'wrap.R' 'local_.R' 'with_.R' 'devices.R' 'dir.R'\n'env.R' 'file.R' 'language.R' 'libpaths.R' 'locale.R'\n'makevars.R' 'namespace.R' 'options.R' 'par.R' 'path.R' 'rng.R'\n'seed.R' 'sink.R' 'tempfile.R' 'timezone.R' 'torture.R'\n'utils.R' 'with.R'", + "Config/testthat/edition": "3", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "no", + "Packaged": "2023-09-26 08:28:27 UTC; lionel", + "Author": "Jim Hester [aut],\nLionel Henry [aut, cre],\nKirill Müller [aut],\nKevin Ushey [aut],\nHadley Wickham [aut],\nWinston Chang [aut],\nJennifer Bryan [ctb],\nRichard Cotton [ctb],\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "RSPM", + "Date/Publication": "2023-09-26 12:20:02 UTC", + "Built": "R 4.3.0; ; 2023-09-28 17:36:49 UTC; unix" + } + }, + "wk": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "wk", + "Title": "Lightweight Well-Known Geometry Parsing", + "Version": "0.8.0", + "Authors@R": "c(\nperson(given = \"Dewey\",\nfamily = \"Dunnington\",\nrole = c(\"aut\", \"cre\"),\nemail = \"dewey@fishandwhistle.net\",\ncomment = c(ORCID = \"0000-0002-9415-4582\")),\nperson(given = \"Edzer\",\nfamily = \"Pebesma\",\nrole = c(\"aut\"),\nemail = \"edzer.pebesma@uni-muenster.de\",\ncomment = c(ORCID = \"0000-0001-8049-7069\")),\nperson(given = \"Anthony\",\nfamily = \"North\",\nemail = \"anthony.jl.north@gmail.com\",\nrole = c(\"ctb\"))\n)", + "Maintainer": "Dewey Dunnington ", + "Description": "Provides a minimal R and C++ API for parsing\nwell-known binary and well-known text representation of\ngeometries to and from R-native formats.\nWell-known binary is compact\nand fast to parse; well-known text is human-readable\nand is useful for writing tests. These formats are\nuseful in R only if the information they contain can be\naccessed in R, for which high-performance functions\nare provided here.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "Suggests": "testthat (>= 3.0.0), vctrs (>= 0.3.0), sf, tibble, readr", + "URL": "https://paleolimbot.github.io/wk/,\nhttps://github.com/paleolimbot/wk", + "BugReports": "https://github.com/paleolimbot/wk/issues", + "Config/testthat/edition": "3", + "Depends": "R (>= 2.10)", + "LazyData": "true", + "NeedsCompilation": "yes", + "Packaged": "2023-08-25 02:13:28 UTC; deweydunnington", + "Author": "Dewey Dunnington [aut, cre] (),\nEdzer Pebesma [aut] (),\nAnthony North [ctb]", + "Repository": "RSPM", + "Date/Publication": "2023-08-25 10:50:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-28 11:37:38 UTC; unix" + } + }, + "xfun": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "xfun", + "Type": "Package", + "Title": "Supporting Functions for Packages Maintained by 'Yihui Xie'", + "Version": "0.40", + "Authors@R": "c(\nperson(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\nperson(\"Wush\", \"Wu\", role = \"ctb\"),\nperson(\"Daijiang\", \"Li\", role = \"ctb\"),\nperson(\"Xianying\", \"Tan\", role = \"ctb\"),\nperson(\"Salim\", \"Brüggemann\", role = \"ctb\", email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")),\nperson(\"Christophe\", \"Dervieux\", role = \"ctb\"),\nperson(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\nperson()\n)", + "Description": "Miscellaneous functions commonly used in other packages maintained by 'Yihui Xie'.", + "Imports": "stats, tools", + "Suggests": "testit, parallel, codetools, rstudioapi, tinytex (>= 0.30),\nmime, markdown (>= 1.5), knitr (>= 1.42), htmltools, remotes,\npak, rhub, renv, curl, jsonlite, magick, yaml, rmarkdown", + "License": "MIT + file LICENSE", + "URL": "https://github.com/yihui/xfun", + "BugReports": "https://github.com/yihui/xfun/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "VignetteBuilder": "knitr", + "NeedsCompilation": "yes", + "Packaged": "2023-08-08 09:34:13 UTC; yihui", + "Author": "Yihui Xie [aut, cre, cph] (),\nWush Wu [ctb],\nDaijiang Li [ctb],\nXianying Tan [ctb],\nSalim Brüggemann [ctb] (),\nChristophe Dervieux [ctb],\nPosit Software, PBC [cph, fnd]", + "Maintainer": "Yihui Xie ", + "Repository": "RSPM", + "Date/Publication": "2023-08-09 20:40:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-10 11:32:10 UTC; unix" + } + }, + "xml2": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "xml2", + "Title": "Parse XML", + "Version": "1.3.5", + "Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")),\nperson(\"Jim\", \"Hester\", role = \"aut\"),\nperson(\"Jeroen\", \"Ooms\", role = \"aut\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\")),\nperson(\"R Foundation\", role = \"ctb\",\ncomment = \"Copy of R-project homepage cached as example\")\n)", + "Description": "Work with XML files using a simple, consistent interface.\nBuilt on top of the 'libxml2' C library.", + "License": "MIT + file LICENSE", + "URL": "https://xml2.r-lib.org/, https://github.com/r-lib/xml2", + "BugReports": "https://github.com/r-lib/xml2/issues", + "Depends": "R (>= 3.1.0)", + "Imports": "methods", + "Suggests": "covr, curl, httr, knitr, magrittr, mockery, rmarkdown,\ntestthat (>= 2.1.0)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "SystemRequirements": "libxml2: libxml2-dev (deb), libxml2-devel (rpm)", + "Collate": "'S4.R' 'as_list.R' 'xml_parse.R' 'as_xml_document.R'\n'classes.R' 'init.R' 'paths.R' 'utils.R' 'xml_attr.R'\n'xml_children.R' 'xml_find.R' 'xml_modify.R' 'xml_name.R'\n'xml_namespaces.R' 'xml_path.R' 'xml_schema.R'\n'xml_serialize.R' 'xml_structure.R' 'xml_text.R' 'xml_type.R'\n'xml_url.R' 'xml_write.R' 'zzz.R'", + "NeedsCompilation": "yes", + "Packaged": "2023-06-29 13:52:10 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\nJim Hester [aut],\nJeroen Ooms [aut],\nRStudio [cph, fnd],\nR Foundation [ctb] (Copy of R-project homepage cached as example)", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2023-07-06 08:00:02 UTC", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 02:14:03 UTC; unix" + } + }, + "xtable": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "xtable", + "Version": "1.8-4", + "Date": "2019-04-08", + "Title": "Export Tables to LaTeX or HTML", + "Authors@R": "c(person(\"David B.\", \"Dahl\", role=\"aut\"),\nperson(\"David\", \"Scott\", role=c(\"aut\",\"cre\"),\nemail=\"d.scott@auckland.ac.nz\"),\nperson(\"Charles\", \"Roosen\", role=\"aut\"),\nperson(\"Arni\", \"Magnusson\", role=\"aut\"),\nperson(\"Jonathan\", \"Swinton\", role=\"aut\"),\nperson(\"Ajay\", \"Shah\", role=\"ctb\"),\nperson(\"Arne\", \"Henningsen\", role=\"ctb\"),\nperson(\"Benno\", \"Puetz\", role=\"ctb\"),\nperson(\"Bernhard\", \"Pfaff\", role=\"ctb\"),\nperson(\"Claudio\", \"Agostinelli\", role=\"ctb\"),\nperson(\"Claudius\", \"Loehnert\", role=\"ctb\"),\nperson(\"David\", \"Mitchell\", role=\"ctb\"),\nperson(\"David\", \"Whiting\", role=\"ctb\"),\nperson(\"Fernando da\", \"Rosa\", role=\"ctb\"),\nperson(\"Guido\", \"Gay\", role=\"ctb\"),\nperson(\"Guido\", \"Schulz\", role=\"ctb\"),\nperson(\"Ian\", \"Fellows\", role=\"ctb\"),\nperson(\"Jeff\", \"Laake\", role=\"ctb\"),\nperson(\"John\", \"Walker\", role=\"ctb\"),\nperson(\"Jun\", \"Yan\", role=\"ctb\"),\nperson(\"Liviu\", \"Andronic\", role=\"ctb\"),\nperson(\"Markus\", \"Loecher\", role=\"ctb\"),\nperson(\"Martin\", \"Gubri\", role=\"ctb\"),\nperson(\"Matthieu\", \"Stigler\", role=\"ctb\"),\nperson(\"Robert\", \"Castelo\", role=\"ctb\"),\nperson(\"Seth\", \"Falcon\", role=\"ctb\"),\nperson(\"Stefan\", \"Edwards\", role=\"ctb\"),\nperson(\"Sven\", \"Garbade\", role=\"ctb\"),\nperson(\"Uwe\", \"Ligges\", role=\"ctb\"))", + "Maintainer": "David Scott ", + "Imports": "stats, utils", + "Suggests": "knitr, plm, zoo, survival", + "VignetteBuilder": "knitr", + "Description": "Coerce data to LaTeX and HTML tables.", + "URL": "http://xtable.r-forge.r-project.org/", + "Depends": "R (>= 2.10.0)", + "License": "GPL (>= 2)", + "Repository": "RSPM", + "NeedsCompilation": "no", + "Packaged": "2019-04-21 10:56:51 UTC; dsco036", + "Author": "David B. Dahl [aut],\nDavid Scott [aut, cre],\nCharles Roosen [aut],\nArni Magnusson [aut],\nJonathan Swinton [aut],\nAjay Shah [ctb],\nArne Henningsen [ctb],\nBenno Puetz [ctb],\nBernhard Pfaff [ctb],\nClaudio Agostinelli [ctb],\nClaudius Loehnert [ctb],\nDavid Mitchell [ctb],\nDavid Whiting [ctb],\nFernando da Rosa [ctb],\nGuido Gay [ctb],\nGuido Schulz [ctb],\nIan Fellows [ctb],\nJeff Laake [ctb],\nJohn Walker [ctb],\nJun Yan [ctb],\nLiviu Andronic [ctb],\nMarkus Loecher [ctb],\nMartin Gubri [ctb],\nMatthieu Stigler [ctb],\nRobert Castelo [ctb],\nSeth Falcon [ctb],\nStefan Edwards [ctb],\nSven Garbade [ctb],\nUwe Ligges [ctb]", + "Date/Publication": "2019-04-21 12:20:03 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; ; 2023-04-21 21:51:24 UTC; unix" + } + }, + "yaml": { + "Source": "CRAN", + "Repository": "https://packagemanager.rstudio.com/all/latest", + "description": { + "Package": "yaml", + "Type": "Package", + "Title": "Methods to Convert R Data to YAML and Back", + "Date": "2023-01-18", + "Version": "2.3.7", + "Suggests": "RUnit", + "Author": "Shawn P Garbett [aut], Jeremy Stephens [aut, cre], Kirill Simonov [aut], Yihui Xie [ctb],\nZhuoer Dong [ctb], Hadley Wickham [ctb], Jeffrey Horner [ctb], reikoch [ctb],\nWill Beasley [ctb], Brendan O'Connor [ctb], Gregory R. Warnes [ctb],\nMichael Quinn [ctb], Zhian N. Kamvar [ctb]", + "Maintainer": "Shawn Garbett ", + "License": "BSD_3_clause + file LICENSE", + "Description": "Implements the 'libyaml' 'YAML' 1.1 parser and emitter\n() for R.", + "URL": "https://github.com/vubiostat/r-yaml/", + "BugReports": "https://github.com/vubiostat/r-yaml/issues", + "NeedsCompilation": "yes", + "Packaged": "2023-01-18 17:20:16 UTC; garbetsp", + "Repository": "RSPM", + "Date/Publication": "2023-01-23 18:40:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:44 UTC; unix" + } + } + }, + "files": { + ".Rbuildignore": { + "checksum": "c225c3c4e9f80ff51f59ee6f5fe0fb2c" + }, + ".RData": { + "checksum": "a0b52b41aa77089d68b5f1ebdb6c8a95" + }, + "app.R": { + "checksum": "e2d70236ea9ae4ad2ad2915d641e8f6f" + }, + "data/csv_template.rda": { + "checksum": "dd9939991a8f7a29d44866c65cbba244" + }, + "data/issues.rda": { + "checksum": "ae590bdfd341d945781f3a18964aceec" + }, + "data/TDWG_LEVEL3.rda": { + "checksum": "a7109a7e59a19ee45ecb857dcef3d178" + }, + "data/translate_basisOfRecord.rda": { + "checksum": "3ea6a81c664af6e9642c1093fdfb7dc9" + }, + "data/translate_IUCN_codes.rda": { + "checksum": "d86332becfae27df95169afa60347bd3" + }, + "data/translate_occ_fields.rda": { + "checksum": "8e0cb64d386d9f61db73f486adc9208a" + }, + "data/valid_geocat_occs_large.rda": { + "checksum": "2b4dc2f7b59fe62d46573b7eedbc3fae" + }, + "data/valid_geocat_occs_small.rda": { + "checksum": "cea529c13585ecc13635552794b35f98" + }, + "data/wgsrpd.rda": { + "checksum": "a3229ae261ee6aad8e029a223d4508df" + }, + "DESCRIPTION": { + "checksum": "3a11e3881efdc1c6fcbf567d5d6ce5a3" + }, + "docs/dev_hire_specs.xlsx": { + "checksum": "606eeb5e7310b9c2909b4bb384799840" + }, + "docs/occ_fields_translator.xlsx": { + "checksum": "ef8c4dc431841d251b3b322655a29a2f" + }, + "docs/Thumbs.db": { + "checksum": "e68225fbef7f5c5ca93192bf776a5f13" + }, + "docs/use_cases.pptx": { + "checksum": "b86b5fcb42bed60d6a2e924a82b24900" + }, + "LICENSE.md": { + "checksum": "a323a862ed88a7894f81bd6c3e4afa0b" + }, + "man/add_point.Rd": { + "checksum": "fff10d8de2a94c12a874da5940a366a0" + }, + "man/aoosh.Rd": { + "checksum": "38196395ffa4704b02ed093e7b89791d" + }, + "man/buildCellPolys_rxy.Rd": { + "checksum": "8559ac994e3b764829ab8459d918ab9a" + }, + "man/cart2ll.Rd": { + "checksum": "77a611b443ba4ea7faf9735aa082e547" + }, + "man/constructPolygon.Rd": { + "checksum": "aa945efc683818508470a3ee5da73d98" + }, + "man/deg2rad.Rd": { + "checksum": "81a8678ea1fa4d34f242d1302124f6ad" + }, + "man/draw-options.Rd": { + "checksum": "2471fdcc211678d910a5d40eb4860558" + }, + "man/empty_tbl_.Rd": { + "checksum": "021945493168291abf9d57d3b35dfd92" + }, + "man/import_csv.Rd": { + "checksum": "46e729836efb0a4d78e575e2ecf9562d" + }, + "man/import_gbif.Rd": { + "checksum": "81ed811ccc3fffa2957542bfc04f8be5" + }, + "man/import_powo.Rd": { + "checksum": "b73887ad09bdc5edb5120a014e240cd4" + }, + "man/ll2cart.Rd": { + "checksum": "983d669bf987a1fa70e7256b1edb72f6" + }, + "man/pro2sph.Rd": { + "checksum": "2e9dbcd5145c4d27349fa9bcc208593a" + }, + "man/rad2deg.Rd": { + "checksum": "034f6a646f83603a71a38c418c59dce6" + }, + "man/ratingAoo.Rd": { + "checksum": "846ed2145cffc65ce098a31107b275f6" + }, + "man/ratingEoo.Rd": { + "checksum": "011ec79354633f23f88586a100bd00e0" + }, + "man/rotateP.Rd": { + "checksum": "d8d248827924e3a425292654ec2a9b6b" + }, + "man/trueCOGll.Rd": { + "checksum": "2a9a086e1d6a343575317b546ebd156c" + }, + "NAMESPACE": { + "checksum": "85358b474f0c3cffeaa2504fe99b120c" + }, + "R/analysis.R": { + "checksum": "37f14d4d3f2f4fbdd95e35f24a0c3a86" + }, + "R/app.R": { + "checksum": "444806771b5f974f30e25defb26fff3d" + }, + "R/drawOptions.R": { + "checksum": "5b48be73a2a3a43e36befc9981b3ef5c" + }, + "R/edit-data.R": { + "checksum": "e6a3edc67d487376f563d9c55077cd98" + }, + "R/import-data.R": { + "checksum": "af0f598a2aca0682908b4a7385bd9d9c" + }, + "R/messages.R": { + "checksum": "a9c86bef2aadf6d0aa1f76576fb489a7" + }, + "R/projWiz.R": { + "checksum": "53dc544189ba5f3f305066e87f1dd9f3" + }, + "R/validate-data.R": { + "checksum": "d8d09c341d684728ba98a1357bb854a9" + }, + "README.md": { + "checksum": "61e15e82a51f0688e81b4a95096ff760" + }, + "tests/testthat.R": { + "checksum": "140c57f42d7331fd3005be58844fa76f" + }, + "tests/testthat/test-validation-functions.R": { + "checksum": "f847c4363ba1945cf1e02788a6d99e41" + }, + "www/js/controls.js": { + "checksum": "9fcf8e231c3d78922a8d118d1e243ad2" + }, + "www/js/log.js": { + "checksum": "8392dfcea09731c01d95672ae6f9c0d4" + }, + "www/js/map.js": { + "checksum": "01a19cc5170abfaa3ada6e2c6c0ed963" + }, + "www/script.js": { + "checksum": "90f2d4b1fdeb7bb3beafb73df743e4b9" + }, + "www/style.css": { + "checksum": "51c3533117d23716236e075e51cc3a18" + } + }, + "users": null +} From 35c62fa180072ee34e5e866a8d862b333874ce8b Mon Sep 17 00:00:00 2001 From: Tim Brock Date: Wed, 11 Oct 2023 15:17:57 +0100 Subject: [PATCH 3/5] Reduce size of "Message Log" header --- www/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/www/style.css b/www/style.css index 62fe2fa..fc8d09e 100644 --- a/www/style.css +++ b/www/style.css @@ -362,6 +362,9 @@ body > .floating-item[aria-modal="true"] { filter: grayscale(50%) brightness(20%); } +[id="log-section"] h2 { + font-size: calc(var(--h2-size) * 0.85); +} @media (min-width: 900px) { main { From a94aa4012e885e95913e0e263424680ae294b68a Mon Sep 17 00:00:00 2001 From: Tim Brock Date: Wed, 11 Oct 2023 17:28:04 +0100 Subject: [PATCH 4/5] Add tab menu at top --- R/app.R | 337 ++++++++++++++++++++++++++----------------------- www/js/tabs.js | 30 +++++ www/script.js | 2 + www/style.css | 34 +++-- 4 files changed, 232 insertions(+), 171 deletions(-) create mode 100644 www/js/tabs.js diff --git a/R/app.R b/R/app.R index 9c01a57..597e673 100644 --- a/R/app.R +++ b/R/app.R @@ -24,179 +24,194 @@ geocatApp <- function(...) { ), tags$main( - # Sidebar panel for inputs - tags$section( - id="controls-section", - class="well", - - tags$details( - open="open", - tags$summary(tags$h2("Data")), - - tags$details( - class="help", - tags$summary("Help"), - "Add some instructions here explaining how the data section works" - ), - + tabsetPanel( + tabPanel( + "Analysis", + # Sidebar panel for inputs tags$div( - id="csv-block", - class="data-block", - tags$label( - "for"="csv_in", - "Upload a CSV with at least 'longitude', 'latitude' fields", - ), - tags$div( - id = "file-wrapper", - tags$input( - id="csv_in", - type="file", - accept = ".csv", + id="analysis-grid", + tags$section( + id="controls-section", + class="well", + + tags$details( + open="open", + tags$summary(tags$h2("Data")), + + tags$details( + class="help", + tags$summary("Help"), + "Add some instructions here explaining how the data section works" + ), + + tags$div( + id="csv-block", + class="data-block", + tags$label( + "for"="csv_in", + "Upload a CSV with at least 'longitude', 'latitude' fields", + ), + tags$div( + id = "file-wrapper", + tags$input( + id="csv_in", + type="file", + accept = ".csv", + ), + tags$span( + "aria-hidden" = "true", + "class" = "file-text", + 'No file uploaded' + ) + ), + tags$div( + id = paste("csv_in_progress", sep = ""), + class = "progress active shiny-file-input-progress", + tags$div(class = "progress-bar") + ), + shinyjs::hidden( + ## csv points on/off ---- + shinyWidgets::prettySwitch( + inputId = "csv_onoff", + label = "CSV", + value = TRUE, + status = "primary", + fill = TRUE + ) + ) + ), + + tags$div( + id="gbif-block", + class="data-block text-input-block", + tags$label("for"="gbif_name", "Enter a taxon name to load points from GBIF:"), + tags$div( + "class" = "text-input-wrapper", + textInput("gbif_name", label=NULL) + ), + tags$span(id="gbif-hint", class = "hint", "e.g. Cyphostemma njegerre"), + actionButton("queryGBIF", "Load points"), + tags$span( + "class" = "toggle-wrapper", + shinyjs::hidden( + ## GBIF points on/off ---- + shinyWidgets::prettySwitch( + inputId = "gbif_onoff", + label = "GBIF", + value = TRUE, + status = "success", + fill = TRUE + ) + ) + ) + ), + + tags$div( + id="powo-block", + class="data-block text-input-block", + tags$label("for"="powo_id", "Enter a POWO ID for a native range map:"), + tags$div( + "class" = "text-input-wrapper", + textInput("powo_id", label=NULL) + ), + tags$span( + "id" = "powo-hint", + "class" = "hint", + "e.g. 68179-1. Search", + tags$a(href="https://powo.science.kew.org/", target="_blank", "POWO"), + "to get accepted name ID." + ), + actionButton("queryPOWO", "Load map"), + tags$span( + "class" = "toggle-wrapper", + shinyjs::hidden( + shinyWidgets::prettySwitch( + inputId = "native_onoff", + label = "Exclude non-native", + value = FALSE, + status = "danger", + fill = TRUE + ) + ) + ) + ) ), - tags$span( - "aria-hidden" = "true", - "class" = "file-text", - 'No file uploaded' - ) - ), - tags$div( - id = paste("csv_in_progress", sep = ""), - class = "progress active shiny-file-input-progress", - tags$div(class = "progress-bar") - ), - shinyjs::hidden( - ## csv points on/off ---- - shinyWidgets::prettySwitch( - inputId = "csv_onoff", - label = "CSV", - value = TRUE, - status = "primary", - fill = TRUE - ) - ) - ), - - tags$div( - id="gbif-block", - class="data-block text-input-block", - tags$label("for"="gbif_name", "Enter a taxon name to load points from GBIF:"), - tags$div( - "class" = "text-input-wrapper", - textInput("gbif_name", label=NULL) - ), - tags$span(id="gbif-hint", class = "hint", "e.g. Cyphostemma njegerre"), - actionButton("queryGBIF", "Load points"), - tags$span( - "class" = "toggle-wrapper", - shinyjs::hidden( - ## GBIF points on/off ---- - shinyWidgets::prettySwitch( - inputId = "gbif_onoff", - label = "GBIF", - value = TRUE, - status = "success", - fill = TRUE + + tags$details( + open="open", + tags$summary(tags$h2("Analysis")), + + tags$details( + class="help", + tags$summary("Help"), + "Add some instructions here explaining how the analysis section works" + ), + + tags$p( + "id" = "analysis-info", + "Analysis requires at least two data points" + ), + + shinyjs::hidden( + shinyWidgets::prettySwitch( + inputId = "Analysis", + label = "Analysis on/off", + value = FALSE, + status = "success", + ) + ), + + shiny::htmlOutput("res_title"), + shiny::htmlOutput("text"), + ), + + tags$details( + open="open", + tags$summary(tags$h2("Next Steps")), + + tags$details( + class="help", + tags$summary("Help"), + "Add some instructions here explaining how the next steps section works" + ), + + tags$div( + id="next-step-buttons", + downloadButton("download_csv", "Download CSV file"), + actionButton("reset", "Reset") ) ) - ) - ), - - tags$div( - id="powo-block", - class="data-block text-input-block", - tags$label("for"="powo_id", "Enter a POWO ID for a native range map:"), - tags$div( - "class" = "text-input-wrapper", - textInput("powo_id", label=NULL) ), - tags$span( - "id" = "powo-hint", - "class" = "hint", - "e.g. 68179-1. Search", - tags$a(href="https://powo.science.kew.org/", target="_blank", "POWO"), - "to get accepted name ID." + + #### Main panel for displaying outputs #### + + tags$section( + id="map-section", + div( + leaflet::leafletOutput("mymap", height = 550) + ) ), - actionButton("queryPOWO", "Load map"), - tags$span( - "class" = "toggle-wrapper", - shinyjs::hidden( - shinyWidgets::prettySwitch( - inputId = "native_onoff", - label = "Exclude non-native", - value = FALSE, - status = "danger", - fill = TRUE - ) + + tags$section( + id="log-section", + class="well", + tags$h2("Message Log"), + tags$div( + id = "message-log", + htmlOutput("messages") ) ) ) ), - - tags$details( - open="open", - tags$summary(tags$h2("Analysis")), - - tags$details( - class="help", - tags$summary("Help"), - "Add some instructions here explaining how the analysis section works" - ), - - tags$p( - "id" = "analysis-info", - "Analysis requires at least two data points" - ), - - shinyjs::hidden( - shinyWidgets::prettySwitch( - inputId = "Analysis", - label = "Analysis on/off", - value = FALSE, - status = "success", - ) - ), - - shiny::htmlOutput("res_title"), - shiny::htmlOutput("text"), - ), - - tags$details( - open="open", - tags$summary(tags$h2("Next Steps")), - - tags$details( - class="help", - tags$summary("Help"), - "Add some instructions here explaining how the next steps section works" - ), - - tags$div( - id="next-step-buttons", - downloadButton("download_csv", "Download CSV file"), - actionButton("reset", "Reset") + tabPanel( + "Help", + tags$section( + class="well", + tags$h2('Help'), + tags$p("Help goes here") ) ) - ), - - #### Main panel for displaying outputs #### - - tags$section( - id="map-section", - div( - leaflet::leafletOutput("mymap", height = 550) - ) - ), - - tags$section( - id="log-section", - class="well", - tags$h2("Message Log"), - tags$div( - id = "message-log", - htmlOutput("messages") - ) - ), - + ) ), tags$footer( diff --git a/www/js/tabs.js b/www/js/tabs.js new file mode 100644 index 0000000..82aa463 --- /dev/null +++ b/www/js/tabs.js @@ -0,0 +1,30 @@ +const tabSelector = 'main [role="tabpanel"][tabindex]'; + + +function elementUpdatedMutation() { + $(tabSelector).removeAttr('tabindex'); +} + + +function elementAppendedMutation(_, observer) { + const $selection = $(tabSelector); + if ($selection.length < $('main .tabpane').length) { return; } + observer.disconnect(); + elementUpdatedMutation(); + const config = { attributes: true }; + const elementUpdatedObserver = new MutationObserver(elementUpdatedMutation, config); + + $selection.each(function() { + elementUpdatedObserver.observe(this, config); + }); +} + + +function fixTabs() { + const elementAppendedObserver = new MutationObserver(elementAppendedMutation); + const config = { subtree: true, childList: true }; + elementAppendedObserver.observe($('main .tab-content')[0], config); +} + + +export { fixTabs }; diff --git a/www/script.js b/www/script.js index 61282de..8af5e81 100644 --- a/www/script.js +++ b/www/script.js @@ -1,8 +1,10 @@ +import { fixTabs } from './js/tabs.js' import { fixControls } from './js/controls.js'; import { fixLog } from './js/log.js'; import { fixMap } from './js/map.js'; import { fixDisconnect } from './js/disconnect.js'; +fixTabs(); fixControls(); fixMap(); fixLog(); diff --git a/www/style.css b/www/style.css index fc8d09e..e5554a7 100644 --- a/www/style.css +++ b/www/style.css @@ -15,6 +15,10 @@ a:focus { outline-offset: unset; } +html { + scrollbar-gutter: stable; +} + body > div.container-fluid { max-width: 1500px; display: flex; @@ -47,7 +51,7 @@ header h1 { color: lightgrey; } -main { +[id="analysis-grid"]{ display: flex; flex-direction: column; row-gap: 1em; @@ -225,11 +229,6 @@ body > div.container-fluid { row-gap: 1em; } -main { - display: flex; - flex-direction: column; -} - section, section.well { border: 1px solid #999999; } @@ -366,8 +365,23 @@ body > .floating-item[aria-modal="true"] { font-size: calc(var(--h2-size) * 0.85); } +.tabbable > ul > li { + width: 100px; + text-align: center; + +} + +.tabbable > ul > li a { + text-decoration: none; +} + +.tabbable > ul > li.active a[aria-selected="true"]{ + font-weight: bold; + background-color: #303030; +} + @media (min-width: 900px) { - main { + [id="analysis-grid"]{ min-height: 0; display: grid; row-gap: 1em; @@ -409,7 +423,7 @@ body > .floating-item[aria-modal="true"] { } @media (min-width: 1200px) { - main { + [id="analysis-grid"]{ grid-template-columns: 475px 1fr; } @@ -455,13 +469,13 @@ body > .floating-item[aria-modal="true"] { } } - @media (min-height: 850px) { + @media (min-height: 1129px) { body > div.container-fluid { height: 100vh; overflow: hidden; } - main { + [id="analysis-grid"] { flex: 1 1 auto; min-height: 0; grid-template-rows: 550px 1fr; From a1e95ebe9587de4639286025e181e8a6cf5e02c8 Mon Sep 17 00:00:00 2001 From: Tim Brock Date: Tue, 14 Nov 2023 17:23:14 +0000 Subject: [PATCH 5/5] Use different marker shapes for different categories of data --- R/app.R | 29 +++++++++----- www/js/map.js | 108 +++++++++++++++++++++++++++++++++++++++++++++++--- 2 files changed, 120 insertions(+), 17 deletions(-) diff --git a/R/app.R b/R/app.R index 597e673..0d09dc5 100644 --- a/R/app.R +++ b/R/app.R @@ -1,12 +1,19 @@ #' @import shiny dplyr geocatApp <- function(...) { timeoutTime = 15 + circleRadius = 7 + customCol = "#ECAC7C" + gbifCol = "#509E2F" + csvCol = "#0078b4" + gbifOffCol = "#a5cd96" + csvOffCol = "#7fbbd9" + #### ui #### ui <- fluidPage( theme = shinythemes::shinytheme("darkly"), shinyjs::useShinyjs(), - tags$html(lang = "en", `data-timeout-mins` = timeoutTime), + tags$html(lang = "en", `data-timeout-mins` = timeoutTime, `data-circle-radius` = circleRadius), tags$head( tags$title("ShinyGeoCAT - Geospatial Conservation Assessment Tools"), # WCAG modification tags$link(rel = "stylesheet", href = "style.css"), @@ -393,11 +400,11 @@ geocatApp <- function(...) { targetGroup = 'mappoints', circleMarkerOptions=drawCircleMarkerOptions( color="#FFFFFF", - radius=7, + radius = circleRadius, stroke=T, weight=2.5, fill=T, - fillColor="#ECAC7C", + fillColor=customCol, opacity=1, fillOpacity=0.5, repeatMode = TRUE, @@ -500,11 +507,11 @@ geocatApp <- function(...) { lng = long, lat = lat, color="#FFFFFF", - radius=7, + radius = circleRadius, stroke=T, weight=2.5, fill=T, - fillColor="#ECAC7C", + fillColor=customCol, opacity=1, fillOpacity=0.5 ) @@ -675,12 +682,12 @@ geocatApp <- function(...) { points <- filter(values$analysis_data, geocat_source != "User point") used_pal <- colorFactor( - palette=c("#509E2F", "#0078b4"), + palette=c(gbifCol, csvCol), domain=c("GBIF", "User CSV") ) unused_pal <- colorFactor( - palette=c("#a5cd96", "#7fbbd9"), + palette=c(gbifOffCol, csvOffCol), domain=c("GBIF", "User CSV") ) @@ -701,7 +708,7 @@ geocatApp <- function(...) { popup = ~pcontent, layerId = ~geocat_id, group="mappoints", - radius = 7, + radius = circleRadius, color="#FFFFFF", stroke = T, weight = 2.5, @@ -709,13 +716,13 @@ geocatApp <- function(...) { fillColor = ~used_pal(geocat_source), fillOpacity = 0.5, #options = markerOptions(draggable = FALSE), - options = pathOptions(pane = "mappoints"), + options = pathOptions(pane = "mappoints", className = ~factor(geocat_source, levels=c("GBIF", "User CSV"), labels=c("shape-square", "shape-hexagon"))), data=used_points ) %>% leaflet::addCircleMarkers( layerId = ~geocat_id, group="unmappoints", - radius = 7, + radius = circleRadius, color="#BBBBBB", stroke = T, weight = 2, @@ -723,7 +730,7 @@ geocatApp <- function(...) { fillColor = ~unused_pal(geocat_source), fillOpacity = 0.2, #options = markerOptions(draggable = FALSE), - options = pathOptions(pane = "unmappoints"), + options = pathOptions(pane = "unmappoints", className = ~factor(geocat_source, levels=c("GBIF", "User CSV"), labels=c("shape-square", "shape-hexagon"))), data=unused_points ) }) diff --git a/www/js/map.js b/www/js/map.js index 03d9758..9b98ec2 100644 --- a/www/js/map.js +++ b/www/js/map.js @@ -1,11 +1,13 @@ - -function fixA11yIssues () { +function fixSearchInput() { // Search bar should be of type search rather than have that role $('.search-input') - .attr('type', 'search') - .removeAttr('role'); + .attr('type', 'search') + .removeAttr('role'); +} - // The rest of this function makes sure tabbing around works properly. + +function fixKeyboard() { + // Make sure tabbing around works properly. // Specifically, the focus doesn't get lost when opening or closing // the layers popup const $searchButton = $('.leaflet-control-search') @@ -39,7 +41,7 @@ function fixA11yIssues () { evt.preventDefault(); }); - + // Add floating dialog for keyboard users const setupFloatingDialog = function($control, $dialog) { let clicking = false; @@ -98,6 +100,100 @@ function fixA11yIssues () { } +function fixShapes() { + const $html = $(document.documentElement); + const circleRadius = parseFloat($html.attr('data-circle-radius')); + + const area = Math.PI * Math.pow(circleRadius, 2); + + + const createPathTransformer = function(edgeLength, coords) { + const getPathMid = path => `M${path.split(/[A-Z]/i)[1]} m ${circleRadius}, 0`; + + const end = coords.map(function([x, y], i) { + if (i === 0) { + return `m ${x * edgeLength}, ${y * edgeLength}`; + } + const [px, py] = coords[i-1]; + const dx = (x - px) * edgeLength; + const dy = (y - py) * edgeLength; + const z = i === (coords.length - 1) ? 'Z' : ''; + return `l ${dx}, ${dy} ${z}`; + }, ''); + + return function(path) { + const start = getPathMid(path); + return `${start} ${end}`; + } + } + + + const squarifyPath = (function() { + const edgeLength = Math.sqrt(area); + + const coords = [ + [-1/2, -1/2], + [1/2, -1/2], + [1/2, 1/2], + [-1/2, 1/2] + ]; + + return createPathTransformer(edgeLength, coords); + })(); + + + const hexifyPath = (function() { + const edgeLength = Math.sqrt((2*area) / (3*Math.sqrt(3))); + const rt3o2 = Math.sqrt(3) / 2; + + const coords = [ + [-1/2, -rt3o2], + [1/2, -rt3o2], + [1, 0], + [1/2, rt3o2], + [-1/2, rt3o2], + [-1, 0] + ]; + + return createPathTransformer(edgeLength, coords); + })(); + + const transformMarkerPath = function(marker, shape) { + const path = marker.getAttribute('d'); + if (path === "M0 0") { return; } // offscreen + if (path === marker.savedPath) { return; } // already altered shape + const pathTransformer = { square: squarifyPath, hexagon: hexifyPath }[shape]; + marker.savedPath = pathTransformer(path); + marker.setAttribute('d', marker.savedPath); + } + + const childListMutateCallback = function (mutationList) { + mutationList.forEach(function(d) { + const mutatedElements = d.type === 'childList' ? d.addedNodes : [d.target]; + mutatedElements.forEach(function(el) { + const $el = $(el); + if ($el.hasClass('shape-square')) { transformMarkerPath(el, 'square'); } + else if ($el.hasClass('shape-hexagon')) { transformMarkerPath(el, 'hexagon'); } + }); + }); + } + + const $panes = $('#mymap :is(.leaflet-mappoints-pane, .leaflet-unmappoints-pane)'); + + const elementMutatedObserver = new MutationObserver(childListMutateCallback); + const config = { childList: true, subtree: true, attributes: true, attributeList: ['d'] }; + $panes.each(function() { elementMutatedObserver.observe(this, config); }); + +} + + +function fixA11yIssues () { + fixSearchInput(); + fixKeyboard(); + fixShapes(); +} + + function elementAppendedMutation(mutationList, observer) { const mutation = mutationList[0]; const $target = $(mutation.target);