From aac0e7799fa3e285062c8ddf21521d31349316cc Mon Sep 17 00:00:00 2001 From: vituri Date: Fri, 6 Jun 2025 14:35:53 -0300 Subject: [PATCH 01/31] add connect-user-metrics dir --- extensions/connect-user-metrics/README.md | 249 + extensions/connect-user-metrics/_brand.yml | 63 + extensions/connect-user-metrics/app.R | 2 + .../app/constants/.gitignore | 1 + .../app/constants/filter_users.yml | 2 + .../connect-user-metrics/app/js/index.js | 0 .../connect-user-metrics/app/logic/__init__.R | 2 + .../app/logic/aggregation.R | 130 + .../connect-user-metrics/app/logic/charts.R | 458 ++ .../app/logic/config_settings.R | 110 + .../app/logic/connect-extension.R | 7 + .../app/logic/data_utils.R | 111 + .../app/logic/duration_utils.R | 29 + .../connect-user-metrics/app/logic/ui_utils.R | 112 + .../connect-user-metrics/app/logic/utils.R | 170 + extensions/connect-user-metrics/app/main.R | 594 ++ .../app/metrics_theme.json | 374 + .../app/metrics_theme_template.json | 415 + .../app/static/css/app.min.css | 1 + .../app/static/favicon.ico | Bin 0 -> 9662 bytes .../app/static/images/appsilon-logo.png | Bin 0 -> 21721 bytes .../app/static/images/rhino.png | Bin 0 -> 105782 bytes .../app/static/js/app.min.js | 1 + .../app/styles/components/_about.scss | 183 + .../app/styles/components/_content.scss | 55 + .../app/styles/components/_footer.scss | 9 + .../app/styles/components/_navbar.scss | 134 + .../styles/components/_session_duration.scss | 14 + .../app/styles/components/_sidebar.scss | 162 + .../app/styles/components/_table.scss | 27 + .../connect-user-metrics/app/styles/main.scss | 11 + .../app/styles/utilities/_base.scss | 78 + .../app/styles/utilities/_variables.scss | 35 + .../connect-user-metrics/app/view/__init__.R | 2 + .../app/view/about_section.R | 101 + .../connect-user-metrics/app/view/footer.R | 28 + .../app/view/navbar_section.R | 101 + .../app/view/session_duration.R | 96 + .../connect-user-metrics/app/view/table.R | 13 + .../app/view/ui_components.R | 109 + extensions/connect-user-metrics/config.yml | 9 + .../connect-user-metrics/dependencies.R | 24 + extensions/connect-user-metrics/renv.lock | 7157 +++++++++++++++++ .../connect-user-metrics/renv/.gitignore | 7 + .../connect-user-metrics/renv/activate.R | 1334 +++ .../connect-user-metrics/renv/settings.json | 19 + extensions/connect-user-metrics/rhino.yml | 1 + .../tests/cypress.config.js | 7 + .../tests/cypress/.gitignore | 2 + .../tests/cypress/e2e/app.cy.js | 7 + .../connect-user-metrics/tests/testthat.R | 1 + .../tests/testthat/setup.R | 2 + .../tests/testthat/test-aggregation.R | 206 + .../tests/testthat/test-charts.R | 69 + .../tests/testthat/test-config.R | 181 + .../tests/testthat/test-data_utils.R | 63 + .../tests/testthat/test-duration_utils.R | 62 + .../tests/testthat/test-session_duration.R | 57 + .../tests/testthat/test-ui_utils.R | 220 + .../tests/testthat/test-utils.R | 320 + .../connect-user-metrics/user.metrics.Rproj | 18 + 61 files changed, 13755 insertions(+) create mode 100644 extensions/connect-user-metrics/README.md create mode 100644 extensions/connect-user-metrics/_brand.yml create mode 100644 extensions/connect-user-metrics/app.R create mode 100644 extensions/connect-user-metrics/app/constants/.gitignore create mode 100644 extensions/connect-user-metrics/app/constants/filter_users.yml create mode 100644 extensions/connect-user-metrics/app/js/index.js create mode 100644 extensions/connect-user-metrics/app/logic/__init__.R create mode 100644 extensions/connect-user-metrics/app/logic/aggregation.R create mode 100644 extensions/connect-user-metrics/app/logic/charts.R create mode 100644 extensions/connect-user-metrics/app/logic/config_settings.R create mode 100644 extensions/connect-user-metrics/app/logic/connect-extension.R create mode 100644 extensions/connect-user-metrics/app/logic/data_utils.R create mode 100644 extensions/connect-user-metrics/app/logic/duration_utils.R create mode 100644 extensions/connect-user-metrics/app/logic/ui_utils.R create mode 100644 extensions/connect-user-metrics/app/logic/utils.R create mode 100644 extensions/connect-user-metrics/app/main.R create mode 100644 extensions/connect-user-metrics/app/metrics_theme.json create mode 100644 extensions/connect-user-metrics/app/metrics_theme_template.json create mode 100644 extensions/connect-user-metrics/app/static/css/app.min.css create mode 100644 extensions/connect-user-metrics/app/static/favicon.ico create mode 100644 extensions/connect-user-metrics/app/static/images/appsilon-logo.png create mode 100644 extensions/connect-user-metrics/app/static/images/rhino.png create mode 100644 extensions/connect-user-metrics/app/static/js/app.min.js create mode 100644 extensions/connect-user-metrics/app/styles/components/_about.scss create mode 100644 extensions/connect-user-metrics/app/styles/components/_content.scss create mode 100644 extensions/connect-user-metrics/app/styles/components/_footer.scss create mode 100644 extensions/connect-user-metrics/app/styles/components/_navbar.scss create mode 100644 extensions/connect-user-metrics/app/styles/components/_session_duration.scss create mode 100644 extensions/connect-user-metrics/app/styles/components/_sidebar.scss create mode 100644 extensions/connect-user-metrics/app/styles/components/_table.scss create mode 100644 extensions/connect-user-metrics/app/styles/main.scss create mode 100644 extensions/connect-user-metrics/app/styles/utilities/_base.scss create mode 100644 extensions/connect-user-metrics/app/styles/utilities/_variables.scss create mode 100644 extensions/connect-user-metrics/app/view/__init__.R create mode 100644 extensions/connect-user-metrics/app/view/about_section.R create mode 100644 extensions/connect-user-metrics/app/view/footer.R create mode 100644 extensions/connect-user-metrics/app/view/navbar_section.R create mode 100755 extensions/connect-user-metrics/app/view/session_duration.R create mode 100644 extensions/connect-user-metrics/app/view/table.R create mode 100644 extensions/connect-user-metrics/app/view/ui_components.R create mode 100644 extensions/connect-user-metrics/config.yml create mode 100644 extensions/connect-user-metrics/dependencies.R create mode 100644 extensions/connect-user-metrics/renv.lock create mode 100644 extensions/connect-user-metrics/renv/.gitignore create mode 100644 extensions/connect-user-metrics/renv/activate.R create mode 100644 extensions/connect-user-metrics/renv/settings.json create mode 100644 extensions/connect-user-metrics/rhino.yml create mode 100644 extensions/connect-user-metrics/tests/cypress.config.js create mode 100644 extensions/connect-user-metrics/tests/cypress/.gitignore create mode 100644 extensions/connect-user-metrics/tests/cypress/e2e/app.cy.js create mode 100644 extensions/connect-user-metrics/tests/testthat.R create mode 100644 extensions/connect-user-metrics/tests/testthat/setup.R create mode 100644 extensions/connect-user-metrics/tests/testthat/test-aggregation.R create mode 100644 extensions/connect-user-metrics/tests/testthat/test-charts.R create mode 100644 extensions/connect-user-metrics/tests/testthat/test-config.R create mode 100644 extensions/connect-user-metrics/tests/testthat/test-data_utils.R create mode 100644 extensions/connect-user-metrics/tests/testthat/test-duration_utils.R create mode 100644 extensions/connect-user-metrics/tests/testthat/test-session_duration.R create mode 100644 extensions/connect-user-metrics/tests/testthat/test-ui_utils.R create mode 100644 extensions/connect-user-metrics/tests/testthat/test-utils.R create mode 100644 extensions/connect-user-metrics/user.metrics.Rproj diff --git a/extensions/connect-user-metrics/README.md b/extensions/connect-user-metrics/README.md new file mode 100644 index 00000000..b1f0b7ab --- /dev/null +++ b/extensions/connect-user-metrics/README.md @@ -0,0 +1,249 @@ +# Connect Insights Dashboard +Expected output: repository with ready-to-use tool. Deploy, set env vars, and enjoy! +Repository for a reproducible tool to share user metrics for Posit Connect deployed applications. + +Expected deployment time: only 5 minutes! + +## Quickstart +To get insights about applications deployed by you, simply deploy the application to Posit Connect. + +If you wish to run the application locally, set the required [Environment Variables](#environment-variables), +and run `shiny::runApp()` from the root of this repository. + +## Environment Variables +This application requires the following environment variables to be set: + - `CONNECT_API_KEY` + - `CONNECT_SERVER` + +By default, Posit Connect provides values for these variables, as outlined in the [Vars (Environment Variables) Section][User Guide Vars]. +However, there are cases where you might want to set these variables manually: + - If you want to retrieve data for applications deployed by a different Publisher than the one + deploying the User Metrics application, set `CONNECT_API_KEY` with that Publisher's API key. + - If you want to retrieve data from a different Posit Connect instance than the one where the User + Metrics application is deployed, set `CONNECT_SERVER` with the URL of that instance. + Additionally, `CONNECT_API_KEY` must be set to authenticate on the instance specified in + `CONNECT_SERVER`. + +Additionally, if only selected applications should be included, use the `GUIDS` environment variable and provide the GUIDs of all the apps to be measured, separated by a single comma (no spaces): +```r +GUIDS=4203ee4b-16c5-452d-9509-712e29a0d3fb,d358a2e9-e166-4239-978c-d26e9ba82f71 +``` + +### Deployment with an API Key +To deploy an app using the RSConnect API Key, use the following code: + +```r +rsconnect::connectApiUser(server = "connect.appsilon.com", apiKey = "", account = "support") +rsconnect::accounts() # list accounts +rsconnect::deployApp(account = "support", appName = "appName") +``` + +## Default inputs configuration [with optional parameters] +By default, this application selects all users and all applications to be displayed in the summary charts and tables when launched. +The applications and users to include, as well as the aggregation level, can be configured without the need to manually set these options through the UI. +To do this, specify the parameters in a `config.yml` file located in the root directory, using the following structure: + +```yaml +default: + apps: "app1, app2" + users: "user1, user2, user3" + agg_levels: "user_guid, start_date" + agg_time: "day" + min_time: "00:02:00" + unique_users_goal: "10" + sessions_goal: "50" +``` + +* **apps***: The app title as shown in Posit Connect. +* **users***: The publisher's username. +* **agg_levels**: The aggregation level — can be: content_guid, user_guid, and/or start_date. +* **agg_time**: The aggregation frequency — can be: day, week, or month. +* **min_time**: The minimum session duration to filter data and plots. Use format "hh:mm:ss". +* **unique_users_goal***: Y-axis value for the goal line in the Unique Users plot. +* **sessions_goal***: Y-axis value for the goal line in the Total Sessions plot. +* **week_start**: The day to be used as the start of the week. + +_* Optional YAML parameters._ + +Multiple parameters can be listed and separated by commas. For example, the `config.yml` above specifies two apps (*app1*, *app2*), three users (*user1*, *user2*, *user3*), and two aggregation levels (*user_guid* and *start_date*). + +### Specifying goals +You can specify the goal in three different ways for both `unique_users_goal` and `sessions_goal`. + +1. Not specified — no goal is displayed: +```yaml +default: + apps: "" + users: "" + agg_levels: "start_date" # can be one of content_guid,user_guid,start_date + agg_time: "day" # can be one of day,week,month + min_time: "00:02:00" + week_start: "monday" +``` + +2. Single value for all aggregation levels (e.g., date and combinations like app, user, date): +```yaml +default: + apps: "" + users: "" + agg_levels: "start_date" # can be one of content_guid,user_guid,start_date + agg_time: "day" # can be one of day,week,month + min_time: "00:02:00" + unique_users_goal: "20" + sessions_goal: "10" + week_start: "monday" +``` + +3. Individual goals as a YAML list: +```yaml +default: + apps: "" + users: "" + agg_levels: "start_date" + agg_time: "day" + min_time: "00:02:00" + unique_users_goal: + - freq: "day" + per: "start_date" + goal: "7" + - freq: "day" + per: "start_date,content_guid" + goal: "14" + - freq: "week" + per: "start_date" + goal: "10" + sessions_goal: + - freq: "day" + per: "start_date" + goal: "27" + - freq: "day" + per: "start_date,content_guid" + goal: "84" + - freq: "week" + per: "start_date" + goal: "30" + week_start: "monday" +``` + +Note: You can mix and match — for example, define `unique_users_goal` and leave `sessions_goal` unspecified: +```yaml +default: + apps: "" + users: "" + agg_levels: "start_date" # can be one of content_guid,user_guid,start_date + agg_time: "day" # can be one of day,week,month + min_time: "00:02:00" + unique_users_goal: "20" + week_start: "monday" +``` + +## Features + +### Filtering users +You can exclude specific users from appearing in any part of the application by listing them in the `constants/filter_users.yml` file: + +```yaml +users: + - user_1 # will not appear in the app + - user_2 # will not appear in the app +``` + +### Branding +You can use the default branding provided by Appsilon or customize your own by modifying `_brand.yml` in the root directory. +This file controls the application's metadata, logo, colors, and typography. +Note: `_brand.yml` cannot be empty. All sections below must be defined for the app to work correctly. + +#### Metadata +Controls the application's title and credits. You can disable credits by setting `enabled` to `FALSE`: + +```yaml +meta: + app_title: "Posit Connect User Metrics" + credits: + enabled: FALSE +``` + +_* While disabling credits is possible, we encourage you to keep them as a token of appreciation for the developers and contributors. Supporting open-source helps sustain these efforts._ + +#### Logo +Add your logo to `app/static/images` and set the file name: + +```yaml +logo: "your_file.png" +``` + +#### Colors +Customize the color palette inside the `palette` section. Hex colors are recommended: + +```yaml +color: + palette: + white: "#FFFFFF" + mint: "#00CDA3" + blue: "#0099F9" + yellow: "#E8C329" + purple: "#994B9D" + black: "#000000" + gray: "#15354A" + foreground: gray + background: white + primary: blue +``` + +#### Typography +Define fonts used in the app under the `typography` section. The required keys are `base` and `headings`: + +```yaml +typography: + fonts: + - family: Maven Pro + source: google + weight: [400, 500, 600, 700] + style: normal + - family: Roboto + source: google + weight: [400, 500, 600] + style: normal + base: + Roboto + headings: + Maven Pro +``` + +Refer to the detailed [guide](https://posit-dev.github.io/brand-yml/) for advanced UI customization. + +## Disclaimer +Posit Connect usage data is most accurate for applications accessed by authenticated users. +Unauthenticated users cannot be distinguished, so user-level aggregation is not possible in such cases. + +Read more: [_Why You Should Use Posit Connect Authentication And How to Set It Up_][rsconnect-auth]. + +## Troubleshooting + +### Posit Connect does not appear to have `CONNECT_SERVER` and `CONNECT_API_KEY` set +Per the [Configuration appendix] in the Posit Connect Admin Guide, these variables are set by default. +However, this behavior can be overridden via [DefaultServerEnv] and [DefaultAPIKeyEnv]. + +Check with your Posit Connect administrator if that's the case. + +### The API connection fails due to a timeout after deploying the User Metrics application +If the connection times out using the default environment variables, the issue may be that the server cannot resolve its own fully qualified domain name. + +To fix this, go to the User Metrics [application Vars][User Guide Vars] and set `CONNECT_SERVER` to a local address, e.g.: +``` +http://localhost:3939 +``` +(Note: the scheme in the URL is required by `connectapi::connect()`.) + +### There is no usage data for my application +As with environment variables, the [Instrumentation] feature is also configurable. + +Confirm with your Posit Connect admin that instrumentation is enabled. + + +[User Guide Vars]: https://docs.posit.com/connect/user/content-settings/#content-vars +[rsconnect-auth]: https://appsilon.com/why-use-rstudio-connect-authentication/ +[Configuration appendix]: https://docs.posit.co/connect/admin/appendix/configuration/ +[DefaultServerEnv]: https://docs.posit.co/connect/admin/appendix/configuration/#Applications.DefaultServerEnv +[DefaultAPIKeyEnv]: https://docs.posit.co/connect/admin/appendix/configuration/#Applications.DefaultAPIKeyEnv +[Instrumentation]: https://docs.posit.co/connect/admin/appendix/configuration/#Metrics.Instrumentation diff --git a/extensions/connect-user-metrics/_brand.yml b/extensions/connect-user-metrics/_brand.yml new file mode 100644 index 00000000..31531a2e --- /dev/null +++ b/extensions/connect-user-metrics/_brand.yml @@ -0,0 +1,63 @@ +meta: + app_title: "Posit Connect User Metrics" + credits: + enabled: TRUE + about: + references: + homepage: + name: "Link to Appsilon" + link: "https://www.appsilon.com" + powered_by: + rhino: + name: "Rhino" + link: "https://appsilon.github.io/rhino/" + img_name: "rhino.png" + desc: "Rhino is an Open-Source Package developed by Appsilon to + help the R community make more professional Shiny Apps. Rhino allows you to + create Shiny apps The Appsilon Way - like a fullstack software engineer. + Apply best software engineering practices, modularize your code, + test it well, make UI beautiful, and think about user adoption + from the very beginning." + summary: "We create, maintain, and develop Shiny applications + for enterprise customers all over the world. Appsilon + provides scalability, security, and modern UI/UX with + custom R packages that native Shiny apps do not provide. + Our team is among the world's foremost experts in R Shiny + and has made a variety of Shiny innovations over the + years. Appsilon is a proud Posit Full Service + Certified Partner." + footer: + text: "Designed and developed with 💙 by" + link: + label: "Appsilon" + url: "https://www.appsilon.com" + +logo: "appsilon-logo.png" + +color: + palette: + white: "#FFFFFF" + mint: "#00CDA3" + blue: "#0099F9" + yellow: "#E8C329" + purple: "#994B9D" + black: "#000000" + gray: "#15354A" + foreground: gray + background: white + primary: blue + +typography: + fonts: + - family: Maven Pro + source: google + weight: [400, 500, 600, 700] + style: normal + - family: Roboto + source: google + weight: [400, 500, 600] + style: normal + base: + Roboto + headings: + Maven Pro diff --git a/extensions/connect-user-metrics/app.R b/extensions/connect-user-metrics/app.R new file mode 100644 index 00000000..93288192 --- /dev/null +++ b/extensions/connect-user-metrics/app.R @@ -0,0 +1,2 @@ +# Rhino / shinyApp entrypoint. Do not edit. +rhino::app() diff --git a/extensions/connect-user-metrics/app/constants/.gitignore b/extensions/connect-user-metrics/app/constants/.gitignore new file mode 100644 index 00000000..2e538613 --- /dev/null +++ b/extensions/connect-user-metrics/app/constants/.gitignore @@ -0,0 +1 @@ +static_data.rds diff --git a/extensions/connect-user-metrics/app/constants/filter_users.yml b/extensions/connect-user-metrics/app/constants/filter_users.yml new file mode 100644 index 00000000..ddc5bce1 --- /dev/null +++ b/extensions/connect-user-metrics/app/constants/filter_users.yml @@ -0,0 +1,2 @@ +users: + - this_user_will_not_appear_on_the_app diff --git a/extensions/connect-user-metrics/app/js/index.js b/extensions/connect-user-metrics/app/js/index.js new file mode 100644 index 00000000..e69de29b diff --git a/extensions/connect-user-metrics/app/logic/__init__.R b/extensions/connect-user-metrics/app/logic/__init__.R new file mode 100644 index 00000000..51c43579 --- /dev/null +++ b/extensions/connect-user-metrics/app/logic/__init__.R @@ -0,0 +1,2 @@ +# Logic: application code independent from Shiny. +# https://go.appsilon.com/rhino-project-structure diff --git a/extensions/connect-user-metrics/app/logic/aggregation.R b/extensions/connect-user-metrics/app/logic/aggregation.R new file mode 100644 index 00000000..6efb11a9 --- /dev/null +++ b/extensions/connect-user-metrics/app/logic/aggregation.R @@ -0,0 +1,130 @@ +box::use( + dplyr, + lubridate[floor_date], + magrittr[`%>%`], + stats[setNames], + tools[toTitleCase], +) + +box::use( + app/logic/utils[ + week_start_day, + week_start_id + ], +) + +#' Aggregate usage data based on specified levels and time period +#' @param usage Usage data frame +#' @param agg_levels Aggregation levels +#' @param date_aggregation Time period for aggregation +#' @return Aggregated data frame +aggregate_usage <- function(usage, agg_levels, date_aggregation) { + usage$day <- floor_date(usage$start_date, "day") + usage$week <- floor_date(usage$start_date, "week", + week_start = week_start_id + ) + usage$month <- floor_date(usage$start_date, "month") + + if (date_aggregation == "day") { + usage$start_date <- usage$start_date + } else if (date_aggregation == "week") { + usage$start_date <- usage$week + } else if (date_aggregation == "month") { + usage$start_date <- usage$month + } + + if (!is.null(agg_levels)) { + usage <- usage %>% + dplyr$group_by(dplyr$across(dplyr$all_of(agg_levels))) + } + + user_in_agg_levels <- "user_guid" %in% agg_levels + if (user_in_agg_levels) { + usage <- usage %>% + dplyr$filter(!is.na(user_guid)) + } + + usage %>% + dplyr$summarise( + avg_duration = mean(duration, na.rm = TRUE), + "Session count" = dplyr$n(), + "Unique users" = dplyr$n_distinct(user_guid) + ) %>% + dplyr$ungroup() +} + +#' Add metadata to aggregated usage data +#' @param agg_usage Aggregated usage data +#' @param apps Apps data frame +#' @param users Users data frame +#' @param content_guid_present Whether content_guid is in aggregation levels +#' @param user_guid_present Whether user_guid is in aggregation levels +#' @return Aggregated usage data with metadata +add_metadata <- function(agg_usage, apps, users, content_guid_present, user_guid_present) { + if (content_guid_present) { + agg_usage <- agg_usage %>% + dplyr$left_join(apps, by = c("content_guid" = "guid")) + } + if (user_guid_present) { + agg_usage <- agg_usage %>% + dplyr$left_join(users, by = c("user_guid" = "guid")) + } + agg_usage +} + +#' Process aggregated usage data +#' @param usage Usage data frame +#' @param agg_levels Vector of aggregation levels +#' @param date_aggregation Date aggregation level +#' @param apps Apps data frame +#' @param users Users data frame +#' @return Aggregated usage data frame +#' @export +process_agg_usage <- function(usage, agg_levels, date_aggregation, apps, users) { + content_guid_present <- "content_guid" %in% agg_levels + user_guid_present <- "user_guid" %in% agg_levels + + # If neither content_guid nor user_guid is present, just do basic aggregation + if (!content_guid_present && !user_guid_present) { + return(aggregate_usage(usage, agg_levels, date_aggregation)) + } + + # If no start_date in agg_levels and only one of content/user guid, + # force both to be present + if (!"start_date" %in% agg_levels && xor(content_guid_present, user_guid_present)) { + agg_levels <- c("content_guid", "user_guid") + content_guid_present <- user_guid_present <- TRUE + } + + # Do the aggregation and add metadata + agg_usage <- aggregate_usage(usage, agg_levels, date_aggregation) + add_metadata(agg_usage, apps, users, content_guid_present, user_guid_present) +} + +#' Format aggregated usage data for display +#' @param agg_usage Aggregated usage data frame +#' @param date_aggregation Date aggregation level ("week", "month", or "day") +#' @param format_duration Function to format duration values +#' @return Formatted data frame for display +#' @export +format_agg_usage <- function(agg_usage, date_aggregation, format_duration) { + date_col <- switch(date_aggregation, + "week" = paste(toTitleCase(week_start_day), "Date"), + "month" = "Month", + "Date" + ) + + # Create ordered column mapping + cols <- c( + setNames("title", "Application"), + setNames("username", "Username"), + setNames("start_date", date_col), + "Session count", + "Unique users", + setNames("avg_duration", "Average session duration") + ) + + agg_usage %>% + dplyr$mutate(avg_duration = format_duration(avg_duration)) %>% + dplyr$select(dplyr$any_of(cols)) +} diff --git a/extensions/connect-user-metrics/app/logic/charts.R b/extensions/connect-user-metrics/app/logic/charts.R new file mode 100644 index 00000000..86df755f --- /dev/null +++ b/extensions/connect-user-metrics/app/logic/charts.R @@ -0,0 +1,458 @@ +box::use( + dplyr[arrange, group_by, mutate, summarise], + echarts4r, + glue[glue], + htmlwidgets[JS], + lubridate[floor_date], + magrittr[`%>%`], + timetk[pad_by_time], +) + +box::use( + app/logic/utils, +) + +# Sessions ---- + +#' @title Plots chart for aggregated metrics in a given period grouped by chosen columns by user +#' @param agg_usage tibble with metrics columns avg_duration and `Session count`, varying grouping +#' columns as in agg_levels parameter, possible content_guid, user_guid, start_date, if +#' content_guid present also additional dictionary column: title if user_guid present also +#' additional dictionary column: username +#' @param agg_levels Vector with names of columns for which agg_usage was grouped and metric +#' columns calculated. utils$MAX_AGG_LEVELS stores current maximal number of columns used for +#' grouping. Currently used columns for grouping are: c("content_guid", "user_guid", +#' start_date"). Minimal number of columns used is zero and represented by NULL value of +#' parameter. This means the maximum aggregation for the whole period. +#' @param date_range date_range[1] <- from date, date_range[2] <- to_date. Used to explicitly +#' show the period in the title [TODO] +#' @param date_aggregation Used for line charts to fill up zero values for dates without +#' observations. Acceptable values are "day", "week", "month". +#' +#' @export +plot_session_chart <- function(agg_usage, agg_levels, date_range, + date_aggregation, + goal_line) { + if (nrow(agg_usage) > 0) { + if (is.null(agg_levels)) { + plot_session_summary_chart(agg_usage, date_range) + } else { + if ("start_date" %in% agg_levels) { + plot_session_line_chart( + agg_usage, agg_levels, date_range, + date_aggregation, + goal_line + ) + } else { + plot_session_bar_chart(agg_usage, agg_levels, date_range) + } + } + } +} + +#' @title Plot summary bar chart for Session Count and Average Duration metrics +#' @description Plot bar charts of Session Count and Average Duration metrics when there is no +#' columns in grouping +#' +#' @param agg_usage tibble with metrics columns avg_duration and `Session count`. For Summary chart +#' we assume no grouping columns +#' @param date_range date_range[1] <- from date, date_range[2] <- to_date. Used to explicitly show +#' the period in the title [TODO] +#' +#' @return "echarts4r" "htmlwidget" bar chart object +plot_session_summary_chart <- function(agg_usage, date_range) { + agg_usage$title <- c("All") + agg_usage %>% + mutate(avg_duration = ifelse(is.finite(avg_duration), round(avg_duration / 60), 0)) %>% + echarts4r$e_charts(x = title, height = "auto") %>% + echarts4r$e_theme("charts_theme") %>% + chart_title_helper( + title = "Total number of sessions and average session duration in minutes for all applications", # nolint: line_length + date_range = date_range + ) %>% + echarts4r$e_bar(serie = `Session count`, barMaxWidth = "30%") %>% + echarts4r$e_bar( + serie = avg_duration, + barMaxWidth = "30%", + name = "Avg session duration", + y_index = 1 + ) %>% + echarts4r$e_y_axis(name = "Minutes", nameLocation = "middle", index = 1, nameGap = 30) %>% + echarts4r$e_y_axis( + name = "Count", nameLocation = "middle", index = 0, nameGap = 30, + splitLine = list(show = FALSE) + ) %>% + echarts4r$e_legend(bottom = 0) %>% + echarts4r$e_tooltip() +} + +#' @title Plot line charts for Session Count metric +#' @description Plot line charts of Session Count metric when there is start_date in grouping +#' +#' @param agg_usage tibble with metrics columns avg_duration and `Session count`, varying grouping +#' columns as in agg_levels parameter, possible content_guid, user_guid, start_date, if +#' content_guid present also additional dictionary column: title if user_guid present also +#' additional dictionary column: username +#' @param agg_levels Vector with names of columns for which agg_usage was grouped and metric columns +#' calculated. utils$MAX_AGG_LEVELS stores current maximal number of columns used for grouping. +#' Currently used columns for grouping are: c("content_guid", "user_guid", start_date"). For +#' plotting lines we assume there is start_date column and additional one of two other columns for +#' series. If only start_date is present or all 3 columns are present one aggregated serie is +#' presented over the timeline. +#' @param date_range date_range[1] <- from date, date_range[2] <- to_date. Used to explicitly show +#' the period in the title [TODO] +#' @param date_aggregation Time period ("day", "week", "month") to fill up with zero values for time +#' periods without observations. +#' +#' @return "echarts4r" "htmlwidget" bar chart object +plot_session_line_chart <- function(agg_usage, agg_levels, + date_range, + date_aggregation, + goal_line) { + if (identical(c("content_guid", "start_date"), agg_levels)) { + agg_usage %>% + mutate(content_guid = title) %>% + group_by(title) %>% + arrange(start_date) %>% + date_zero_value_filler(date_range, date_aggregation) %>% + line_chart_helper( + title = "Number of sessions per interval for chosen applications", + date_range = date_range, + goal_line = goal_line + ) + } else if (identical(c("user_guid", "start_date"), agg_levels)) { + agg_usage %>% + mutate(user_guid = username) %>% + group_by(username) %>% + arrange(start_date) %>% + date_zero_value_filler(date_range, date_aggregation) %>% + line_chart_helper( + title = "Total number of sessions per interval of selected users", + date_range = date_range, + goal_line = goal_line + ) + } else if (identical(c("start_date"), agg_levels) || length(agg_levels) == utils$MAX_AGG_LEVELS) { + agg_usage %>% + group_by(start_date) %>% + arrange(start_date) %>% + summarise(`Session count` = sum(`Session count`)) %>% + date_zero_value_filler(date_range, date_aggregation) %>% + line_chart_helper( + title = "Total number of sessions per interval for all applications", + date_range = date_range, + goal_line = goal_line + ) + } +} + +#' @title Plot bar charts +#' Plot bar charts for Session Count metric when there is no start_date in grouping +#' +#' @param agg_usage tibble with metrics columns avg_duration and `Session count`, varying grouping +#' columns as in agg_levels parameter, possible content_guid, user_guid, start_date, if +#' content_guid present also additional dictionary column: title if user_guid present also +#' additional dictionary column: username +#' @param agg_levels Vector with names of columns for which agg_usage was grouped and metric columns +#' calculated. utils$MAX_AGG_LEVELS stores current maximal number of columns used for grouping. +#' Currently used columns for grouping are: c("content_guid", "user_guid", start_date"). For +#' plotting bars we assume one or two column grouping but no start_date column. +#' @param date_range date_range[1] <- from date, date_range[2] <- to_date. Used to explicitly show +#' the period in the title [TODO] +#' +#' @return "echarts4r" "htmlwidget" bar chart object +plot_session_bar_chart <- function(agg_usage, agg_levels, date_range) { + if (identical(c("content_guid"), agg_levels)) { + agg_usage %>% + bar_chart_helper("title", + title = "Total number of sessions per application", + date_range = date_range + ) + } else if (identical(c("user_guid"), agg_levels)) { + agg_usage %>% + bar_chart_helper("username", + title = "Total number of sessions per user", + date_range = date_range + ) + } else if (identical(c("content_guid", "user_guid"), agg_levels)) { + agg_usage %>% + group_by(title, username) %>% + bar_chart_helper("title", + title = "Total number of sessions per user and application", + date_range = date_range + ) + } +} + +# Unique Users ---- + +#' @export +#' Wrapper function to select and plot the unique users line and bar charts +#' @param agg_usage identical to definition in plot_session_line_chart() +#' @param agg_levels identical to definition in plot_session_line_chart() +#' @param date_range identical to definition in plot_session_line_chart() +#' @param date_aggregation identical to definition in plot_session_line_chart() +#' +#' @return "echarts4r" "htmlwidget" bar chart object +plot_unique_chart <- + function(agg_usage, + agg_levels, + date_range, + date_aggregation, + goal_line) { + if (nrow(agg_usage) > 0) { + if ("start_date" %in% agg_levels) { + # Note: When "user_guid" is present in agg_levels, we cannot truly + # calculate the number of unique users since we cannot aggregate by a + # variable and show it at the same time. Therefore, for Unique User plots + # we show generic plots pretending as if User was not selected. + + # Remove User (user_guid) from agg_levels when plotting the Unique Users + # line chart -- which is virtually the same as the line chart where User + # was not selected. + + # Combinations: + + # - User, Date + # - User, Application, Date + + if ("user_guid" %in% agg_levels) { + agg_levels <- agg_levels[!agg_levels %in% c("user_guid")] + } + + plot_unique_line_chart( + agg_usage, + agg_levels, + date_range, + date_aggregation, + goal_line + ) + } else { + # Change agg_levels to Application (content_guid) when only + # User (user_guid) is selected + + # Combinations: + + # - User + + if (identical(c("user_guid"), agg_levels)) { + agg_levels <- c("content_guid") + } + + # Otherwise, plot as it should be plotted + + # Combinations: + + # - Application, User + + plot_unique_bar_chart(agg_usage, agg_levels, date_range) + } + } + } + +#' Function to plot the unique users line charts (Date, Application & Date) +#' @param agg_usage identical to definition in plot_session_line_chart() +#' @param agg_levels identical to definition in plot_session_line_chart() +#' @param date_range identical to definition in plot_session_line_chart() +#' @param date_aggregation identical to definition in plot_session_line_chart() +#' +#' @return "echarts4r" "htmlwidget" bar chart object +plot_unique_line_chart <- function(agg_usage, + agg_levels, + date_range, + date_aggregation, + goal_line) { + if ("Unique users" %in% colnames(agg_usage)) { + if (identical(c("content_guid", "start_date"), agg_levels)) { + agg_usage %>% + mutate(content_guid = title) %>% + group_by(title, start_date) %>% + summarise(`Unique users` = sum(`Unique users`)) %>% + arrange(start_date) %>% + date_zero_value_filler(date_range, date_aggregation) %>% + line_chart_helper( + title = "Number of unique users per interval for chosen applications", + date_range = date_range, + goal_line = goal_line, + unique = TRUE, + disclaimer = TRUE + ) + } else if (identical(c("start_date"), agg_levels) || length(agg_levels) == utils$MAX_AGG_LEVELS) { # nolint: line_length + agg_usage %>% + group_by(start_date) %>% + summarise(`Unique users` = sum(`Unique users`)) %>% + arrange(start_date) %>% + date_zero_value_filler(date_range, date_aggregation) %>% + line_chart_helper( + title = "Total number of unique users per interval for all applications", + date_range = date_range, + goal_line = goal_line, + unique = TRUE, + disclaimer = TRUE + ) + } + } +} + +#' Function to plot the unique users bar chart (Application) +#' @param agg_usage identical to definition in plot_session_line_chart() +#' @param agg_levels identical to definition in plot_session_line_chart() +#' @param date_range identical to definition in plot_session_line_chart() +#' +#' @return "echarts4r" "htmlwidget" bar chart object +plot_unique_bar_chart <- function(agg_usage, agg_levels, date_range) { + if (any(c("content_guid", "user_guid") %in% agg_levels)) { + agg_usage %>% + mutate(content_guid = title) %>% + group_by(title) %>% + summarise(`Unique users` = sum(`Unique users`)) %>% + bar_chart_helper("title", + title = "Total number of unique users per application", + date_range = date_range, + unique = TRUE, + disclaimer = TRUE + ) + } +} + +# Helpers ---- + +chart_title_helper <- function(obj, title, date_range, disclaimer = FALSE) { + subtext <- glue("Period of {date_range[1]} - {date_range[2]}") + + if (disclaimer) { + subtext <- paste0( + subtext, + " | Note: The plot always assumes User is not selected" + ) + } + + echarts4r$e_title( + obj, + text = title, + textStyle = list( + overflow = "break", + width = 600 + ), + subtextStyle = list(fontSize = 14) + ) +} + +line_chart_helper <- function(obj, title, + date_range, + goal_line, + unique = FALSE, + disclaimer = FALSE) { + plot <- echarts4r$e_charts(obj, start_date) %>% + echarts4r$e_theme("charts_theme") %>% + chart_title_helper( + title = title, + date_range = date_range, + disclaimer = disclaimer + ) + + if (unique == TRUE) { + plot <- plot %>% + echarts4r$e_line(serie = `Unique users`) + + if (!is.null(goal_line)) { + if (max(obj$`Unique users`) < goal_line) { + plot <- plot %>% + # -1 rounds it to the nearest 10 + echarts4r$e_y_axis(max = round(goal_line + 10, -1)) + } + } + } else { + plot <- plot %>% + echarts4r$e_line(serie = `Session count`) + + if (!is.null(goal_line)) { + if (max(obj$`Session count`) < goal_line) { + plot <- plot %>% + # -1 rounds it to the nearest 10 + echarts4r$e_y_axis(max = round(goal_line + 10, -1)) + } + } + } + + if (!is.null(goal_line)) { + line_coords <- list( + xAxis = max(obj$start_date), + yAxis = goal_line + ) + plot <- plot %>% + echarts4r$e_mark_line( + data = line_coords, + itemStyle = list(color = "#ff364a"), + title = "GOAL", + symbol = "none" + ) + } + plot %>% + echarts4r$e_x_axis( + type = "category", + axisLabel = list( + # Change format to YYYY/MM/DD + formatter = JS("function(value) { return value.replace(/-/g, '/'); }") + ) + ) %>% + echarts4r$e_legend(top = "bottom") %>% + echarts4r$e_tooltip(trigger = "axis") +} + +bar_chart_helper <- function(obj, x, title, date_range, + unique = FALSE, + disclaimer = FALSE) { + plot <- obj %>% + echarts4r$e_charts_(x = x) %>% + echarts4r$e_theme("charts_theme") %>% + chart_title_helper( + title = title, + date_range = date_range, + disclaimer = disclaimer + ) + + if (unique == TRUE) { + plot <- plot %>% + echarts4r$e_bar(serie = `Unique users`) + } else { + if ("username" %in% colnames(obj)) { + plot <- plot %>% + echarts4r$e_bar(serie = `Session count`, username) + } else { + plot <- plot %>% + echarts4r$e_bar(serie = `Session count`) + } + } + + plot <- plot %>% + echarts4r$e_legend(top = "bottom") %>% + echarts4r$e_tooltip() +} + +date_zero_value_filler <- function( + agg_usage, + date_range, + date_aggregation, + week_start = utils$week_start_id +) { + if (nrow(agg_usage) == 0) { + return(agg_usage) + } + + start_date <- floor_date(date_range[1], date_aggregation, week_start) + + end_date <- date_range[2] + + if (start_date == end_date) { + return(agg_usage) + } + + agg_usage %>% + pad_by_time( + "start_date", + .by = date_aggregation, + .pad_value = 0, + .start_date = start_date, + .end_date = end_date + ) +} diff --git a/extensions/connect-user-metrics/app/logic/config_settings.R b/extensions/connect-user-metrics/app/logic/config_settings.R new file mode 100644 index 00000000..0477fb71 --- /dev/null +++ b/extensions/connect-user-metrics/app/logic/config_settings.R @@ -0,0 +1,110 @@ +box::use( + config[get], + magrittr[`%>%`], + purrr[map, map_dfr], + tibble[as_tibble, is_tibble], +) + +box::use( + app/logic/utils[AGG_LEVELS, AGG_TIME_LEVELS], +) + +#' @export +split_yml_params <- function(param) { + if (!is.list(param)) { + if (is.null(param)) { + return(NULL) + } + strsplit(param, ",", fixed = TRUE)[[1]] %>% map(trimws) + } else { + param %>% map_dfr(~ as_tibble(.x)) + } +} + +#' It reads the config.yml file in the main app directory +#' If nothing or any error then it outputs NULL +#' @export +read_config_yml <- function(file_path = "config.yml") { + tryCatch( + { + get(file = file_path) %>% map(split_yml_params) + }, + error = function(e) { + message("Error in parsing config") + message(e) + return(NULL) + } + ) +} + + +validate_apps <- function(config, data) { + length_flag <- length(config$apps) == 0 + subset_flag <- all(config$apps %in% data) + length_flag | subset_flag +} + +validate_users <- function(config, data) { + length_flag <- length(config$users) == 0 + subset_flag <- all(config$users %in% data) + length_flag | subset_flag +} + +validate_agg_levels <- function(config) { + config$agg_levels %in% AGG_LEVELS +} + +validate_agg_time <- function(config) { + config$agg_time %in% AGG_TIME_LEVELS +} + +validate_min_time <- function(config) { + !is.na(as.POSIXlt(unlist(config$min_time), format = "%H:%M:%S")) +} + +validate_goal <- function(config, goal_type) { + if (goal_type %in% names(config)) { + if (is_tibble(config[[goal_type]])) { + return(nrow(config[[goal_type]]) > 0) + } else { + return(!is.na(as.numeric(config[[goal_type]]))) + } + } + FALSE +} + +validate_week_start <- function(config) { + if (is.null(config$week_start)) { + return(FALSE) + } + + dows <- c( + "monday", "tuesday", "wednesday", "thursday", "friday", + "saturday", "sunday" + ) + config$week_start %in% dows +} + +#' @export +#' +#' Simple function to check whether a config param has a valid value or not +#' +#' @param config the config object after read_config_yml +#' @param config_key the key to validate against. Valid keys include apps, +#' users, agg_levels, min_time, unique_users_goal, sessions_goal +#' @param data if the validation rule needs some data object such as in apps, +#' users +#' +#' @return boolean result +is_config_valid <- function(config, config_key, data = NULL) { + switch(config_key, + apps = validate_apps(config, data), + users = validate_users(config, data), + agg_levels = validate_agg_levels(config), + agg_time = validate_agg_time(config), + min_time = validate_min_time(config), + unique_users_goal = validate_goal(config, "unique_users_goal"), + sessions_goal = validate_goal(config, "sessions_goal"), + week_start = validate_week_start(config) + ) +} diff --git a/extensions/connect-user-metrics/app/logic/connect-extension.R b/extensions/connect-user-metrics/app/logic/connect-extension.R new file mode 100644 index 00000000..07d57c58 --- /dev/null +++ b/extensions/connect-user-metrics/app/logic/connect-extension.R @@ -0,0 +1,7 @@ +box::use( + rsconnect +) + +rsconnect$writeManifest( + appMode = "shiny" +) diff --git a/extensions/connect-user-metrics/app/logic/data_utils.R b/extensions/connect-user-metrics/app/logic/data_utils.R new file mode 100644 index 00000000..223515c4 --- /dev/null +++ b/extensions/connect-user-metrics/app/logic/data_utils.R @@ -0,0 +1,111 @@ +box::use( + connectapi[get_content, get_usage_shiny, get_users], + dplyr, + lubridate, + magrittr[`%>%`], + purrr, + rlang, + utils[write.table], +) + +#' Check if x is a non trivial string +#' @details Returns FALSE if `x` is NULL, NA or a zero-length character. +#' This function is used when splitting the GUIDs: we don't want +#' NULLs, NAs or trivial strings appearing in the filters. +#' +#' Important: this function accepts only vectors of length 1, which is fine: +#' it was made to be used only inside a `purrr::map` +#' @export +is_non_trivial_string <- function(x) { + !rlang$is_empty(x) && !rlang$is_na(x) && nzchar(x) +} + +#' Split GUIDs string into a vector +#' @param guids Comma-separated string of GUIDs +#' @return Vector of GUIDs +#' @export +split_guids <- function(guids) { + if (is.na(guids)) { + return(NULL) + } + + splitted_guids <- strsplit(guids, ",", fixed = TRUE)[[1]] + + clean_guids <- purrr$keep(splitted_guids, is_non_trivial_string) + + if (rlang$is_empty(clean_guids)) { + return(NULL) + } + + clean_guids +} + +#' Given a client, what is the most recent date of activity in a Shiny app? +#' @param client Connect API client +#' @return A date (today, if none found) +#' @export +get_latest_date_from_client <- function(client, guids = NULL) { + # get the most recent start date + latest_date_from_client <- + get_usage_shiny( + client, limit = 1, asc_order = FALSE, content_guid = guids + )$started[1] + + # if somehow can't find the latest usage, return today + if (rlang$is_empty(latest_date_from_client) || rlang$is_na(latest_date_from_client)) { + return(lubridate$today()) + } + + lubridate$as_date(latest_date_from_client) +} + +#' Get usage data from a client +#' @param client Connect API client +#' @param from,to Date to filter start and end of data +#' @param guids Optional: filter results by content GUID +#' @export +get_usage_from_client <- function(client, from = NULL, to = NULL, guids = NULL) { + usage <- get_usage_shiny( + client, + limit = Inf, content_guid = guids, from = from, to = to + ) + + usage +} + +#' Get apps data from a client +#' @param client Connect API client +#' @param guids Optional: filter results by content GUID +#' @export +get_apps_from_client <- function(client, guids = NULL) { + apps <- + get_content(client, owner_guid = client$me()$guid) |> + dplyr$mutate(title = dplyr$case_when( + is.na(title) ~ name, + TRUE ~ title + )) + + if (!rlang$is_empty(guids)) { + apps <- apps %>% + dplyr$filter(guid %in% guids) + } + + apps +} + +#' Get users data from a client +#' @param client Connect API client +#' @export +get_users_from_client <- function(client) { + users <- get_users(client, page_size = Inf, limit = Inf) + + users +} + +#' Write data frame to CSV +#' @param data Data frame to write +#' @param file Output file path +#' @export +write_csv <- function(data, file) { + write.table(data, file, sep = ",", na = "", row.names = FALSE) +} diff --git a/extensions/connect-user-metrics/app/logic/duration_utils.R b/extensions/connect-user-metrics/app/logic/duration_utils.R new file mode 100644 index 00000000..2a7405b2 --- /dev/null +++ b/extensions/connect-user-metrics/app/logic/duration_utils.R @@ -0,0 +1,29 @@ +box::use( + lubridate[day, hour, minute, second, seconds_to_period], +) + +#' Convert seconds to HH:MM:SS format +#' @param s Vector of seconds +#' @return Vector of formatted duration strings +#' @export +format_duration <- function(s) { + if (length(s) == 0) return(character(0)) + + # vector of periods + periods <- seconds_to_period(round(s, digits = 0)) + + formatted <- sprintf( + "%02d:%02d:%02d", + day(periods) * 24 + hour(periods), + minute(periods), + second(periods) + ) + + # when negative, set to default + formatted[s < 0] <- "00:00:00" + + # when NA, return "" + formatted[is.na(s)] <- "" + + formatted +} diff --git a/extensions/connect-user-metrics/app/logic/ui_utils.R b/extensions/connect-user-metrics/app/logic/ui_utils.R new file mode 100644 index 00000000..25f94940 --- /dev/null +++ b/extensions/connect-user-metrics/app/logic/ui_utils.R @@ -0,0 +1,112 @@ +box::use( + grDevices[col2rgb], + here[here], + imola[ + breakpoint, + breakpointSystem + ], + jsonlite[ + fromJSON, + write_json + ], + stringr[ + fixed, + str_replace_all + ], + yaml[read_yaml], +) + +brand_path <- "_brand.yml" + +charts_theme_template_path <- "app/metrics_theme_template.json" + +#' @export +brand <- read_yaml(here(brand_path)) + +#' @export +is_credits_enabled <- isTRUE(brand$meta$credits$enabled) + +# Breakpoint system for layout +#' @export +breakpoints <- breakpointSystem( + "breakpoints", + breakpoint("xs", min = 320), + breakpoint("s", min = 428), + breakpoint("m", min = 728), + breakpoint("l", min = 1024), + breakpoint("xl", min = 1200) +) + +#' Mix two colors by transforming them to RGB +#' @param base_color Base color (hex) +#' @param blend_color Color to blend with (hex) +#' @param blend_weight Blend wiight in scale [0-1] +#' @return Mixed color hex +#' @export +color_mix <- function(base_color, blend_color, blend_weight) { + # Get RGB values for each color [0–255] + base_rgb <- col2rgb(base_color)[, 1] + blend_rgb <- col2rgb(blend_color)[, 1] + + # Blend two colors based on the blend_weight [0–1] + mixed_rgb <- round(base_rgb * (1 - blend_weight) + blend_rgb * blend_weight) + + # Format as hex color string + sprintf("#%02X%02X%02X", mixed_rgb[1], mixed_rgb[2], mixed_rgb[3]) +} + +# Placeholder replacements for charts theme +#' @export +placeholder_replacements <- list( + "$PRIMARY_LIGHT_COLOR" = color_mix( + base_color = brand$color$palette[[brand$color$primary]], + blend_color = brand$color$palette$white, + blend_weight = 0.2 + ), + "$BASE_FONT" = brand$typography$base, + "$HEADINGS_FONT" = brand$typography$headings +) + +#' Replace placeholders with values in given text +#' @param text Text containing placeholders in format "$PLACEHOLDER" +#' @param replacements List of placeholder names and their values +#' @return Text with values in place of placeholders +#' @export +replace_placeholders <- function(text, replacements) { + for (key in names(replacements)) { + text <- str_replace_all(text, fixed(key), as.character(replacements[[key]])) + } + text +} + +#' Compose charts theme .json file using values from branding .yml file +#' @param brand_path Path to branding .yml file +#' @param template_path Path to charts theme template .json file +#' @return Path to charts theme .json file +#' @export +compose_charts_theme <- function( + placeholder_replacements, + template_path = charts_theme_template_path +) { + if (!file.exists(template_path) || + length(placeholder_replacements) == 0 || + anyNA(placeholder_replacements) + ) { + return("") + } + + # Read template and replace placeholders with values + template_text <- readLines(template_path, warn = FALSE) + updated_text <- replace_placeholders( + text = template_text, + replacements = placeholder_replacements + ) + + # Convert updated text to JSON and write output + output_path <- sub("_template", "", template_path) + theme <- fromJSON(paste(updated_text, collapse = "\n"), simplifyVector = TRUE) + + write_json(theme, output_path, pretty = TRUE, auto_unbox = TRUE) + + if (file.exists(output_path)) output_path else "" +} diff --git a/extensions/connect-user-metrics/app/logic/utils.R b/extensions/connect-user-metrics/app/logic/utils.R new file mode 100644 index 00000000..a55f2a79 --- /dev/null +++ b/extensions/connect-user-metrics/app/logic/utils.R @@ -0,0 +1,170 @@ +box::use( + dplyr, + fs[path], + lubridate[as_date, floor_date], + magrittr[`%>%`], + purrr[map_lgl], + stringr[str_split], + tibble[is_tibble], +) + +box::use( + app/logic/config_settings[is_config_valid, read_config_yml], +) + +#' @export +MAX_AGG_LEVELS <- 3 # nolint: object_name_linter + +#' @export +AGG_LEVELS <- c("content_guid", "user_guid", "start_date") # nolint: object_name_linter + +#' @export +AGG_TIME_LEVELS <- c("Daily" = "day", "Weekly" = "week", "Monthly" = "month") # nolint: object_name_linter + +config <- read_config_yml() + +#' @export +week_start_day <- ifelse( + isTRUE(is_config_valid(config, "week_start")), + config$week_start[[1]], + "Monday" +) + +#' Maps the day of the week to an integer between 1 to 7 +#' where 1 indicates a Monday and a 7 indicates a Sunday +#' @param dow day(or days) of the week as a text (i.e. "Monday") +#' @return integer from 1 to 7 where 1 indicates a monday +#' @export +map_wday <- function(dow) { + dows <- c( + "monday", "tuesday", "wednesday", "thursday", "friday", + "saturday", "sunday" + ) + return(match(tolower(dow), dows)) +} + +#' @export +week_start_id <- map_wday(week_start_day) + +#' Retrieves the goal from a dataframe assuming the following structure +#' columns: +#' freq : +#' Contains the frequency for the goal. +#' Can be one of day,week,month +#' per : +#' The aggregation levels for the goal as a comma separated list. +#' Can be a combination of content_guid,user_guid,start_date +#' goal: +#' The value of the goal. +#' Must be a numerical value even if the column data type is +#' @param goal_df a dataframe with the above specification +#' @param agg_levels vector of aggregation levels to filter the 'per' column. +#' Should contain a combination of content_guid,user_guid,start_date +#' @param date_agg character value to filter the 'freq' column. +#' Can be one of day,week,month +#' @param returns a single numerical value if a goal matches the arguments else NULL is returned +get_goal_spec <- function(goal_df, agg_levels, date_agg) { + spec <- goal_df |> + dplyr$filter( + date_agg == freq, + str_split(per, ",") |> map_lgl(~ identical(sort(agg_levels), sort(trimws(.x)))) + ) |> + dplyr$pull(goal) |> + as.integer() + if (length(spec) == 0) { + return(NULL) + } else { + return(spec) + } +} + +#' Filter dataframe by username +#' @param df A dataframe. +#' @param users A string array. +#' @return A filtered dataframe. +#' @export +filter_data_by_user <- function(df, users) { + df %>% dplyr$filter(!(username %in% users)) +} + +#' Process goal configuration for charts +#' @param goal Goal configuration (can be tibble or numeric) +#' @param agg_levels Vector of aggregation levels +#' @param date_aggregation Date aggregation setting +#' @return Processed goal value (integer or NULL) +#' @export +process_chart_goal <- function(goal, agg_levels, date_aggregation) { + if (is_tibble(goal)) { + goal <- get_goal_spec( + goal, + agg_levels, + date_aggregation + ) + } else if (!is.null(goal)) { + goal <- as.integer(unlist(goal)) + } + + goal +} + +#' Create an image path based on the given path. +#' +#' @param image_path The path to be used for creating the image path. +#' @return The created image path. +#' +#' @examples +#' create_image_path("photo.jpg") +#' # Output: "../static/images/photo.jpg" +#' +#' @export +create_image_path <- function(image_path) { + base_path <- "static/images" + + if (nchar(base_path) < 1) { + file_path <- path(image_path) + } else { + file_path <- path( + base_path, + image_path + ) + } + + return(file_path) +} + +#' Get titles for applications and replace empty titles with names +#' @param titles Vector of each application title +#' @param names Vector of each application name +#' @return Vector of non-empty titles +#' @export +get_app_titles <- function(titles, names) { + has_title <- !is.na(titles) & titles != "" + ifelse(has_title, titles, names) +} + +#' Get date range length in selected units +#' @param start_date Date +#' @param end_date Date +#' @param unit Date unit (day, week, month) +#' @param week_start Week start day id, defaults to week_start set in config.yml +#' @return Date range length in selected units (number) +#' @export +get_date_range_length_in_units <- function( + start_date, + end_date, + unit = c("day", "week", "month"), + week_start = week_start_id +) { + start_date <- as_date(start_date) + end_date <- as_date(end_date) + + # Return 0 if start date is greater than end date + if (start_date > end_date) { + return(0) + } + + date_seq <- seq(start_date, end_date, by = "day") + + floored_date_seq <- floor_date(date_seq, unit, week_start) + length(unique(floored_date_seq)) +} diff --git a/extensions/connect-user-metrics/app/main.R b/extensions/connect-user-metrics/app/main.R new file mode 100644 index 00000000..e75d8819 --- /dev/null +++ b/extensions/connect-user-metrics/app/main.R @@ -0,0 +1,594 @@ +box::use( + bslib, + connectapi[connect, get_usage_shiny], + dplyr, + echarts4r[e_theme_register, echarts4rOutput, renderEcharts4r], + here[here], + lubridate, + magrittr[`%>%`], + mirai[mirai], + reactable[reactableOutput, renderReactable], + shiny, + shinyjs[toggleElement, useShinyjs], + shinyWidgets[ + prettyCheckboxGroup, + sendSweetAlert, + updateCheckboxGroupButtons, + updateVirtualSelect, + virtualSelectInput + ], + stats[setNames], + tibble[add_row], + tidyr[replace_na], + yaml[read_yaml], +) + +box::use( + app/logic/aggregation[format_agg_usage, process_agg_usage], + app/logic/charts, + app/logic/config_settings[is_config_valid, read_config_yml], + app/logic/data_utils, + app/logic/duration_utils[format_duration], + app/logic/ui_utils[ + compose_charts_theme, + is_credits_enabled, + placeholder_replacements + ], + app/logic/utils[ + AGG_TIME_LEVELS, + filter_data_by_user, + get_app_titles, + get_date_range_length_in_units, + process_chart_goal, + week_start_id + ], + app/view/footer, + app/view/navbar_section, + app/view/session_duration, + app/view/table, + app/view/ui_components[card_header_with_content, inline_info_text], +) + +if (file.exists("app/constants/filter_users.yml")) { + filter_users <- read_yaml(here("app/constants/filter_users.yml")) +} else { + filter_users <- list() + filter_users["users"] <- "" +} + +# Read Config ---- +config <- read_config_yml() + +guids <- Sys.getenv("GUIDS", NA) |> data_utils$split_guids() # nolint: object_name_linter + +#' @export +ui <- function(id) { + ns <- shiny$NS(id) + + # Page with sidebar + bslib$page_sidebar( + useShinyjs(), + shiny$useBusyIndicators(), + title = navbar_section$ui(ns("navbar")), + # Sidebar + sidebar = bslib$sidebar( + width = 300, + padding = 30, + open = "always", + shiny$h5(shiny$tags$b("Filters")), + shiny$uiOutput(ns("date_range_ui")), + shiny$selectInput( + inputId = ns("date_aggregation"), label = "Date aggregation", + choices = c( + "Daily" = "day", + "Weekly" = "week", + "Monthly" = "month" + ), + selected = "day", + multiple = FALSE + ), + shiny$hr(), + virtualSelectInput( + inputId = ns("apps"), + label = "Applications", + choices = NULL, + selected = NULL, + multiple = TRUE, + showValueAsTags = TRUE, + width = "100%", + dropboxWrapper = "body", + noOfDisplayValues = 3 + ), + prettyCheckboxGroup( + inputId = ns("agg_levels"), label = "Aggregation level", + choices = c( + "Application" = "content_guid", + "User" = "user_guid", + "Date" = "start_date" + ), + selected = "start_date", + icon = shiny$icon("check") + ), + session_duration$ui(ns("session_duration"), min_time = config$min_time), + virtualSelectInput( + inputId = ns("users"), + label = "Users", + choices = NULL, + selected = NULL, + multiple = TRUE, + showValueAsTags = TRUE, + width = "100%", + dropboxWrapper = "body", + noOfDisplayValues = 3 + ), + if (is_credits_enabled) shiny$tags$footer(footer$ui()) + ), + # Content + shiny$div( + e_theme_register( + theme = compose_charts_theme(placeholder_replacements), + name = "charts_theme" + ), + # Summary charts + bslib$card( + card_header_with_content( + title = "Summary charts", + content = + shiny$div( + class = "card-header-content", + inline_info_text( + "Average sessions: ", shiny$textOutput(ns("average_sessions")), NULL, + "Average unique users: ", shiny$textOutput(ns("unique_users")), NULL + ) + ) + ), + bslib$layout_column_wrap( + width = 1 / 2, + echarts4rOutput(ns("plot")), + echarts4rOutput(ns("unique_plot")) + ) + ), + shiny$hr(), + # Summary table + bslib$card( + card_header_with_content( + title = "Summary table", + content = shiny$div( + shiny$uiOutput(outputId = "ui_summary_table"), + shiny$div( + class = "card-header-content", + inline_info_text( + "Total sessions: ", shiny$textOutput(ns("total_sessions")), + NULL, + "Total unique users: ", shiny$textOutput(ns("total_unique_users")), + NULL + ), + shiny$downloadButton(outputId = ns("agg_usage_download"), icon = NULL) + ) + ) + ), + reactableOutput(ns("agg_usage")) + ), + shiny$hr(), + # Raw data + bslib$card( + card_header_with_content( + title = "Raw Data", + content = shiny$div( + class = "card-header-content", + inline_info_text( + "Most active app: ", shiny$textOutput(ns("most_active_app")), NULL, + "Most active user: ", shiny$textOutput(ns("most_active_user")), NULL + ), + shiny$downloadButton(ns("raw_usage_download"), icon = NULL) + ) + ), + reactableOutput(ns("raw_usage")) + ) + ) + ) +} + +#' @export +server <- function(id) { + shiny$moduleServer(id, function(input, output, session) { + # navbar ------------------------------------------------------------------ + navbar_section$server("navbar") + + if (!is.null(config)) { + ## Config: Agg Levels ---- + if (is_config_valid(config, "agg_levels")) { + updateCheckboxGroupButtons( + session, "agg_levels", + selected = config$agg_levels + ) + } + + ## Config: Agg Time ---- + if (is_config_valid(config, "agg_time")) { + selected_agg_time <- unlist(config$agg_time) + names(selected_agg_time) <- names(which( + AGG_TIME_LEVELS == selected_agg_time + )) + + updateVirtualSelect( + inputId = "date_aggregation", selected = unname(selected_agg_time), + session = session + ) + } + } + + # Connection with client --------------------------------------------------- + client <- shiny$reactive({ + tryCatch( + connect(), + error = function(err) { + sendSweetAlert( + session, + title = "Could not establish connection to RStudio Connect", + text = err$message, + type = "error", + btn_labels = "Close" + ) + } + ) + }) + + # rendering DateRangeInput with correct range ----------------------------- + output$date_range_ui <- shiny$renderUI({ + shiny$req(apps_guids()) + + max_date <- + data_utils$get_latest_date_from_client( + client = client(), + guids = apps_guids() + ) + + min_date <- max_date - lubridate$days(30) + + shiny$dateRangeInput( + inputId = session$ns("date_range"), label = "Date range", + format = "dd M yyyy", separator = "→", + start = min_date, end = max_date, + weekstart = ifelse(week_start_id == 7, 0, week_start_id) + ) + }) + + # Fetching data from client ----------------------------------------------- + apps <- shiny$reactive({ + apps <- + data_utils$get_apps_from_client(client = client(), guids = guids) |> + dplyr$select(guid, name, title) + + # intersect with provided guids, if any + if (!is.null(guids)) { + apps <- apps |> dplyr$filter(guid %in% guids) + } + + apps + }) + + # get data only for + apps_guids <- shiny$reactive({ + shiny$req(apps()) + + apps()$guid + }) + + users <- shiny$reactive({ + data_utils$get_users_from_client(client = client()) |> + dplyr$select(guid, username) %>% + add_row(guid = "unknown", username = "unknown") %>% + filter_data_by_user(filter_users$users) + }) + + # async fetch of usage data ----------------------------------------------- + task_usage <- shiny$ExtendedTask$new( + function(...) { + mirai( + { + get_usage_shiny( + client, + limit = Inf, content_guid = guids, + from = from, to = to + ) + }, + ... + ) + } + ) + + shiny$observe({ + shiny$req(input$date_range) + date_range <- input$date_range + + # add `+ lubridate$days(1)` in `to` to get data from the whole day; + task_usage$invoke( + client = client(), guids = apps_guids(), + from = date_range[1], to = date_range[2] + lubridate$days(1), + get_usage_shiny = get_usage_shiny + ) + }) + + raw_usage <- shiny$reactive({ + task_usage$result() + }) + + # Usage + joins ----------------------------------------------------------- + joined_usage <- shiny$reactive({ + shiny$req(apps()) + shiny$req(users()) + shiny$req(raw_usage()) + + raw_usage() |> + replace_na(list(user_guid = "unknown")) |> + dplyr$left_join(apps(), by = c("content_guid" = "guid")) |> + dplyr$left_join(users(), by = c("user_guid" = "guid")) |> + dplyr$mutate( + duration = as.double(ended - started, units = "secs"), + start_date = as.Date(started) + ) |> + filter_data_by_user(filter_users$users) + }) + + rc_min_time <- session_duration$server("session_duration") + + usage <- shiny$reactive({ + shiny$req(joined_usage()) + + joined_usage() |> + # filter by selected users and apps + dplyr$filter(content_guid %in% input$apps, user_guid %in% input$users) |> + dplyr$filter(duration >= rc_min_time()) + }) + + # Set API Response as Choices ---- + shiny$observe({ + apps_choices <- apps() %>% + dplyr$filter(!is.na(guid)) %>% + # Use application name if it doesn't have title + dplyr$mutate(display_title = get_app_titles(title, name)) %>% + { + setNames(.$guid, .$display_title) + } + + users_choices <- users() %>% + dplyr$filter(!is.na(guid), !is.na(username)) %>% + { + setNames(.$guid, .$username) + } + + updateVirtualSelect( + inputId = "apps", choices = apps_choices, selected = unname(apps_choices), + session = session + ) + + updateVirtualSelect( + inputId = "users", choices = users_choices, selected = unname(users_choices), + session = session + ) + }) + + agg_usage <- shiny$reactive({ + process_agg_usage( + usage = usage(), + agg_levels = input$agg_levels, + date_aggregation = input$date_aggregation, + apps = apps(), + users = users() + ) + }) + + shiny$observe({ + toggleElement("unauthenticated_disclaimer", condition = "user_guid" %in% input$agg_levels) + }) + + formatted_usage <- shiny$reactive({ + usage() %>% + dplyr$mutate(duration = format_duration(duration)) %>% + dplyr$select( + Application = title, + Username = username, + "Session start" = started, + "Session end" = ended, + "Session duration" = duration + ) + }) + + + # Raw data display ---- + output$most_active_app <- shiny$renderText({ + shiny$validate( + shiny$need( + nrow(formatted_usage()) > 0, "No data to display." + ) + ) + + names(which.max(table(formatted_usage()$Application))) + }) + + output$most_active_user <- shiny$renderText({ + shiny$validate( + shiny$need( + nrow(formatted_usage()) > 0, "No data to display." + ) + ) + + names(which.max(table(formatted_usage()$Username))) + }) + + # Render reactables ------------------------------------------------------- + output$raw_usage <- renderReactable({ + formatted_usage() %>% + table$reactable2() + }) + + output$raw_usage_download <- shiny$downloadHandler( + "User Metrics (raw data).csv", + function(file) data_utils$write_csv(formatted_usage(), file) + ) + + formatted_agg_usage <- shiny$reactive({ + format_agg_usage(agg_usage(), input$date_aggregation, format_duration) + }) + + output$agg_usage <- renderReactable({ + formatted_agg_usage() %>% + table$reactable2() + }) + + ## Config: Sessions Goal ---- + sessions_goal <- NULL + if (is_config_valid(config, "sessions_goal")) { + sessions_goal <- config$sessions_goal + } + + ## Config: Unique Users Goal ---- + unique_users_goal <- NULL + if (is_config_valid(config, "unique_users_goal")) { + unique_users_goal <- config$unique_users_goal + } + + # Summary charts ---- + date_diff_in_units <- shiny$reactive({ + get_date_range_length_in_units( + input$date_range[1], + input$date_range[2], + input$date_aggregation + ) + }) + + output$average_sessions <- shiny$renderText({ + shiny$validate( + shiny$need( + nrow(formatted_usage()) > 0, "No data to display." + ) + ) + + nrow(formatted_usage()) / date_diff_in_units() + }) + + output$unique_users <- shiny$renderText({ + shiny$validate( + shiny$need( + nrow(formatted_usage()) > 0, "No data to display." + ) + ) + + length(unique(formatted_usage()$`Username`)) / date_diff_in_units() + }) + + output$plot <- renderEcharts4r({ + sessions_goal <- process_chart_goal( + sessions_goal, + input$agg_levels, + input$date_aggregation + ) + + shiny$validate( + shiny$need( + nrow(agg_usage()) > 0, "No data to display." + ) + ) + + charts$plot_session_chart( + agg_usage(), + input$agg_levels, + input$date_range, + input$date_aggregation, + sessions_goal + ) + }) + + output$unique_plot <- renderEcharts4r({ + unique_users_goal <- process_chart_goal( + unique_users_goal, + input$agg_levels, + input$date_aggregation + ) + + shiny$validate( + shiny$need( + nrow(agg_usage()) > 0, "No data to display." + ) + ) + + charts$plot_unique_chart( + agg_usage(), + input$agg_levels, + input$date_range, + input$date_aggregation, + unique_users_goal + ) + }) + + # Summary table ---- + output$total_sessions <- shiny$renderText({ + shiny$validate( + shiny$need( + nrow(formatted_usage()) > 0, "No data to display." + ) + ) + + nrow(formatted_usage()) + }) + + output$total_unique_users <- shiny$renderText({ + shiny$validate( + shiny$need( + nrow(formatted_usage()) > 0, "No data to display." + ) + ) + + length(unique(formatted_usage()$`Username`)) + }) + + output$agg_usage_download <- shiny$downloadHandler( + "User Metrics (aggregated data).csv", + function(file) data_utils$write_csv(formatted_agg_usage(), file) + ) + + if (!is.null(config)) { + ## Config: Apps ---- + shiny$observeEvent(is_config_valid(config, "apps", apps()$title), { + selected_apps <- NULL + if (length(unlist(config$apps)) == 0) { + selected_apps <- apps()$guid + # Use application name if it doesn't have title + names(selected_apps) <- get_app_titles(apps()$title, apps()$name) + } else { + selected_app_names <- unlist(config$apps) + selected_apps <- + apps()[apps()$title %in% selected_app_names, ]$guid + names(selected_apps) <- selected_app_names + } + + updateVirtualSelect( + inputId = "apps", selected = unname(selected_apps), + choices = selected_apps, + session = session + ) + }) + + ## Config: Users ---- + shiny$observeEvent(is_config_valid(config, "users", users()$username), { + selected_users <- NULL + if (length(unlist(config$users)) == 0) { + selected_users <- users()$guid + names(selected_users) <- users()$username + } else { + selected_user_names <- unlist(config$users) + selected_users <- + users()[users()$username %in% selected_user_names, ]$guid + names(selected_users) <- selected_user_names + } + + updateVirtualSelect( + inputId = "users", selected = unname(selected_users), + choices = selected_users, + session = session + ) + }) + } + }) +} diff --git a/extensions/connect-user-metrics/app/metrics_theme.json b/extensions/connect-user-metrics/app/metrics_theme.json new file mode 100644 index 00000000..41fcd594 --- /dev/null +++ b/extensions/connect-user-metrics/app/metrics_theme.json @@ -0,0 +1,374 @@ +{ + "color": ["#33ADFA", "#f779a0", "#21934a", "#7b379b", "#005185", "#003c5e", "#e85d5d", "#fcd73d", "#f78639", "#26d188", "#41aad8", "#ae04b7"], + "backgroundColor": "rgba(252,252,252,0)", + "textStyle": { + "fontFamily": "Roboto" + }, + "title": { + "textStyle": { + "fontFamily": "Maven Pro", + "color": "#4e5359", + "fontWeight": "600" + }, + "subtextStyle": { + "color": "#999999" + } + }, + "line": { + "itemStyle": { + "borderWidth": "2" + }, + "lineStyle": { + "width": "3" + }, + "symbolSize": "8", + "symbol": "emptyCircle", + "smooth": 0.1 + }, + "radar": { + "itemStyle": { + "borderWidth": "2" + }, + "lineStyle": { + "width": "3" + }, + "symbolSize": "8", + "symbol": "emptyCircle", + "smooth": false + }, + "bar": { + "itemStyle": { + "barBorderWidth": 0, + "barBorderColor": "#ccc" + } + }, + "pie": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "scatter": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "boxplot": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "parallel": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "sankey": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "funnel": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "gauge": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "candlestick": { + "itemStyle": { + "color": "#e6a0d2", + "color0": "transparent", + "borderColor": "#e6a0d2", + "borderColor0": "#3fb1e3", + "borderWidth": "2" + } + }, + "graph": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + }, + "lineStyle": { + "width": "1", + "color": "#cccccc" + }, + "symbolSize": "8", + "symbol": "emptyCircle", + "smooth": false, + "color": ["#4d8dc9", "#404040", "#626c91", "#a0a7e6"], + "label": { + "color": "#ffffff" + } + }, + "map": { + "itemStyle": { + "areaColor": "#eeeeee", + "borderColor": "#aaaaaa", + "borderWidth": 0.5 + }, + "label": { + "color": "#ffffff" + }, + "emphasis": { + "itemStyle": { + "areaColor": "rgba(63,177,227,0.25)", + "borderColor": "#3fb1e3", + "borderWidth": 1 + }, + "label": { + "color": "#3fb1e3" + } + } + }, + "geo": { + "itemStyle": { + "areaColor": "#eeeeee", + "borderColor": "#aaaaaa", + "borderWidth": 0.5 + }, + "label": { + "color": "#ffffff" + }, + "emphasis": { + "itemStyle": { + "areaColor": "rgba(63,177,227,0.25)", + "borderColor": "#3fb1e3", + "borderWidth": 1 + }, + "label": { + "color": "#3fb1e3" + } + } + }, + "categoryAxis": { + "axisLine": { + "show": true, + "lineStyle": { + "color": "#eeeeee" + } + }, + "axisTick": { + "show": false, + "lineStyle": { + "color": "#333" + } + }, + "axisLabel": { + "show": true, + "color": "#6f7578" + }, + "splitLine": { + "show": true, + "lineStyle": { + "color": "#eeeeee" + } + }, + "splitArea": { + "show": false, + "areaStyle": { + "color": ["rgba(250,250,250,0.05)", "rgba(200,200,200,0.02)"] + } + } + }, + "valueAxis": { + "axisLine": { + "show": true, + "lineStyle": { + "color": "#eeeeee" + } + }, + "axisTick": { + "show": false, + "lineStyle": { + "color": "#333" + } + }, + "axisLabel": { + "show": true, + "color": "#6f7578" + }, + "splitLine": { + "show": true, + "lineStyle": { + "color": "#eeeeee" + } + }, + "splitArea": { + "show": false, + "areaStyle": { + "color": ["rgba(250,250,250,0.05)", "rgba(200,200,200,0.02)"] + } + } + }, + "logAxis": { + "axisLine": { + "show": true, + "lineStyle": { + "color": "#cccccc" + } + }, + "axisTick": { + "show": false, + "lineStyle": { + "color": "#333" + } + }, + "axisLabel": { + "show": true, + "color": "#6f7578" + }, + "splitLine": { + "show": true, + "lineStyle": { + "color": "#eeeeee" + } + }, + "splitArea": { + "show": false, + "areaStyle": { + "color": ["rgba(250,250,250,0.05)", "rgba(200,200,200,0.02)"] + } + } + }, + "timeAxis": { + "axisLine": { + "show": true, + "lineStyle": { + "color": "#cccccc" + } + }, + "axisTick": { + "show": false, + "lineStyle": { + "color": "#333" + } + }, + "axisLabel": { + "show": true, + "color": "#6f7578" + }, + "splitLine": { + "show": true, + "lineStyle": { + "color": "#eeeeee" + } + }, + "splitArea": { + "show": false, + "areaStyle": { + "color": ["rgba(250,250,250,0.05)", "rgba(200,200,200,0.02)"] + } + } + }, + "toolbox": { + "iconStyle": { + "borderColor": "#999999" + }, + "emphasis": { + "iconStyle": { + "borderColor": "#666666" + } + } + }, + "legend": { + "textStyle": { + "color": "#6f7578" + } + }, + "tooltip": { + "backgroundColor": "#1b2c40", + "textStyle": { + "color": "#ffffff", + "fontSize": 14, + "fontFamily": "Roboto" + }, + "axisPointer": { + "lineStyle": { + "color": "#cccccc", + "width": 1 + }, + "crossStyle": { + "color": "#cccccc", + "width": 1 + } + } + }, + "timeline": { + "lineStyle": { + "color": "#626c91", + "width": 1 + }, + "itemStyle": { + "color": "#626c91", + "borderWidth": 1 + }, + "controlStyle": { + "color": "#626c91", + "borderColor": "#626c91", + "borderWidth": 0.5 + }, + "checkpointStyle": { + "color": "#3fb1e3", + "borderColor": "#3fb1e3" + }, + "label": { + "color": "#626c91" + }, + "emphasis": { + "itemStyle": { + "color": "#626c91" + }, + "controlStyle": { + "color": "#626c91", + "borderColor": "#626c91", + "borderWidth": 0.5 + }, + "label": { + "color": "#626c91" + } + } + }, + "visualMap": { + "color": ["#2a99c9", "#afe8ff"] + }, + "dataZoom": { + "backgroundColor": "rgba(255,255,255,0)", + "dataBackgroundColor": "rgba(222,222,222,1)", + "fillerColor": "rgba(114,230,212,0.25)", + "handleColor": "#cccccc", + "handleSize": "100%", + "textStyle": { + "color": "#999999" + } + }, + "markPoint": { + "label": { + "color": "#ffffff" + }, + "emphasis": { + "label": { + "color": "#ffffff" + } + } + }, + "markLine": { + "label": { + "show": true, + "color": "#ff364a", + "fontWeight": "500", + "fontFamily": "Roboto", + "position": "end", + "offset": [0, 2] + } + } +} diff --git a/extensions/connect-user-metrics/app/metrics_theme_template.json b/extensions/connect-user-metrics/app/metrics_theme_template.json new file mode 100644 index 00000000..8222483c --- /dev/null +++ b/extensions/connect-user-metrics/app/metrics_theme_template.json @@ -0,0 +1,415 @@ +{ + "color": [ + "$PRIMARY_LIGHT_COLOR", + "#f779a0", + "#21934a", + "#7b379b", + "#005185", + "#003c5e", + "#e85d5d", + "#fcd73d", + "#f78639", + "#26d188", + "#41aad8", + "#ae04b7" + ], + "backgroundColor": "rgba(252,252,252,0)", + "textStyle": { + "fontFamily": "$BASE_FONT" + }, + "title": { + "textStyle": { + "fontFamily": "$HEADINGS_FONT", + "color": "#4e5359", + "fontWeight": "600" + }, + "subtextStyle": { + "color": "#999999" + } + }, + "line": { + "itemStyle": { + "borderWidth": "2" + }, + "lineStyle": { + "width": "3" + }, + "symbolSize": "8", + "symbol": "emptyCircle", + "smooth": 0.1 + }, + "radar": { + "itemStyle": { + "borderWidth": "2" + }, + "lineStyle": { + "width": "3" + }, + "symbolSize": "8", + "symbol": "emptyCircle", + "smooth": false + }, + "bar": { + "itemStyle": { + "barBorderWidth": 0, + "barBorderColor": "#ccc" + } + }, + "pie": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "scatter": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "boxplot": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "parallel": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "sankey": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "funnel": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "gauge": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + } + }, + "candlestick": { + "itemStyle": { + "color": "#e6a0d2", + "color0": "transparent", + "borderColor": "#e6a0d2", + "borderColor0": "#3fb1e3", + "borderWidth": "2" + } + }, + "graph": { + "itemStyle": { + "borderWidth": 0, + "borderColor": "#ccc" + }, + "lineStyle": { + "width": "1", + "color": "#cccccc" + }, + "symbolSize": "8", + "symbol": "emptyCircle", + "smooth": false, + "color": [ + "#4d8dc9", + "#404040", + "#626c91", + "#a0a7e6" + ], + "label": { + "color": "#ffffff" + } + }, + "map": { + "itemStyle": { + "areaColor": "#eeeeee", + "borderColor": "#aaaaaa", + "borderWidth": 0.5 + }, + "label": { + "color": "#ffffff" + }, + "emphasis": { + "itemStyle": { + "areaColor": "rgba(63,177,227,0.25)", + "borderColor": "#3fb1e3", + "borderWidth": 1 + }, + "label": { + "color": "#3fb1e3" + } + } + }, + "geo": { + "itemStyle": { + "areaColor": "#eeeeee", + "borderColor": "#aaaaaa", + "borderWidth": 0.5 + }, + "label": { + "color": "#ffffff" + }, + "emphasis": { + "itemStyle": { + "areaColor": "rgba(63,177,227,0.25)", + "borderColor": "#3fb1e3", + "borderWidth": 1 + }, + "label": { + "color": "#3fb1e3" + } + } + }, + "categoryAxis": { + "axisLine": { + "show": true, + "lineStyle": { + "color": "#eeeeee" + } + }, + "axisTick": { + "show": false, + "lineStyle": { + "color": "#333" + } + }, + "axisLabel": { + "show": true, + "color": "#6f7578" + }, + "splitLine": { + "show": true, + "lineStyle": { + "color": [ + "#eeeeee" + ] + } + }, + "splitArea": { + "show": false, + "areaStyle": { + "color": [ + "rgba(250,250,250,0.05)", + "rgba(200,200,200,0.02)" + ] + } + } + }, + "valueAxis": { + "axisLine": { + "show": true, + "lineStyle": { + "color": "#eeeeee" + } + }, + "axisTick": { + "show": false, + "lineStyle": { + "color": "#333" + } + }, + "axisLabel": { + "show": true, + "color": "#6f7578" + }, + "splitLine": { + "show": true, + "lineStyle": { + "color": [ + "#eeeeee" + ] + } + }, + "splitArea": { + "show": false, + "areaStyle": { + "color": [ + "rgba(250,250,250,0.05)", + "rgba(200,200,200,0.02)" + ] + } + } + }, + "logAxis": { + "axisLine": { + "show": true, + "lineStyle": { + "color": "#cccccc" + } + }, + "axisTick": { + "show": false, + "lineStyle": { + "color": "#333" + } + }, + "axisLabel": { + "show": true, + "color": "#6f7578" + }, + "splitLine": { + "show": true, + "lineStyle": { + "color": [ + "#eeeeee" + ] + } + }, + "splitArea": { + "show": false, + "areaStyle": { + "color": [ + "rgba(250,250,250,0.05)", + "rgba(200,200,200,0.02)" + ] + } + } + }, + "timeAxis": { + "axisLine": { + "show": true, + "lineStyle": { + "color": "#cccccc" + } + }, + "axisTick": { + "show": false, + "lineStyle": { + "color": "#333" + } + }, + "axisLabel": { + "show": true, + "color": "#6f7578" + }, + "splitLine": { + "show": true, + "lineStyle": { + "color": [ + "#eeeeee" + ] + } + }, + "splitArea": { + "show": false, + "areaStyle": { + "color": [ + "rgba(250,250,250,0.05)", + "rgba(200,200,200,0.02)" + ] + } + } + }, + "toolbox": { + "iconStyle": { + "borderColor": "#999999" + }, + "emphasis": { + "iconStyle": { + "borderColor": "#666666" + } + } + }, + "legend": { + "textStyle": { + "color": "#6f7578" + } + }, + "tooltip": { + "backgroundColor": "#1b2c40", + "textStyle": { + "color": "#ffffff", + "fontSize": 14, + "fontFamily": "$BASE_FONT" + }, + "axisPointer": { + "lineStyle": { + "color": "#cccccc", + "width": 1 + }, + "crossStyle": { + "color": "#cccccc", + "width": 1 + } + } + }, + "timeline": { + "lineStyle": { + "color": "#626c91", + "width": 1 + }, + "itemStyle": { + "color": "#626c91", + "borderWidth": 1 + }, + "controlStyle": { + "color": "#626c91", + "borderColor": "#626c91", + "borderWidth": 0.5 + }, + "checkpointStyle": { + "color": "#3fb1e3", + "borderColor": "#3fb1e3" + }, + "label": { + "color": "#626c91" + }, + "emphasis": { + "itemStyle": { + "color": "#626c91" + }, + "controlStyle": { + "color": "#626c91", + "borderColor": "#626c91", + "borderWidth": 0.5 + }, + "label": { + "color": "#626c91" + } + } + }, + "visualMap": { + "color": [ + "#2a99c9", + "#afe8ff" + ] + }, + "dataZoom": { + "backgroundColor": "rgba(255,255,255,0)", + "dataBackgroundColor": "rgba(222,222,222,1)", + "fillerColor": "rgba(114,230,212,0.25)", + "handleColor": "#cccccc", + "handleSize": "100%", + "textStyle": { + "color": "#999999" + } + }, + "markPoint": { + "label": { + "color": "#ffffff" + }, + "emphasis": { + "label": { + "color": "#ffffff" + } + } + }, + "markLine": { + "label": { + "show": true, + "color": "#ff364a", + "fontWeight": "500", + "fontFamily": "$BASE_FONT", + "position": "end", + "offset": [0, 2] + } + } +} diff --git a/extensions/connect-user-metrics/app/static/css/app.min.css b/extensions/connect-user-metrics/app/static/css/app.min.css new file mode 100644 index 00000000..0eb3e95a --- /dev/null +++ b/extensions/connect-user-metrics/app/static/css/app.min.css @@ -0,0 +1 @@ +h1,h2,h3,h4,h5{margin-bottom:0;color:var(--bs-gray-700)}.btn{--bs-btn-padding-x: 15px;--bs-btn-padding-y: 5px}.btn-default,.btn:disabled,.btn.disabled,fieldset:disabled .btn{border:none;border-radius:4px;background-color:var(--bs-primary);color:var(--bs-white);cursor:pointer;padding:6px 16px;min-width:100px;max-height:36px;opacity:unset}.btn-default:hover,.btn-default:focus,:not(.btn-check)+.btn:active{background-color:color-mix(in srgb, var(--bs-primary), black 10%);color:var(--bs-white);background-image:none;opacity:unset}.btn-group-toggle{margin-left:5px !important}details.collapsible-section{margin-top:20px}details.collapsible-section>summary{align-items:center;cursor:pointer;display:flex;margin-bottom:10px;width:fit-content}details.collapsible-section>summary::before{content:"▶";font-size:80%;margin-right:5px}details.collapsible-section[open]>summary::before{content:"▼"}details.collapsible-section>summary>h3{margin:0}hr{margin:0;color:#dde1e6;opacity:1}.no-busy-indicator .recalculating::after{display:none !important;content:none !important}div.app-header{height:50px;padding:20px 20px 20px 0;z-index:1}div.app-header .logo-link{border-right:1px solid #c5c8ca;flex:0;padding:0 10px 0 0;width:auto;z-index:1}div.app-header .logo-link .logo{width:100px}div.app-header .title{color:var(--bs-gray-700);flex:1;font-size:1.15em;font-weight:600;margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;z-index:1}div.app-header .navigation{flex:0}div.app-header .navigation .btn-nav-menu{background:rgba(0,0,0,0);border:none;border-radius:20px;color:#15354a;font-weight:normal;font-size:1em;height:auto;outline:none !important;transition:color .2s,background-color .2s}div.app-header .navigation .btn-nav-menu.selected{background-color:rgba(0,153,249,.1);border-bottom:none;color:#0099f9;outline:0}div.app-header .navigation .btn-nav-menu:hover,div.app-header .navigation .btn-nav-menu:active{background-color:rgba(21,53,74,.05)}div.app-header .btn-cta{border-radius:4px;background-color:#0099f9;color:var(--bs-white);cursor:pointer;flex:0;padding:8px 16px;text-decoration:none;transition:color .2s,background-color .2s;white-space:nowrap;width:auto;z-index:1}div.app-header .btn-cta:hover{background-color:#008de7;color:var(--bs-white);background-image:none}div.app-header .burger-btn{background:none;border:none;display:none;flex:0;font-size:1.5em;transition:color .2s;min-width:30px;z-index:1}div.app-header .burger-btn:hover{color:#0099f9}@media screen and (max-width: 1024px){div.app-header{padding:0}div.app-header .burger-btn{display:flex}div.app-header .navigation{background-color:var(--bs-white);height:auto;left:0;padding:80px 20px 40px;position:fixed;top:0;transform:translateY(-100%);transition:transform .2s,visibility 0s .2s;visibility:hidden;width:100%;z-index:0}div.app-header .navigation.visible{transition:transform .2s,visibility 0s;transform:translateY(0);visibility:visible}div.app-header .navigation .btn-nav-menu{background:rgba(0,0,0,0);border:none;border-radius:20px;color:#15354a;font-weight:normal;font-size:1em;height:auto;outline:none !important;transition:color .2s,background-color .2s}}.info-btns{display:contents}.info-btns .btn.action-button.info-btn{border:none;background-color:var(--bs-body-bg);color:#0099f9;cursor:pointer;font-size:1.2em;flex:0;min-width:24px;padding:0;transition:background-color .2s,color .2s;z-index:1}.info-btns .btn.action-button.info-btn:hover,.info-btns .btn.action-button.info-btn:focus{background:none;box-shadow:none;color:#008de7;outline:none}.info-btns .btn.action-button.info-btn i{padding-top:5px;font-size:1.3em}.modal-header .modal-title{color:#15354a;font-size:1.2em;font-weight:600}.modal-content .about-section{display:flex;flex-direction:column;gap:1.6em}.modal-content .about-section .about-links{display:flex;gap:.5em;padding-bottom:1em}.modal-content .about-section .about-links .link{align-items:center;background-color:#ccebff;border-radius:4em;color:#15354a;cursor:pointer;display:flex;gap:.5em;padding:.5em 1em;text-decoration:none}.modal-content .about-section .about-links .link:hover{background-color:#0099f9;color:#15354a;text-decoration:none}.modal-content .brand-section{align-items:center;border:1px solid #15354a;border-radius:10px;display:flex;gap:10px;padding:20px}.modal-content .brand-section .brand-logo{width:150px}.modal-content .brand-section .brand-logo img{width:100%}.modal-content .brand-section .brand-summary{color:#15354a;font-size:.9em;line-height:1.4;width:100%}.modal-content .tech-section{display:flex;flex-direction:column;gap:10px;padding:10px 0}.modal-content .tech-section .tech-heading{font-weight:bold;font-size:1.2em;color:#15354a}.modal-content .tech-section .card-package{align-items:center;background-color:#15354a;border-radius:1em;display:grid;gap:20px;grid-template-columns:130px auto 1fr;grid-template-rows:repeat(3, auto);justify-items:start;padding:20px}.modal-content .tech-section .card-package .card-logo{grid-row:1/4}.modal-content .tech-section .card-package .card-logo img{width:100%}.modal-content .tech-section .card-package .card-heading{color:var(--bs-white);font-size:1.1em;font-weight:600;grid-column:2/4;margin:0}.modal-content .tech-section .card-package .card-content{color:var(--bs-white);font-size:.9em;grid-column:2/4;line-height:1.4}.modal-content .tech-section .card-package .card-link{border-radius:10px;font-weight:bold;padding:10px 20px;text-decoration:none;transition:background-color .2s,color .2s}.modal-content .tech-section .card-package .card-link.rhino,.modal-content .tech-section .card-package .card-link.blog-link{background-color:#4747b1;color:var(--bs-white);grid-column:2/3}.modal-content .tech-section .card-package .card-link.technologies,.modal-content .tech-section .card-package .card-link.marketing-link{background-color:var(--bs-white);color:#15354a;grid-column:3/4}.modal-content .tech-section .card-package .card-link:hover{background-color:#0099f9;color:var(--bs-white)}.modal-content .btn-default,.modal-content .btn:disabled,.modal-content .btn.disabled,.modal-content fieldset:disabled .btn{background-color:#0099f9}.modal-content .btn-default:hover,.modal-content .btn-default:focus,.modal-content :not(.btn-check)+.btn:active{background-color:#008de7}.rt-pagination .rt-page-button{font-weight:400}.rt-pagination .rt-page-button-current{background-color:var(--brand-gray);color:var(--bs-white)}.rt-table .rt-tbody .rt-tr:hover{background-color:color-mix(in srgb, var(--bs-primary), white 80%);transition:background-color .3s ease 0s,color .3s ease 0s}.rt-table .rt-sort-header{font-weight:500}.rt-table .rt-page-button:disabled:hover{color:var(--bs-gray-700)}.sidebar label,.sidebar .control-label{font-weight:500}.sidebar div.input-daterange.input-group.input-group-sm *{border-color:color-mix(in srgb, var(--brand-gray), white 75%)}.sidebar .input-group:not(.has-validation)>:not(:last-child,.dropdown-toggle,.dropdown-menu,.form-floating){border-right:none}.sidebar .input-group>:not(:first-child,.dropdown-menu,.valid-tooltip,.valid-feedback,.invalid-tooltip,.invalid-feedback){border-left:none}.sidebar span.input-group-text{color:color-mix(in srgb, var(--brand-gray), white 75%) !important}.sidebar .selectize-dropdown .active{background-color:color-mix(in srgb, var(--bs-primary), white 80%)}.sidebar .selectize-dropdown .selected{background-color:color-mix(in srgb, var(--bs-primary), white 20%);color:var(--bs-white)}.sidebar .selectize-dropdown,.sidebar .selectize-input{border-color:color-mix(in srgb, var(--brand-gray), white 75%);color:var(--bs-body-color)}.sidebar .form-control{border:1px solid color-mix(in srgb, var(--brand-gray), white 75%)}.datepicker th{font-weight:500}.datepicker .datepicker-switch:hover,.datepicker .prev:hover,.datepicker .next:hover,.datepicker tfoot tr th:hover{background-color:color-mix(in srgb, var(--bs-primary), white 80%)}.datepicker table tr td.active:active,.datepicker table tr td.active.active,.datepicker table tr td.active.active:hover,.datepicker table tr td.active.highlighted:active,.datepicker table tr td.active.highlighted.active{background-color:color-mix(in srgb, var(--bs-primary), white 20%) !important;color:var(--bs-white);text-shadow:none}.datepicker table tr td.day:hover,.datepicker table tr td.focused{background-color:color-mix(in srgb, var(--bs-primary), white 80%)}.datepicker table tr td span.active:active,.datepicker table tr td span.active.active,.datepicker table tr td span.active.active:hover,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover.active:hover,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.disabled:hover.active{background-color:color-mix(in srgb, var(--bs-primary), white 20%) !important;color:var(--bs-white);text-shadow:none}.datepicker table tr td span:hover,.datepicker table tr td span.focused{background-color:color-mix(in srgb, var(--bs-primary), white 80%)}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover,.datepicker table tbody tr td span.disabled{background-color:var(--bs-white)}.vscomp-wrapper,.pop-comp-wrapper{color:var(--bs-body-color)}.vscomp-toggle-button{border-radius:var(--bs-border-radius) !important}.vscomp-wrapper.show-value-as-tags .vscomp-toggle-button{border-color:color-mix(in srgb, var(--brand-gray), white 75%)}.vscomp-wrapper.show-value-as-tags .vscomp-value-tag{background-color:color-mix(in srgb, var(--bs-primary), white 80%);border-color:color-mix(in srgb, var(--bs-primary), white 60%);border-radius:2px;padding:2px 6px;font-size:14px}.vscomp-wrapper .checkbox-icon.checked::after,.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after{border-color:color-mix(in srgb, var(--bs-primary), white 20%);border-left-color:rgba(0,0,0,0);border-top-color:rgba(0,0,0,0)}.vscomp-option.selected,.vscomp-option.focused{background-color:var(--bs-white)}.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after{border-color:color-mix(in srgb, var(--bs-primary), white 20%);border-left-color:rgba(0,0,0,0);border-top-color:rgba(0,0,0,0)}.vscomp-option:hover{background-color:color-mix(in srgb, var(--bs-primary), white 20%);color:var(--bs-white)}.vscomp-wrapper.multiple .vscomp-option.selected:hover .checkbox-icon::after{border-color:var(--bs-white);border-left-color:rgba(0,0,0,0);border-top-color:rgba(0,0,0,0)}.input-group-text{padding:0;background-color:var(--bs-white);height:100%}.bslib-sidebar-layout>.main{padding:0}.bslib-sidebar-layout>.main .bslib-card{box-shadow:none;border-bottom-width:1px;border-bottom-style:solid;margin-bottom:0;padding:26px 24px 24px}.bslib-sidebar-layout>.main .bslib-card .card-header{align-content:center;display:inline-block !important;background-color:#f2f4f8;justify-content:space-between;align-items:center;padding:10px 16px;min-height:60px;color:var(--bs-gray-700);border-bottom-color:var(--bs-white);border-radius:7px}.bslib-sidebar-layout>.main .bslib-card .card-header h5{font-size:20px}.bslib-sidebar-layout>.main .bslib-card .card-header div.card-header-with-content{display:flex;justify-content:space-between;align-items:center}.bslib-sidebar-layout>.main .bslib-card .card-header div.card-header-with-content div.card-header-content{display:flex;align-items:center}.bslib-sidebar-layout>.main .bslib-card .card-header div.card-header-with-content div.card-header-content div.inline-info-wrapper{display:flex;gap:4px;font-weight:500}.bslib-sidebar-layout>.main .bslib-card .card-body{padding:16px 0 0}.bslib-sidebar-layout>.main hr{margin-bottom:0}footer{font-size:12px;line-height:18px;color:#517287}footer a.link{color:#0099f9}.session-duration-input-controls{display:flex;gap:16px}.session-duration-input-controls :first-child{flex:1}.session-duration-input-controls :nth-child(2){flex:2} diff --git a/extensions/connect-user-metrics/app/static/favicon.ico b/extensions/connect-user-metrics/app/static/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..9f938b2bb2bf39e63c00951169667cad53f67b27 GIT binary patch literal 9662 zcmds-c}!GC9LJy9)~0D=`-e?xT74X4K|n#IDu)Y{Qx3spAuf?pX!=C2@bWUKRileNpzaDL6wcE+csuuyhv9>-sN+z=~kvz$6U4{+&^0u{gk;`Of z5il{ACfeG%z0BOVs{lK@ufDgnO-H&BFcZDLc6OQm4i4WKs@}!L4 zHE`s}L@%EISf6o(*xQGO+S^wk@SboVHO0Pb3<^g_TZO%S&J+g+cu&b!I5>=w8i&%+ zQHXMMg!dVuQA&Tz=+OcKl$_nW;m@ork;K?o=AY^2263LA3|gPsLuqNOUCM$5tX*zK z2Jn5d9A;D_LFI zhS-z4c8T%YiV7BAKXWGQYxCT>%&*x_$7@ObKaL$M%pW@zC?&bMEaz{F7K#4tIN!89 zt*?h=etxVzY4_9k@$jU!R;<#}*a-2iu44Q^QW9+jsq^N&(uU^K#S)ED`*)G6tAGII zYF-}8c`h?k^lz9p4Z6F!nE$Vw99Dn1j}IK#uz|(MMdsSIV*Cv5U0O;{oM3HeE>P=D_pbhNcG-|H9kckjOLfPpoMioK|pet zvK(HsM$AR>X_B#UA*8BQulO|LlKPX}-Gy{)cX;JWIJISqDW!{jU&sB0IUyx55DL@N zp$zv@JwCHY>F(@=b31p!FW%l_9a2w?r2h3D9>O{g52!0Ihnli7u^&_Z^!D^X3BKQ3 z@i`?`n(!U+drS-vT?C?0YW-~R^b`;fUfZ`)eVfaF68AdMrAAW!R=Hf*itokTRjbS; zO{Y9(H*W@_O9VAa&40R=mw>>ourTP+c*g6L#DtZuA2|XR4wr7cPjph(@XPv(L{@*yrmD zgsjPvp$DH~{ZZPRo1p;D-C4MfA8M?F+&OcAXq3{Qg)syuSMVLsiRXKBm49%)ucoHL zVbo1E90~}4M;9-O63&t_Y0-bg-(NsLlj8~n+`)5?Iqt<-eD7-Jrq}tiW&v4GMN5~G zxa9mF3k(#p@m=^f3TDiJho?^ic4U&<(S`RpXVRp%<|caTii)6k*)kv+rPj~MpdbMO zZ4}`etlYa7p5Z&1%*oqIkAdf=(iJNtb6>!3hD-SEK{QI~F9;463UCf|1ZXjT6uH&<# z`RY}X2YdEFad<(qAVgJxhy=q1A%^`3-hLzDwRVuwdr$xGa|wU$wa`c zgoo$dh=_2|N2|8Fw-pNCI|@bF9lX~jru=q9M2I#mhQ#R0XPnzdB_V} zIOv5<93a|Wj$29M?Ho6P*eZ@2Ol%?kClX?bX#D9WR?cx)4J&e76|sZ=Kem~SXUNNO b(s8qSs8Y`hohLePpq@vd^GfIW#k~Iq9d48z literal 0 HcmV?d00001 diff --git a/extensions/connect-user-metrics/app/static/images/appsilon-logo.png b/extensions/connect-user-metrics/app/static/images/appsilon-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..973de3df4e5ea66155c42c1564b05e14c11d7b3f GIT binary patch literal 21721 zcmeFZXIInP7e9z70wM^~t`q?kkS>CNR0X+SihzI=DWRzJCcT6vs1N~_4$>tk9l_8O zIwI0rAoN}nY665ZC-|E+GcRDC{nyf!MRIb!`|Q5=*`Gw{Xg#LA#CC~{jEq+8zel=c zWE7TUWaPY57r{Ffl(Ij-3$^Qi#_nWftPG_8=YI3;D3OtIlc_y=sPFS-eZuL386k}e ze`?EHEW!_$O0`c_t&EHFkhc9A`7hgl?2-&3d*_~TfByF{Tc7KZ%B@=8Pjc>0|1f>L zNFSw3{@Y~wH5TUau%9_R+p5gg`m=K71I7-07PYVNZvyXA2ki`Qls}oh>o)8$yzO_( zKT>Ir-TzT+v;V8^o#Oy9<-knr7yoW((vAXZ=eVb+sE8MkOGcLOmUv7$5t$Ark1*-= zL3mgx>6MK6Y7;r>RsTOK8q%u{&;MEQfB5i!^x^*pyU42DFpW%+t3G_7z7m2taxff@ zUazvsBbi?V|KjlQ@cJdGd)}`-z18i4)a|s@S0V%m!zKc`8UnfQ4v)P|E8d+0OOu`{ z8#&uy=U1Tux#4mBjdA_OPT1Tvfm{iJTt@hdvnBVGjTB$1?5CWr7h2%zQgmenKTv?L zS{P7S9+Xwb77(qienxJ3=B$Y``wvc1f{!wBVWoxIsKrfBNSFWI#P~f2K^E|Kup(nq zca@Qc5M^nMR0aRG{(Ab)n{uLEhh^YHvdj$ZYf~G;3#F{=mo4=4xdN;KS&ha@*GV7l z#;T#O{p1NQsyY4nUaW|7)XjM~hL-fn@r|&whkfT#T~4Qle%O?xklqWPeERrKYWL4O z!B52F{Y90nNN+Av@T`AGmaDG$sOy*A+T&*^%tUg+Wc8WR7H|KgnL@eksm2D+`^!O0 z<$lar$w{AW54XAMh2Yruk1SQQnZ(;(R%P@x2EEcAujNrJV834}1%|{WG7O-D^Re8% zW^Gj$>F-SeSxcLS@s1&)uDYSDzG`V7D@j6w>0PAd!B(10-EWUMX)VgbSsc%kzTlWl z?cyvfG)Kl4r^p30s6(;D) z?({YM%ze_|cXGl?k4N4K=+>XPWRC=T66?t_mH#dezC>+#Mz7$lFp?C>zJ2_E7Sv2f z=3D^pJusxUB;u^Dq-ULd7TkTc2@l~S|Dz#-K4aM#6+j4|RL}*SK?%^L#WRKYm)g=s z#YW{%Px0~e8z5QaKM~C~ z=gx2FF49tX38vu_SHxeS(*Rpv2zwG{#_7SG*{M<}kDs+6{pN!3apS{eR3*D=TI!bV!<7y*Vxt!IykBJzi5`G8HyWszk(Q&S01+gWgpk;wIQCh= zRUx;+f8$rQP|ntTR$M>$*UYQng@q~PW|O`U%tvKuV|1ZxNmpH4vYHjE#uc=a<3R|j z^Lo*q8+Gche`)>>{^V-lpC}|62*8m#=C1%4oBD0s zXzK9Q(Fn%}q+2aYj!k=8aveAyevQMeYB7AvtgCC$*LISD1e;uK+O`Ht!u6ip3li_o ztBpDdkC{Xs{c6Vr`8S__StC!c)pJ?1mG`}s>yg=lM33mHm#n}@G-nDb8wLIbvQ`kt z&3WnFdXn`M7j)Vaw2PG{1bD1?yX+WtYhgxZ*|gKu1vo{&XHPd%S&7AMo>|zY0Pv9x zz!_oVbc+Sh8M(r&eO!=3Br4E$EHaoDT1KfZ8_D%GPHXM& zvo)2C;GfTrD&ccnxc2{ytp=S;RQF5}H)<764@{2zeaH5ScXNcM(um_OU*km2e4Avt zFw^qu`Z^g7dC2^?M-a#KNNC~LoC7WOl{n-XQNOvvUfTDyANDf^o$CE07cV;;A|E;@ z=J=BB9s;MMzS8(P+CGqub+?to`%+HtQGb0ARWmo{t+n395)R}S9*Gsct#uDnP z41{<0lta|UyXGm{_<(8#8=m>L0s1E0N=Ayn$yk!Q-bIKVT3uvB^0gHl97@GRSMlNaQ zD4OCc>~>ohBgVt860Ni!LDm!e9ZCBv^YaM*?Bub%P&Odw$>udN>$(}Z+gcolW+e{w z`TVH-B0}rlVLOIhB%k=9k;;l;OJk3^y$tB*YbtH@+EsWf5@ zE*-5y!2wS45%&Zyy{3}8T_%RlU4|7o)}DC^B_81@V_+5<0`(FLJw1%@9{u_v-_aXI_WTMrM{<~O`bt5y7$U5lq~niC=e?;oru$oWtf7A z0c71){=Nd6_H{8kMiTYklIatqYIH18b{nNcZGXyed;vS&*t=92OSH;}L89N~k6M9c zWcfhBJzw|OYkt;Rb7d#$0n#3+ubipRhqhP)MF?q;^Ajo!ArU%C7bYsv9VcQ>#eQ`i zE3{0Acdu2E6I$l4;d53W3G#*Ic4@Jq5u~_x>=byHLAWOo&FX*q(8{Dt<{D|IO0eW7 zP%8qBSH5V)vF*RA59ur^1#-Os_c`QIKn_K8StR;j#nUGsO7?pkJo*E`@0x^M&6hMS|)f_r-EE3SMT*d*B-7{(CrDl zFa_pE+C^g>c5IJ@iOigtS``J4a2jLfQqY|RuO$qQfZwCP^ zD4?OR#l!@{*Epp496add!hTtfxiHy66(;a2j3julo18#yI~;xFfAgz+U;7(QOFOJL z^rm*jzf)^o^Fd15t&8Ce=CDgtz-@&c9{x5Z@eYb>*zTvNDDR9IM1aeG`9hdEy$;o=jH=GQV>$e6Bjws)hxRndB;=k z^>MRx&eko;I+F6dOoBWQ%v{7GO*)`~h8#M8Q|L#N=tSaPE4j%%R7G7a#W_cW7~gAPPwM<(xvWQt61u_Kp+`}fd=+AbjZ0!h(9TtAIKt^=?9e5^oj zhpl`^Y+HuV%vSJdFMN8(f(8K|u?(6Z^$akbG_lP9y8DM2nhZd%d?8;%>8+-^>-$)1 z?*i{s;#?4-2pG|wwbad`5dZkuRlvz-^iBQJtd}%B6=m48@qQEmq!>gGEmO7Ubmkwq zDi6%-%Cm}&2ZWzn_@Duh?>|@xE8SJc%0)$V+bPTqA7lWdVeIQO0$wm;8TKUB_pVR152VcO0=Y}sVqUecA?ruB^2U9vG{;h?iZ3pEQ==jL z0%s)M4138^$mA1E9A{Ii2U(qO)VaMKLWMbH84Ch@c!2Vr1PatfRAERijd4^ zN$nTc@%gv;4oQbZUm-l>ah^$}*Xm|B`$UKkzIn=GR)m zfdlAtG*)3|qFvp+w-gZq#erU}@hmNzR>dM|@)9%iTW7$@m zSPTr1IkcMk(|$M9GxO$O*W~57>9a7suStVAA1qMBp@e8hl4m+;HrfR-uzG3b?K+>4IVa!fh9cDx`$U&DLp2~yM;LvAu}4jV`=m6RHkKeL&;z6;1!xnV zdAL*Nt9WQ70>8Ksukt62Q&G_@Z5AlZb7iW|KOKx9+IzzTCVgkOua$g$yF&%dwnEanJO1Gl$9-*mSi(xX|??%9dGFdZchD2sXov<$)-#czKr zllMklKsIH&bruB%kmV5vj>06gmLak^e#JLepTEX$34{y<5R04KZOtLh3nMh3%Sk%1 zu~$~Z?!p`3UIj`LRv(?kZlJxS^vMsJbstJ?>D?tJf^%;4`m4P!UoG^OOiO|+FK4Jz z?>C6Y%IYg`t_E6QVO@G1#X1c@4+tMOu5$83EaQxeXIUdcRZ+ zEFet+iZ_z2a-;%T4@@1t12e>Mc9O!5ncXpCrZlP9#PI}v^*BZB$(DCdo6|y?&a`il z98=nl!CQPrgnvIie=Be4FB@u}NzO2QWPXLPkq90wHxjzB97dZpft4vUJGB{N>^Ho* zUi%M!3#(x?7qOe^^t#f0W3wx~_!cFuBA+Q!h?2opkA~KVN`97qO|QgB)s~itb7+gc zsxYjRMw!oD3_J^|W*F^CMqI=m?yJJR0Is5-VzaSLvw8QT3+#a?w9h$L1>1>kH#4PI z0?3%*Q-Q)Gr^@-78Aew5eF(c>Y=QF9gWUv z8hm`D_r}o0RXTIC`+|bAvW_CN_8jHz zp}QCi{lDv@^mpR-CjEs@e8oe@G|0ymsVrd;gtqjm*q7QG$k^hk-D*BGrsYY7%N56} z%-Zshu2G+|&1^dx1W@%szw1qlt}eRM2?SQnr&9dpu${8~VJ~Qsu51RYJuKZK^8z3* zQIO8P`!V+&$j;VpRIn2F<->B8@zSgj~NE60CTkZr8s{FPes>>{OaaAJdC@Gpg z;rrhGuqPSvsPh!g-aW9#ocTVnRd4!yJ_}t+7swKms%0rLgO-&(ajS(~qgiuW>=cjM zjJg;-l4x`PLXCjWMiVtQ%`}Q}S^}yV5*fZtho4VcV4OO-E-$X3_hM_bh8|ZhMZst| z=kvv`bF1n*s*3LCc)oC0eLXEM<_%{Jw@@SvJ1G> z=Tj=^-41toGmDzL-jU|tNR$Ep^KgBDccY+li%n|fvWXiwO!_K!4(I4S0`2Z+_|&5t#1E^Dt2czT4r9D- zkqI{MQCZcFzd^U_%xW3Teyx0nlkn={X{jwWpXH2SiU~cLFlDu<=oliwd&3v;ECI3F5 zxRbm8vUU~nL)yzn>YmdOQ4P&851ba{1LKJ?wS}JM2V{~M-=pciYxmr3jx6S>jP^nq<>hwXM&-RaAPG_;e>OxsE*&vvS zNovwtsHF1&Ha@ALc2K8P#bhCN3g)D65T!Fae);XyRNotXcjP2GJs#mjBUsCFD|oqyv+4-w46E1!}Sl0O-)W9 z1hZbc;6*TL_M%xW76N_q#Wd#M-F?1@ZGyrNDX2?9wrYNs?4g%Io5WWTAABeM z+K??3#)9`@p1Iwul=$)dEamvWnh`YL-~+$ag5cYZ zi7X$#asa-U-$0ScuMF=xM^FDuJ|lj93`WAa(I5W-#^vfDs_WQMZe|qr(PTSK(Hf`|rLWap*++S~ z?1(oYi>nT8KlIwx-zDY048J9ArWD_}z3rXfJH(hl!C#F*xc?q`B`_QM?%B7>l1~&) z{o2lDlOruXZ=+@A+?_SFjMl%$dQtbwu7>Rjp9P>-F)zv*`0ooVOMsytPa)4BD;C_DBZz5xeFrP zVc`PvuA;df`3=Z^nlVd|9R+}mQO5#O?Ic zSsn6u>9yi)Am?!y&{mrnHvM|LHOFbW9$so@MpXD*1T-#g)@#p>)%CYtjQ0co%JY4d3`z3Wd)H0FSK?`{{ChNm`nNwT1|Tb zrq&h8FG#2Ec^vOz7^PJ96;d-g3oW_!(O(CMci5VhL+qC65S5ib6~_&s1F+Y z-t7@n=>mK#BefSHni)s6hSua;f5tv>CQ6+eCO`EY4@JfMg}8$j=WA;=FVHuE(LJ!4 z*IIf5g7!1~WK=N>BSaF?j? z531LB$zW@|^Ipd3BW{0>jbC)Ae_U1QMC@f}ZgVs(cEo@z+S?&t9lhLE^ui=*e1UPq zMYiJ!!#_nB8OyQ7JIm8gFcaP`6T3&EPD#b!%y7-a027GL`W(c5Z#M7V;TV9vEy!-;|p3UTw>H&K36IW5x4f zrKR@{5_a>P?@=6_PV7C#9z(q4PdZNtJx6OO{eC1=lCLJZ8ytf5VbTgZ;nzR`Xw`^~ z;WagXI=3H-zx2O9#g=^jG&_cLy&N=dV2l@IJJ>P@SF3*d|7d)>sgG7?ZmfX|Qq!$k zrT#wrdYqf|TS(rCi-vO}LdofVgth{bc6asAO!go;P2?>TVZ!6j*lXRof?4WCxK<&` zbTP~&;QG`*m){enp2DJ@hQjkKTrRUY66&u`Sszpjw}h|e&<3?_tRLWR;fhb`%4WPH z?D&odj!D?5fgjY1W}=IP40;v>H^Do)Ew)^oci$R<*;)!*IIUYUynb|h0;)|x^t3t3 zt_=crIuYQWGFsMagWhr_g39_z+#stzNI~k-b^V-DkmzN9h4L)jOu;ov$CF%aCJlMH zfEKbKuqao=fWh&|JG^vb$9_`Dgxbu7g=Z;wkGf4}#i=uF^5l9w-DIRSB8@Od>t^LE zdLrD?vDufvQLfIHG`I63f*U?ahJUqnBKHqXs>t&03n6>c=^ZcgD77tJl@cG^0*v|b zhy#-CM{f=;dyO5bBgWeA_lmG~l_S@8Rt4Eo;h7 zDhn6hjNM`mr39rbC=R6(HRyrkpNEs_cgfKv9sJF1e~{>2qG!%AbCKpm3(mg8;2NOi z&Byq;_UN_^B*d=KKgQW^yL`KID@}iN(6UY%**i_NGQ2Qh=5;T62Rc54{* zt{7pVbRUJg&m-*EGYTWDpX8pNNCeIF1QLsTf{=^Q2TYIMC#vP0IFD;IP76r1 zO3u~`Ua@VjozrVP%OmV5ilfz8*}~f#8E;H+SI|e{rbN^D{hW6=Vbi4P+ont?_gRmI~I0J^?kZK-@=E#J{O$u0^=K?Jp zNj7bBa9u53^M0-h)gQ{A!C&s#()~W^+qb#lvAcY@6hAYBTl^AVT8aJPp4W|rse#Q7 z{lw<|0^st7*ydH=dza2|BO73)?9R!AV1$Jo4+QOP2aRNpK=6)O zLC~tusjne#`*FyhN;PxnN`xe{QHRa$b2+-+Ky>mWqxPWE94!WJe^yU~eF_#cyfxUB z_b9{5#{Xr^_=Iay4INXZmvfwcjMI(P*9`Eww^#e-e>7AG2b=M~cPd+krGX~=mCEv5 z+{AHj&nd+Fbi3r|=4iJ+ZFiWgR?6>hH;fF`5*L{2Sf6v7KPIx*&{l}R0zCSZRVD)D z{9VuGKC{%oE=50>qj92sZx_YKr@~&Z$BVsVI}5d7L&y+6fPQUOrqShsBE}$o;o%`? zkVug3GK(CS&m8^ficQ9mgh=3L^EV1C1wA8uN~W(|$MmVz5(x?KRma#4CZmT=1#Fv{ z+!<>E|D;sa6Qj48EQAAh!lj(KqP`L9@djoS^WMEJw~BGup|jraN+dUPo`?{>(6d}h zB3;9KT$U=M>X-DALWlf{0~y!Z)z*)xlXn@%gw%EJ^tU4xs3GRaIF>I`rfS^pog%7^ zD3<^sE&dqJu(l1+=a;!FZ7U$*f=5P2yTB z+FTaoqTt46wCm6cg_!H{Twy`xh~L)=@^HR{m~H>^mL6f&eXp0cApIr#4ax8RZgKLh zlY6)l{%pmIWBJ&gHhAEbD$c3L6MgW_^y~CZO}jNxX7+3dYmokz0|6~|nFMa7PoQ>* z?it69@6!9UVrA+FM(Gia>Y-_Z)MGczDLpgZQpp(@4xrk$RSG7@6lou`dIyMkpJN#w3^otwU2ZuGooWr>F-;^ zSC_x#XGdC?>G4}kQf~COtTja7@G`GV65pUDoK@iA_VqGDKft(+XAp_;p$SN@V~`-zpcl9{nQ}mL;-kYMm27aRPrz2+PIYuswJ76rMt| z!a2a4%F|UF!l~A~jPMbQcGX~`5w}8NZimv(+`e2DS`+;9S^-btSLjp+bQwOW05F-Ht*qH}pcIr9AN7nj z=-AHzFyZlTPlxeu$BeUa?Zf+j<16WKti z*gUT8iTI$b!0!~PO)N*_W2k^{l*A`weP*6d8i${%mSRm+c-9~CILb-VFMIy%|K>EA zzm?q^1=Hbu8}rlIUk%@yu?3n-L;LIUHo2}f@C8xX7wB720J%gH$4vV~sKy+(OMpRKJapMnh~=N zc8iG+KUlLV6Fw4)7 z610}beTlyT!+2Ra$)<TUqBky^e>jzt6uFtd;L?RX9j5#ZqBUEb4pd zBUxju-9n*2#=XoIcFh$x#uYFx<2_(A61cflh&#_#rZaG*i}hOfP@V2^4cz&iywTiA zxZ;Y6_iP`B4#Gli^`pZj{Cwb6LW$Ou@|FpiUSQUaR$yET25J&H6zpUl*t54u={3hj zn|^yPa*xVmum6Ngw{4%8)JZs7rt!+%j9VU1R%l=XBTImE^$T(3+(C)s-}rl>)I}Du zoNVxDGHl^M<(sKkMJWo5<>^?=i80qIRpHT?2wbwj&}QO%?+p;q7kbd%Hp@x#FelbM z%k#l%MoDeCqT2RQuMNu6JGmZ+GZk!#3B*mt^=EACBPFOYBIHf0qwRMv+fC05Z)AR< zP@=PX#`qwo?ljYq)I!jDS9&&21j-a;G#$}JyZ9uY&E<+1W)Gyh>x`Pq%aL666=L}NU8T6%JVPGG!&~p`uMS;UGAX_9=_`e;2~K8(WsyrfqM{jC zSrr^Mn8H?pyX4a?-0@+0#%Z573e#xwT0zvRmzI(S&Oli`=zRm^4L zKe66IO^H_8SJIo|ueH}nMEeGUp~Ii8sn6f$Oaxu>c-UDGw0dId?o34s61UwNd}lVq zS?(3+j*@c6Zj=~24vX?#JAE^BI`V%_XRO@=G)_Zy2>A0HplqE^9#`go) zL(<=s)y|T0m*-(&x=w*f5(jkOi~R)M9&~Dg z+Rq6(*`Sjz^B##_cV);l2`lX?!#NB;*c>24wAIKzUAoe#_dQAxqy4T7vbr*Brg-{F zZ-U1$6({qZNc?4Xjbu+u<@A-tm7{xTEm>|q2r9)Nk~cbbUdd;tUtwh~=K0B=FZ!PU z73$Wz4--`00H3E*TSKUfopegsBm4qfS+d$H&Va3;cR2T<9&Gg`Nz)0d>33P1E)L1` z%7fkMD-A0ZEM%9ZHu3CH{4rqGX@DI(Vv9!Ukd+I2+&E?Lo-v@q>b6AHmAceqT(5cE zQ+uMlFn)~;1Y>+!QuG80NEur8aip|4YduEa(t2S$Hj0$d~xMlykhzR=!$^JP|WYH?CI9yMHp?V}97h8B=rX2Gn=*LIfTY;L%Wf!Sv)?{GbxnxW#6sL~Guo%_}*C#uNYohH%3LG%D zN0hH8G`XBqG`$s{@5F4Vx~B8L1i6JAFc%}b%Sy@hSsE3$S-rRA0=YEc;e=r>2f%d+ z!1W!cSR1yQ4cBj>nWXVhekbE-x+G{v?0C8eg=vV~^F8-gjM@UjPe6iR z0Wfv3c%}wqZ1Xs{M_z9u^D^5d!xj7Te3Dn&0V5-M2kW+pX|zx5x<4ez`ym#WFuy6% zW#QPK{52@#p}alKcG&uPaZb#9wmF}rjow6vMe(uS0J)i`;V(1qhxB6)sc1}?^rE%l zMz`%Yk5PDOuA>>HV}mC|iHyMw1eIa!BivfZG89@E7DeRF-E9KHi2dLu+^HN@1txOi zfraBADLjlX$S{wgnBHFN5p$p5+jQV+|N8uisZVcXC9RufHdd`GS@u=6ij?R)qFNe3 zqq)mMA7U{v6C@-^ed98|`l1BLi%q;O=1>P`Msl*CBy;M0TF!NZ3nH=x?e?I|`U1OV z)>z%q2`bX<#R@<$dVNH{%&@4#JARNQFz7^xJc3oHb8B6A%locu#M&)}QkZN63bH{; zxgYlU!cne)lsI900X@P$WgjW9m$YDVia9|>cT64AYPWc$^jzyE%PX`&ZDI-(*@Ai zI0x(n^OCQ(8yAjXGimmek&(S8ZDQs?mAT%J%$(nPUNQL zXO7UesHCJwof6Af&Mk((F6mOG9=W$Bj5L%|;uQWrvnN}QjJNkd42=g(l(F&lG$ns? z$40L^>?u?i2@5H);9dI?57-pyaJTxRV+iQZVoWS%x3+&Dh3p7r94&EW==Y?V)|-*x zIU5aYRjE+Y%7u6NASJ4M53v&IQ2l$oNX8Z-xU6^I zD!Rb1cyB19xDrY;JA5obYj)xLVN%!Qo{dH+Ewv>(G@y&ck-D6l@(s`gL-ysz3b82m zRnuTG#gXp4U3c2s52$D;T6V2Jb@!B49&%9>O@KglU0Z-tU0?#z#Q3Yegrr+0$bU1H zJ+&-74_Hs#X~Ro9BpvVH2(Cw4oR%?8h2Hp9h3?&``3|>62*Is(%*bg(t30-~sDHZ` zhsZH+dpA`FBtGKAp;!Wn51{1FAMpz_xwo^0(oPmy*L+$9cRug333~^h$u4BF%f zc@4AHGBtH0;N(q5_ub1@!)uAiJle zw&dPF4e;xljf*1|bW}nmj2%3x7d}ndP9x@{QhZQLBg-()jWxLl7^^2hiIh@NRsQgC zy!QHz-}n3xXu#4vUrT}H&~W_I$7BO?`qQ{{G5-+WRgn46#f=mF{6Nu)vHWW3nQlRt zF<6(N6Z!O3TJrxZo|R-;D84nXRsnWg&)-i%ahCP;0N! zM%7K{;d${|Ur2_n?dO^ZfdDfKEMeSpGC{|lXx3b7&4}q#xe^UR(dBK zObD=A`MLgv#-FdG!8=H|w(JBX*OwgZS!~C{TjQRkJ$$^Rg1*Q~tHz+UClF>ax%KADM!c<>UlKdX7x>`5%^UAXeYbi#Ow^}!* zYyGe5$k&L=M?D*ziahlzaPFSydv^Gsxw6P*(NDX1$8)WHz0H3XZk+%rkj~gtq7TA4 z80!RStRu0bRrDUBe4m64qWG?N% z7`xKk@S5lK_c*vzAQDKH3joJnJpeKKDlBmjz>AcUDWru{+Z8y5cj7#F<%2$X12!oV`U)r7nnNg8u*oH_1kqW z+sEI^&qbSt4~)}~_x`X$7w?!|5COGp7xO{uQ5V<}N-RGH_No(-J|%a*fDoUcr&_A; z3uS$(Q&$4#;8%Q|Bc!bCQz2G^3e>0gB zS|NrJ;Y;0_U$f?QT9y+(&L_kVM^b;2%}YC!86AAV+o*g#_79V{Cut@ZZ<1#!Z8v#4 z)-OO^vw4v)FNFV-u;9mx6R{Nsdzyb@#O}bkF+zS20z8f`uHq9{3%R2oWQF|M15x~joKhty~Y6$#iX047aK@<#FAWIhMOJYc>=4UPk6oR5`1JS=7p0;lXHh*dVrHkXk zgHKj0`T-A!)Rr@R;`fYSF#lmDmO@{rf!P4x`+O;Rw1d(+e(EdLfR{}l)|C$}gSsZ{ zq2@1gJHCtXIQlP`YgATvcY5N!|7*q^T%JsI^@#_|PX5a4<%>MRM-?{;79dg#qoTlT zNv6*;&L&>+ICNfoZQcS#M`Utehtlb)>U=h;Te4SCIvGu}hntNbjy@p{(M$gJe=8SR zYk#>$lOJ+<7a1B2lFW-hVF3InmI5CkbRcr|-qqO9_D!#CD-$s=3)^Gj0}};t7z_bx z{Zuq$D0JACn3^{ya;!K0J}iIrO*Z=}r0g`=VEpA~J}2V4x1PHH^Ezn56X8D;8D8HS zPJGN{M(Dr;wq(3s4$=kuLsPVJkh`YYm>{Oq?xv#TAJiOA6)=`)Go7t6Rktd&|8E-P zexN3+u<8Q0m$&-LQ-5sUIF-c{yh>$KSUCN|$%@L7rA+KSVzIIB>-&C?3^9RVsDvMc zqI5Te9`T}2kKnAL6qunNI&9QeKXSjM#;o!wE}zFj=!V7kz_hoE3AIHQDcjU$nG?KA zK}-qkU2NI%_JZf|&_9r}&ED;ps{yh`>l z8AjNW0dut^Z36hN10uoLUm`6=mIEiS%*`VlVC52`_WMfV$Eh!1z)_kUZO5vO(JYRY zA+_}T$|o*(65e(9JB>auxJqT2de1}7e~HQ>HJ&KX8m1b@gGxN>APIi z;XEfHRszp(*%2<~0yDgd4oyIRUVur$=!k`li>1|CHw@|i&{(XbR=upps(nhPwq!59 zrnqxkabKZaqBLZP)kP?Jc+$nneJ=<_!W2;(TV|(ZLGZ{-w&n;o5)cgR_lyQ$@ zfp*wD4aK1!ZocbVZ0R>P=raP-y6`g~?;oEnPBgD(6DylSAJ~n&k$P`8}fQ)a)FH2lYG6`WwA+WY6l=`jTqD=?7{`+i#Yk z%-I9pp4w`Eta|%^b%)X;q=W$QODjNbp@>STxWYEa{hxyc9~|B{oKUb8SZ2!^59?Vt z?h6UZUc7!(V;a>{4l{q+%LPVm%{~R=3RgP(z%6^8uKGKTRcP1H`Mg28J2X~zzhYyL zl4&g68zfK_N6soCzt5(m;eP}dS}OgE+jn2CkvCAmw!P9ia1+a3-9cUmi=E%D3d*I7 zqDDHENj^QXWsm2SA9GC_irPMip|(smX4rk=5A&zn7H)f1mZaI8R&pg_H}*A%WUVuN zZ9-rcfXSWoy8zSvMbLho;+i}Qn=;V3j*Y)S$u2XD*|I;XC7J|=uD1~QC!=VDovz%I zWhQHDjjhvWwF-3!dS~cQ2+X?o+K|+(ity3q+*p3GUb|(ys6e5>7xt2`wFvu;MxLM- zTDSTL=b(5UOh2kjMp(akoouY<&9yGde0+;7qX~CDz_tR_GFvCMVKP1+O2tKF%=x)|dtV5$$?|F9z2Z!jJdJ!hA zkd#^6B6hIcX`(>f)3>GpwH>Nc67ZDrlbkP33``fBwK%|_FpK>;7Guf!#ZC z;65}%*rSpcZBr8a>G(+koxp~2k@9mmK4!{zIjMK28H``UA_wW~1cF5j!wx7f?QTtW ztT8m?!^oC1Wq6MDnICBWE~bPEXeCH%WsQ65aeMB;BZ@S{lf491={0K;Zo{Q}oCkq7EjeMT0@RFXlBN`6IM^$0WZzomj;8DXz(j)eB|hyt_O^p#CYdehY` z##OM?mRTEs7eFGDb!Br2%wWax4Ibh0*<|v{CWu!7aoCZnHbZoU#~rt349g+msLTN1 zieM#J{@-oeOI|eD*sTB1^~nwlNMv8a5(&dz3Xt)y8kIwq_TfW#*fr2yY6-Q;-9y6T zM8BOu(hrrXG)h{VbO!LB7s)o`3|l;`n)Y4QSIRzL-%eYG)*I|0NQW5&2)-#!!ObIc z38=44A2FqXk}hudBiH;Ts`?V}`2z@mNfd$pW@dxPHVMl`V@{h2@&oPGU59J+C0uRu z1(SwgUFHaYG3aVKV1+iv4eG8si}^uz^taydD$E<7?bA>Qz#@jK@Oxsl%qPPjZ%PK? z7JRx8*H8U-fiOTr%8}x5Xx0pMNvJlamsnHsbv1;erkIL^O$;^$u!@*S;kLb+?|-ym zlOs2vHK_-8SmXyPNk8WCM;O3ZuAZB1)>F)5KbK|Lz;6}0uM=|Y&F|9IWa0-Q?T`$Z zDm}|`c%C9XCU}#dxZ&DSUy?`a8EE*)gFS+^0FI2`pJrV7v=MYS+6uXjNhhD59N|DB z&HjQJci++{n7@B^L}2z2&9gc91)6$~&#;!rbO;Ascfwy#ZvD-$T(NY4J6#9eg~k0` zmV3(JNhQYP0FOa7jRznzb4^c{6$yoV4v!T;lB#p;p>`$NAJWrpp9C;MWIAE=35qiM z)Azrm{ruhq!f566*UeYOt%_d`6iHy}U^^g{3Q|uOKxqXsROsl%{`_W$p`K9z1BGex z-6Llms(g$+X)Ot6YU~C(o*~Bsd9jeUEJM493ukIzI+J;(j1~@nqR~n6N;CvZ6xn4^ zUxL2Q{QB;QJJ;hmP6+JLfCt#3uSs~}t5WG3JD;MTzisB-Lk1>+F%&nMq~ui+>^@i! z(3BrejyZk>$-AFJxc9E_O5*OvlE-8PXAjA|1yED`q3w1m?d*DKP`TgY)JFh0-U0OS zwfaifnHB|agFUhj$T0y(?Z(-+lOs^xXIJK-<=KCCkOe!u1lbVm%E-0WlBQ0l^=V$f58Cd^)zd4*)2xsO~>Ez^$bUg#TXgc1i%gn(J`aDM`~p^ z?gK{=5#Fx827Mx6rlSA|CF|wj5iVk-(S3q>m-424q{d7C@thi+8LK)L3I)uqGU%Tp z`GZnb0H4eJ#kB5VmU1{=iZ=R`AKnENvmCS{{f8XINn5D`NbAotQ!P3;GgY(u*`!Ly z$fw}Lk^eX~oS`Tfr7jopv;J;ozd8dcYW%{Y^UHyy*_pT#@;GaGiQVn=QU z5B>eVI0-T9JRx?M!ax5>;|tLG)hkuElt^?R3jM1rSb)Qn0@hk{X0894AOOODe$xjM z(%K>wt1?3R?E%b?(-~_#f%jn(SFI^&z<+UWMgXG)Bk%9j*P#k10I~fa#FBKS?ew~; zfoVmK#MLLxM38CTZW{UF2bpp-sVA|83JvPD{E3+8Q{+`cti9TTrbhJ1ECY2U?>Hz{SZjyq%zJ&6U zWBaS^uUL?sG=~4EWCU~sV;P%t3z8IpsrJa5E#g&an?lH+QF(9sT`2u)s8s+2>M3VB zJ$%|p66s4vNEqtCM#&h!BL6?`o6Jw0O2Y|sgjFb1dUfFzV1_f~GpJ}1na_Z+y+O)G zs~+DPdI0?B|7z#jzmiU(IF(y!$5mo$+o&v0k3(g-m06;Feb8A$&BDsIjwz98nO2tI zibxMOvut(Ed~FD2<~g;gWkgEwB}_bdD#{c!!$+*v=7Ycll!Tpu+C6)A|AfB3eZMpJ zduQ(4nR{pE-cR^7xFItZ#f(TwDzEUYW0DTqan7DpK1dbcde*XC7!S1RS@PwFovmKs zp_b4H?rTCRu|; zfpiW(FYDsIu0%KQ)g1%(a=Db^71ajMvSa=uutAs@tV~D1N=kwVzFYJqqk-{V7BkQC zR&^+Gnp^@A5mrB;ZP4`hfRNsW37tf6#{L=T0)I@FRA)nu`GI!*&NLJ;v@6Uosti49 zKu4dk@1$z+?2j3iKSW;Rm%oG zpf+ATNTpY!2mre{`)BLQ)F>qDQH0e+z-(UrrHaSO2XFx|lk_?-9&iV7kyx{(R_{*w=0On^Uh;Ie) zad90yZ7cm_%?cl&i0smCl=+mTb3b4~U`x07^>}N=~ZY{v+zXZ`hs& zo7bWgCd1!)h%Km?s61clSm%+ZJhDA0kn)0`GjSG2g9)e97vxL~^{2M~Y&tw;WB-zh zxJkabk(=k`1li>U(J#1d%L<_Fb(;14JU`N=gX?|XJRT0}Xm1*gt&NDaL~4KEM-$~^ zh(`SwQMh}VvVu1pTi4m@KEXQi2uE@B$p=JVnKGQ&<3kPEn^3b*RRPKsbjDo?T6_U6 zhteC>IQrZ*@l&f#9opW-GPz>)?K7j$`!=sk8jq#Ep;pTYQOlId^jdu%UZ^NB`#fx= zG=3{0?m|Pl<6sBhHzQNPp{L4fhuP4n#_ayhzC&`pc=1Q- zh*F>mvjb_!7|c7tYnA6Av2FrVD7AtibjwI>`fV)S-H#H=Wql6x>7-eiRfD2-DaZXW zB$0-IS0;MGL1jfT;_q}@=6M)r?d*X}kOK=Ie>dv@`Q_LLJI!SV!%xj*PC^%T5^g>3 z6Q2OUN8sX-z38wN*XW)L_AX1nzG%6s$+uCrOrv%%Hji=yJXb(}ya-3dw=#mUkP)UL z$DZiSi}2|!b+`lth*=)O;bvr9-1JkNtCh6?M~&rc^6L_s)Q*eA$ca_3lCloC+bx?DIPY7ALF)+y>oz@m`@ohpmaJS7pIivG1b`| zC?CHUq#b5(o+FAR*Wl0GGSSj}bV-DULA#qN_uxBb-QNQbw=Ec#1)s|Q vqZeO_fq3k`hy`j1SSG%x!~duQnb7NXbzdK1cUkHJ<+O3bCQ?N}^vS;fQT|H% literal 0 HcmV?d00001 diff --git a/extensions/connect-user-metrics/app/static/images/rhino.png b/extensions/connect-user-metrics/app/static/images/rhino.png new file mode 100644 index 0000000000000000000000000000000000000000..406051e90ba88c1fe470fdf2d6628c11d039c54e GIT binary patch literal 105782 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 z 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 .main { + padding: 0; + + .bslib-card { + box-shadow: none; + border-bottom-width: 1px; + border-bottom-style: solid; + margin-bottom: 0; + padding: 26px 24px 24px; + + .card-header { + align-content: center; + display: inline-block !important; + background-color: map.get($base-colors, gray-lighter); + justify-content: space-between; + align-items: center; + padding: 10px 16px; + min-height: 60px; + color: map.get($brand-colors, gray-dark); + border-bottom-color: map.get($brand-colors, white); + border-radius: 7px; + + h5 { + font-size: 20px; + } + + div.card-header-with-content { + display: flex; + justify-content: space-between; + align-items: center; + + div.card-header-content { + display: flex; + align-items: center; + + div.inline-info-wrapper { + display: flex; + gap: 4px; + font-weight: 500; + } + } + } + } + + .card-body { + padding: 16px 0 0; + } + } + + hr { + margin-bottom: 0; + } +} diff --git a/extensions/connect-user-metrics/app/styles/components/_footer.scss b/extensions/connect-user-metrics/app/styles/components/_footer.scss new file mode 100644 index 00000000..596d07c2 --- /dev/null +++ b/extensions/connect-user-metrics/app/styles/components/_footer.scss @@ -0,0 +1,9 @@ +footer { + font-size: 12px; + line-height: 18px; + color: map.get($credit-colors, blue-gray); + + a.link { + color: map.get($credit-colors, blue); + } +} diff --git a/extensions/connect-user-metrics/app/styles/components/_navbar.scss b/extensions/connect-user-metrics/app/styles/components/_navbar.scss new file mode 100644 index 00000000..a5eb6dfd --- /dev/null +++ b/extensions/connect-user-metrics/app/styles/components/_navbar.scss @@ -0,0 +1,134 @@ +// NAVBAR + +div.app-header { + height: 50px; + padding: 20px 20px 20px 0; + z-index: 1; + + .logo-link { + border-right: 1px solid map.get($base-colors, gray); + flex: 0; + padding: 0 10px 0 0; + width: auto; + z-index: 1; + + .logo { + width: 100px; + } + } + + .title { + color: map.get($brand-colors, gray-dark); + flex: 1; + font-size: 1.15em; + font-weight: 600; + margin: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + z-index: 1; + } + + .navigation { + flex: 0; + + .btn-nav-menu { + background: transparent; + border: none; + border-radius: 20px; + color: map.get($credit-colors, blue-gray-dark); + font-weight: normal; + font-size: 1em; + height: auto; + outline: none !important; + transition: color 0.2s, background-color 0.2s; + + &.selected { + background-color: rgba(map.get($credit-colors, blue), $alpha: 0.1); + border-bottom: none; + color: map.get($credit-colors, blue); + outline: 0; + } + + &:hover, + &:active { + background-color: rgba(map.get($credit-colors, blue-gray-dark), $alpha: 0.05); + } + } + } + + .btn-cta { + border-radius: 4px; + background-color: map.get($credit-colors, blue); + color: map.get($brand-colors, white); + cursor: pointer; + flex: 0; + padding: 8px 16px; + text-decoration: none; + transition: color 0.2s, background-color 0.2s; + white-space: nowrap; + width: auto; + z-index: 1; + + &:hover { + background-color: map.get($credit-colors, blue-dark); + color: map.get($brand-colors, white); + background-image: none; + } + } + + .burger-btn { + background: none; + border: none; + display: none; + flex: 0; + font-size: 1.5em; + transition: color 0.2s; + min-width: 30px; + z-index: 1; + + &:hover { + color: map.get($credit-colors, blue); + } + } + + @media screen and (max-width: 1024px) { + padding: 0; + + .burger-btn { + display: flex; + } + + .navigation { + background-color: map.get($brand-colors, white); + height: auto; + left: 0; + padding: 80px 20px 40px; + position: fixed; + top: 0; + transform: translateY(-100%); + transition: transform 0.2s, visibility 0s 0.2s; + visibility: hidden; + width: 100%; + z-index: 0; + + &.visible { + transition: transform 0.2s, visibility 0s; + transform: translateY(0); + visibility: visible; + } + + .btn-nav-menu { + background: transparent; + border: none; + border-radius: 20px; + color: map.get($credit-colors, blue-gray-dark); + font-weight: normal; + font-size: 1em; + height: auto; + outline: none !important; + transition: color 0.2s, background-color 0.2s; + } + } + } +} diff --git a/extensions/connect-user-metrics/app/styles/components/_session_duration.scss b/extensions/connect-user-metrics/app/styles/components/_session_duration.scss new file mode 100644 index 00000000..b0233896 --- /dev/null +++ b/extensions/connect-user-metrics/app/styles/components/_session_duration.scss @@ -0,0 +1,14 @@ +// SESSION DURATION INPUT + +.session-duration-input-controls { + display: flex; + gap: 16px; + + :first-child { + flex: 1; + } + + :nth-child(2) { + flex: 2; + } +} diff --git a/extensions/connect-user-metrics/app/styles/components/_sidebar.scss b/extensions/connect-user-metrics/app/styles/components/_sidebar.scss new file mode 100644 index 00000000..07be52e7 --- /dev/null +++ b/extensions/connect-user-metrics/app/styles/components/_sidebar.scss @@ -0,0 +1,162 @@ +// SIDEBAR +.sidebar { + label, + .control-label { + font-weight: 500; + } + + div.input-daterange.input-group.input-group-sm * { + border-color: map.get($brand-colors, gray-light-75); + } + + .input-group:not(.has-validation) > :not(:last-child, .dropdown-toggle, .dropdown-menu, .form-floating) { + border-right: none; + } + + .input-group > :not( + :first-child, + .dropdown-menu, + .valid-tooltip, + .valid-feedback, + .invalid-tooltip, + .invalid-feedback) { + border-left: none; + } + + span.input-group-text { + color: map.get($brand-colors, gray-light-75) !important; + } + + .selectize-dropdown { + .active { + background-color: map.get($brand-colors, primary-light-80); + } + + .selected { + background-color: map.get($brand-colors, primary-light-20); + color: map.get($brand-colors, white); + } + } + + .selectize-dropdown, + .selectize-input { + border-color: map.get($brand-colors, gray-light-75); + color: map.get($brand-colors, foreground); + } + + .form-control { + border: 1px solid map.get($brand-colors, gray-light-75); + } +} + +// airDatePickerInput header +.datepicker th { + font-weight: 500; +} + +.datepicker .datepicker-switch:hover, +.datepicker .prev:hover, +.datepicker .next:hover, +.datepicker tfoot tr th:hover { + background-color: map.get($brand-colors, primary-light-80); +} + +// airDatePickerInput day +.datepicker table tr td.active:active, +.datepicker table tr td.active.active, +.datepicker table tr td.active.active:hover, +.datepicker table tr td.active.highlighted:active, +.datepicker table tr td.active.highlighted.active { + background-color: map.get($brand-colors, primary-light-20) !important; + color: map.get($brand-colors, white); + text-shadow: none; +} + +.datepicker table tr td.day:hover, +.datepicker table tr td.focused { + background-color: map.get($brand-colors, primary-light-80); +} + +// airDatePickerInput month/year +.datepicker table tr td span.active:active, +.datepicker table tr td span.active.active, +.datepicker table tr td span.active.active:hover, +.datepicker table tr td span.active:hover:active, +.datepicker table tr td span.active:hover.active, +.datepicker table tr td span.active:hover.active:hover, +.datepicker table tr td span.active.disabled:active, +.datepicker table tr td span.active.disabled.active, +.datepicker table tr td span.active.disabled:hover:active, +.datepicker table tr td span.active.disabled:hover.active { + background-color: map.get($brand-colors, primary-light-20) !important; + color: map.get($brand-colors, white); + text-shadow: none; +} + +.datepicker table tr td span:hover, +.datepicker table tr td span.focused { + background-color: map.get($brand-colors, primary-light-80); +} + +// Disabled airDatePickerInput elements +.datepicker table tr td.disabled, +.datepicker table tr td.disabled:hover, +.datepicker table tbody tr td span.disabled { + background-color: map.get($brand-colors, white); +} + +.vscomp-wrapper, +.pop-comp-wrapper { + color: map.get($brand-colors, foreground); +} + +.vscomp-toggle-button { + border-radius: var(--bs-border-radius) !important; +} + +.vscomp-wrapper.show-value-as-tags .vscomp-toggle-button { + border-color: map.get($brand-colors, gray-light-75); +} + +.vscomp-wrapper.show-value-as-tags .vscomp-value-tag { + background-color: map.get($brand-colors, primary-light-80); + border-color: map.get($brand-colors, primary-light-60); + border-radius: 2px; + padding: 2px 6px; + font-size: 14px; +} + +.vscomp-wrapper .checkbox-icon.checked::after, +.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after { + border-color: map.get($brand-colors, primary-light-20); + border-left-color: transparent; + border-top-color: transparent; +} + +.vscomp-option.selected, +.vscomp-option.focused { + background-color: map.get($brand-colors, white); +} + +.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after { + border-color: map.get($brand-colors, primary-light-20); + border-left-color: transparent; + border-top-color: transparent; +} + +.vscomp-option:hover { + background-color: map.get($brand-colors, primary-light-20); + color: map.get($brand-colors, white); +} + +.vscomp-wrapper.multiple .vscomp-option.selected:hover .checkbox-icon::after { + border-color: map.get($brand-colors, white); + border-left-color: transparent; + border-top-color: transparent; +} + +.input-group-text { + padding: 0; + background-color: map.get($brand-colors, white); + height: 100%; +} diff --git a/extensions/connect-user-metrics/app/styles/components/_table.scss b/extensions/connect-user-metrics/app/styles/components/_table.scss new file mode 100644 index 00000000..f60a088d --- /dev/null +++ b/extensions/connect-user-metrics/app/styles/components/_table.scss @@ -0,0 +1,27 @@ +// TABLE + +.rt-pagination { + .rt-page-button { + font-weight: 400; + } + + .rt-page-button-current { + background-color: map.get($brand-colors, gray); + color: map.get($brand-colors, white); + } +} + +.rt-table { + .rt-tbody .rt-tr:hover { + background-color: map.get($brand-colors, primary-light-80); + transition: background-color 0.3s ease 0s, color 0.3s ease 0s; + } + + .rt-sort-header { + font-weight: 500; + } + + .rt-page-button:disabled:hover { + color: map.get($brand-colors, gray-dark); + } +} diff --git a/extensions/connect-user-metrics/app/styles/main.scss b/extensions/connect-user-metrics/app/styles/main.scss new file mode 100644 index 00000000..43695795 --- /dev/null +++ b/extensions/connect-user-metrics/app/styles/main.scss @@ -0,0 +1,11 @@ +// Utilities and components +@use "sass:map"; +@import "utilities/variables"; +@import "utilities/base"; +@import "components/navbar"; +@import "components/about"; +@import "components/table"; +@import "components/sidebar"; +@import "components/content"; +@import "components/footer"; +@import "components/session_duration"; diff --git a/extensions/connect-user-metrics/app/styles/utilities/_base.scss b/extensions/connect-user-metrics/app/styles/utilities/_base.scss new file mode 100644 index 00000000..0fa14329 --- /dev/null +++ b/extensions/connect-user-metrics/app/styles/utilities/_base.scss @@ -0,0 +1,78 @@ +h1, +h2, +h3, +h4, +h5 { + margin-bottom: 0; + color: map.get($brand-colors, gray-dark); +} + +.btn { + --bs-btn-padding-x: 15px; + --bs-btn-padding-y: 5px; +} + +.btn-default, +.btn:disabled, +.btn.disabled, +fieldset:disabled .btn { + border: none; + border-radius: 4px; + background-color: map.get($brand-colors, primary); + color: map.get($brand-colors, white); + cursor: pointer; + padding: 6px 16px; + min-width: 100px; + max-height: 36px; + opacity: unset; +} + +.btn-default:hover, +.btn-default:focus, +:not(.btn-check) + .btn:active { + background-color: map.get($brand-colors, primary-dark-90); + color: map.get($brand-colors, white); + background-image: none; + opacity: unset; +} + +.btn-group-toggle { + margin-left: 5px !important; +} + +details.collapsible-section { + margin-top: 20px; +} + +details.collapsible-section > summary { + align-items: center; + cursor: pointer; + display: flex; + margin-bottom: 10px; + width: fit-content; +} + +details.collapsible-section > summary::before { + content: "\25b6"; + font-size: 80%; + margin-right: 5px; +} + +details.collapsible-section[open] > summary::before { + content: "\25bc"; +} + +details.collapsible-section > summary > h3 { + margin: 0; +} + +hr { + margin: 0; + color: map.get($base-colors, gray-light); + opacity: 1; +} + +.no-busy-indicator .recalculating::after { + display: none !important; + content: none !important; +} diff --git a/extensions/connect-user-metrics/app/styles/utilities/_variables.scss b/extensions/connect-user-metrics/app/styles/utilities/_variables.scss new file mode 100644 index 00000000..7922ea45 --- /dev/null +++ b/extensions/connect-user-metrics/app/styles/utilities/_variables.scss @@ -0,0 +1,35 @@ +// COLORS + +// Base colors +$base-colors: ( + gray-lighter: #f2f4f8, + gray-light: #dde1e6, + gray: #c5c8ca, +); + +// Credit colors +$credit-colors: ( + blue-gray: #517287, + blue-gray-dark: #15354a, + blue-light: #ccebff, + blue: #0099f9, + blue-dark: #008de7, + rhino: #4747b1 +); + +// Branding colors +$brand-colors: ( + white: var(--bs-white), + black: var(--bs-black), + foreground: var(--bs-body-color), + background: var(--bs-body-bg), + gray-light-75: color-mix(in srgb, var(--brand-gray), white 75%), + gray-light-30: color-mix(in srgb, var(--brand-gray), white 30%), + gray: var(--brand-gray), + gray-dark: var(--bs-gray-700), + primary-light-80: color-mix(in srgb, var(--bs-primary), white 80%), + primary-light-60: color-mix(in srgb, var(--bs-primary), white 60%), + primary-light-20: color-mix(in srgb, var(--bs-primary), white 20%), + primary: var(--bs-primary), + primary-dark-90: color-mix(in srgb, var(--bs-primary), black 10%) +); diff --git a/extensions/connect-user-metrics/app/view/__init__.R b/extensions/connect-user-metrics/app/view/__init__.R new file mode 100644 index 00000000..65702e2e --- /dev/null +++ b/extensions/connect-user-metrics/app/view/__init__.R @@ -0,0 +1,2 @@ +# View: Shiny modules and related code. +# https://go.appsilon.com/rhino-project-structure diff --git a/extensions/connect-user-metrics/app/view/about_section.R b/extensions/connect-user-metrics/app/view/about_section.R new file mode 100644 index 00000000..97959659 --- /dev/null +++ b/extensions/connect-user-metrics/app/view/about_section.R @@ -0,0 +1,101 @@ +box::use( + htmltools[ + h4, + ], + shiny, +) + +box::use( + app/logic/ui_utils[ + brand + ], + app/logic/utils[ + create_image_path + ], + app/view/ui_components[ + card, + link + ], +) + +about_credits <- brand$meta$credits$about + +about_section <- shiny$div( + class = "about-section", + shiny$div( + class = "about-links", + lapply(about_credits$references, \(x) link(x$name, x$link)) + ) +) + +tech_section <- shiny$div( + class = "tech-section", + h4(class = "tech-heading", "Powered by"), + lapply( + about_credits$powered_by, + function(x) { + card( + href_link = x$link, + img_link = create_image_path(x$img_name), + card_header = x$name, + card_text = x$desc + ) + } + ) +) + +brand_section <- shiny$div( + class = "brand-section", + shiny$a( + class = "brand-logo", + href = about_credits$references$homepage$link, + target = "_blank", + rel = "noopener noreferrer", + shiny$img( + src = create_image_path(brand$logo), + alt = "Appsilon" + ) + ), + shiny$p( + class = "brand-summary", + about_credits$summary + ) +) + +#' @export +ui <- function(id) { + ns <- shiny$NS(id) + shiny$div( + class = "info-btns", + shiny$actionButton( + inputId = ns("open_about_modal"), + class = "info-btn", + label = "", + icon = shiny$icon("info-circle") + ) + ) +} + +#' @export +server <- function(id) { + shiny$moduleServer(id, function(input, output, session) { + ns <- session$ns + + shiny$observeEvent( + input$open_about_modal, + ignoreNULL = TRUE, + { + shiny$showModal( + shiny$modalDialog( + easyClose = TRUE, + title = brand$meta$app_title, + size = "l", + about_section, + tech_section, + brand_section + ) + ) + } + ) + }) +} diff --git a/extensions/connect-user-metrics/app/view/footer.R b/extensions/connect-user-metrics/app/view/footer.R new file mode 100644 index 00000000..f9fe392e --- /dev/null +++ b/extensions/connect-user-metrics/app/view/footer.R @@ -0,0 +1,28 @@ +box::use( + shiny[ + a, + div + ], +) + +box::use( + app/logic/ui_utils[ + brand, + ], +) + +footer_credits <- brand$meta$credits$footer + +#' @export +ui <- function() { + div( + footer_credits$text, + a( + footer_credits$link$label, + class = "link", + href = footer_credits$link$url, + target = "_blank", + rel = "noopener noreferrer" + ) + ) +} diff --git a/extensions/connect-user-metrics/app/view/navbar_section.R b/extensions/connect-user-metrics/app/view/navbar_section.R new file mode 100644 index 00000000..6895aa05 --- /dev/null +++ b/extensions/connect-user-metrics/app/view/navbar_section.R @@ -0,0 +1,101 @@ +# The application header. +# Includes branding and navigation +box::use( + imola[flexPanel], + shiny[ + a, + h1, + img, + moduleServer, + NS + ], +) + +box::use( + app/logic/ui_utils[ + brand, + breakpoints, + is_credits_enabled + ], + app/logic/utils[ + create_image_path, + ], +) + +if (is_credits_enabled) { + box::use( + app/view/about_section, + ) +} + +homepage_link <- brand$meta$credits$about$references$homepage$link + +app_title_header <- h1( + class = "title", + brand$meta$app_title +) + +navbar_logo <- a( + class = "logo-link", + href = if (is_credits_enabled) homepage_link, + target = "_blank", + rel = "noopener noreferrer", + img( + class = "logo", + src = create_image_path(brand$logo), + height = "40px" # !!! + ) +) + +navbar_cta <- a( + "Let's Talk", + class = "btn-cta", + href = paste0(homepage_link, "/#contact"), + target = "_blank", + rel = "noopener noreferrer" +) + +#' @export +ui <- function(id) { + ns <- NS(id) + + flexPanel( + id = "app_header", + class = "app-header", + breakpoint_system = breakpoints, + align_items = "center", + justify_content = "space-between", + gap = "24px", + height = "40px", + navbar_logo, + app_title_header, + # The navigation + flexPanel( + id = "navigation", + class = "navigation", + breakpoint_system = breakpoints, + align_items = "center", + direction = list( + default = "column", + l = "row" + ), + gap = "10px", + onclick = "App.handleNavbar(event);" + ), + + # The info icon + if (is_credits_enabled) about_section$ui(ns("about")), + + # The call to action button + if (is_credits_enabled) navbar_cta + ) +} + +#' @export +server <- function(id) { + moduleServer(id, function(input, output, session) { + if (is_credits_enabled) { + about_section$server("about") + } + }) +} diff --git a/extensions/connect-user-metrics/app/view/session_duration.R b/extensions/connect-user-metrics/app/view/session_duration.R new file mode 100755 index 00000000..f90bb3c8 --- /dev/null +++ b/extensions/connect-user-metrics/app/view/session_duration.R @@ -0,0 +1,96 @@ +box::use( + lubridate, + shiny[div, moduleServer, NS, numericInput, reactive, req, selectInput, tags], +) +#' @export +default_min_time_list <- list(number = 0, unit = "minutes") + +#' Return a list used by the ui component to set the default values +#' @param min_time A string in the format "HH:MM:SS" giving the minimum duration +#' of each session to be used in the filter +#' @details Given `min_time`, this function needs to return a list +#' with two elements: `number` (any integer) and `unit` ( +#' any of `c("seconds", "minutes", "hours")`). +#' +#' So, "00:00:30" returns `list(number=30, unit="seconds")`, +#' "00:03:00" returns `list(number=3, unit="minutes")`, +#' "00:01:30" returns `list(number=90, unit="seconds")` and so on. +#' +#' @export +get_min_time <- function(min_time) { + + # covers the case when min_time is a list with just one element + if (is.list(min_time)) { + min_time <- min_time[[1]] + } + + min_time_in_seconds <- + lubridate$hms(min_time) |> + lubridate$seconds() |> + as.integer() + + # if it failed to parse or it is negative, just use the default "0 minutes" + if (is.na(min_time_in_seconds) || min_time_in_seconds <= 0) { + return(default_min_time_list) + } + + # if it is an hour + if (min_time_in_seconds %% 3600 == 0) { + return(list(number = min_time_in_seconds %/% 3600, unit = "hours")) + } # if it is a minute + if (min_time_in_seconds %% 60 == 0) { + return(list(number = min_time_in_seconds %/% 60, unit = "minutes")) + } + + list(number = min_time_in_seconds, unit = "seconds") +} + +#' @export +ui <- function(id, min_time = NULL) { + ns <- NS(id) + + min_time_list <- get_min_time(min_time) + duration_units <- c("seconds", "minutes", "hours") + + div( + class = "form-group shiny-input-container", + tags$label("Minimum session duration", class = "control-label"), + div( + class = "session-duration-input-controls", + div( + numericInput( + inputId = ns("value"), + label = NULL, + value = min_time_list$number, + min = 0, + max = 99999, + step = 1 + ) + ), + div( + selectInput( + inputId = ns("unit"), + label = NULL, + choices = duration_units, + selected = min_time_list$unit + ) + ) + ) + ) +} + +#' @export +server <- function(id) { + moduleServer( + id, function(input, output, session) { + session_duration_seconds <- reactive({ + req(input$value, input$unit) + + session_duration <- lubridate$duration(input$value, input$unit) + as.numeric(session_duration) + }) + + session_duration_seconds + } + ) +} diff --git a/extensions/connect-user-metrics/app/view/table.R b/extensions/connect-user-metrics/app/view/table.R new file mode 100644 index 00000000..3cd89aad --- /dev/null +++ b/extensions/connect-user-metrics/app/view/table.R @@ -0,0 +1,13 @@ +box::use( + reactable[colDef, reactable], +) + +#' @export +reactable2 <- function(df, ...) { + reactable( + df, highlight = TRUE, striped = TRUE, + compact = TRUE, paginationType = "numbers", + defaultColDef = colDef(align = "left"), + ... + ) +} diff --git a/extensions/connect-user-metrics/app/view/ui_components.R b/extensions/connect-user-metrics/app/view/ui_components.R new file mode 100644 index 00000000..5a36f37e --- /dev/null +++ b/extensions/connect-user-metrics/app/view/ui_components.R @@ -0,0 +1,109 @@ +box::use( + bslib[card_header], + shiny[ + a, + div, + HTML, + icon, + img, + tags + ], +) + +# bslib card header +#' @export +card_header_with_content <- function(title, content) { + card_header( + tags$div( + class = "card-header-with-content no-busy-indicator", + tags$span(tags$h5(tags$b(title))), + tags$span(content) + ) + ) +} + +#' @export +inline_info_text <- function( + text1 = NULL, value1 = NULL, change1 = NULL, + text2 = NULL, value2 = NULL, change2 = NULL +) { + tags$div( + class = "inline-info-wrapper", + text1, tags$b(value1), change1, + HTML(" "), + text2, tags$b(value2), change2, + HTML(" ") + ) +} + +#' Creates a hyperlink with the specified label and URL. +#' +#' @param label The text to display for the hyperlink. +#' @param hyperlink The URL or path to link to. +#' @return A string representing the HTML code for the hyperlink. +#' +#' @export +link <- function(label, hyperlink) { + a( + class = "link", + href = hyperlink, + target = "_blank", + rel = "noopener noreferrer", + icon("link"), + label + ) +} + +#' Creates a card element with a hyperlink, image, header, and text. +#' +#' @param href_link The hyperlink for the card. +#' @param img_link The image link for the card. +#' @param card_header The header text for the card. +#' @param card_text The text content for the card. +#' +#' @return A card element with the specified properties. +#' +#' @examples +#' card("https://example.com", "image.jpg", "Card Header", "Card Text") +#' card <- function(href_link, img_link, card_header, card_text) { +#' # Function implementation goes here +#' } +#' +#' @export +card <- function(href_link, img_link, card_header, card_text) { + div( + class = "card-package", + a( + class = "card-logo", + href = href_link, + target = "_blank", + rel = "noopener noreferrer", + img( + src = img_link, + alt = card_header + ) + ), + div( + class = "card-heading", + card_header + ), + div( + class = "card-content", + card_text + ), + a( + class = "card-link rhino", + href = href_link, + target = "_blank", + rel = "noopener noreferrer", + "Learn more" + ), + a( + class = "card-link technologies", + href = "https://www.appsilon.com/rhinoverse/rhino", + target = "_blank", + rel = "noopener noreferrer", + "More Appsilon Technologies" + ) + ) +} diff --git a/extensions/connect-user-metrics/config.yml b/extensions/connect-user-metrics/config.yml new file mode 100644 index 00000000..eda4ca71 --- /dev/null +++ b/extensions/connect-user-metrics/config.yml @@ -0,0 +1,9 @@ +default: + rhino_log_level: !expr Sys.getenv("RHINO_LOG_LEVEL", "INFO") + rhino_log_file: !expr Sys.getenv("RHINO_LOG_FILE", NA) + apps: "" + users: "" + agg_levels: "start_date" # can be a combination of content_guid,user_guid,start_date + agg_time: "day" # can be one of day,week,month + min_time: "00:00:00" + week_start: "monday" diff --git a/extensions/connect-user-metrics/dependencies.R b/extensions/connect-user-metrics/dependencies.R new file mode 100644 index 00000000..058fbe8c --- /dev/null +++ b/extensions/connect-user-metrics/dependencies.R @@ -0,0 +1,24 @@ +# This file allows packrat (used by rsconnect during deployment) to pick up dependencies. +library(box.linters) +library(config) +library(connectapi) +library(dplyr) +library(echarts4r) +library(glue) +library(here) +library(imola) +library(lubridate) +library(mirai) +library(purrr) +library(reactable) +library(rhino) +library(rlang) +library(shinycssloaders) +library(shinyjs) +library(shinytest2) +library(shinyTime) +library(shinyWidgets) +library(stringr) +library(timetk) +library(treesitter) +library(treesitter.r) diff --git a/extensions/connect-user-metrics/renv.lock b/extensions/connect-user-metrics/renv.lock new file mode 100644 index 00000000..86b46961 --- /dev/null +++ b/extensions/connect-user-metrics/renv.lock @@ -0,0 +1,7157 @@ +{ + "R": { + "Version": "4.5.0", + "Repositories": [ + { + "Name": "CRAN", + "URL": "https://cloud.r-project.org" + } + ] + }, + "Packages": { + "AsioHeaders": { + "Package": "AsioHeaders", + "Version": "1.22.1-2", + "Source": "Repository", + "Type": "Package", + "Title": "'Asio' C++ Header Files", + "Date": "2022-12-07", + "Author": "Dirk Eddelbuettel", + "Maintainer": "Dirk Eddelbuettel ", + "Description": "'Asio' is a cross-platform C++ library for network and low-level I/O programming that provides developers with a consistent asynchronous model using a modern C++ approach. It is also included in Boost but requires linking when used with Boost. Standalone it can be used header-only (provided a recent compiler). 'Asio' is written and maintained by Christopher M. Kohlhoff, and released under the 'Boost Software License', Version 1.0.", + "Copyright": "file inst/COPYRIGHTS", + "License": "BSL-1.0", + "URL": "https://github.com/eddelbuettel/asioheaders, https://dirk.eddelbuettel.com/code/asioheaders.html", + "BugReports": "https://github.com/eddelbuettel/asioheaders/issues", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "BH": { + "Package": "BH", + "Version": "1.87.0-1", + "Source": "Repository", + "Type": "Package", + "Title": "Boost C++ Header Files", + "Date": "2024-12-17", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"John W.\", \"Emerson\", role = \"aut\"), person(\"Michael J.\", \"Kane\", role = \"aut\", comment = c(ORCID = \"0000-0003-1899-6662\")))", + "Description": "Boost provides free peer-reviewed portable C++ source libraries. A large part of Boost is provided as C++ template code which is resolved entirely at compile-time without linking. This package aims to provide the most useful subset of Boost libraries for template use among CRAN packages. By placing these libraries in this package, we offer a more efficient distribution system for CRAN as replication of this code in the sources of other packages is avoided. As of release 1.84.0-0, the following Boost libraries are included: 'accumulators' 'algorithm' 'align' 'any' 'atomic' 'beast' 'bimap' 'bind' 'circular_buffer' 'compute' 'concept' 'config' 'container' 'date_time' 'detail' 'dynamic_bitset' 'exception' 'flyweight' 'foreach' 'functional' 'fusion' 'geometry' 'graph' 'heap' 'icl' 'integer' 'interprocess' 'intrusive' 'io' 'iostreams' 'iterator' 'lambda2' 'math' 'move' 'mp11' 'mpl' 'multiprecision' 'numeric' 'pending' 'phoenix' 'polygon' 'preprocessor' 'process' 'propery_tree' 'qvm' 'random' 'range' 'scope_exit' 'smart_ptr' 'sort' 'spirit' 'tuple' 'type_traits' 'typeof' 'unordered' 'url' 'utility' 'uuid'.", + "License": "BSL-1.0", + "URL": "https://github.com/eddelbuettel/bh, https://dirk.eddelbuettel.com/code/bh.html", + "BugReports": "https://github.com/eddelbuettel/bh/issues", + "NeedsCompilation": "no", + "Author": "Dirk Eddelbuettel [aut, cre] (), John W. Emerson [aut], Michael J. Kane [aut] ()", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "KernSmooth": { + "Package": "KernSmooth", + "Version": "2.23-26", + "Source": "Repository", + "Priority": "recommended", + "Date": "2024-12-10", + "Title": "Functions for Kernel Smoothing Supporting Wand & Jones (1995)", + "Authors@R": "c(person(\"Matt\", \"Wand\", role = \"aut\", email = \"Matt.Wand@uts.edu.au\"), person(\"Cleve\", \"Moler\", role = \"ctb\", comment = \"LINPACK routines in src/d*\"), person(\"Brian\", \"Ripley\", role = c(\"trl\", \"cre\", \"ctb\"), email = \"Brian.Ripley@R-project.org\", comment = \"R port and updates\"))", + "Note": "Maintainers are not available to give advice on using a package they did not author.", + "Depends": [ + "R (>= 2.5.0)", + "stats" + ], + "Suggests": [ + "MASS", + "carData" + ], + "Description": "Functions for kernel smoothing (and density estimation) corresponding to the book: Wand, M.P. and Jones, M.C. (1995) \"Kernel Smoothing\".", + "License": "Unlimited", + "ByteCompile": "yes", + "NeedsCompilation": "yes", + "Author": "Matt Wand [aut], Cleve Moler [ctb] (LINPACK routines in src/d*), Brian Ripley [trl, cre, ctb] (R port and updates)", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN" + }, + "MASS": { + "Package": "MASS", + "Version": "7.3-65", + "Source": "Repository", + "Priority": "recommended", + "Date": "2025-02-19", + "Revision": "$Rev: 3681 $", + "Depends": [ + "R (>= 4.4.0)", + "grDevices", + "graphics", + "stats", + "utils" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "lattice", + "nlme", + "nnet", + "survival" + ], + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"Bill\", \"Venables\", role = c(\"aut\", \"cph\")), person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"), person(\"Kurt\", \"Hornik\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"Albrecht\", \"Gebhardt\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"David\", \"Firth\", role = \"ctb\", comment = \"support functions for polr\"))", + "Description": "Functions and datasets to support Venables and Ripley, \"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", + "Author": "Brian Ripley [aut, cre, cph], Bill Venables [aut, cph], Douglas M. Bates [ctb], Kurt Hornik [trl] (partial port ca 1998), Albrecht Gebhardt [trl] (partial port ca 1998), David Firth [ctb] (support functions for polr)", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN" + }, + "Matrix": { + "Package": "Matrix", + "Version": "1.7-2", + "Source": "Repository", + "VersionNote": "do also bump src/version.h, inst/include/Matrix/version.h", + "Date": "2025-01-20", + "Priority": "recommended", + "Title": "Sparse and Dense Matrix Classes and Methods", + "Description": "A rich hierarchy of sparse and dense matrix classes, including general, symmetric, triangular, and diagonal matrices with numeric, logical, or pattern entries. Efficient methods for operating on such matrices, often wrapping the 'BLAS', 'LAPACK', and '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\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"), email = \"mmaechler+Matrix@gmail.com\", comment = c(ORCID = \"0000-0002-8685-9910\")), person(\"Mikael\", \"Jagan\", role = \"aut\", comment = c(ORCID = \"0000-0002-3542-2938\")), person(\"Timothy A.\", \"Davis\", role = \"ctb\", comment = c(ORCID = \"0000-0001-7614-6899\", \"SuiteSparse libraries\", \"collaborators listed in dir(system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"), pattern=\\\"License\\\", full.names=TRUE, recursive=TRUE)\")), person(\"George\", \"Karypis\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2753-1437\", \"METIS library\", \"Copyright: Regents of the University of Minnesota\")), person(\"Jason\", \"Riedy\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4345-4200\", \"GNU Octave's condest() and onenormest()\", \"Copyright: Regents of the University of California\")), person(\"Jens\", \"Oehlschlägel\", role = \"ctb\", comment = \"initial nearPD()\"), person(\"R Core Team\", role = \"ctb\", comment = c(ROR = \"02zz1nj61\", \"base R's matrix implementation\")))", + "Depends": [ + "R (>= 4.4)", + "methods" + ], + "Imports": [ + "grDevices", + "graphics", + "grid", + "lattice", + "stats", + "utils" + ], + "Suggests": [ + "MASS", + "datasets", + "sfsmisc", + "tools" + ], + "Enhances": [ + "SparseM", + "graph" + ], + "LazyData": "no", + "LazyDataNote": "not possible, since we use data/*.R and our S4 classes", + "BuildResaveData": "no", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Douglas Bates [aut] (), Martin Maechler [aut, cre] (), Mikael Jagan [aut] (), Timothy A. Davis [ctb] (, SuiteSparse libraries, collaborators listed in dir(system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"), pattern=\"License\", full.names=TRUE, recursive=TRUE)), George Karypis [ctb] (, METIS library, Copyright: Regents of the University of Minnesota), Jason Riedy [ctb] (, GNU Octave's condest() and onenormest(), Copyright: Regents of the University of California), Jens Oehlschlägel [ctb] (initial nearPD()), R Core Team [ctb] (02zz1nj61, base R's matrix implementation)", + "Maintainer": "Martin Maechler ", + "Repository": "CRAN" + }, + "PKI": { + "Package": "PKI", + "Version": "0.1-14", + "Source": "Repository", + "Title": "Public Key Infrastucture for R Based on the X.509 Standard", + "Author": "Simon Urbanek ", + "Maintainer": "Simon Urbanek ", + "Depends": [ + "R (>= 2.9.0)", + "base64enc" + ], + "Enhances": [ + "gmp" + ], + "Description": "Public Key Infrastucture functions such as verifying certificates, RSA encription and signing which can be used to build PKI infrastructure and perform cryptographic tasks.", + "License": "GPL-2 | GPL-3 | file LICENSE", + "URL": "http://www.rforge.net/PKI", + "SystemRequirements": "OpenSSL library and headers (openssl-dev or similar)", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "R.cache": { + "Package": "R.cache", + "Version": "0.16.0", + "Source": "Repository", + "Depends": [ + "R (>= 2.14.0)" + ], + "Imports": [ + "utils", + "R.methodsS3 (>= 1.8.1)", + "R.oo (>= 1.24.0)", + "R.utils (>= 2.10.1)", + "digest (>= 0.6.13)" + ], + "Title": "Fast and Light-Weight Caching (Memoization) of Objects and Results to Speed Up Computations", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\"))", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Description": "Memoization can be used to speed up repetitive and computational expensive function calls. The first time a function that implements memoization is called the results are stored in a cache memory. The next time the function is called with the same set of parameters, the results are momentarily retrieved from the cache avoiding repeating the calculations. With this package, any R object can be cached in a key-value storage where the key can be an arbitrary set of R objects. The cache memory is persistent (on the file system).", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "URL": "https://github.com/HenrikBengtsson/R.cache", + "BugReports": "https://github.com/HenrikBengtsson/R.cache/issues", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "R.methodsS3": { + "Package": "R.methodsS3", + "Version": "1.8.2", + "Source": "Repository", + "Depends": [ + "R (>= 2.13.0)" + ], + "Imports": [ + "utils" + ], + "Suggests": [ + "codetools" + ], + "Title": "S3 Methods Simplified", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\"))", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Description": "Methods that simplify the setup of S3 generic functions and S3 methods. Major effort has been made in making definition of methods as simple as possible with a minimum of maintenance for package developers. For example, generic functions are created automatically, if missing, and naming conflict are automatically solved, if possible. The method setMethodS3() is a good start for those who in the future may want to migrate to S4. This is a cross-platform package implemented in pure R that generates standard S3 methods.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "URL": "https://github.com/HenrikBengtsson/R.methodsS3", + "BugReports": "https://github.com/HenrikBengtsson/R.methodsS3/issues", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "R.oo": { + "Package": "R.oo", + "Version": "1.27.0", + "Source": "Repository", + "Depends": [ + "R (>= 2.13.0)", + "R.methodsS3 (>= 1.8.2)" + ], + "Imports": [ + "methods", + "utils" + ], + "Suggests": [ + "tools" + ], + "Title": "R Object-Oriented Programming with or without References", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\"))", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Description": "Methods and classes for object-oriented programming in R with or without references. Large effort has been made on making definition of methods as simple as possible with a minimum of maintenance for package developers. The package has been developed since 2001 and is now considered very stable. This is a cross-platform package implemented in pure R that defines standard S3 classes without any tricks.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "URL": "https://github.com/HenrikBengtsson/R.oo", + "BugReports": "https://github.com/HenrikBengtsson/R.oo/issues", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "R.utils": { + "Package": "R.utils", + "Version": "2.12.3", + "Source": "Repository", + "Depends": [ + "R (>= 2.14.0)", + "R.oo" + ], + "Imports": [ + "methods", + "utils", + "tools", + "R.methodsS3" + ], + "Suggests": [ + "datasets", + "digest (>= 0.6.10)" + ], + "Title": "Various Programming Utilities", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\"))", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Description": "Utility functions useful when programming and developing R packages.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "URL": "https://henrikbengtsson.github.io/R.utils/, https://github.com/HenrikBengtsson/R.utils", + "BugReports": "https://github.com/HenrikBengtsson/R.utils/issues", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "R6": { + "Package": "R6", + "Version": "2.5.1", + "Source": "Repository", + "Title": "Encapsulated Classes with Reference Semantics", + "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 reference classes. Compared to reference classes, R6 classes are simpler and lighter-weight, and they are not built on S4 classes so they do not require the methods package. These classes allow public and private members, and they support inheritance, even when the classes are defined in different 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", + "Author": "Winston Chang [aut, cre]", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "RColorBrewer": { + "Package": "RColorBrewer", + "Version": "1.1-3", + "Source": "Repository", + "Date": "2022-04-03", + "Title": "ColorBrewer Palettes", + "Authors@R": "c(person(given = \"Erich\", family = \"Neuwirth\", role = c(\"aut\", \"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) designed by Cynthia Brewer as described at http://colorbrewer2.org.", + "License": "Apache License 2.0", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "Rcpp": { + "Package": "Rcpp", + "Version": "1.0.14", + "Source": "Repository", + "Title": "Seamless R and C++ Integration", + "Date": "2025-01-11", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"JJ\", \"Allaire\", role = \"aut\", comment = c(ORCID = \"0000-0003-0174-9868\")), person(\"Kevin\", \"Ushey\", role = \"aut\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Qiang\", \"Kou\", role = \"aut\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Nathan\", \"Russell\", role = \"aut\"), person(\"Iñaki\", \"Ucar\", role = \"aut\", comment = c(ORCID = \"0000-0001-6403-5550\")), person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"John\", \"Chambers\", role = \"aut\"))", + "Description": "The 'Rcpp' package provides R functions as well as C++ classes which offer a seamless integration of R and C++. Many R data types and objects can be mapped back and forth to C++ equivalents which facilitates both writing of new code as well as easier integration of third-party libraries. Documentation about 'Rcpp' is provided by several vignettes included in this package, via the 'Rcpp Gallery' site at , the paper by Eddelbuettel and Francois (2011, ), the book by Eddelbuettel (2013, ) and the paper by Eddelbuettel and Balamuta (2018, ); see 'citation(\"Rcpp\")' for details.", + "Imports": [ + "methods", + "utils" + ], + "Suggests": [ + "tinytest", + "inline", + "rbenchmark", + "pkgKitten (>= 0.1.2)" + ], + "URL": "https://www.rcpp.org, https://dirk.eddelbuettel.com/code/rcpp.html, https://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", + "Author": "Dirk Eddelbuettel [aut, cre] (), Romain Francois [aut] (), JJ Allaire [aut] (), Kevin Ushey [aut] (), Qiang Kou [aut] (), Nathan Russell [aut], Iñaki Ucar [aut] (), Doug Bates [aut] (), John Chambers [aut]", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "RcppArmadillo": { + "Package": "RcppArmadillo", + "Version": "14.2.3-1", + "Source": "Repository", + "Type": "Package", + "Title": "'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra Library", + "Date": "2025-02-05", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Binxiang\", \"Ni\", role = \"aut\"), person(\"Conrad\", \"Sanderson\", role = \"aut\", comment = c(ORCID = \"0000-0002-0049-4501\")))", + "Description": "'Armadillo' is a templated C++ linear algebra library (by Conrad Sanderson) that aims towards a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, as well as a subset of trigonometric and statistics functions. Various matrix decompositions are provided through optional integration with LAPACK and ATLAS libraries. The 'RcppArmadillo' package includes the header files from the templated 'Armadillo' library. Thus users do not need to install 'Armadillo' itself in order to use 'RcppArmadillo'. From release 7.800.0 on, 'Armadillo' is licensed under Apache License 2; previous releases were under licensed as MPL 2.0 from version 3.800.0 onwards and LGPL-3 prior to that; 'RcppArmadillo' (the 'Rcpp' bindings/bridge to Armadillo) is licensed under 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 (>= 1.0.12)", + "stats", + "utils", + "methods" + ], + "Suggests": [ + "tinytest", + "Matrix (>= 1.3.0)", + "pkgKitten", + "reticulate", + "slam" + ], + "URL": "https://github.com/RcppCore/RcppArmadillo, https://dirk.eddelbuettel.com/code/rcpp.armadillo.html", + "BugReports": "https://github.com/RcppCore/RcppArmadillo/issues", + "RoxygenNote": "6.0.1", + "NeedsCompilation": "yes", + "Author": "Dirk Eddelbuettel [aut, cre] (), Romain Francois [aut] (), Doug Bates [aut] (), Binxiang Ni [aut], Conrad Sanderson [aut] ()", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "RcppRoll": { + "Package": "RcppRoll", + "Version": "0.3.1", + "Source": "Repository", + "Type": "Package", + "Title": "Efficient Rolling / Windowed Operations", + "Author": "Kevin Ushey", + "Maintainer": "Kevin Ushey ", + "Description": "Provides fast and efficient routines for common rolling / windowed operations. Routines for the efficient computation of windowed mean, median, sum, product, minimum, maximum, standard deviation and variance are provided.", + "License": "GPL (>= 2)", + "Depends": [ + "R (>= 2.15.1)" + ], + "Suggests": [ + "zoo", + "testthat" + ], + "Imports": [ + "Rcpp" + ], + "LinkingTo": [ + "Rcpp" + ], + "RoxygenNote": "6.0.1", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "RcppTOML": { + "Package": "RcppTOML", + "Version": "0.2.3", + "Source": "Repository", + "Type": "Package", + "Title": "'Rcpp' Bindings to Parser for \"Tom's Obvious Markup Language\"", + "Date": "2025-03-08", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Mark\", \"Gillard\", role = \"aut\", comment = \"Author of 'toml++' header library\"))", + "Description": "The configuration format defined by 'TOML' (which expands to \"Tom's Obvious Markup Language\") specifies an excellent format (described at ) suitable for both human editing as well as the common uses of a machine-readable format. This package uses 'Rcpp' to connect to the 'toml++' parser written by Mark Gillard to R.", + "SystemRequirements": "A C++17 compiler", + "BugReports": "https://github.com/eddelbuettel/rcpptoml/issues", + "URL": "http://dirk.eddelbuettel.com/code/rcpp.toml.html", + "Imports": [ + "Rcpp (>= 1.0.8)" + ], + "Depends": [ + "R (>= 3.3.0)" + ], + "LinkingTo": [ + "Rcpp" + ], + "Suggests": [ + "tinytest" + ], + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Author": "Dirk Eddelbuettel [aut, cre] (), Mark Gillard [aut] (Author of 'toml++' header library)", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "SQUAREM": { + "Package": "SQUAREM", + "Version": "2021.1", + "Source": "Repository", + "Date": "2021-01-12", + "Title": "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms", + "Description": "Algorithms for accelerating the convergence of slow, monotone sequences from smooth, contraction mapping such as the EM algorithm. It can be used to accelerate any smooth, linearly convergent acceleration scheme. A tutorial style introduction to this package is available in a vignette on the CRAN download page or, when the package is loaded in an R session, with vignette(\"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": "CRAN", + "NeedsCompilation": "no" + }, + "TTR": { + "Package": "TTR", + "Version": "0.24.4", + "Source": "Repository", + "Type": "Package", + "Title": "Technical Trading Rules", + "Authors@R": "c( person(given=\"Joshua\", family=\"Ulrich\", role=c(\"cre\",\"aut\"), email=\"josh.m.ulrich@gmail.com\"), person(given=c(\"Ethan\",\"B.\"), family=\"Smith\", role=\"ctb\") )", + "Imports": [ + "xts (>= 0.10-0)", + "zoo", + "curl" + ], + "LinkingTo": [ + "xts" + ], + "Enhances": [ + "quantmod" + ], + "Suggests": [ + "RUnit" + ], + "Description": "A collection of over 50 technical indicators for creating technical trading rules. The package also provides fast implementations of common rolling-window functions, and several volatility calculations.", + "License": "GPL (>= 2)", + "URL": "https://github.com/joshuaulrich/TTR", + "BugReports": "https://github.com/joshuaulrich/TTR/issues", + "NeedsCompilation": "yes", + "Author": "Joshua Ulrich [cre, aut], Ethan B. Smith [ctb]", + "Maintainer": "Joshua Ulrich ", + "Repository": "CRAN" + }, + "anytime": { + "Package": "anytime", + "Version": "0.3.11", + "Source": "Repository", + "Type": "Package", + "Title": "Anything to 'POSIXct' or 'Date' Converter", + "Date": "2024-12-18", + "Authors@R": "person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\"))", + "Description": "Convert input in any one of character, integer, numeric, factor, or ordered type into 'POSIXct' (or 'Date') objects, using one of a number of predefined formats, and relying on Boost facilities for date and time parsing.", + "URL": "https://github.com/eddelbuettel/anytime, https://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", + "Author": "Dirk Eddelbuettel [aut, cre] ()", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "askpass": { + "Package": "askpass", + "Version": "1.2.1", + "Source": "Repository", + "Type": "Package", + "Title": "Password Entry Utilities for R, Git, and SSH", + "Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\"))", + "Description": "Cross-platform utilities for prompting the user for credentials or a passphrase, for example to authenticate with a server or read a protected key. Includes native programs for MacOS and Windows, hence no 'tcltk' is required. Password entry can be invoked in two different ways: directly from R via the askpass() function, or indirectly as password-entry back-end for 'ssh-agent' or 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables. Thereby the user can be prompted for credentials or a passphrase if needed when R calls out to git or ssh.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.r-universe.dev/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", + "Author": "Jeroen Ooms [aut, cre] ()", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "backports": { + "Package": "backports", + "Version": "1.5.0", + "Source": "Repository", + "Type": "Package", + "Title": "Reimplementations of Functions Introduced Since R-3.0.0", + "Authors@R": "c( person(\"Michel\", \"Lang\", NULL, \"michellang@gmail.com\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Duncan\", \"Murdoch\", NULL, \"murdoch.duncan@gmail.com\", role = c(\"aut\")), person(\"R Core Team\", role = \"aut\"))", + "Maintainer": "Michel Lang ", + "Description": "Functions introduced or changed since R v3.0.0 are re-implemented in this package. The backports are conditionally exported in order to let R resolve the function name to either the implemented backport, or the respective base version, if available. Package developers can make use of new functions or arguments by selectively importing specific backports to support older installations.", + "URL": "https://github.com/r-lib/backports", + "BugReports": "https://github.com/r-lib/backports/issues", + "License": "GPL-2 | GPL-3", + "NeedsCompilation": "yes", + "ByteCompile": "yes", + "Depends": [ + "R (>= 3.0.0)" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Author": "Michel Lang [cre, aut] (), Duncan Murdoch [aut], R Core Team [aut]", + "Repository": "CRAN" + }, + "base64enc": { + "Package": "base64enc", + "Version": "0.1-3", + "Source": "Repository", + "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", + "Repository": "CRAN" + }, + "bit": { + "Package": "bit", + "Version": "4.5.0.1", + "Source": "Repository", + "Type": "Package", + "Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections", + "Date": "2024-09-17", + "Authors@R": "c(person(given = \"Jens\", family = \"Oehlschlägel\", role = c(\"aut\", \"cre\"), email = \"Jens.Oehlschlaegel@truecluster.com\"), person(given = \"Brian\", family = \"Ripley\", role = \"ctb\"))", + "Author": "Jens Oehlschlägel [aut, cre], Brian Ripley [ctb]", + "Maintainer": "Jens Oehlschlägel ", + "Depends": [ + "R (>= 3.4.0)" + ], + "Suggests": [ + "testthat (>= 0.11.0)", + "roxygen2", + "knitr", + "markdown", + "rmarkdown", + "microbenchmark", + "bit64 (>= 4.0.0)", + "ff (>= 4.0.0)" + ], + "Description": "Provided are classes for boolean and skewed boolean vectors, fast boolean methods, fast unique and non-unique integer sorting, fast set operations on sorted and unsorted sets of integers, and foundations 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.3.2", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "bit64": { + "Package": "bit64", + "Version": "4.6.0-1", + "Source": "Repository", + "Title": "A S3 Class for Vectors of 64bit Integers", + "Authors@R": "c( person(\"Michael\", \"Chirico\", email = \"michaelchirico4@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jens\", \"Oehlschlägel\", role = \"aut\"), person(\"Leonardo\", \"Silvestri\", role = \"ctb\"), person(\"Ofek\", \"Shilon\", role = \"ctb\") )", + "Depends": [ + "R (>= 3.4.0)", + "bit (>= 4.0.0)" + ], + "Description": "Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. These are useful for handling database keys and exact counting in +-2^63. WARNING: do not use them as replacement for 32bit integers, integer64 are not supported for subscripting by R-core and they have different semantics when combined with double, e.g. integer64 + double => integer64. Class integer64 can be used in vectors, matrices, arrays and data.frames. Methods are available for coercion from and to logicals, integers, doubles, characters and factors as well as many elementwise and summary functions. Many fast algorithmic operations such as 'match' and 'order' support inter- active data exploration and manipulation and optionally leverage caching.", + "License": "GPL-2 | GPL-3", + "LazyLoad": "yes", + "ByteCompile": "yes", + "URL": "https://github.com/r-lib/bit64", + "Encoding": "UTF-8", + "Imports": [ + "graphics", + "methods", + "stats", + "utils" + ], + "Suggests": [ + "testthat (>= 3.0.3)", + "withr" + ], + "Config/testthat/edition": "3", + "Config/needs/development": "testthat", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Michael Chirico [aut, cre], Jens Oehlschlägel [aut], Leonardo Silvestri [ctb], Ofek Shilon [ctb]", + "Maintainer": "Michael Chirico ", + "Repository": "CRAN" + }, + "box": { + "Package": "box", + "Version": "1.2.0", + "Source": "Repository", + "Title": "Write Reusable, Composable and Modular R Code", + "Authors@R": "c( person( 'Konrad', 'Rudolph', email = 'konrad.rudolph@gmail.com', role = c('aut', 'cre'), comment = c(ORCID = '0000-0002-9866-7051') ), person( 'Michael', 'Schubert', email = 'mschu.dev@gmail.com', role = 'ctb', comment = c(ORCID = '0000-0002-6862-5221') ) )", + "URL": "https://klmr.me/box/, https://github.com/klmr/box", + "BugReports": "https://github.com/klmr/box/issues", + "Description": "A modern module system for R. Organise code into hierarchical, composable, reusable modules, and use it effortlessly across projects via a flexible, declarative dependency loading syntax.", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "tools" + ], + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Suggests": [ + "devtools", + "knitr (>= 1.40)", + "rmarkdown", + "R6", + "rlang", + "roxygen2 (>= 7.2.1)", + "shiny", + "stringr", + "testthat (>= 3.1.7)" + ], + "Enhances": [ + "rstudioapi" + ], + "VignetteBuilder": "knitr", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "yes", + "Author": "Konrad Rudolph [aut, cre] (), Michael Schubert [ctb] ()", + "Maintainer": "Konrad Rudolph ", + "Repository": "CRAN" + }, + "box.linters": { + "Package": "box.linters", + "Version": "0.10.5", + "Source": "Repository", + "Title": "Linters for 'box' Modules", + "Authors@R": "c( person(\"Ricardo Rodrigo\", \"Basa\", role = c(\"aut\", \"cre\"), email = \"opensource+rodrigo@appsilon.com\"), person(\"Jakub\", \"Nowicki\", role = \"aut\", email = \"kuba@appsilon.com\"), person(\"Mateusz\", \"Kołomański\", role = \"ctb\", email = \"mateusz.kolomanski@appsilon.com\"), person(\"Appsilon Sp. z o.o.\", role = \"cph\", email = \"opensource@appsilon.com\") )", + "Description": "Static code analysis of 'box' modules. The package enhances code quality by providing linters that check for common issues, enforce best practices, and ensure consistent coding standards.", + "URL": "https://appsilon.github.io/box.linters/, https://github.com/Appsilon/box.linters", + "License": "LGPL-3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Depends": [ + "R (>= 2.10)" + ], + "Imports": [ + "cli", + "fs", + "glue", + "lintr (>= 3.1.0)", + "purrr", + "rlang", + "stringr", + "withr", + "xfun", + "xml2", + "xmlparsedata" + ], + "Suggests": [ + "box", + "covr", + "dplyr", + "knitr", + "prettycode", + "rcmdcheck", + "rmarkdown", + "R6", + "rex", + "rhino", + "shiny", + "spelling", + "testthat (>= 3.0.0)", + "treesitter", + "treesitter.r (>= 1.1.0)" + ], + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Language": "en-US", + "NeedsCompilation": "no", + "Author": "Ricardo Rodrigo Basa [aut, cre], Jakub Nowicki [aut], Mateusz Kołomański [ctb], Appsilon Sp. z o.o. [cph]", + "Maintainer": "Ricardo Rodrigo Basa ", + "Repository": "CRAN" + }, + "box.lsp": { + "Package": "box.lsp", + "Version": "0.1.3", + "Source": "Repository", + "Title": "Provides 'box' Compatibility for 'languageserver'", + "Authors@R": "c( person(\"Ricardo Rodrigo\", \"Basa\", role = c(\"aut\", \"cre\"), email = \"opensource+rodrigo@appsilon.com\"), person(\"Pavel\", \"Demin\", role = \"aut\", email = \"pavel.demin@appsilon.com\"), person(\"Jakub\", \"Nowicki\", role = \"aut\", email = \"kuba@appsilon.com\"), person(\"Appsilon Sp. z o.o.\", role = \"cph\", email = \"opensource@appsilon.com\") )", + "Description": "A 'box' compatible custom language parser for the 'languageserver' package to provide completion and signature hints in code editors.", + "URL": "https://github.com/Appsilon/box.lsp, https://appsilon.github.io/box.lsp/", + "BugReports": "https://github.com/Appsilon/box.lsp/issues", + "License": "LGPL-3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Imports": [ + "box", + "cli", + "fs", + "rlang" + ], + "Suggests": [ + "languageserver", + "lintr", + "magrittr", + "mockery", + "purrr", + "rprojroot", + "stringi", + "stringr", + "testthat (>= 3.0.0)", + "withr" + ], + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Ricardo Rodrigo Basa [aut, cre], Pavel Demin [aut], Jakub Nowicki [aut], Appsilon Sp. z o.o. [cph]", + "Maintainer": "Ricardo Rodrigo Basa ", + "Repository": "CRAN" + }, + "brio": { + "Package": "brio", + "Version": "1.1.5", + "Source": "Repository", + "Title": "Basic R Input Output", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Functions to handle basic input output, these functions always read and write UTF-8 (8-bit Unicode Transformation Format) files 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", + "Depends": [ + "R (>= 3.6)" + ], + "Suggests": [ + "covr", + "testthat (>= 3.0.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Jim Hester [aut] (), Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "broom": { + "Package": "broom", + "Version": "1.0.7", + "Source": "Repository", + "Type": "Package", + "Title": "Convert Statistical Objects into Tidy Tibbles", + "Authors@R": "c(person(given = \"David\", family = \"Robinson\", role = \"aut\", email = \"admiral.david@gmail.com\"), person(given = \"Alex\", family = \"Hayes\", role = \"aut\", email = \"alexpghayes@gmail.com\", comment = c(ORCID = \"0000-0002-4985-5160\")), person(given = \"Simon\", family = \"Couch\", role = c(\"aut\", \"cre\"), email = \"simon.couch@posit.co\", comment = c(ORCID = \"0000-0001-5676-5107\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(given = \"Indrajeet\", family = \"Patil\", role = \"ctb\", email = \"patilindrajeet.science@gmail.com\", comment = c(ORCID = \"0000-0003-1995-6531\")), person(given = \"Derek\", family = \"Chiu\", role = \"ctb\", email = \"dchiu@bccrc.ca\"), person(given = \"Matthieu\", family = \"Gomez\", role = \"ctb\", email = \"mattg@princeton.edu\"), person(given = \"Boris\", family = \"Demeshev\", role = \"ctb\", email = \"boris.demeshev@gmail.com\"), person(given = \"Dieter\", family = \"Menne\", role = \"ctb\", email = \"dieter.menne@menne-biomed.de\"), person(given = \"Benjamin\", family = \"Nutter\", role = \"ctb\", email = \"nutter@battelle.org\"), person(given = \"Luke\", family = \"Johnston\", role = \"ctb\", email = \"luke.johnston@mail.utoronto.ca\"), person(given = \"Ben\", family = \"Bolker\", role = \"ctb\", email = \"bolker@mcmaster.ca\"), person(given = \"Francois\", family = \"Briatte\", role = \"ctb\", email = \"f.briatte@gmail.com\"), person(given = \"Jeffrey\", family = \"Arnold\", role = \"ctb\", email = \"jeffrey.arnold@gmail.com\"), person(given = \"Jonah\", family = \"Gabry\", role = \"ctb\", email = \"jsg2201@columbia.edu\"), person(given = \"Luciano\", family = \"Selzer\", role = \"ctb\", email = \"luciano.selzer@gmail.com\"), person(given = \"Gavin\", family = \"Simpson\", role = \"ctb\", email = \"ucfagls@gmail.com\"), person(given = \"Jens\", family = \"Preussner\", role = \"ctb\", email = \" jens.preussner@mpi-bn.mpg.de\"), person(given = \"Jay\", family = \"Hesselberth\", role = \"ctb\", email = \"jay.hesselberth@gmail.com\"), person(given = \"Hadley\", family = \"Wickham\", role = \"ctb\", email = \"hadley@posit.co\"), person(given = \"Matthew\", family = \"Lincoln\", role = \"ctb\", email = \"matthew.d.lincoln@gmail.com\"), person(given = \"Alessandro\", family = \"Gasparini\", role = \"ctb\", email = \"ag475@leicester.ac.uk\"), person(given = \"Lukasz\", family = \"Komsta\", role = \"ctb\", email = \"lukasz.komsta@umlub.pl\"), person(given = \"Frederick\", family = \"Novometsky\", role = \"ctb\"), person(given = \"Wilson\", family = \"Freitas\", role = \"ctb\"), person(given = \"Michelle\", family = \"Evans\", role = \"ctb\"), person(given = \"Jason Cory\", family = \"Brunson\", role = \"ctb\", email = \"cornelioid@gmail.com\"), person(given = \"Simon\", family = \"Jackson\", role = \"ctb\", email = \"drsimonjackson@gmail.com\"), person(given = \"Ben\", family = \"Whalley\", role = \"ctb\", email = \"ben.whalley@plymouth.ac.uk\"), person(given = \"Karissa\", family = \"Whiting\", role = \"ctb\", email = \"karissa.whiting@gmail.com\"), person(given = \"Yves\", family = \"Rosseel\", role = \"ctb\", email = \"yrosseel@gmail.com\"), person(given = \"Michael\", family = \"Kuehn\", role = \"ctb\", email = \"mkuehn10@gmail.com\"), person(given = \"Jorge\", family = \"Cimentada\", role = \"ctb\", email = \"cimentadaj@gmail.com\"), person(given = \"Erle\", family = \"Holgersen\", role = \"ctb\", email = \"erle.holgersen@gmail.com\"), person(given = \"Karl\", family = \"Dunkle Werner\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0523-7309\")), person(given = \"Ethan\", family = \"Christensen\", role = \"ctb\", email = \"christensen.ej@gmail.com\"), person(given = \"Steven\", family = \"Pav\", role = \"ctb\", email = \"shabbychef@gmail.com\"), person(given = \"Paul\", family = \"PJ\", role = \"ctb\", email = \"pjpaul.stephens@gmail.com\"), person(given = \"Ben\", family = \"Schneider\", role = \"ctb\", email = \"benjamin.julius.schneider@gmail.com\"), person(given = \"Patrick\", family = \"Kennedy\", role = \"ctb\", email = \"pkqstr@protonmail.com\"), person(given = \"Lily\", family = \"Medina\", role = \"ctb\", email = \"lilymiru@gmail.com\"), person(given = \"Brian\", family = \"Fannin\", role = \"ctb\", email = \"captain@pirategrunt.com\"), person(given = \"Jason\", family = \"Muhlenkamp\", role = \"ctb\", email = \"jason.muhlenkamp@gmail.com\"), person(given = \"Matt\", family = \"Lehman\", role = \"ctb\"), person(given = \"Bill\", family = \"Denney\", role = \"ctb\", email = \"wdenney@humanpredictions.com\", comment = c(ORCID = \"0000-0002-5759-428X\")), person(given = \"Nic\", family = \"Crane\", role = \"ctb\"), person(given = \"Andrew\", family = \"Bates\", role = \"ctb\"), person(given = \"Vincent\", family = \"Arel-Bundock\", role = \"ctb\", email = \"vincent.arel-bundock@umontreal.ca\", comment = c(ORCID = \"0000-0003-2042-7063\")), person(given = \"Hideaki\", family = \"Hayashi\", role = \"ctb\"), person(given = \"Luis\", family = \"Tobalina\", role = \"ctb\"), person(given = \"Annie\", family = \"Wang\", role = \"ctb\", email = \"anniewang.uc@gmail.com\"), person(given = \"Wei Yang\", family = \"Tham\", role = \"ctb\", email = \"weiyang.tham@gmail.com\"), person(given = \"Clara\", family = \"Wang\", role = \"ctb\", email = \"clara.wang.94@gmail.com\"), person(given = \"Abby\", family = \"Smith\", role = \"ctb\", email = \"als1@u.northwestern.edu\", comment = c(ORCID = \"0000-0002-3207-0375\")), person(given = \"Jasper\", family = \"Cooper\", role = \"ctb\", email = \"jaspercooper@gmail.com\", comment = c(ORCID = \"0000-0002-8639-3188\")), person(given = \"E Auden\", family = \"Krauska\", role = \"ctb\", email = \"krauskae@gmail.com\", comment = c(ORCID = \"0000-0002-1466-5850\")), person(given = \"Alex\", family = \"Wang\", role = \"ctb\", email = \"x249wang@uwaterloo.ca\"), person(given = \"Malcolm\", family = \"Barrett\", role = \"ctb\", email = \"malcolmbarrett@gmail.com\", comment = c(ORCID = \"0000-0003-0299-5825\")), person(given = \"Charles\", family = \"Gray\", role = \"ctb\", email = \"charlestigray@gmail.com\", comment = c(ORCID = \"0000-0002-9978-011X\")), person(given = \"Jared\", family = \"Wilber\", role = \"ctb\"), person(given = \"Vilmantas\", family = \"Gegzna\", role = \"ctb\", email = \"GegznaV@gmail.com\", comment = c(ORCID = \"0000-0002-9500-5167\")), person(given = \"Eduard\", family = \"Szoecs\", role = \"ctb\", email = \"eduardszoecs@gmail.com\"), person(given = \"Frederik\", family = \"Aust\", role = \"ctb\", email = \"frederik.aust@uni-koeln.de\", comment = c(ORCID = \"0000-0003-4900-788X\")), person(given = \"Angus\", family = \"Moore\", role = \"ctb\", email = \"angusmoore9@gmail.com\"), person(given = \"Nick\", family = \"Williams\", role = \"ctb\", email = \"ntwilliams.personal@gmail.com\"), person(given = \"Marius\", family = \"Barth\", role = \"ctb\", email = \"marius.barth.uni.koeln@gmail.com\", comment = c(ORCID = \"0000-0002-3421-6665\")), person(given = \"Bruna\", family = \"Wundervald\", role = \"ctb\", email = \"brunadaviesw@gmail.com\", comment = c(ORCID = \"0000-0001-8163-220X\")), person(given = \"Joyce\", family = \"Cahoon\", role = \"ctb\", email = \"joyceyu48@gmail.com\", comment = c(ORCID = \"0000-0001-7217-4702\")), person(given = \"Grant\", family = \"McDermott\", role = \"ctb\", email = \"grantmcd@uoregon.edu\", comment = c(ORCID = \"0000-0001-7883-8573\")), person(given = \"Kevin\", family = \"Zarca\", role = \"ctb\", email = \"kevin.zarca@gmail.com\"), person(given = \"Shiro\", family = \"Kuriwaki\", role = \"ctb\", email = \"shirokuriwaki@gmail.com\", comment = c(ORCID = \"0000-0002-5687-2647\")), person(given = \"Lukas\", family = \"Wallrich\", role = \"ctb\", email = \"lukas.wallrich@gmail.com\", comment = c(ORCID = \"0000-0003-2121-5177\")), person(given = \"James\", family = \"Martherus\", role = \"ctb\", email = \"james@martherus.com\", comment = c(ORCID = \"0000-0002-8285-3300\")), person(given = \"Chuliang\", family = \"Xiao\", role = \"ctb\", email = \"cxiao@umich.edu\", comment = c(ORCID = \"0000-0002-8466-9398\")), person(given = \"Joseph\", family = \"Larmarange\", role = \"ctb\", email = \"joseph@larmarange.net\"), person(given = \"Max\", family = \"Kuhn\", role = \"ctb\", email = \"max@posit.co\"), person(given = \"Michal\", family = \"Bojanowski\", role = \"ctb\", email = \"michal2992@gmail.com\"), person(given = \"Hakon\", family = \"Malmedal\", role = \"ctb\", email = \"hmalmedal@gmail.com\"), person(given = \"Clara\", family = \"Wang\", role = \"ctb\"), person(given = \"Sergio\", family = \"Oller\", role = \"ctb\", email = \"sergioller@gmail.com\"), person(given = \"Luke\", family = \"Sonnet\", role = \"ctb\", email = \"luke.sonnet@gmail.com\"), person(given = \"Jim\", family = \"Hester\", role = \"ctb\", email = \"jim.hester@posit.co\"), person(given = \"Ben\", family = \"Schneider\", role = \"ctb\", email = \"benjamin.julius.schneider@gmail.com\"), person(given = \"Bernie\", family = \"Gray\", role = \"ctb\", email = \"bfgray3@gmail.com\", comment = c(ORCID = \"0000-0001-9190-6032\")), person(given = \"Mara\", family = \"Averick\", role = \"ctb\", email = \"mara@posit.co\"), person(given = \"Aaron\", family = \"Jacobs\", role = \"ctb\", email = \"atheriel@gmail.com\"), person(given = \"Andreas\", family = \"Bender\", role = \"ctb\", email = \"bender.at.R@gmail.com\"), person(given = \"Sven\", family = \"Templer\", role = \"ctb\", email = \"sven.templer@gmail.com\"), person(given = \"Paul-Christian\", family = \"Buerkner\", role = \"ctb\", email = \"paul.buerkner@gmail.com\"), person(given = \"Matthew\", family = \"Kay\", role = \"ctb\", email = \"mjskay@umich.edu\"), person(given = \"Erwan\", family = \"Le Pennec\", role = \"ctb\", email = \"lepennec@gmail.com\"), person(given = \"Johan\", family = \"Junkka\", role = \"ctb\", email = \"johan.junkka@umu.se\"), person(given = \"Hao\", family = \"Zhu\", role = \"ctb\", email = \"haozhu233@gmail.com\"), person(given = \"Benjamin\", family = \"Soltoff\", role = \"ctb\", email = \"soltoffbc@uchicago.edu\"), person(given = \"Zoe\", family = \"Wilkinson Saldana\", role = \"ctb\", email = \"zoewsaldana@gmail.com\"), person(given = \"Tyler\", family = \"Littlefield\", role = \"ctb\", email = \"tylurp1@gmail.com\"), person(given = \"Charles T.\", family = \"Gray\", role = \"ctb\", email = \"charlestigray@gmail.com\"), person(given = \"Shabbh E.\", family = \"Banks\", role = \"ctb\"), person(given = \"Serina\", family = \"Robinson\", role = \"ctb\", email = \"robi0916@umn.edu\"), person(given = \"Roger\", family = \"Bivand\", role = \"ctb\", email = \"Roger.Bivand@nhh.no\"), person(given = \"Riinu\", family = \"Ots\", role = \"ctb\", email = \"riinuots@gmail.com\"), person(given = \"Nicholas\", family = \"Williams\", role = \"ctb\", email = \"ntwilliams.personal@gmail.com\"), person(given = \"Nina\", family = \"Jakobsen\", role = \"ctb\"), person(given = \"Michael\", family = \"Weylandt\", role = \"ctb\", email = \"michael.weylandt@gmail.com\"), person(given = \"Lisa\", family = \"Lendway\", role = \"ctb\", email = \"llendway@macalester.edu\"), person(given = \"Karl\", family = \"Hailperin\", role = \"ctb\", email = \"khailper@gmail.com\"), person(given = \"Josue\", family = \"Rodriguez\", role = \"ctb\", email = \"jerrodriguez@ucdavis.edu\"), person(given = \"Jenny\", family = \"Bryan\", role = \"ctb\", email = \"jenny@posit.co\"), person(given = \"Chris\", family = \"Jarvis\", role = \"ctb\", email = \"Christopher1.jarvis@gmail.com\"), person(given = \"Greg\", family = \"Macfarlane\", role = \"ctb\", email = \"gregmacfarlane@gmail.com\"), person(given = \"Brian\", family = \"Mannakee\", role = \"ctb\", email = \"bmannakee@gmail.com\"), person(given = \"Drew\", family = \"Tyre\", role = \"ctb\", email = \"atyre2@unl.edu\"), person(given = \"Shreyas\", family = \"Singh\", role = \"ctb\", email = \"shreyas.singh.298@gmail.com\"), person(given = \"Laurens\", family = \"Geffert\", role = \"ctb\", email = \"laurensgeffert@gmail.com\"), person(given = \"Hong\", family = \"Ooi\", role = \"ctb\", email = \"hongooi@microsoft.com\"), person(given = \"Henrik\", family = \"Bengtsson\", role = \"ctb\", email = \"henrikb@braju.com\"), person(given = \"Eduard\", family = \"Szocs\", role = \"ctb\", email = \"eduardszoecs@gmail.com\"), person(given = \"David\", family = \"Hugh-Jones\", role = \"ctb\", email = \"davidhughjones@gmail.com\"), person(given = \"Matthieu\", family = \"Stigler\", role = \"ctb\", email = \"Matthieu.Stigler@gmail.com\"), person(given = \"Hugo\", family = \"Tavares\", role = \"ctb\", email = \"hm533@cam.ac.uk\", comment = c(ORCID = \"0000-0001-9373-2726\")), person(given = \"R. Willem\", family = \"Vervoort\", role = \"ctb\", email = \"Willemvervoort@gmail.com\"), person(given = \"Brenton M.\", family = \"Wiernik\", role = \"ctb\", email = \"brenton@wiernik.org\"), person(given = \"Josh\", family = \"Yamamoto\", role = \"ctb\", email = \"joshuayamamoto5@gmail.com\"), person(given = \"Jasme\", family = \"Lee\", role = \"ctb\"), person(given = \"Taren\", family = \"Sanders\", role = \"ctb\", email = \"taren.sanders@acu.edu.au\", comment = c(ORCID = \"0000-0002-4504-6008\")), person(given = \"Ilaria\", family = \"Prosdocimi\", role = \"ctb\", email = \"prosdocimi.ilaria@gmail.com\", comment = c(ORCID = \"0000-0001-8565-094X\")), person(given = \"Daniel D.\", family = \"Sjoberg\", role = \"ctb\", email = \"danield.sjoberg@gmail.com\", comment = c(ORCID = \"0000-0003-0862-2018\")), person(given = \"Alex\", family = \"Reinhart\", role = \"ctb\", email = \"areinhar@stat.cmu.edu\", comment = c(ORCID = \"0000-0002-6658-514X\")))", + "Description": "Summarizes key information about statistical objects in tidy tibbles. This makes it easy to report results, create plots and consistently work with large numbers of models at once. Broom provides three verbs that each provide different types of information about a model. tidy() summarizes information about model components such as coefficients of a regression. glance() reports information about an entire model, such as goodness of fit measures like AIC and BIC. augment() adds information about individual observations to a dataset, such as fitted values or influence measures.", + "License": "MIT + file LICENSE", + "URL": "https://broom.tidymodels.org/, https://github.com/tidymodels/broom", + "BugReports": "https://github.com/tidymodels/broom/issues", + "Depends": [ + "R (>= 3.5)" + ], + "Imports": [ + "backports", + "dplyr (>= 1.0.0)", + "generics (>= 0.0.2)", + "glue", + "lifecycle", + "purrr", + "rlang", + "stringr", + "tibble (>= 3.0.0)", + "tidyr (>= 1.0.0)" + ], + "Suggests": [ + "AER", + "AUC", + "bbmle", + "betareg (>= 3.2-1)", + "biglm", + "binGroup", + "boot", + "btergm (>= 1.10.6)", + "car (>= 3.1-2)", + "carData", + "caret", + "cluster", + "cmprsk", + "coda", + "covr", + "drc", + "e1071", + "emmeans", + "epiR", + "ergm (>= 3.10.4)", + "fixest (>= 0.9.0)", + "gam (>= 1.15)", + "gee", + "geepack", + "ggplot2", + "glmnet", + "glmnetUtils", + "gmm", + "Hmisc", + "irlba", + "interp", + "joineRML", + "Kendall", + "knitr", + "ks", + "Lahman", + "lavaan (>= 0.6.18)", + "leaps", + "lfe", + "lm.beta", + "lme4", + "lmodel2", + "lmtest (>= 0.9.38)", + "lsmeans", + "maps", + "margins", + "MASS", + "mclust", + "mediation", + "metafor", + "mfx", + "mgcv", + "mlogit", + "modeldata", + "modeltests (>= 0.1.6)", + "muhaz", + "multcomp", + "network", + "nnet", + "orcutt (>= 2.2)", + "ordinal", + "plm", + "poLCA", + "psych", + "quantreg", + "rmarkdown", + "robust", + "robustbase", + "rsample", + "sandwich", + "spdep (>= 1.1)", + "spatialreg", + "speedglm", + "spelling", + "survey", + "survival (>= 3.6-4)", + "systemfit", + "testthat (>= 2.1.0)", + "tseries", + "vars", + "zoo" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Language": "en-US", + "Collate": "'aaa-documentation-helper.R' 'null-and-default-tidiers.R' 'aer-tidiers.R' 'auc-tidiers.R' 'base-tidiers.R' 'bbmle-tidiers.R' 'betareg-tidiers.R' 'biglm-tidiers.R' 'bingroup-tidiers.R' 'boot-tidiers.R' 'broom-package.R' 'broom.R' 'btergm-tidiers.R' 'car-tidiers.R' 'caret-tidiers.R' 'cluster-tidiers.R' 'cmprsk-tidiers.R' 'data-frame-tidiers.R' 'deprecated-0-7-0.R' 'drc-tidiers.R' 'emmeans-tidiers.R' 'epiR-tidiers.R' 'ergm-tidiers.R' 'fixest-tidiers.R' 'gam-tidiers.R' 'geepack-tidiers.R' 'glmnet-cv-glmnet-tidiers.R' 'glmnet-glmnet-tidiers.R' 'gmm-tidiers.R' 'hmisc-tidiers.R' 'joinerml-tidiers.R' 'kendall-tidiers.R' 'ks-tidiers.R' 'lavaan-tidiers.R' 'leaps-tidiers.R' 'lfe-tidiers.R' 'list-irlba.R' 'list-optim-tidiers.R' 'list-svd-tidiers.R' 'list-tidiers.R' 'list-xyz-tidiers.R' 'lm-beta-tidiers.R' 'lmodel2-tidiers.R' 'lmtest-tidiers.R' 'maps-tidiers.R' 'margins-tidiers.R' 'mass-fitdistr-tidiers.R' 'mass-negbin-tidiers.R' 'mass-polr-tidiers.R' 'mass-ridgelm-tidiers.R' 'stats-lm-tidiers.R' 'mass-rlm-tidiers.R' 'mclust-tidiers.R' 'mediation-tidiers.R' 'metafor-tidiers.R' 'mfx-tidiers.R' 'mgcv-tidiers.R' 'mlogit-tidiers.R' 'muhaz-tidiers.R' 'multcomp-tidiers.R' 'nnet-tidiers.R' 'nobs.R' 'orcutt-tidiers.R' 'ordinal-clm-tidiers.R' 'ordinal-clmm-tidiers.R' 'plm-tidiers.R' 'polca-tidiers.R' 'psych-tidiers.R' 'stats-nls-tidiers.R' 'quantreg-nlrq-tidiers.R' 'quantreg-rq-tidiers.R' 'quantreg-rqs-tidiers.R' 'robust-glmrob-tidiers.R' 'robust-lmrob-tidiers.R' 'robustbase-glmrob-tidiers.R' 'robustbase-lmrob-tidiers.R' 'sp-tidiers.R' 'spdep-tidiers.R' 'speedglm-speedglm-tidiers.R' 'speedglm-speedlm-tidiers.R' 'stats-anova-tidiers.R' 'stats-arima-tidiers.R' 'stats-decompose-tidiers.R' 'stats-factanal-tidiers.R' 'stats-glm-tidiers.R' 'stats-htest-tidiers.R' 'stats-kmeans-tidiers.R' 'stats-loess-tidiers.R' 'stats-mlm-tidiers.R' 'stats-prcomp-tidiers.R' 'stats-smooth.spline-tidiers.R' 'stats-summary-lm-tidiers.R' 'stats-time-series-tidiers.R' 'survey-tidiers.R' 'survival-aareg-tidiers.R' 'survival-cch-tidiers.R' 'survival-coxph-tidiers.R' 'survival-pyears-tidiers.R' 'survival-survdiff-tidiers.R' 'survival-survexp-tidiers.R' 'survival-survfit-tidiers.R' 'survival-survreg-tidiers.R' 'systemfit-tidiers.R' 'tseries-tidiers.R' 'utilities.R' 'vars-tidiers.R' 'zoo-tidiers.R' 'zzz.R'", + "NeedsCompilation": "no", + "Author": "David Robinson [aut], Alex Hayes [aut] (), Simon Couch [aut, cre] (), Posit Software, PBC [cph, fnd], Indrajeet Patil [ctb] (), Derek Chiu [ctb], Matthieu Gomez [ctb], Boris Demeshev [ctb], Dieter Menne [ctb], Benjamin Nutter [ctb], Luke Johnston [ctb], Ben Bolker [ctb], Francois Briatte [ctb], Jeffrey Arnold [ctb], Jonah Gabry [ctb], Luciano Selzer [ctb], Gavin Simpson [ctb], Jens Preussner [ctb], Jay Hesselberth [ctb], Hadley Wickham [ctb], Matthew Lincoln [ctb], Alessandro Gasparini [ctb], Lukasz Komsta [ctb], Frederick Novometsky [ctb], Wilson Freitas [ctb], Michelle Evans [ctb], Jason Cory Brunson [ctb], Simon Jackson [ctb], Ben Whalley [ctb], Karissa Whiting [ctb], Yves Rosseel [ctb], Michael Kuehn [ctb], Jorge Cimentada [ctb], Erle Holgersen [ctb], Karl Dunkle Werner [ctb] (), Ethan Christensen [ctb], Steven Pav [ctb], Paul PJ [ctb], Ben Schneider [ctb], Patrick Kennedy [ctb], Lily Medina [ctb], Brian Fannin [ctb], Jason Muhlenkamp [ctb], Matt Lehman [ctb], Bill Denney [ctb] (), Nic Crane [ctb], Andrew Bates [ctb], Vincent Arel-Bundock [ctb] (), Hideaki Hayashi [ctb], Luis Tobalina [ctb], Annie Wang [ctb], Wei Yang Tham [ctb], Clara Wang [ctb], Abby Smith [ctb] (), Jasper Cooper [ctb] (), E Auden Krauska [ctb] (), Alex Wang [ctb], Malcolm Barrett [ctb] (), Charles Gray [ctb] (), Jared Wilber [ctb], Vilmantas Gegzna [ctb] (), Eduard Szoecs [ctb], Frederik Aust [ctb] (), Angus Moore [ctb], Nick Williams [ctb], Marius Barth [ctb] (), Bruna Wundervald [ctb] (), Joyce Cahoon [ctb] (), Grant McDermott [ctb] (), Kevin Zarca [ctb], Shiro Kuriwaki [ctb] (), Lukas Wallrich [ctb] (), James Martherus [ctb] (), Chuliang Xiao [ctb] (), Joseph Larmarange [ctb], Max Kuhn [ctb], Michal Bojanowski [ctb], Hakon Malmedal [ctb], Clara Wang [ctb], Sergio Oller [ctb], Luke Sonnet [ctb], Jim Hester [ctb], Ben Schneider [ctb], Bernie Gray [ctb] (), Mara Averick [ctb], Aaron Jacobs [ctb], Andreas Bender [ctb], Sven Templer [ctb], Paul-Christian Buerkner [ctb], Matthew Kay [ctb], Erwan Le Pennec [ctb], Johan Junkka [ctb], Hao Zhu [ctb], Benjamin Soltoff [ctb], Zoe Wilkinson Saldana [ctb], Tyler Littlefield [ctb], Charles T. Gray [ctb], Shabbh E. Banks [ctb], Serina Robinson [ctb], Roger Bivand [ctb], Riinu Ots [ctb], Nicholas Williams [ctb], Nina Jakobsen [ctb], Michael Weylandt [ctb], Lisa Lendway [ctb], Karl Hailperin [ctb], Josue Rodriguez [ctb], Jenny Bryan [ctb], Chris Jarvis [ctb], Greg Macfarlane [ctb], Brian Mannakee [ctb], Drew Tyre [ctb], Shreyas Singh [ctb], Laurens Geffert [ctb], Hong Ooi [ctb], Henrik Bengtsson [ctb], Eduard Szocs [ctb], David Hugh-Jones [ctb], Matthieu Stigler [ctb], Hugo Tavares [ctb] (), R. Willem Vervoort [ctb], Brenton M. Wiernik [ctb], Josh Yamamoto [ctb], Jasme Lee [ctb], Taren Sanders [ctb] (), Ilaria Prosdocimi [ctb] (), Daniel D. Sjoberg [ctb] (), Alex Reinhart [ctb] ()", + "Maintainer": "Simon Couch ", + "Repository": "CRAN" + }, + "bslib": { + "Package": "bslib", + "Version": "0.9.0", + "Source": "Repository", + "Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'", + "Authors@R": "c( person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-7111-0077\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap colorpicker library\"), person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"), comment = \"Bootswatch library\"), person(, \"PayPal\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap accessibility plugin\") )", + "Description": "Simplifies custom 'CSS' styling of both 'shiny' and 'rmarkdown' via 'Bootstrap' 'Sass'. Supports 'Bootstrap' 3, 4 and 5 as well as their various 'Bootswatch' themes. An interactive widget is also 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", + "fastmap (>= 1.1.1)", + "grDevices", + "htmltools (>= 0.5.8)", + "jquerylib (>= 0.1.3)", + "jsonlite", + "lifecycle", + "memoise (>= 2.0.1)", + "mime", + "rlang", + "sass (>= 0.4.9)" + ], + "Suggests": [ + "bsicons", + "curl", + "fontawesome", + "future", + "ggplot2", + "knitr", + "magrittr", + "rappdirs", + "rmarkdown (>= 2.7)", + "shiny (> 1.8.1)", + "testthat", + "thematic", + "tools", + "utils", + "withr", + "yaml" + ], + "Config/Needs/deploy": "BH, chiflights22, colourpicker, commonmark, cpp11, cpsievert/chiflights22, cpsievert/histoslider, dplyr, DT, ggplot2, ggridges, gt, hexbin, histoslider, htmlwidgets, lattice, leaflet, lubridate, markdown, modelr, plotly, reactable, reshape2, rprojroot, rsconnect, rstudio/shiny, scales, styler, tibble", + "Config/Needs/routine": "chromote, desc, renv", + "Config/Needs/website": "brio, crosstalk, dplyr, DT, ggplot2, glue, htmlwidgets, leaflet, lorem, palmerpenguins, plotly, purrr, rprojroot, rstudio/htmltools, scales, stringr, tidyr, webshot2", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "zzzz-bs-sass, fonts, zzz-precompile, theme-*, rmd-*", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Collate": "'accordion.R' 'breakpoints.R' 'bs-current-theme.R' 'bs-dependencies.R' 'bs-global.R' 'bs-remove.R' 'bs-theme-layers.R' 'bs-theme-preset-bootswatch.R' 'bs-theme-preset-brand.R' 'bs-theme-preset-builtin.R' 'bs-theme-preset.R' 'utils.R' 'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R' 'bslib-package.R' 'buttons.R' 'card.R' 'deprecated.R' 'files.R' 'fill.R' 'imports.R' 'input-dark-mode.R' 'input-switch.R' 'layout.R' 'nav-items.R' 'nav-update.R' 'navbar_options.R' 'navs-legacy.R' 'navs.R' 'onLoad.R' 'page.R' 'popover.R' 'precompiled.R' 'print.R' 'shiny-devmode.R' 'sidebar.R' 'staticimports.R' 'tooltip.R' 'utils-deps.R' 'utils-shiny.R' 'utils-tags.R' 'value-box.R' 'version-default.R' 'versions.R'", + "NeedsCompilation": "no", + "Author": "Carson Sievert [aut, cre] (), Joe Cheng [aut], Garrick Aden-Buie [aut] (), Posit Software, PBC [cph, fnd], Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Javi Aguilar [ctb, cph] (Bootstrap colorpicker library), Thomas Park [ctb, cph] (Bootswatch library), PayPal [ctb, cph] (Bootstrap accessibility plugin)", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "cachem": { + "Package": "cachem", + "Version": "1.1.0", + "Source": "Repository", + "Title": "Cache R Objects with Automatic Pruning", + "Description": "Key-value stores with automatic pruning. Caches can limit either their total size or the age of the oldest object (or both), automatically pruning objects to maintain the constraints.", + "Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", c(\"aut\", \"cre\")), person(family = \"Posit Software, PBC\", 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.2.0)" + ], + "Suggests": [ + "testthat" + ], + "RoxygenNote": "7.2.3", + "Config/Needs/routine": "lobstr", + "Config/Needs/website": "pkgdown", + "NeedsCompilation": "yes", + "Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "callr": { + "Package": "callr", + "Version": "3.7.6", + "Source": "Repository", + "Title": "Call R from R", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0001-7098-9676\")), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\")) )", + "Description": "It is sometimes useful to perform a computation in a separate R process, without affecting the current R process at all. This packages does exactly that.", + "License": "MIT + file LICENSE", + "URL": "https://callr.r-lib.org, https://github.com/r-lib/callr", + "BugReports": "https://github.com/r-lib/callr/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "processx (>= 3.6.1)", + "R6", + "utils" + ], + "Suggests": [ + "asciicast (>= 2.3.1)", + "cli (>= 1.1.0)", + "mockery", + "ps", + "rprojroot", + "spelling", + "testthat (>= 3.2.0)", + "withr (>= 2.3.0)" + ], + "Config/Needs/website": "r-lib/asciicast, glue, htmlwidgets, igraph, tibble, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.1.9000", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre, cph] (), Winston Chang [aut], Posit Software, PBC [cph, fnd], Ascent Digital Services [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "checkmate": { + "Package": "checkmate", + "Version": "2.3.2", + "Source": "Repository", + "Type": "Package", + "Title": "Fast and Versatile Argument Checks", + "Description": "Tests and assertions to perform frequent argument checks. A substantial part of the package was written in C to minimize any worries about execution time overhead.", + "Authors@R": "c( person(\"Michel\", \"Lang\", NULL, \"michellang@gmail.com\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Bernd\", \"Bischl\", NULL, \"bernd_bischl@gmx.net\", role = \"ctb\"), person(\"Dénes\", \"Tóth\", NULL, \"toth.denes@kogentum.hu\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4262-3217\")) )", + "URL": "https://mllg.github.io/checkmate/, https://github.com/mllg/checkmate", + "URLNote": "https://github.com/mllg/checkmate", + "BugReports": "https://github.com/mllg/checkmate/issues", + "NeedsCompilation": "yes", + "ByteCompile": "yes", + "Encoding": "UTF-8", + "Depends": [ + "R (>= 3.0.0)" + ], + "Imports": [ + "backports (>= 1.1.0)", + "utils" + ], + "Suggests": [ + "R6", + "fastmatch", + "data.table (>= 1.9.8)", + "devtools", + "ggplot2", + "knitr", + "magrittr", + "microbenchmark", + "rmarkdown", + "testthat (>= 3.0.4)", + "tinytest (>= 1.1.0)", + "tibble" + ], + "License": "BSD_3_clause + file LICENSE", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.3.2", + "Collate": "'AssertCollection.R' 'allMissing.R' 'anyInfinite.R' 'anyMissing.R' 'anyNaN.R' 'asInteger.R' 'assert.R' 'helper.R' 'makeExpectation.R' 'makeTest.R' 'makeAssertion.R' 'checkAccess.R' 'checkArray.R' 'checkAtomic.R' 'checkAtomicVector.R' 'checkCharacter.R' 'checkChoice.R' 'checkClass.R' 'checkComplex.R' 'checkCount.R' 'checkDataFrame.R' 'checkDataTable.R' 'checkDate.R' 'checkDirectoryExists.R' 'checkDisjunct.R' 'checkDouble.R' 'checkEnvironment.R' 'checkFALSE.R' 'checkFactor.R' 'checkFileExists.R' 'checkFlag.R' 'checkFormula.R' 'checkFunction.R' 'checkInt.R' 'checkInteger.R' 'checkIntegerish.R' 'checkList.R' 'checkLogical.R' 'checkMatrix.R' 'checkMultiClass.R' 'checkNamed.R' 'checkNames.R' 'checkNull.R' 'checkNumber.R' 'checkNumeric.R' 'checkOS.R' 'checkPOSIXct.R' 'checkPathForOutput.R' 'checkPermutation.R' 'checkR6.R' 'checkRaw.R' 'checkScalar.R' 'checkScalarNA.R' 'checkSetEqual.R' 'checkString.R' 'checkSubset.R' 'checkTRUE.R' 'checkTibble.R' 'checkVector.R' 'coalesce.R' 'isIntegerish.R' 'matchArg.R' 'qassert.R' 'qassertr.R' 'vname.R' 'wfwl.R' 'zzz.R'", + "Author": "Michel Lang [cre, aut] (), Bernd Bischl [ctb], Dénes Tóth [ctb] ()", + "Maintainer": "Michel Lang ", + "Repository": "CRAN" + }, + "chromote": { + "Package": "chromote", + "Version": "0.4.0", + "Source": "Repository", + "Title": "Headless Chrome Web Browser Interface", + "Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-7111-0077\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "An implementation of the 'Chrome DevTools Protocol', for controlling a headless Chrome web browser.", + "License": "GPL-2", + "URL": "https://rstudio.github.io/chromote/, https://github.com/rstudio/chromote", + "BugReports": "https://github.com/rstudio/chromote/issues", + "Imports": [ + "curl", + "fastmap", + "jsonlite", + "later (>= 1.1.0)", + "magrittr", + "processx", + "promises (>= 1.1.1)", + "R6", + "rlang", + "utils", + "websocket (>= 1.2.0)" + ], + "Suggests": [ + "showimage", + "testthat (>= 3.0.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.2", + "SystemRequirements": "Google Chrome or other Chromium-based browser. chromium: chromium (rpm) or chromium-browser (deb)", + "NeedsCompilation": "no", + "Author": "Winston Chang [aut, cre], Barret Schloerke [aut] (), Garrick Aden-Buie [aut] (), Posit Software, PBC [cph, fnd]", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "class": { + "Package": "class", + "Version": "7.3-23", + "Source": "Repository", + "Priority": "recommended", + "Date": "2025-01-01", + "Depends": [ + "R (>= 3.0.0)", + "stats", + "utils" + ], + "Imports": [ + "MASS" + ], + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"William\", \"Venables\", role = \"cph\"))", + "Description": "Various functions for classification, including k-nearest neighbour, 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", + "Author": "Brian Ripley [aut, cre, cph], William Venables [cph]", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN" + }, + "cli": { + "Package": "cli", + "Version": "3.6.3", + "Source": "Repository", + "Title": "Helpers for Developing Command Line Interfaces", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Kirill\", \"Müller\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", , \"salim-b@pm.me\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A suite of tools to build attractive command line interfaces ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs, etc. Supports custom themes via a 'CSS'-like language. It also contains a number of lower level 'CLI' elements: rules, boxes, trees, and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI colors and text styles as well.", + "License": "MIT + file LICENSE", + "URL": "https://cli.r-lib.org, https://github.com/r-lib/cli", + "BugReports": "https://github.com/r-lib/cli/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "utils" + ], + "Suggests": [ + "callr", + "covr", + "crayon", + "digest", + "glue (>= 1.6.0)", + "grDevices", + "htmltools", + "htmlwidgets", + "knitr", + "methods", + "mockery", + "processx", + "ps (>= 1.3.4.9000)", + "rlang (>= 1.0.2.9003)", + "rmarkdown", + "rprojroot", + "rstudioapi", + "testthat", + "tibble", + "whoami", + "withr" + ], + "Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc, fansi, prettyunits, sessioninfo, tidyverse/tidytemplate, usethis, vctrs", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Gábor Csárdi [aut, cre], Hadley Wickham [ctb], Kirill Müller [ctb], Salim Brüggemann [ctb] (), Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "clipr": { + "Package": "clipr", + "Version": "0.8.0", + "Source": "Repository", + "Type": "Package", + "Title": "Read and Write from the System Clipboard", + "Authors@R": "c( person(\"Matthew\", \"Lincoln\", , \"matthew.d.lincoln@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4387-3384\")), person(\"Louis\", \"Maddox\", role = \"ctb\"), person(\"Steve\", \"Simpson\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", role = \"ctb\") )", + "Description": "Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards.", + "License": "GPL-3", + "URL": "https://github.com/mdlincoln/clipr, http://matthewlincoln.net/clipr/", + "BugReports": "https://github.com/mdlincoln/clipr/issues", + "Imports": [ + "utils" + ], + "Suggests": [ + "covr", + "knitr", + "rmarkdown", + "rstudioapi (>= 0.5)", + "testthat (>= 2.0.0)" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.1.2", + "SystemRequirements": "xclip (https://github.com/astrand/xclip) or xsel (http://www.vergenet.net/~conrad/software/xsel/) for accessing the X11 clipboard, or wl-clipboard (https://github.com/bugaevc/wl-clipboard) for systems using Wayland.", + "NeedsCompilation": "no", + "Author": "Matthew Lincoln [aut, cre] (), Louis Maddox [ctb], Steve Simpson [ctb], Jennifer Bryan [ctb]", + "Maintainer": "Matthew Lincoln ", + "Repository": "CRAN" + }, + "clock": { + "Package": "clock", + "Version": "0.7.2", + "Source": "Repository", + "Title": "Date-Time Types and Tools", + "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides a comprehensive library for date-time manipulations using a new family of orthogonal date-time classes (durations, time points, zoned-times, and calendars) that partition responsibilities so that the complexities of time zones are only considered when they are really needed. Capabilities include: date-time parsing, formatting, arithmetic, 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.6.0)" + ], + "Imports": [ + "cli (>= 3.6.1)", + "lifecycle (>= 1.0.3)", + "rlang (>= 1.1.0)", + "tzdb (>= 0.4.0)", + "vctrs (>= 0.6.1)" + ], + "Suggests": [ + "covr", + "knitr", + "magrittr", + "pillar", + "rmarkdown", + "slider (>= 0.3.0)", + "testthat (>= 3.0.0)", + "withr" + ], + "LinkingTo": [ + "cpp11 (>= 0.5.1)", + "tzdb (>= 0.4.0)" + ], + "VignetteBuilder": "knitr", + "Config/build/compilation-database": "true", + "Config/Needs/website": "lubridate, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Davis Vaughan [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "codetools": { + "Package": "codetools", + "Version": "0.2-20", + "Source": "Repository", + "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", + "Repository": "CRAN" + }, + "colorspace": { + "Package": "colorspace", + "Version": "2.1-1", + "Source": "Repository", + "Date": "2024-07-26", + "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\"), person(given = \"Paul\", family = \"Murrell\", role = \"aut\", email = \"paul@stat.auckland.ac.nz\", comment = c(ORCID = \"0000-0002-3224-8858\")), person(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"Kurt.Hornik@R-project.org\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(given = c(\"Jason\", \"C.\"), family = \"Fisher\", role = \"aut\", email = \"jfisher@usgs.gov\", comment = c(ORCID = \"0000-0001-9032-8912\")), person(given = \"Reto\", family = \"Stauffer\", role = \"aut\", email = \"Reto.Stauffer@uibk.ac.at\", comment = c(ORCID = \"0000-0002-3798-5507\")), person(given = c(\"Claus\", \"O.\"), family = \"Wilke\", role = \"aut\", email = \"wilke@austin.utexas.edu\", comment = c(ORCID = \"0000-0002-7470-9261\")), person(given = c(\"Claire\", \"D.\"), family = \"McWhite\", role = \"aut\", email = \"claire.mcwhite@utmail.utexas.edu\", comment = c(ORCID = \"0000-0001-7346-3047\")), person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\", comment = c(ORCID = \"0000-0003-0918-3766\")))", + "Description": "Carries out mapping between assorted color spaces including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB, and polar CIELAB. Qualitative, sequential, and diverging color palettes based on HCL colors are provided along with corresponding ggplot2 color scales. Color palette choice is aided by an interactive app (with either a Tcl/Tk or a shiny graphical user interface) and shiny apps with an HCL color picker and a color vision deficiency emulator. Plotting functions for displaying and assessing palettes include color swatches, visualizations of the HCL space, and trajectories in HCL and/or RGB spectrum. Color manipulation functions include: desaturation, lightening/darkening, mixing, and simulation of color vision deficiencies (deutanomaly, protanomaly, tritanomaly). Details can be found on the project web page at and in the accompanying scientific paper: Zeileis et al. (2020, Journal of Statistical Software, ).", + "Depends": [ + "R (>= 3.0.0)", + "methods" + ], + "Imports": [ + "graphics", + "grDevices", + "stats" + ], + "Suggests": [ + "datasets", + "utils", + "KernSmooth", + "MASS", + "kernlab", + "mvtnorm", + "vcd", + "tcltk", + "shiny", + "shinyjs", + "ggplot2", + "dplyr", + "scales", + "grid", + "png", + "jpeg", + "knitr", + "rmarkdown", + "RColorBrewer", + "rcartocolor", + "scico", + "viridis", + "wesanderson" + ], + "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.3.1", + "NeedsCompilation": "yes", + "Author": "Ross Ihaka [aut], Paul Murrell [aut] (), Kurt Hornik [aut] (), Jason C. Fisher [aut] (), Reto Stauffer [aut] (), Claus O. Wilke [aut] (), Claire D. McWhite [aut] (), Achim Zeileis [aut, cre] ()", + "Maintainer": "Achim Zeileis ", + "Repository": "CRAN" + }, + "commonmark": { + "Package": "commonmark", + "Version": "1.9.2", + "Source": "Repository", + "Type": "Package", + "Title": "High Performance CommonMark and Github Markdown Rendering in R", + "Authors@R": "c( person(\"Jeroen\", \"Ooms\", ,\"jeroenooms@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))", + "Description": "The CommonMark specification defines a rationalized version of markdown syntax. This package uses the 'cmark' reference implementation for converting markdown text into various formats including html, latex and groff man. In addition it exposes the markdown parse tree in xml format. Also includes opt-in support for GFM extensions including tables, autolinks, and strikethrough text.", + "License": "BSD_2_clause + file LICENSE", + "URL": "https://docs.ropensci.org/commonmark/ https://ropensci.r-universe.dev/commonmark", + "BugReports": "https://github.com/r-lib/commonmark/issues", + "Suggests": [ + "curl", + "testthat", + "xml2" + ], + "RoxygenNote": "7.2.3", + "Language": "en-US", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Jeroen Ooms [aut, cre] (), John MacFarlane [cph] (Author of cmark)", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "config": { + "Package": "config", + "Version": "0.3.2", + "Source": "Repository", + "Type": "Package", + "Title": "Manage Environment Specific Configuration Values", + "Authors@R": "c( person(\"JJ\", \"Allaire\", role = c(\"aut\"), email = \"jj@rstudio.com\"), person(\"Andrie\", \"de Vries\", role = \"cre\", email = \"apdevries@gmail.com\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Imports": [ + "yaml (>= 2.1.19)" + ], + "Suggests": [ + "testthat", + "knitr", + "rmarkdown", + "covr", + "spelling", + "withr" + ], + "Description": "Manage configuration values across multiple environments (e.g. development, test, production). Read values using a function that determines the current environment and returns the appropriate value.", + "License": "GPL-3", + "URL": "https://rstudio.github.io/config/, https://github.com/rstudio/config", + "BugReports": "https://github.com/rstudio/config/issues", + "RoxygenNote": "7.2.3", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Language": "en-US", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "JJ Allaire [aut], Andrie de Vries [cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Andrie de Vries ", + "Repository": "CRAN" + }, + "connectapi": { + "Package": "connectapi", + "Version": "0.5.0", + "Source": "Repository", + "Type": "Package", + "Title": "Utilities for Interacting with the 'Posit Connect' Server API", + "Authors@R": "c( person(given = \"Toph\", family = \"Allen\", role = c(\"aut\", \"cre\"), email = \"toph@posit.co\"), person(given = \"Neal\", family = \"Richardson\", role = c(\"aut\")), person(given = \"Sean\", family = \"Lopp\", role = c(\"aut\")), person(given = \"Cole\", family = \"Arendt\", role = c(\"aut\")), person(given = \"Posit, PBC\", role = c(\"cph\", \"fnd\")))", + "Description": "Provides a helpful 'R6' class and methods for interacting with the 'Posit Connect' Server API along with some meaningful utility functions for regular tasks. API documentation varies by 'Posit Connect' installation and version, but the latest documentation is also hosted publicly at .", + "License": "MIT + file LICENSE", + "URL": "https://pkgs.rstudio.com/connectapi/, https://github.com/rstudio/connectapi", + "BugReports": "https://github.com/rstudio/connectapi/issues", + "Imports": [ + "bit64", + "fs", + "glue", + "httr", + "mime", + "jsonlite", + "lifecycle", + "magrittr", + "purrr", + "R6", + "rlang (>= 0.4.2)", + "tibble", + "uuid", + "vctrs (>= 0.3.0)" + ], + "Suggests": [ + "covr", + "dbplyr", + "dplyr", + "ggplot2", + "gridExtra", + "httptest", + "knitr", + "lubridate", + "progress", + "rmarkdown", + "rprojroot", + "rsconnect", + "spelling", + "testthat", + "webshot2", + "withr" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.2", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Toph Allen [aut, cre], Neal Richardson [aut], Sean Lopp [aut], Cole Arendt [aut], Posit, PBC [cph, fnd]", + "Maintainer": "Toph Allen ", + "Repository": "CRAN" + }, + "corrplot": { + "Package": "corrplot", + "Version": "0.95", + "Source": "Repository", + "Type": "Package", + "Title": "Visualization of a Correlation Matrix", + "Date": "2024-10-14", + "Authors@R": "c( person('Taiyun', 'Wei', email = 'weitaiyun@gmail.com', role = c('cre', 'aut')), person('Viliam', 'Simko', email = 'viliam.simko@gmail.com', role = 'aut'), person('Michael', 'Levy', email = 'michael.levy@healthcatalyst.com', role = 'ctb'), person('Yihui', 'Xie', email = 'xie@yihui.name', role = 'ctb'), person('Yan', 'Jin', email = 'jyfeather@gmail.com', role = 'ctb'), person('Jeff', 'Zemla', email = 'zemla@wisc.edu', role = 'ctb'), person('Moritz', 'Freidank', email = 'freidankm@googlemail.com', role = 'ctb'), person('Jun', 'Cai', email = 'cai-j12@mails.tsinghua.edu.cn', role = 'ctb'), person('Tomas', 'Protivinsky', email = 'tomas.protivinsky@gmail.com', role = 'ctb') )", + "Maintainer": "Taiyun Wei ", + "Suggests": [ + "seriation", + "knitr", + "RColorBrewer", + "rmarkdown", + "magrittr", + "prettydoc", + "testthat" + ], + "Description": "Provides a visual exploratory tool on correlation matrix that supports automatic variable reordering to help detect hidden patterns among variables.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/taiyun/corrplot", + "BugReports": "https://github.com/taiyun/corrplot/issues", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Author": "Taiyun Wei [cre, aut], Viliam Simko [aut], Michael Levy [ctb], Yihui Xie [ctb], Yan Jin [ctb], Jeff Zemla [ctb], Moritz Freidank [ctb], Jun Cai [ctb], Tomas Protivinsky [ctb]", + "Repository": "CRAN" + }, + "countrycode": { + "Package": "countrycode", + "Version": "1.6.0", + "Source": "Repository", + "Type": "Package", + "Title": "Convert Country Names and Country Codes", + "Authors@R": "c(person(given = \"Vincent\", family = \"Arel-Bundock\", role = c(\"aut\", \"cre\"), email = \"vincent.arel-bundock@umontreal.ca\", comment = c(ORCID = \"0000-0003-2042-7063\")), person(given = \"CJ\", family = \"Yetman\", role = \"ctb\", email = \"cj@cjyetman.com\", comment = c(ORCID = \"0000-0001-5099-9500\")), person(given = \"Nils\", family = \"Enevoldsen\", role = \"ctb\", email = \"nils@wlonk.com\", comment = c(ORCID = \"0000-0001-7195-4117\")), person(\"Etienne\", \"Bacher\", email = \"etienne.bacher@protonmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-9271-5075\")), person(given = \"Samuel\", family = \"Meichtry\", role = \"ctb\", email = \"samuel.meichtry@bj.admin.ch\", comment = c(ORCID = \"0000-0003-2165-791X\")))", + "Description": "Standardize country names, convert them into one of 40 different coding schemes, convert between coding schemes, and assign region descriptors.", + "License": "GPL-3", + "URL": "https://vincentarelbundock.github.io/countrycode/", + "BugReports": "https://github.com/vincentarelbundock/countrycode/issues", + "Depends": [ + "R (>= 2.10)" + ], + "Suggests": [ + "altdoc", + "eurostat", + "testthat", + "tibble", + "ISOcodes", + "utf8" + ], + "Encoding": "UTF-8", + "LazyData": "yes", + "LazyLoad": "yes", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "no", + "Author": "Vincent Arel-Bundock [aut, cre] (), CJ Yetman [ctb] (), Nils Enevoldsen [ctb] (), Etienne Bacher [ctb] (), Samuel Meichtry [ctb] ()", + "Maintainer": "Vincent Arel-Bundock ", + "Repository": "CRAN" + }, + "cpp11": { + "Package": "cpp11", + "Version": "0.5.1", + "Source": "Repository", + "Title": "A C++11 Interface for R's C Interface", + "Authors@R": "c( person(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Benjamin\", \"Kietzman\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides a header only, C++11 interface to R's C interface. Compared to other approaches 'cpp11' strives to be safe against long jumps from the C API as well as C++ exceptions, conform to normal R function semantics and supports interaction with 'ALTREP' vectors.", + "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 (>= 4.0.0)" + ], + "Suggests": [ + "bench", + "brio", + "callr", + "cli", + "covr", + "decor", + "desc", + "ggplot2", + "glue", + "knitr", + "lobstr", + "mockery", + "progress", + "rmarkdown", + "scales", + "Rcpp", + "testthat (>= 3.2.0)", + "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, vctrs", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Davis Vaughan [aut, cre] (), Jim Hester [aut] (), Romain François [aut] (), Benjamin Kietzman [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "crayon": { + "Package": "crayon", + "Version": "1.5.3", + "Source": "Repository", + "Title": "Colored Terminal Output", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Brodie\", \"Gaslam\", , \"brodie.gaslam@yahoo.com\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "The crayon package is now superseded. Please use the 'cli' package for new projects. Colored terminal output on terminals that support 'ANSI' color and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI' color support is automatically detected. Colors and highlighting can be combined and nested. New styles can also be created easily. This package was inspired by the 'chalk' 'JavaScript' project.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.github.io/crayon/, https://github.com/r-lib/crayon", + "BugReports": "https://github.com/r-lib/crayon/issues", + "Imports": [ + "grDevices", + "methods", + "utils" + ], + "Suggests": [ + "mockery", + "rstudioapi", + "testthat", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Collate": "'aaa-rstudio-detect.R' 'aaaa-rematch2.R' 'aab-num-ansi-colors.R' 'aac-num-ansi-colors.R' 'ansi-256.R' 'ansi-palette.R' 'combine.R' 'string.R' 'utils.R' 'crayon-package.R' 'disposable.R' 'enc-utils.R' 'has_ansi.R' 'has_color.R' 'link.R' 'styles.R' 'machinery.R' 'parts.R' 'print.R' 'style-var.R' 'show.R' 'string_operations.R'", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Brodie Gaslam [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "crosstalk": { + "Package": "crosstalk", + "Version": "1.2.1", + "Source": "Repository", + "Type": "Package", + "Title": "Inter-Widget Interactivity for HTML Widgets", + "Authors@R": "c( person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"), person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(family = \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library and jQuery UI library\"), person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"), person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"), person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"), person(family = \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(family = \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js library\"), person(\"Kristopher Michael\", \"Kowal\", role = c(\"ctb\", \"cph\"), comment = \"es5-shim library\"), person(family = \"es5-shim contributors\", role = c(\"ctb\", \"cph\"), comment = \"es5-shim library\"), person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"), comment = \"ion.rangeSlider library\"), person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"), comment = \"Javascript strftime library\") )", + "Description": "Provides building blocks for allowing HTML widgets to communicate with each other, with Shiny or without (i.e. static .html files). Currently supports 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/, https://github.com/rstudio/crosstalk", + "BugReports": "https://github.com/rstudio/crosstalk/issues", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Author": "Joe Cheng [aut], Carson Sievert [aut, cre] (), Posit Software, PBC [cph, fnd], jQuery Foundation [cph] (jQuery library and jQuery UI library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt), Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library), Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Brian Reavis [ctb, cph] (selectize.js library), Kristopher Michael Kowal [ctb, cph] (es5-shim library), es5-shim contributors [ctb, cph] (es5-shim library), Denis Ineshin [ctb, cph] (ion.rangeSlider library), Sami Samhuri [ctb, cph] (Javascript strftime library)", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "curl": { + "Package": "curl", + "Version": "6.2.0", + "Source": "Repository", + "Type": "Package", + "Title": "A Modern and Flexible Web Client for R", + "Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Posit Software, PBC\", role = \"cph\"))", + "Description": "Bindings to 'libcurl' for performing fully configurable HTTP/FTP requests where responses can be processed in memory, on disk, or streaming via the callback or connection interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly web client see the 'httr2' package which builds on this package with http specific tools and logic.", + "License": "MIT + file LICENSE", + "SystemRequirements": "libcurl (>= 7.62): libcurl-devel (rpm) or libcurl4-openssl-dev (deb)", + "URL": "https://jeroen.r-universe.dev/curl", + "BugReports": "https://github.com/jeroen/curl/issues", + "Suggests": [ + "spelling", + "testthat (>= 1.0.0)", + "knitr", + "jsonlite", + "later", + "rmarkdown", + "httpuv (>= 1.4.4)", + "webutils" + ], + "VignetteBuilder": "knitr", + "Depends": [ + "R (>= 3.0.0)" + ], + "RoxygenNote": "7.3.2.9000", + "Encoding": "UTF-8", + "Language": "en-US", + "NeedsCompilation": "yes", + "Author": "Jeroen Ooms [aut, cre] (), Hadley Wickham [ctb], Posit Software, PBC [cph]", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "cyclocomp": { + "Package": "cyclocomp", + "Version": "1.1.1", + "Source": "Repository", + "Title": "Cyclomatic Complexity of R Code", + "Author": "Gabor Csardi", + "Maintainer": "Gabor Csardi ", + "Description": "Cyclomatic complexity is a software metric (measurement), used to indicate the complexity of a program. It is a quantitative measure of the number of linearly independent paths through a program's source code. It was developed by Thomas J. McCabe, Sr. in 1976.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/gaborcsardi/cyclocomp", + "BugReports": "https://github.com/gaborcsardi/cyclocomp/issues", + "Imports": [ + "callr", + "crayon", + "desc", + "remotes", + "withr" + ], + "Suggests": [ + "testthat" + ], + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "data.table": { + "Package": "data.table", + "Version": "1.16.4", + "Source": "Repository", + "Title": "Extension of `data.frame`", + "Depends": [ + "R (>= 3.3.0)" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "bit64 (>= 4.0.0)", + "bit (>= 4.0.4)", + "R.utils", + "xts", + "zoo (>= 1.8-1)", + "yaml", + "knitr", + "markdown" + ], + "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, https://github.com/Rdatatable/data.table", + "BugReports": "https://github.com/Rdatatable/data.table/issues", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "ByteCompile": "TRUE", + "Authors@R": "c( person(\"Tyson\",\"Barrett\", role=c(\"aut\",\"cre\"), email=\"t.barrett88@gmail.com\", comment = c(ORCID=\"0000-0002-2137-1391\")), person(\"Matt\",\"Dowle\", role=\"aut\", email=\"mattjdowle@gmail.com\"), person(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"asrini@pm.me\"), person(\"Jan\",\"Gorecki\", role=\"aut\"), person(\"Michael\",\"Chirico\", role=\"aut\", comment = c(ORCID=\"0000-0003-0787-087X\")), person(\"Toby\",\"Hocking\", role=\"aut\", comment = c(ORCID=\"0000-0002-3146-0865\")), person(\"Benjamin\",\"Schwendinger\",role=\"aut\", comment = c(ORCID=\"0000-0003-3315-8114\")), person(\"Pasha\",\"Stetsenko\", role=\"ctb\"), person(\"Tom\",\"Short\", role=\"ctb\"), person(\"Steve\",\"Lianoglou\", role=\"ctb\"), person(\"Eduard\",\"Antonyan\", role=\"ctb\"), person(\"Markus\",\"Bonsch\", role=\"ctb\"), person(\"Hugh\",\"Parsonage\", role=\"ctb\"), person(\"Scott\",\"Ritchie\", role=\"ctb\"), person(\"Kun\",\"Ren\", role=\"ctb\"), person(\"Xianying\",\"Tan\", role=\"ctb\"), person(\"Rick\",\"Saporta\", role=\"ctb\"), person(\"Otto\",\"Seiskari\", role=\"ctb\"), person(\"Xianghui\",\"Dong\", role=\"ctb\"), person(\"Michel\",\"Lang\", role=\"ctb\"), person(\"Watal\",\"Iwasaki\", role=\"ctb\"), person(\"Seth\",\"Wenchel\", role=\"ctb\"), person(\"Karl\",\"Broman\", role=\"ctb\"), person(\"Tobias\",\"Schmidt\", role=\"ctb\"), person(\"David\",\"Arenburg\", role=\"ctb\"), person(\"Ethan\",\"Smith\", role=\"ctb\"), person(\"Francois\",\"Cocquemas\", role=\"ctb\"), person(\"Matthieu\",\"Gomez\", role=\"ctb\"), person(\"Philippe\",\"Chataignon\", role=\"ctb\"), person(\"Nello\",\"Blaser\", role=\"ctb\"), person(\"Dmitry\",\"Selivanov\", role=\"ctb\"), person(\"Andrey\",\"Riabushenko\", role=\"ctb\"), person(\"Cheng\",\"Lee\", role=\"ctb\"), person(\"Declan\",\"Groves\", role=\"ctb\"), person(\"Daniel\",\"Possenriede\", role=\"ctb\"), person(\"Felipe\",\"Parages\", role=\"ctb\"), person(\"Denes\",\"Toth\", role=\"ctb\"), person(\"Mus\",\"Yaramaz-David\", role=\"ctb\"), person(\"Ayappan\",\"Perumal\", role=\"ctb\"), person(\"James\",\"Sams\", role=\"ctb\"), person(\"Martin\",\"Morgan\", role=\"ctb\"), person(\"Michael\",\"Quinn\", role=\"ctb\"), person(\"@javrucebo\",\"\", role=\"ctb\"), person(\"@marc-outins\",\"\", role=\"ctb\"), person(\"Roy\",\"Storey\", role=\"ctb\"), person(\"Manish\",\"Saraswat\", role=\"ctb\"), person(\"Morgan\",\"Jacob\", role=\"ctb\"), person(\"Michael\",\"Schubmehl\", role=\"ctb\"), person(\"Davis\",\"Vaughan\", role=\"ctb\"), person(\"Leonardo\",\"Silvestri\", role=\"ctb\"), person(\"Jim\",\"Hester\", role=\"ctb\"), person(\"Anthony\",\"Damico\", role=\"ctb\"), person(\"Sebastian\",\"Freundt\", role=\"ctb\"), person(\"David\",\"Simons\", role=\"ctb\"), person(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"), person(\"Cole\",\"Miller\", role=\"ctb\"), person(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"), person(\"Vaclav\",\"Tlapak\", role=\"ctb\"), person(\"Kevin\",\"Ushey\", role=\"ctb\"), person(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"), person(\"Tony\",\"Fischetti\", role=\"ctb\"), person(\"Ofek\",\"Shilon\", role=\"ctb\"), person(\"Vadim\",\"Khotilovich\", role=\"ctb\"), person(\"Hadley\",\"Wickham\", role=\"ctb\"), person(\"Bennet\",\"Becker\", role=\"ctb\"), person(\"Kyle\",\"Haynes\", role=\"ctb\"), person(\"Boniface Christian\",\"Kamgang\", role=\"ctb\"), person(\"Olivier\",\"Delmarcell\", role=\"ctb\"), person(\"Josh\",\"O'Brien\", role=\"ctb\"), person(\"Dereck\",\"de Mezquita\", role=\"ctb\"), person(\"Michael\",\"Czekanski\", role=\"ctb\"), person(\"Dmitry\", \"Shemetov\", role=\"ctb\"), person(\"Nitish\", \"Jha\", role=\"ctb\"), person(\"Joshua\", \"Wu\", role=\"ctb\"), person(\"Iago\", \"Giné-Vázquez\", role=\"ctb\"), person(\"Anirban\", \"Chetia\", role=\"ctb\"), person(\"Doris\", \"Amoakohene\", role=\"ctb\"), person(\"Ivan\", \"Krylov\", role=\"ctb\") )", + "NeedsCompilation": "yes", + "Author": "Tyson Barrett [aut, cre] (), Matt Dowle [aut], Arun Srinivasan [aut], Jan Gorecki [aut], Michael Chirico [aut] (), Toby Hocking [aut] (), Benjamin Schwendinger [aut] (), Pasha Stetsenko [ctb], Tom Short [ctb], Steve Lianoglou [ctb], Eduard Antonyan [ctb], Markus Bonsch [ctb], Hugh Parsonage [ctb], Scott Ritchie [ctb], Kun Ren [ctb], Xianying Tan [ctb], Rick Saporta [ctb], Otto Seiskari [ctb], Xianghui Dong [ctb], Michel Lang [ctb], Watal Iwasaki [ctb], Seth Wenchel [ctb], Karl Broman [ctb], Tobias Schmidt [ctb], David Arenburg [ctb], Ethan Smith [ctb], Francois Cocquemas [ctb], Matthieu Gomez [ctb], Philippe Chataignon [ctb], Nello Blaser [ctb], Dmitry Selivanov [ctb], Andrey Riabushenko [ctb], Cheng Lee [ctb], Declan Groves [ctb], Daniel Possenriede [ctb], Felipe Parages [ctb], Denes Toth [ctb], Mus Yaramaz-David [ctb], Ayappan Perumal [ctb], James Sams [ctb], Martin Morgan [ctb], Michael Quinn [ctb], @javrucebo [ctb], @marc-outins [ctb], Roy Storey [ctb], Manish Saraswat [ctb], Morgan Jacob [ctb], Michael Schubmehl [ctb], Davis Vaughan [ctb], Leonardo Silvestri [ctb], Jim Hester [ctb], Anthony Damico [ctb], Sebastian Freundt [ctb], David Simons [ctb], Elliott Sales de Andrade [ctb], Cole Miller [ctb], Jens Peder Meldgaard [ctb], Vaclav Tlapak [ctb], Kevin Ushey [ctb], Dirk Eddelbuettel [ctb], Tony Fischetti [ctb], Ofek Shilon [ctb], Vadim Khotilovich [ctb], Hadley Wickham [ctb], Bennet Becker [ctb], Kyle Haynes [ctb], Boniface Christian Kamgang [ctb], Olivier Delmarcell [ctb], Josh O'Brien [ctb], Dereck de Mezquita [ctb], Michael Czekanski [ctb], Dmitry Shemetov [ctb], Nitish Jha [ctb], Joshua Wu [ctb], Iago Giné-Vázquez [ctb], Anirban Chetia [ctb], Doris Amoakohene [ctb], Ivan Krylov [ctb]", + "Maintainer": "Tyson Barrett ", + "Repository": "CRAN" + }, + "desc": { + "Package": "desc", + "Version": "1.4.3", + "Source": "Repository", + "Title": "Manipulate DESCRIPTION Files", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Kirill\", \"Müller\", role = \"aut\"), person(\"Jim\", \"Hester\", , \"james.f.hester@gmail.com\", role = \"aut\"), person(\"Maëlle\", \"Salmon\", role = \"ctb\", comment = c(ORCID = \"0000-0002-2815-0399\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Maintainer": "Gábor Csárdi ", + "Description": "Tools to read, write, create, and manipulate DESCRIPTION files. It is intended for packages that create or manipulate other packages.", + "License": "MIT + file LICENSE", + "URL": "https://desc.r-lib.org/, https://github.com/r-lib/desc", + "BugReports": "https://github.com/r-lib/desc/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "cli", + "R6", + "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.3", + "Collate": "'assertions.R' 'authors-at-r.R' 'built.R' 'classes.R' 'collate.R' 'constants.R' 'deps.R' 'desc-package.R' 'description.R' 'encoding.R' 'find-package-root.R' 'latex.R' 'non-oo-api.R' 'package-archives.R' 'read.R' 'remotes.R' 'str.R' 'syntax_checks.R' 'urls.R' 'utils.R' 'validate.R' 'version.R'", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Kirill Müller [aut], Jim Hester [aut], Maëlle Salmon [ctb] (), Posit Software, PBC [cph, fnd]", + "Repository": "CRAN" + }, + "diagram": { + "Package": "diagram", + "Version": "1.6.5", + "Source": "Repository", + "Title": "Functions for Visualising Simple Graphs (Networks), Plotting Flow 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, visualising webs, electrical networks, etc. Support for the book \"A practical guide to ecological modelling - using R as a simulation platform\" by Karline Soetaert and Peter M.J. Herman (2009), Springer. and the book \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and Francesca Mazzia (2012), Springer. Includes demo(flowchart), demo(plotmat), demo(plotweb).", + "License": "GPL (>= 2)", + "LazyData": "yes", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "diffobj": { + "Package": "diffobj", + "Version": "0.3.5", + "Source": "Repository", + "Type": "Package", + "Title": "Diffs for R Objects", + "Description": "Generate a colorized diff of two R objects for an intuitive visualization of their differences.", + "Authors@R": "c( person( \"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\", role=c(\"aut\", \"cre\")), person( \"Michael B.\", \"Allen\", email=\"ioplex@gmail.com\", role=c(\"ctb\", \"cph\"), comment=\"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' 'misc.R' 'html.R' 'styles.R' 's4.R' 'core.R' 'diff.R' 'get.R' 'guides.R' 'hunks.R' 'layout.R' 'myerssimple.R' 'rdiff.R' 'rds.R' 'set.R' 'subset.R' 'summmary.R' 'system.R' 'text.R' 'tochar.R' 'trim.R' 'word.R'", + "Imports": [ + "crayon (>= 1.3.2)", + "tools", + "methods", + "utils", + "stats" + ], + "NeedsCompilation": "yes", + "Author": "Brodie Gaslam [aut, cre], Michael B. Allen [ctb, cph] (Original C implementation of Myers Diff Algorithm)", + "Maintainer": "Brodie Gaslam ", + "Repository": "CRAN" + }, + "digest": { + "Package": "digest", + "Version": "0.6.37", + "Source": "Repository", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Antoine\", \"Lucas\", role=\"ctb\"), person(\"Jarek\", \"Tuszynski\", role=\"ctb\"), person(\"Henrik\", \"Bengtsson\", role=\"ctb\", comment = c(ORCID = \"0000-0002-7579-5165\")), person(\"Simon\", \"Urbanek\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2297-1732\")), person(\"Mario\", \"Frasca\", role=\"ctb\"), person(\"Bryan\", \"Lewis\", role=\"ctb\"), person(\"Murray\", \"Stokely\", role=\"ctb\"), person(\"Hannes\", \"Muehleisen\", role=\"ctb\"), person(\"Duncan\", \"Murdoch\", role=\"ctb\"), person(\"Jim\", \"Hester\", role=\"ctb\"), person(\"Wush\", \"Wu\", role=\"ctb\", comment = c(ORCID = \"0000-0001-5180-0567\")), person(\"Qiang\", \"Kou\", role=\"ctb\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Thierry\", \"Onkelinx\", role=\"ctb\", comment = c(ORCID = \"0000-0001-8804-4216\")), person(\"Michel\", \"Lang\", role=\"ctb\", comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Viliam\", \"Simko\", role=\"ctb\"), person(\"Kurt\", \"Hornik\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(\"Radford\", \"Neal\", role=\"ctb\", comment = c(ORCID = \"0000-0002-2473-3407\")), person(\"Kendon\", \"Bell\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9093-8312\")), person(\"Matthew\", \"de Queljoe\", role=\"ctb\"), person(\"Dmitry\", \"Selivanov\", role=\"ctb\"), person(\"Ion\", \"Suruceanu\", role=\"ctb\"), person(\"Bill\", \"Denney\", role=\"ctb\"), person(\"Dirk\", \"Schumacher\", role=\"ctb\"), person(\"András\", \"Svraka\", role=\"ctb\"), person(\"Sergey\", \"Fedorov\", role=\"ctb\"), person(\"Will\", \"Landau\", role=\"ctb\", comment = c(ORCID = \"0000-0003-1878-3253\")), person(\"Floris\", \"Vanderhaeghe\", role=\"ctb\", comment = c(ORCID = \"0000-0002-6378-6229\")), person(\"Kevin\", \"Tappe\", role=\"ctb\"), person(\"Harris\", \"McGehee\", role=\"ctb\"), person(\"Tim\", \"Mastny\", role=\"ctb\"), person(\"Aaron\", \"Peikert\", role=\"ctb\", comment = c(ORCID = \"0000-0001-7813-818X\")), person(\"Mark\", \"van der Loo\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9807-4686\")), person(\"Chris\", \"Muir\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2555-3878\")), person(\"Moritz\", \"Beller\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4852-0526\")), person(\"Sebastian\", \"Campbell\", role=\"ctb\"), person(\"Winston\", \"Chang\", role=\"ctb\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Dean\", \"Attali\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5645-3493\")), person(\"Michael\", \"Chirico\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0787-087X\")), person(\"Kevin\", \"Ushey\", role=\"ctb\"))", + "Date": "2024-08-19", + "Title": "Create Compact Hash Digests of R Objects", + "Description": "Implementation of a function 'digest()' for the creation of hash digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32', 'xxhash', 'murmurhash', 'spookyhash', 'blake3', 'crc32c', 'xxh3_64', and 'xxh3_128' algorithms) permitting easy comparison of R language objects, as well as functions such as'hmac()' to create hash-based message authentication code. Please note that this package is not meant to be deployed for cryptographic purposes for which more comprehensive (and widely tested) libraries such as 'OpenSSL' should be used.", + "URL": "https://github.com/eddelbuettel/digest, https://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", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Dirk Eddelbuettel [aut, cre] (), Antoine Lucas [ctb], Jarek Tuszynski [ctb], Henrik Bengtsson [ctb] (), Simon Urbanek [ctb] (), Mario Frasca [ctb], Bryan Lewis [ctb], Murray Stokely [ctb], Hannes Muehleisen [ctb], Duncan Murdoch [ctb], Jim Hester [ctb], Wush Wu [ctb] (), Qiang Kou [ctb] (), Thierry Onkelinx [ctb] (), Michel Lang [ctb] (), Viliam Simko [ctb], Kurt Hornik [ctb] (), Radford Neal [ctb] (), Kendon Bell [ctb] (), Matthew de Queljoe [ctb], Dmitry Selivanov [ctb], Ion Suruceanu [ctb], Bill Denney [ctb], Dirk Schumacher [ctb], András Svraka [ctb], Sergey Fedorov [ctb], Will Landau [ctb] (), Floris Vanderhaeghe [ctb] (), Kevin Tappe [ctb], Harris McGehee [ctb], Tim Mastny [ctb], Aaron Peikert [ctb] (), Mark van der Loo [ctb] (), Chris Muir [ctb] (), Moritz Beller [ctb] (), Sebastian Campbell [ctb], Winston Chang [ctb] (), Dean Attali [ctb] (), Michael Chirico [ctb] (), Kevin Ushey [ctb]", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, + "dplyr": { + "Package": "dplyr", + "Version": "1.1.4", + "Source": "Repository", + "Type": "Package", + "Title": "A Grammar of Data Manipulation", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Kirill\", \"Müller\", role = \"aut\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A fast, consistent tool for working with data frame like objects, 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 (>= 1.0.3)", + "magrittr (>= 1.5)", + "methods", + "pillar (>= 1.9.0)", + "R6", + "rlang (>= 1.1.0)", + "tibble (>= 3.2.0)", + "tidyselect (>= 1.2.0)", + "utils", + "vctrs (>= 0.6.4)" + ], + "Suggests": [ + "bench", + "broom", + "callr", + "covr", + "DBI", + "dbplyr (>= 2.2.1)", + "ggplot2", + "knitr", + "Lahman", + "lobstr", + "microbenchmark", + "nycflights13", + "purrr", + "rmarkdown", + "RMySQL", + "RPostgreSQL", + "RSQLite", + "stringi (>= 1.7.6)", + "testthat (>= 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", + "Author": "Hadley Wickham [aut, cre] (), Romain François [aut] (), Lionel Henry [aut], Kirill Müller [aut] (), Davis Vaughan [aut] (), Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "echarts4r": { + "Package": "echarts4r", + "Version": "0.4.5", + "Source": "Repository", + "Title": "Create Interactive Graphs with 'Echarts JavaScript' Version 5", + "Date": "2023-06-08", + "Authors@R": "c( person(\"John\", \"Coene\", email = \"jcoenep@gmail.com\", role = c(\"aut\", \"cph\")), person(\"David\", \"Munoz Tord\", email = \"david.munoztord@mailbox.org\", role = c(\"cre\", \"ctb\"), comment = c(ORCID = \"0000-0001-7954-8295\")), person(given = \"Wei\", family = \"Su\", email = \"swsoyee@gmail.com\", role = \"ctb\"), person(family = \"Helgasoft\", email = \"contact@helgasoft.com\", role = \"ctb\"), person(\"Xianying\", \"Tan\", email = \"shrektan@126.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-6072-3521\")), person(\"Robin\", \"Cura\", email = \"robin.cura@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0001-5926-1828\")), person(\"Mathida\", \"Chuk\", email = \"mathidachuk@gmail.com\", role = \"ctb\"), person(\"Robert\", \"Koetsier\", email = \"rk8roko@gmail.com \", role = \"ctb\", comment = c(ORCID = \"0000-0002-4477-5401\")), person(\"Jelle\", \"Geertsma\", email = \"rdatasculptor@gmail.com\", role = \"ctb\") )", + "Description": "Easily create interactive charts by leveraging the 'Echarts Javascript' library which includes 36 chart types, themes, 'Shiny' proxies and animations.", + "License": "Apache License (>= 2.0)", + "Encoding": "UTF-8", + "Imports": [ + "htmlwidgets", + "dplyr (>= 0.7.0)", + "purrr", + "countrycode", + "broom", + "shiny", + "scales", + "corrplot", + "htmltools", + "jsonlite", + "rstudioapi" + ], + "Suggests": [ + "tidyr", + "testthat", + "knitr", + "rmarkdown", + "covr", + "data.tree", + "leaflet", + "tibble" + ], + "Depends": [ + "R (>= 4.1.0)" + ], + "RoxygenNote": "7.2.3", + "URL": "https://echarts4r.john-coene.com/, https://github.com/JohnCoene/echarts4r", + "BugReports": "https://github.com/JohnCoene/echarts4r/issues/", + "NeedsCompilation": "no", + "Author": "John Coene [aut, cph], David Munoz Tord [cre, ctb] (), Wei Su [ctb], Helgasoft [ctb], Xianying Tan [ctb] (), Robin Cura [ctb] (), Mathida Chuk [ctb], Robert Koetsier [ctb] (), Jelle Geertsma [ctb]", + "Maintainer": "David Munoz Tord ", + "Repository": "CRAN" + }, + "evaluate": { + "Package": "evaluate", + "Version": "1.0.3", + "Source": "Repository", + "Type": "Package", + "Title": "Parsing and Evaluation Tools that Provide More Details than the Default", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Yihui\", \"Xie\", role = \"aut\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Michael\", \"Lawrence\", role = \"ctb\"), person(\"Thomas\", \"Kluyver\", role = \"ctb\"), person(\"Jeroen\", \"Ooms\", role = \"ctb\"), person(\"Barret\", \"Schloerke\", role = \"ctb\"), person(\"Adam\", \"Ryczkowski\", role = \"ctb\"), person(\"Hiroaki\", \"Yutani\", role = \"ctb\"), person(\"Michel\", \"Lang\", role = \"ctb\"), person(\"Karolis\", \"Koncevičius\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Parsing and evaluation tools that make it easy to recreate the command line behaviour of R.", + "License": "MIT + file LICENSE", + "URL": "https://evaluate.r-lib.org/, https://github.com/r-lib/evaluate", + "BugReports": "https://github.com/r-lib/evaluate/issues", + "Depends": [ + "R (>= 3.6.0)" + ], + "Suggests": [ + "callr", + "covr", + "ggplot2 (>= 3.3.6)", + "lattice", + "methods", + "pkgload", + "rlang", + "knitr", + "testthat (>= 3.0.0)", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], Yihui Xie [aut] (), Michael Lawrence [ctb], Thomas Kluyver [ctb], Jeroen Ooms [ctb], Barret Schloerke [ctb], Adam Ryczkowski [ctb], Hiroaki Yutani [ctb], Michel Lang [ctb], Karolis Koncevičius [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "fansi": { + "Package": "fansi", + "Version": "1.0.6", + "Source": "Repository", + "Title": "ANSI Control Sequence Aware String Functions", + "Description": "Counterparts to R string manipulation functions that account for the effects of ANSI text formatting control sequences.", + "Authors@R": "c( person(\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\", role=c(\"aut\", \"cre\")), person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"), person(family=\"R Core Team\", email=\"R-core@r-project.org\", role=\"cph\", comment=\"UTF8 byte length calcs from src/util.c\" ))", + "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' 'nchar.R' 'strwrap.R' 'strtrim.R' 'strsplit.R' 'substr2.R' 'trimws.R' 'tohtml.R' 'unhandled.R' 'normalize.R' 'sgr.R'", + "NeedsCompilation": "yes", + "Author": "Brodie Gaslam [aut, cre], Elliott Sales De Andrade [ctb], R Core Team [cph] (UTF8 byte length calcs from src/util.c)", + "Maintainer": "Brodie Gaslam ", + "Repository": "CRAN" + }, + "farver": { + "Package": "farver", + "Version": "2.1.2", + "Source": "Repository", + "Type": "Package", + "Title": "High Performance Colour Space Manipulation", + "Authors@R": "c( person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Berendea\", \"Nicolae\", role = \"aut\", comment = \"Author of the ColorSpace C++ library\"), person(\"Romain\", \"François\", , \"romain@purrple.cat\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "The encoding of colour can be handled in many different ways, using different colour spaces. As different colour spaces have different uses, efficient conversion between these representations are important. The 'farver' package provides a set of functions that gives access to very fast colour space conversion and comparisons implemented in C++, and offers speed improvements over the 'convertColor' function in the 'grDevices' package.", + "License": "MIT + file LICENSE", + "URL": "https://farver.data-imaginist.com, https://github.com/thomasp85/farver", + "BugReports": "https://github.com/thomasp85/farver/issues", + "Suggests": [ + "covr", + "testthat (>= 3.0.0)" + ], + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "yes", + "Author": "Thomas Lin Pedersen [cre, aut] (), Berendea Nicolae [aut] (Author of the ColorSpace C++ library), Romain François [aut] (), Posit, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN" + }, + "fastmap": { + "Package": "fastmap", + "Version": "1.2.0", + "Source": "Repository", + "Title": "Fast Data Structures", + "Authors@R": "c( person(\"Winston\", \"Chang\", email = \"winston@posit.co\", role = c(\"aut\", \"cre\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(given = \"Tessil\", role = \"cph\", comment = \"hopscotch_map library\") )", + "Description": "Fast implementation of data structures, including a key-value store, stack, and queue. Environments are commonly used as key-value stores in R, but every time a new key is used, it is added to R's global symbol table, causing a small amount of memory leakage. This can be problematic in cases where many different keys are used. Fastmap avoids this memory leak issue 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", + "Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd], Tessil [cph] (hopscotch_map library)", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "fontawesome": { + "Package": "fontawesome", + "Version": "0.5.3", + "Source": "Repository", + "Type": "Package", + "Title": "Easily Work with 'Font Awesome' Icons", + "Description": "Easily and flexibly insert 'Font Awesome' icons into 'R Markdown' documents and 'Shiny' apps. These icons can be inserted into HTML content through inline 'SVG' tags or 'i' tags. There is also a utility function for exporting 'Font Awesome' icons as 'PNG' images for those situations where raster graphics are needed.", + "Authors@R": "c( person(\"Richard\", \"Iannone\", , \"rich@posit.co\", c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Christophe\", \"Dervieux\", , \"cderv@posit.co\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4474-2498\")), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"ctb\"), person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"), comment = \"Font-Awesome font\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "License": "MIT + file LICENSE", + "URL": "https://github.com/rstudio/fontawesome, https://rstudio.github.io/fontawesome/", + "BugReports": "https://github.com/rstudio/fontawesome/issues", + "Encoding": "UTF-8", + "ByteCompile": "true", + "RoxygenNote": "7.3.2", + "Depends": [ + "R (>= 3.3.0)" + ], + "Imports": [ + "rlang (>= 1.0.6)", + "htmltools (>= 0.5.1.1)" + ], + "Suggests": [ + "covr", + "dplyr (>= 1.0.8)", + "gt (>= 0.9.0)", + "knitr (>= 1.31)", + "testthat (>= 3.0.0)", + "rsvg" + ], + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Richard Iannone [aut, cre] (), Christophe Dervieux [ctb] (), Winston Chang [ctb], Dave Gandy [ctb, cph] (Font-Awesome font), Posit Software, PBC [cph, fnd]", + "Maintainer": "Richard Iannone ", + "Repository": "CRAN" + }, + "forcats": { + "Package": "forcats", + "Version": "1.0.0", + "Source": "Repository", + "Title": "Tools for Working with Categorical Variables (Factors)", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )", + "Description": "Helpers for reordering factor levels (including moving specified levels to front, ordering by first appearance, reversing, and randomly shuffling), and tools for modifying factor levels (including collapsing rare levels into other, 'anonymising', and manually 'recoding').", + "License": "MIT + file LICENSE", + "URL": "https://forcats.tidyverse.org/, https://github.com/tidyverse/forcats", + "BugReports": "https://github.com/tidyverse/forcats/issues", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "cli (>= 3.4.0)", + "glue", + "lifecycle", + "magrittr", + "rlang (>= 1.0.0)", + "tibble" + ], + "Suggests": [ + "covr", + "dplyr", + "ggplot2", + "knitr", + "readr", + "rmarkdown", + "testthat (>= 3.0.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], RStudio [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "forecast": { + "Package": "forecast", + "Version": "8.23.0", + "Source": "Repository", + "Title": "Forecasting Functions for Time Series and Linear Models", + "Description": "Methods and tools for displaying and analysing univariate time series forecasts including exponential smoothing via state space models and automatic ARIMA modelling.", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "colorspace", + "fracdiff", + "generics (>= 0.1.2)", + "ggplot2 (>= 2.2.1)", + "graphics", + "lmtest", + "magrittr", + "nnet", + "parallel", + "Rcpp (>= 0.11.0)", + "stats", + "timeDate", + "tseries", + "urca", + "withr", + "zoo" + ], + "Suggests": [ + "forecTheta", + "knitr", + "methods", + "rmarkdown", + "rticles", + "scales", + "seasonal", + "testthat (>= 3.0.0)", + "uroot" + ], + "LinkingTo": [ + "Rcpp (>= 0.11.0)", + "RcppArmadillo (>= 0.2.35)" + ], + "LazyData": "yes", + "ByteCompile": "TRUE", + "Authors@R": "c( person(\"Rob\", \"Hyndman\", email = \"Rob.Hyndman@monash.edu\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0002-2140-5352\")), person(\"George\", \"Athanasopoulos\", role = \"aut\", comment = c(ORCID = \"0000-0002-5389-2802\")), person(\"Christoph\", \"Bergmeir\", role = \"aut\", comment = c(ORCID = \"0000-0002-3665-9021\")), person(\"Gabriel\", \"Caceres\", role = \"aut\", comment = c(ORCID = \"0000-0002-2947-2023\")), person(\"Leanne\", \"Chhay\", role = \"aut\"), person(\"Kirill\", \"Kuroptev\", role = \"aut\"), person(\"Mitchell\", \"O'Hara-Wild\", role = \"aut\", comment = c(ORCID = \"0000-0001-6729-7695\")), person(\"Fotios\", \"Petropoulos\", role = \"aut\", comment = c(ORCID = \"0000-0003-3039-4955\")), person(\"Slava\", \"Razbash\", role = \"aut\"), person(\"Earo\", \"Wang\", role = \"aut\", comment = c(ORCID = \"0000-0001-6448-5260\")), person(\"Farah\", \"Yasmeen\", role = \"aut\", comment = c(ORCID = \"0000-0002-1479-5401\")), person(\"Federico\", \"Garza\", role = \"ctb\"), person(\"Daniele\", \"Girolimetto\", role = \"ctb\"), person(\"Ross\", \"Ihaka\", role = c(\"ctb\", \"cph\")), person(\"R Core Team\", role = c(\"ctb\", \"cph\")), person(\"Daniel\", \"Reid\", role = \"ctb\"), person(\"David\", \"Shaub\", role = \"ctb\"), person(\"Yuan\", \"Tang\", role = \"ctb\", comment = c(ORCID = \"0000-0001-5243-233X\")), person(\"Xiaoqian\", \"Wang\", role = \"ctb\"), person(\"Zhenyu\", \"Zhou\", role = \"ctb\") )", + "BugReports": "https://github.com/robjhyndman/forecast/issues", + "License": "GPL-3", + "URL": "https://pkg.robjhyndman.com/forecast/, https://github.com/robjhyndman/forecast", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Author": "Rob Hyndman [aut, cre, cph] (), George Athanasopoulos [aut] (), Christoph Bergmeir [aut] (), Gabriel Caceres [aut] (), Leanne Chhay [aut], Kirill Kuroptev [aut], Mitchell O'Hara-Wild [aut] (), Fotios Petropoulos [aut] (), Slava Razbash [aut], Earo Wang [aut] (), Farah Yasmeen [aut] (), Federico Garza [ctb], Daniele Girolimetto [ctb], Ross Ihaka [ctb, cph], R Core Team [ctb, cph], Daniel Reid [ctb], David Shaub [ctb], Yuan Tang [ctb] (), Xiaoqian Wang [ctb], Zhenyu Zhou [ctb]", + "Maintainer": "Rob Hyndman ", + "Repository": "CRAN" + }, + "fracdiff": { + "Package": "fracdiff", + "Version": "1.5-3", + "Source": "Repository", + "VersionNote": "Released 1.5-0 on 2019-12-09, 1.5-1 on 2020-01-20, 1.5-2 on 2022-10-31", + "Date": "2024-02-01", + "Title": "Fractionally Differenced ARIMA aka ARFIMA(P,d,q) Models", + "Authors@R": "c(person(\"Martin\",\"Maechler\", role=c(\"aut\",\"cre\"), email=\"maechler@stat.math.ethz.ch\", comment = c(ORCID = \"0000-0002-8685-9910\")) , person(\"Chris\", \"Fraley\", role=c(\"ctb\",\"cph\"), comment = \"S original; Fortran code\") , person(\"Friedrich\", \"Leisch\", role = \"ctb\", comment = c(\"R port\", ORCID = \"0000-0001-7278-1983\")) , person(\"Valderio\", \"Reisen\", role=\"ctb\", comment = \"fdGPH() & fdSperio()\") , person(\"Artur\", \"Lemonte\", role=\"ctb\", comment = \"fdGPH() & fdSperio()\") , person(\"Rob\", \"Hyndman\", email=\"Rob.Hyndman@monash.edu\", role=\"ctb\", comment = c(\"residuals() & fitted()\", ORCID = \"0000-0002-2140-5352\")) )", + "Description": "Maximum likelihood estimation of the parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and Raftery, Appl.Statistics, 1989); including inference and basic methods. Some alternative algorithms to estimate \"H\".", + "Imports": [ + "stats" + ], + "Suggests": [ + "longmemo", + "forecast", + "urca" + ], + "License": "GPL (>= 2)", + "URL": "https://github.com/mmaechler/fracdiff", + "BugReports": "https://github.com/mmaechler/fracdiff/issues", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Martin Maechler [aut, cre] (), Chris Fraley [ctb, cph] (S original; Fortran code), Friedrich Leisch [ctb] (R port, ), Valderio Reisen [ctb] (fdGPH() & fdSperio()), Artur Lemonte [ctb] (fdGPH() & fdSperio()), Rob Hyndman [ctb] (residuals() & fitted(), )", + "Maintainer": "Martin Maechler ", + "Repository": "CRAN" + }, + "fs": { + "Package": "fs", + "Version": "1.6.5", + "Source": "Repository", + "Title": "Cross-Platform File System Operations Based on 'libuv'", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library\"), person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A cross-platform interface to file system operations, built on 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.6)" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "covr", + "crayon", + "knitr", + "pillar (>= 1.0.0)", + "rmarkdown", + "spelling", + "testthat (>= 3.0.0)", + "tibble (>= 1.1.0)", + "vctrs (>= 0.3.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "ByteCompile": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Copyright": "file COPYRIGHTS", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.3", + "SystemRequirements": "GNU make", + "NeedsCompilation": "yes", + "Author": "Jim Hester [aut], Hadley Wickham [aut], Gábor Csárdi [aut, cre], libuv project contributors [cph] (libuv library), Joyent, Inc. and other Node contributors [cph] (libuv library), Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "furrr": { + "Package": "furrr", + "Version": "0.3.1", + "Source": "Repository", + "Title": "Apply Mapping Functions in Parallel using Futures", + "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@rstudio.com\", role = c(\"aut\", \"cre\")), person(\"Matt\", \"Dancho\", , \"mdancho@business-science.io\", role = \"aut\"), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )", + "Description": "Implementations of the family of map() functions from 'purrr' that can be resolved using any 'future'-supported backend, e.g. parallel on the local machine or distributed on a compute cluster.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/DavisVaughan/furrr, https://furrr.futureverse.org/", + "BugReports": "https://github.com/DavisVaughan/furrr/issues", + "Depends": [ + "future (>= 1.25.0)", + "R (>= 3.4.0)" + ], + "Imports": [ + "globals (>= 0.14.0)", + "lifecycle (>= 1.0.1)", + "purrr (>= 0.3.4)", + "rlang (>= 1.0.2)", + "vctrs (>= 0.4.1)" + ], + "Suggests": [ + "carrier", + "covr", + "dplyr (>= 0.7.4)", + "knitr", + "listenv (>= 0.6.0)", + "magrittr", + "rmarkdown", + "testthat (>= 3.0.0)", + "tidyselect", + "withr" + ], + "Config/Needs/website": "progressr", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Author": "Davis Vaughan [aut, cre], Matt Dancho [aut], RStudio [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "future": { + "Package": "future", + "Version": "1.34.0", + "Source": "Repository", + "Title": "Unified Parallel and Distributed Processing in R for Everyone", + "Imports": [ + "digest", + "globals (>= 0.16.1)", + "listenv (>= 0.8.0)", + "parallel", + "parallelly (>= 1.38.0)", + "utils" + ], + "Suggests": [ + "methods", + "RhpcBLASctl", + "R.rsp", + "markdown" + ], + "VignetteBuilder": "R.rsp", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role = c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\", comment = c(ORCID = \"0000-0002-7579-5165\")))", + "Description": "The purpose of this package is to provide a lightweight and unified Future API for sequential and parallel processing of R expression via futures. The simplest way to evaluate an expression in parallel is to use `x %<-% { expression }` with `plan(multisession)`. This package implements sequential, multicore, multisession, and cluster futures. With these, R expressions can be evaluated on the local machine, in parallel a set of local machines, or distributed on a mix of local and remote machines. Extensions to this package implement additional backends for processing futures via compute cluster schedulers, etc. Because of its unified API, there is no need to modify any code in order switch from sequential on the local machine to, say, distributed processing on a remote compute cluster. Another strength of this package is that global variables and functions are automatically identified and exported as needed, making it straightforward to tweak existing code to make use of futures.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "ByteCompile": "TRUE", + "URL": "https://future.futureverse.org, https://github.com/HenrikBengtsson/future", + "BugReports": "https://github.com/HenrikBengtsson/future/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Henrik Bengtsson [aut, cre, cph] ()", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN" + }, + "future.apply": { + "Package": "future.apply", + "Version": "1.11.3", + "Source": "Repository", + "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\"), email = \"henrikb@braju.com\", comment = c(ORCID = \"0000-0002-7579-5165\")), person(\"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, https://github.com/futureverse/future.apply", + "BugReports": "https://github.com/futureverse/future.apply/issues", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Henrik Bengtsson [aut, cre, cph] (), R Core Team [cph, ctb]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN" + }, + "generics": { + "Package": "generics", + "Version": "0.1.3", + "Source": "Repository", + "Title": "Common S3 Generics not Provided by Base R Methods Related to Model Fitting", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")), person(\"Max\", \"Kuhn\", , \"max@rstudio.com\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@rstudio.com\", role = \"aut\"), person(\"RStudio\", role = \"cph\") )", + "Description": "In order to reduce potential package dependencies and conflicts, 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", + "Author": "Hadley Wickham [aut, cre], Max Kuhn [aut], Davis Vaughan [aut], RStudio [cph]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "ggplot2": { + "Package": "ggplot2", + "Version": "3.5.1", + "Source": "Repository", + "Title": "Create Elegant Data Visualisations Using the Grammar of Graphics", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Winston\", \"Chang\", role = \"aut\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Kohske\", \"Takahashi\", role = \"aut\"), person(\"Claus\", \"Wilke\", role = \"aut\", comment = c(ORCID = \"0000-0002-7470-9261\")), person(\"Kara\", \"Woo\", role = \"aut\", comment = c(ORCID = \"0000-0002-5125-4188\")), person(\"Hiroaki\", \"Yutani\", role = \"aut\", comment = c(ORCID = \"0000-0002-3385-7233\")), person(\"Dewey\", \"Dunnington\", role = \"aut\", comment = c(ORCID = \"0000-0002-9415-4582\")), person(\"Teun\", \"van den Brand\", role = \"aut\", comment = c(ORCID = \"0000-0002-9335-7468\")), person(\"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A system for 'declaratively' creating graphics, based on \"The Grammar of Graphics\". You provide the data, tell 'ggplot2' how to map variables to aesthetics, what graphical primitives to use, and it takes care of the details.", + "License": "MIT + file LICENSE", + "URL": "https://ggplot2.tidyverse.org, https://github.com/tidyverse/ggplot2", + "BugReports": "https://github.com/tidyverse/ggplot2/issues", + "Depends": [ + "R (>= 3.5)" + ], + "Imports": [ + "cli", + "glue", + "grDevices", + "grid", + "gtable (>= 0.1.1)", + "isoband", + "lifecycle (> 1.0.1)", + "MASS", + "mgcv", + "rlang (>= 1.1.0)", + "scales (>= 1.3.0)", + "stats", + "tibble", + "vctrs (>= 0.6.0)", + "withr (>= 2.5.0)" + ], + "Suggests": [ + "covr", + "dplyr", + "ggplot2movies", + "hexbin", + "Hmisc", + "knitr", + "mapproj", + "maps", + "multcomp", + "munsell", + "nlme", + "profvis", + "quantreg", + "ragg (>= 1.2.6)", + "RColorBrewer", + "rmarkdown", + "rpart", + "sf (>= 0.7-3)", + "svglite (>= 2.1.2)", + "testthat (>= 3.1.2)", + "vdiffr (>= 1.0.6)", + "xml2" + ], + "Enhances": [ + "sp" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "ggtext, tidyr, forcats, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.1", + "Collate": "'ggproto.R' 'ggplot-global.R' 'aaa-.R' 'aes-colour-fill-alpha.R' 'aes-evaluation.R' 'aes-group-order.R' 'aes-linetype-size-shape.R' 'aes-position.R' 'compat-plyr.R' 'utilities.R' 'aes.R' 'utilities-checks.R' 'legend-draw.R' 'geom-.R' 'annotation-custom.R' 'annotation-logticks.R' 'geom-polygon.R' 'geom-map.R' 'annotation-map.R' 'geom-raster.R' 'annotation-raster.R' 'annotation.R' 'autolayer.R' 'autoplot.R' 'axis-secondary.R' 'backports.R' 'bench.R' 'bin.R' 'coord-.R' 'coord-cartesian-.R' 'coord-fixed.R' 'coord-flip.R' 'coord-map.R' 'coord-munch.R' 'coord-polar.R' 'coord-quickmap.R' 'coord-radial.R' 'coord-sf.R' 'coord-transform.R' 'data.R' 'docs_layer.R' 'facet-.R' 'facet-grid-.R' 'facet-null.R' 'facet-wrap.R' 'fortify-lm.R' 'fortify-map.R' 'fortify-multcomp.R' 'fortify-spatial.R' 'fortify.R' 'stat-.R' 'geom-abline.R' 'geom-rect.R' 'geom-bar.R' 'geom-bin2d.R' 'geom-blank.R' 'geom-boxplot.R' 'geom-col.R' 'geom-path.R' 'geom-contour.R' 'geom-count.R' 'geom-crossbar.R' 'geom-segment.R' 'geom-curve.R' 'geom-defaults.R' 'geom-ribbon.R' 'geom-density.R' 'geom-density2d.R' 'geom-dotplot.R' 'geom-errorbar.R' 'geom-errorbarh.R' 'geom-freqpoly.R' 'geom-function.R' 'geom-hex.R' 'geom-histogram.R' 'geom-hline.R' 'geom-jitter.R' 'geom-label.R' 'geom-linerange.R' 'geom-point.R' 'geom-pointrange.R' 'geom-quantile.R' 'geom-rug.R' 'geom-sf.R' 'geom-smooth.R' 'geom-spoke.R' 'geom-text.R' 'geom-tile.R' 'geom-violin.R' 'geom-vline.R' 'ggplot2-package.R' 'grob-absolute.R' 'grob-dotstack.R' 'grob-null.R' 'grouping.R' 'theme-elements.R' 'guide-.R' 'guide-axis.R' 'guide-axis-logticks.R' 'guide-axis-stack.R' 'guide-axis-theta.R' 'guide-legend.R' 'guide-bins.R' 'guide-colorbar.R' 'guide-colorsteps.R' 'guide-custom.R' 'layer.R' 'guide-none.R' 'guide-old.R' 'guides-.R' 'guides-grid.R' 'hexbin.R' 'import-standalone-obj-type.R' 'import-standalone-types-check.R' 'labeller.R' 'labels.R' 'layer-sf.R' 'layout.R' 'limits.R' 'margins.R' 'performance.R' 'plot-build.R' 'plot-construction.R' 'plot-last.R' 'plot.R' 'position-.R' 'position-collide.R' 'position-dodge.R' 'position-dodge2.R' 'position-identity.R' 'position-jitter.R' 'position-jitterdodge.R' 'position-nudge.R' 'position-stack.R' 'quick-plot.R' 'reshape-add-margins.R' 'save.R' 'scale-.R' 'scale-alpha.R' 'scale-binned.R' 'scale-brewer.R' 'scale-colour.R' 'scale-continuous.R' 'scale-date.R' 'scale-discrete-.R' 'scale-expansion.R' 'scale-gradient.R' 'scale-grey.R' 'scale-hue.R' 'scale-identity.R' 'scale-linetype.R' 'scale-linewidth.R' 'scale-manual.R' 'scale-shape.R' 'scale-size.R' 'scale-steps.R' 'scale-type.R' 'scale-view.R' 'scale-viridis.R' 'scales-.R' 'stat-align.R' 'stat-bin.R' 'stat-bin2d.R' 'stat-bindot.R' 'stat-binhex.R' 'stat-boxplot.R' 'stat-contour.R' 'stat-count.R' 'stat-density-2d.R' 'stat-density.R' 'stat-ecdf.R' 'stat-ellipse.R' 'stat-function.R' 'stat-identity.R' 'stat-qq-line.R' 'stat-qq.R' 'stat-quantilemethods.R' 'stat-sf-coordinates.R' 'stat-sf.R' 'stat-smooth-methods.R' 'stat-smooth.R' 'stat-sum.R' 'stat-summary-2d.R' 'stat-summary-bin.R' 'stat-summary-hex.R' 'stat-summary.R' 'stat-unique.R' 'stat-ydensity.R' 'summarise-plot.R' 'summary.R' 'theme.R' 'theme-defaults.R' 'theme-current.R' 'utilities-break.R' 'utilities-grid.R' 'utilities-help.R' 'utilities-matrix.R' 'utilities-patterns.R' 'utilities-resolution.R' 'utilities-tidy-eval.R' 'zxx.R' 'zzz.R'", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut] (), Winston Chang [aut] (), Lionel Henry [aut], Thomas Lin Pedersen [aut, cre] (), Kohske Takahashi [aut], Claus Wilke [aut] (), Kara Woo [aut] (), Hiroaki Yutani [aut] (), Dewey Dunnington [aut] (), Teun van den Brand [aut] (), Posit, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN" + }, + "globals": { + "Package": "globals", + "Version": "0.16.3", + "Source": "Repository", + "Depends": [ + "R (>= 3.1.2)" + ], + "Imports": [ + "codetools" + ], + "Title": "Identify Global Objects in R Expressions", + "Authors@R": "c( person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email=\"henrikb@braju.com\"), person(\"Davis\",\"Vaughan\", role=\"ctb\", email=\"davis@rstudio.com\"))", + "Description": "Identifies global (\"unknown\" or \"free\") objects in R expressions by code inspection using various strategies (ordered, liberal, or conservative). The objective of this package is to make it as simple as possible to identify global objects for the purpose of exporting them in parallel, distributed compute environments.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "ByteCompile": "TRUE", + "URL": "https://globals.futureverse.org, https://github.com/HenrikBengtsson/globals", + "BugReports": "https://github.com/HenrikBengtsson/globals/issues", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "no", + "Author": "Henrik Bengtsson [aut, cre, cph], Davis Vaughan [ctb]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN" + }, + "glue": { + "Package": "glue", + "Version": "1.8.0", + "Source": "Repository", + "Title": "Interpreted String Literals", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "An implementation of interpreted string literals, inspired by Python's Literal String Interpolation and Docstrings and Julia's Triple-Quoted String Literals .", + "License": "MIT + file LICENSE", + "URL": "https://glue.tidyverse.org/, https://github.com/tidyverse/glue", + "BugReports": "https://github.com/tidyverse/glue/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "methods" + ], + "Suggests": [ + "crayon", + "DBI (>= 1.2.0)", + "dplyr", + "knitr", + "magrittr", + "rlang", + "rmarkdown", + "RSQLite", + "testthat (>= 3.2.0)", + "vctrs (>= 0.3.0)", + "waldo (>= 0.5.3)", + "withr" + ], + "VignetteBuilder": "knitr", + "ByteCompile": "true", + "Config/Needs/website": "bench, forcats, ggbeeswarm, ggplot2, R.utils, rprintf, tidyr, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Jim Hester [aut] (), Jennifer Bryan [aut, cre] (), Posit Software, PBC [cph, fnd]", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN" + }, + "gower": { + "Package": "gower", + "Version": "1.0.2", + "Source": "Repository", + "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\") , person(\"David\", \"Turner\", role=\"ctb\"))", + "Description": "Compute Gower's distance (or similarity) coefficient between records. Compute the top-n matches between records. Core algorithms are executed in parallel on systems supporting OpenMP.", + "URL": "https://github.com/markvanderloo/gower", + "BugReports": "https://github.com/markvanderloo/gower/issues", + "Suggests": [ + "tinytest (>= 0.9.3)" + ], + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Mark van der Loo [aut, cre], David Turner [ctb]", + "Repository": "CRAN" + }, + "gtable": { + "Package": "gtable", + "Version": "0.3.6", + "Source": "Repository", + "Title": "Arrange 'Grobs' in Tables", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Tools to make it easier to work with \"tables\" of 'grobs'. The 'gtable' package defines a 'gtable' grob class that specifies a grid along with a list of grobs and their placement in the grid. Further the package makes it easy to manipulate and combine 'gtable' objects so that complex compositions can be built up sequentially.", + "License": "MIT + file LICENSE", + "URL": "https://gtable.r-lib.org, https://github.com/r-lib/gtable", + "BugReports": "https://github.com/r-lib/gtable/issues", + "Depends": [ + "R (>= 4.0)" + ], + "Imports": [ + "cli", + "glue", + "grid", + "lifecycle", + "rlang (>= 1.1.0)", + "stats" + ], + "Suggests": [ + "covr", + "ggplot2", + "knitr", + "profvis", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2024-10-25", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Thomas Lin Pedersen [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN" + }, + "hardhat": { + "Package": "hardhat", + "Version": "1.4.1", + "Source": "Repository", + "Title": "Construct Modeling Packages", + "Authors@R": "c( person(\"Hannah\", \"Frick\", , \"hannah@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6049-5258\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"), person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Building modeling packages is hard. A large amount of effort generally goes into providing an implementation for a new method that is efficient, fast, and correct, but often less emphasis is put on the user interface. A good interface requires specialized knowledge about S3 methods and formulas, which the average package developer might not have. The goal of 'hardhat' is to reduce the burden around building new modeling packages by providing functionality for preprocessing, predicting, and validating input.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/tidymodels/hardhat, https://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)", + "sparsevctrs (>= 0.2.0)", + "tibble (>= 3.2.1)", + "vctrs (>= 0.6.0)" + ], + "Suggests": [ + "covr", + "crayon", + "devtools", + "knitr", + "Matrix", + "modeldata (>= 0.0.2)", + "recipes (>= 1.0.5)", + "rmarkdown (>= 2.3)", + "roxygen2", + "testthat (>= 3.0.0)", + "usethis (>= 2.1.5)", + "withr (>= 3.0.0)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hannah Frick [aut, cre] (), Davis Vaughan [aut], Max Kuhn [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hannah Frick ", + "Repository": "CRAN" + }, + "here": { + "Package": "here", + "Version": "1.0.1", + "Source": "Repository", + "Title": "A Simpler Way to Find Your Files", + "Date": "2020-12-13", + "Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"krlmlr+r@mailbox.org\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Jennifer\", family = \"Bryan\", role = \"ctb\", email = \"jenny@rstudio.com\", comment = c(ORCID = \"0000-0002-6983-2759\")))", + "Description": "Constructs paths to your project's files. Declare the relative path of a file within your project with 'i_am()'. Use the 'here()' function as a drop-in replacement for 'file.path()', it 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", + "rlang", + "rmarkdown", + "testthat", + "uuid", + "withr" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.1.1.9000", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Kirill Müller [aut, cre] (), Jennifer Bryan [ctb] ()", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "highr": { + "Package": "highr", + "Version": "0.11", + "Source": "Repository", + "Type": "Package", + "Title": "Syntax Highlighting for R Source Code", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Yixuan\", \"Qiu\", role = \"aut\"), person(\"Christopher\", \"Gandrud\", role = \"ctb\"), person(\"Qiang\", \"Li\", role = \"ctb\") )", + "Description": "Provides syntax highlighting for R source code. Currently it supports LaTeX and HTML output. Source code of other languages is supported via 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.3.1", + "NeedsCompilation": "no", + "Author": "Yihui Xie [aut, cre] (), Yixuan Qiu [aut], Christopher Gandrud [ctb], Qiang Li [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "hms": { + "Package": "hms", + "Version": "1.1.3", + "Source": "Repository", + "Title": "Pretty Time of Day", + "Date": "2023-03-21", + "Authors@R": "c( person(\"Kirill\", \"Müller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(\"R Consortium\", role = \"fnd\"), person(\"RStudio\", role = \"fnd\") )", + "Description": "Implements an S3 class for storing and formatting time-of-day values, based on the 'difftime' class.", + "Imports": [ + "lifecycle", + "methods", + "pkgconfig", + "rlang (>= 1.0.2)", + "vctrs (>= 0.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", + "Author": "Kirill Müller [aut, cre] (), R Consortium [fnd], RStudio [fnd]", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "htmltools": { + "Package": "htmltools", + "Version": "0.5.8.1", + "Source": "Repository", + "Type": "Package", + "Title": "Tools for HTML", + "Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Yihui\", \"Xie\", , \"yihui@posit.co\", role = \"aut\"), person(\"Jeff\", \"Allen\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Tools for HTML generation and output.", + "License": "GPL (>= 2)", + "URL": "https://github.com/rstudio/htmltools, https://rstudio.github.io/htmltools/", + "BugReports": "https://github.com/rstudio/htmltools/issues", + "Depends": [ + "R (>= 2.14.1)" + ], + "Imports": [ + "base64enc", + "digest", + "fastmap (>= 1.1.0)", + "grDevices", + "rlang (>= 1.0.0)", + "utils" + ], + "Suggests": [ + "Cairo", + "markdown", + "ragg", + "shiny", + "testthat", + "withr" + ], + "Enhances": [ + "knitr" + ], + "Config/Needs/check": "knitr", + "Config/Needs/website": "rstudio/quillt, bench", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Collate": "'colors.R' 'fill.R' 'html_dependency.R' 'html_escape.R' 'html_print.R' 'htmltools-package.R' 'images.R' 'known_tags.R' 'selector.R' 'staticimports.R' 'tag_query.R' 'utils.R' 'tags.R' 'template.R'", + "NeedsCompilation": "yes", + "Author": "Joe Cheng [aut], Carson Sievert [aut, cre] (), Barret Schloerke [aut] (), Winston Chang [aut] (), Yihui Xie [aut], Jeff Allen [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "htmlwidgets": { + "Package": "htmlwidgets", + "Version": "1.6.4", + "Source": "Repository", + "Type": "Package", + "Title": "HTML Widgets for R", + "Authors@R": "c( person(\"Ramnath\", \"Vaidyanathan\", role = c(\"aut\", \"cph\")), person(\"Yihui\", \"Xie\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Kenton\", \"Russell\", role = c(\"aut\", \"cph\")), person(\"Ellis\", \"Hughes\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A framework for creating HTML widgets that render in various contexts including the R console, 'R Markdown' documents, and 'Shiny' web applications.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/ramnathv/htmlwidgets", + "BugReports": "https://github.com/ramnathv/htmlwidgets/issues", + "Imports": [ + "grDevices", + "htmltools (>= 0.5.7)", + "jsonlite (>= 0.9.16)", + "knitr (>= 1.8)", + "rmarkdown", + "yaml" + ], + "Suggests": [ + "testthat" + ], + "Enhances": [ + "shiny (>= 1.1)" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Ramnath Vaidyanathan [aut, cph], Yihui Xie [aut], JJ Allaire [aut], Joe Cheng [aut], Carson Sievert [aut, cre] (), Kenton Russell [aut, cph], Ellis Hughes [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "httpuv": { + "Package": "httpuv", + "Version": "1.6.15", + "Source": "Repository", + "Type": "Package", + "Title": "HTTP and WebSocket Server Library", + "Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit, PBC\", \"fnd\", role = \"cph\"), person(\"Hector\", \"Corrada Bravo\", role = \"ctb\"), person(\"Jeroen\", \"Ooms\", role = \"ctb\"), person(\"Andrzej\", \"Krzemienski\", role = \"cph\", comment = \"optional.hpp\"), person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library, see src/libuv/AUTHORS file\"), person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file\"), person(\"Niels\", \"Provos\", role = \"cph\", comment = \"libuv subcomponent: tree.h\"), person(\"Internet Systems Consortium, Inc.\", role = \"cph\", comment = \"libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c\"), person(\"Alexander\", \"Chemeris\", role = \"cph\", comment = \"libuv subcomponent: stdint-msvc2008.h (from msinttypes)\"), person(\"Google, Inc.\", role = \"cph\", comment = \"libuv subcomponent: pthread-fixes.c\"), person(\"Sony Mobile Communcations AB\", role = \"cph\", comment = \"libuv subcomponent: pthread-fixes.c\"), person(\"Berkeley Software Design Inc.\", role = \"cph\", comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"), person(\"Kenneth\", \"MacKay\", role = \"cph\", comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"), person(\"Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016)\", role = \"cph\", comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"), person(\"Steve\", \"Reid\", role = \"aut\", comment = \"SHA-1 implementation\"), person(\"James\", \"Brown\", role = \"aut\", comment = \"SHA-1 implementation\"), person(\"Bob\", \"Trower\", role = \"aut\", comment = \"base64 implementation\"), person(\"Alexander\", \"Peslyak\", role = \"aut\", comment = \"MD5 implementation\"), person(\"Trantor Standard Systems\", role = \"cph\", comment = \"base64 implementation\"), person(\"Igor\", \"Sysoev\", role = \"cph\", comment = \"http-parser\") )", + "Description": "Provides low-level socket and protocol support for handling HTTP and WebSocket requests directly from within R. It is primarily intended as a building block for other packages, rather than making it particularly easy to create complete web applications using httpuv alone. httpuv is built on top of the libuv and http-parser C libraries, both of which were developed by Joyent, Inc. (See LICENSE file for libuv and http-parser license information.)", + "License": "GPL (>= 2) | file LICENSE", + "URL": "https://github.com/rstudio/httpuv", + "BugReports": "https://github.com/rstudio/httpuv/issues", + "Depends": [ + "R (>= 2.15.1)" + ], + "Imports": [ + "later (>= 0.8.0)", + "promises", + "R6", + "Rcpp (>= 1.0.7)", + "utils" + ], + "Suggests": [ + "callr", + "curl", + "testthat", + "websocket" + ], + "LinkingTo": [ + "later", + "Rcpp" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "SystemRequirements": "GNU make, zlib", + "Collate": "'RcppExports.R' 'httpuv.R' 'random_port.R' 'server.R' 'staticServer.R' 'static_paths.R' 'utils.R'", + "NeedsCompilation": "yes", + "Author": "Joe Cheng [aut], Winston Chang [aut, cre], Posit, PBC fnd [cph], Hector Corrada Bravo [ctb], Jeroen Ooms [ctb], Andrzej Krzemienski [cph] (optional.hpp), libuv project contributors [cph] (libuv library, see src/libuv/AUTHORS file), Joyent, Inc. and other Node contributors [cph] (libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file), Niels Provos [cph] (libuv subcomponent: tree.h), Internet Systems Consortium, Inc. [cph] (libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c), Alexander Chemeris [cph] (libuv subcomponent: stdint-msvc2008.h (from msinttypes)), Google, Inc. [cph] (libuv subcomponent: pthread-fixes.c), Sony Mobile Communcations AB [cph] (libuv subcomponent: pthread-fixes.c), Berkeley Software Design Inc. [cph] (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c), Kenneth MacKay [cph] (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c), Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016) [cph] (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c), Steve Reid [aut] (SHA-1 implementation), James Brown [aut] (SHA-1 implementation), Bob Trower [aut] (base64 implementation), Alexander Peslyak [aut] (MD5 implementation), Trantor Standard Systems [cph] (base64 implementation), Igor Sysoev [cph] (http-parser)", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "httr": { + "Package": "httr", + "Version": "1.4.7", + "Source": "Repository", + "Title": "Tools for Working with URLs and HTTP", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Useful tools for working with HTTP organised by HTTP verbs (GET(), POST(), etc). Configuration functions make it easy to control additional request components (authenticate(), add_headers() and so on).", + "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 (>= 0.8.0)", + "xml2" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], Posit, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "imola": { + "Package": "imola", + "Version": "0.5.0", + "Source": "Repository", + "Type": "Package", + "Title": "CSS Layouts (Grid and Flexbox) Implementation for R/Shiny", + "Authors@R": "person(\"Pedro\", \"Silva\", email = \"pedrocoutinhosilva@gmail.com\", role = c(\"aut\", \"cre\"))", + "Description": "Allows easy creation of CSS layouts (grid and flexbox) directly from R without added CSS.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/pedrocoutinhosilva/imola", + "Encoding": "UTF-8", + "VignetteBuilder": "knitr", + "Imports": [ + "shiny", + "htmltools", + "magrittr", + "stringi", + "glue", + "yaml" + ], + "Suggests": [ + "testthat (>= 3.0.0)", + "rvest", + "devtools", + "covr", + "rmarkdown", + "knitr" + ], + "RoxygenNote": "7.1.2", + "Config/testthat/edition": "3", + "Language": "en-US", + "NeedsCompilation": "no", + "Author": "Pedro Silva [aut, cre]", + "Maintainer": "Pedro Silva ", + "Repository": "CRAN" + }, + "ipred": { + "Package": "ipred", + "Version": "0.9-15", + "Source": "Repository", + "Title": "Improved Predictors", + "Date": "2024-07-18", + "Authors@R": "c(person(\"Andrea\", \"Peters\", role = \"aut\"), person(\"Torsten\", \"Hothorn\", role = c(\"aut\", \"cre\"), email = \"Torsten.Hothorn@R-project.org\"), person(\"Brian D.\", \"Ripley\", role = \"ctb\"), person(\"Terry\", \"Therneau\", role = \"ctb\"), person(\"Beth\", \"Atkinson\", role = \"ctb\"))", + "Description": "Improved predictive models by indirect classification and bagging for classification, regression and survival problems as 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", + "Author": "Andrea Peters [aut], Torsten Hothorn [aut, cre], Brian D. Ripley [ctb], Terry Therneau [ctb], Beth Atkinson [ctb]", + "Maintainer": "Torsten Hothorn ", + "Repository": "CRAN" + }, + "isoband": { + "Package": "isoband", + "Version": "0.2.7", + "Source": "Repository", + "Title": "Generate Isolines and Isobands from Regularly Spaced Elevation Grids", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Claus O.\", \"Wilke\", , \"wilke@austin.utexas.edu\", role = \"aut\", comment = c(\"Original author\", ORCID = \"0000-0002-7470-9261\")), person(\"Thomas Lin\", \"Pedersen\", , \"thomasp85@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-5147-4711\")) )", + "Description": "A fast C++ implementation to generate contour lines (isolines) and contour polygons (isobands) from regularly spaced grids containing 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", + "testthat", + "xml2" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "SystemRequirements": "C++11", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre] (), Claus O. Wilke [aut] (Original author, ), Thomas Lin Pedersen [aut] ()", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "jose": { + "Package": "jose", + "Version": "1.2.1", + "Source": "Repository", + "Type": "Package", + "Title": "JavaScript Object Signing and Encryption", + "Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\"))", + "Description": "Read and write JSON Web Keys (JWK, rfc7517), generate and verify JSON Web Signatures (JWS, rfc7515) and encode/decode JSON Web Tokens (JWT, rfc7519) . These standards provide modern signing and encryption formats that are natively supported by browsers via the JavaScript WebCryptoAPI , and used by services like OAuth 2.0, LetsEncrypt, and Github Apps.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.r-universe.dev/jose", + "BugReports": "https://github.com/r-lib/jose/issues", + "Depends": [ + "openssl (>= 1.2.1)" + ], + "Imports": [ + "jsonlite" + ], + "RoxygenNote": "7.1.2", + "VignetteBuilder": "knitr", + "Suggests": [ + "spelling", + "testthat", + "knitr", + "rmarkdown" + ], + "Encoding": "UTF-8", + "Language": "en-US", + "NeedsCompilation": "no", + "Author": "Jeroen Ooms [aut, cre] ()", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "jquerylib": { + "Package": "jquerylib", + "Version": "0.1.4", + "Source": "Repository", + "Title": "Obtain 'jQuery' as an HTML Dependency Object", + "Authors@R": "c( person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"), person(family = \"RStudio\", role = \"cph\"), person(family = \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library and jQuery UI library\"), person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/lib/jquery-AUTHORS.txt\") )", + "Description": "Obtain any major version of 'jQuery' () and use it in any webpage generated by 'htmltools' (e.g. 'shiny', 'htmlwidgets', and 'rmarkdown'). Most 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", + "Author": "Carson Sievert [aut, cre] (), Joe Cheng [aut], RStudio [cph], jQuery Foundation [cph] (jQuery library and jQuery UI library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/lib/jquery-AUTHORS.txt)", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "jsonlite": { + "Package": "jsonlite", + "Version": "1.8.9", + "Source": "Repository", + "Title": "A Simple and Robust JSON Parser and Generator for R", + "License": "MIT + file LICENSE", + "Depends": [ + "methods" + ], + "Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Duncan\", \"Temple Lang\", role = \"ctb\"), person(\"Lloyd\", \"Hilaiel\", role = \"cph\", comment=\"author of bundled libyajl\"))", + "URL": "https://jeroen.r-universe.dev/jsonlite https://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 data and the web. Offers simple, flexible tools for working with JSON in R, and is particularly powerful for building pipelines and interacting with a web API. The implementation is based on the mapping described in the vignette (Ooms, 2014). In addition to converting JSON data from/to R objects, 'jsonlite' contains functions to stream, validate, and prettify JSON data. The unit tests included with the package verify that all edge cases are encoded and decoded consistently for 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", + "Author": "Jeroen Ooms [aut, cre] (), Duncan Temple Lang [ctb], Lloyd Hilaiel [cph] (author of bundled libyajl)", + "Repository": "CRAN" + }, + "knitr": { + "Package": "knitr", + "Version": "1.49", + "Source": "Repository", + "Type": "Package", + "Title": "A General-Purpose Package for Dynamic Report Generation in R", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Abhraneel\", \"Sarma\", role = \"ctb\"), person(\"Adam\", \"Vogt\", role = \"ctb\"), person(\"Alastair\", \"Andrew\", role = \"ctb\"), person(\"Alex\", \"Zvoleff\", role = \"ctb\"), person(\"Amar\", \"Al-Zubaidi\", role = \"ctb\"), person(\"Andre\", \"Simon\", role = \"ctb\", comment = \"the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de\"), person(\"Aron\", \"Atkins\", role = \"ctb\"), person(\"Aaron\", \"Wolen\", role = \"ctb\"), person(\"Ashley\", \"Manton\", role = \"ctb\"), person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")), person(\"Ben\", \"Baumer\", role = \"ctb\"), person(\"Brian\", \"Diggs\", role = \"ctb\"), person(\"Brian\", \"Zhang\", role = \"ctb\"), person(\"Bulat\", \"Yapparov\", role = \"ctb\"), person(\"Cassio\", \"Pereira\", role = \"ctb\"), person(\"Christophe\", \"Dervieux\", role = \"ctb\"), person(\"David\", \"Hall\", role = \"ctb\"), person(\"David\", \"Hugh-Jones\", role = \"ctb\"), person(\"David\", \"Robinson\", role = \"ctb\"), person(\"Doug\", \"Hemken\", role = \"ctb\"), person(\"Duncan\", \"Murdoch\", role = \"ctb\"), person(\"Elio\", \"Campitelli\", role = \"ctb\"), person(\"Ellis\", \"Hughes\", role = \"ctb\"), person(\"Emily\", \"Riederer\", role = \"ctb\"), person(\"Fabian\", \"Hirschmann\", role = \"ctb\"), person(\"Fitch\", \"Simeon\", role = \"ctb\"), person(\"Forest\", \"Fang\", role = \"ctb\"), person(c(\"Frank\", \"E\", \"Harrell\", \"Jr\"), role = \"ctb\", comment = \"the Sweavel package at inst/misc/Sweavel.sty\"), person(\"Garrick\", \"Aden-Buie\", role = \"ctb\"), person(\"Gregoire\", \"Detrez\", role = \"ctb\"), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Hao\", \"Zhu\", role = \"ctb\"), person(\"Heewon\", \"Jeon\", role = \"ctb\"), person(\"Henrik\", \"Bengtsson\", role = \"ctb\"), person(\"Hiroaki\", \"Yutani\", role = \"ctb\"), person(\"Ian\", \"Lyttle\", role = \"ctb\"), person(\"Hodges\", \"Daniel\", role = \"ctb\"), person(\"Jacob\", \"Bien\", role = \"ctb\"), person(\"Jake\", \"Burkhead\", role = \"ctb\"), person(\"James\", \"Manton\", role = \"ctb\"), person(\"Jared\", \"Lander\", role = \"ctb\"), person(\"Jason\", \"Punyon\", role = \"ctb\"), person(\"Javier\", \"Luraschi\", role = \"ctb\"), person(\"Jeff\", \"Arnold\", role = \"ctb\"), person(\"Jenny\", \"Bryan\", role = \"ctb\"), person(\"Jeremy\", \"Ashkenas\", role = c(\"ctb\", \"cph\"), comment = \"the CSS file at inst/misc/docco-classic.css\"), person(\"Jeremy\", \"Stephens\", role = \"ctb\"), person(\"Jim\", \"Hester\", role = \"ctb\"), person(\"Joe\", \"Cheng\", role = \"ctb\"), person(\"Johannes\", \"Ranke\", role = \"ctb\"), person(\"John\", \"Honaker\", role = \"ctb\"), person(\"John\", \"Muschelli\", role = \"ctb\"), person(\"Jonathan\", \"Keane\", role = \"ctb\"), person(\"JJ\", \"Allaire\", role = \"ctb\"), person(\"Johan\", \"Toloe\", role = \"ctb\"), person(\"Jonathan\", \"Sidi\", role = \"ctb\"), person(\"Joseph\", \"Larmarange\", role = \"ctb\"), person(\"Julien\", \"Barnier\", role = \"ctb\"), person(\"Kaiyin\", \"Zhong\", role = \"ctb\"), person(\"Kamil\", \"Slowikowski\", role = \"ctb\"), person(\"Karl\", \"Forner\", role = \"ctb\"), person(c(\"Kevin\", \"K.\"), \"Smith\", role = \"ctb\"), person(\"Kirill\", \"Mueller\", role = \"ctb\"), person(\"Kohske\", \"Takahashi\", role = \"ctb\"), person(\"Lorenz\", \"Walthert\", role = \"ctb\"), person(\"Lucas\", \"Gallindo\", role = \"ctb\"), person(\"Marius\", \"Hofert\", role = \"ctb\"), person(\"Martin\", \"Modrák\", role = \"ctb\"), person(\"Michael\", \"Chirico\", role = \"ctb\"), person(\"Michael\", \"Friendly\", role = \"ctb\"), person(\"Michal\", \"Bojanowski\", role = \"ctb\"), person(\"Michel\", \"Kuhlmann\", role = \"ctb\"), person(\"Miller\", \"Patrick\", role = \"ctb\"), person(\"Nacho\", \"Caballero\", role = \"ctb\"), person(\"Nick\", \"Salkowski\", role = \"ctb\"), person(\"Niels Richard\", \"Hansen\", role = \"ctb\"), person(\"Noam\", \"Ross\", role = \"ctb\"), person(\"Obada\", \"Mahdi\", role = \"ctb\"), person(\"Pavel N.\", \"Krivitsky\", role = \"ctb\", comment=c(ORCID = \"0000-0002-9101-3362\")), person(\"Pedro\", \"Faria\", role = \"ctb\"), person(\"Qiang\", \"Li\", role = \"ctb\"), person(\"Ramnath\", \"Vaidyanathan\", role = \"ctb\"), person(\"Richard\", \"Cotton\", role = \"ctb\"), person(\"Robert\", \"Krzyzanowski\", role = \"ctb\"), person(\"Rodrigo\", \"Copetti\", role = \"ctb\"), person(\"Romain\", \"Francois\", role = \"ctb\"), person(\"Ruaridh\", \"Williamson\", role = \"ctb\"), person(\"Sagiru\", \"Mati\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1413-3974\")), person(\"Scott\", \"Kostyshak\", role = \"ctb\"), person(\"Sebastian\", \"Meyer\", role = \"ctb\"), person(\"Sietse\", \"Brouwer\", role = \"ctb\"), person(c(\"Simon\", \"de\"), \"Bernard\", role = \"ctb\"), person(\"Sylvain\", \"Rousseau\", role = \"ctb\"), person(\"Taiyun\", \"Wei\", role = \"ctb\"), person(\"Thibaut\", \"Assus\", role = \"ctb\"), person(\"Thibaut\", \"Lamadon\", role = \"ctb\"), person(\"Thomas\", \"Leeper\", role = \"ctb\"), person(\"Tim\", \"Mastny\", role = \"ctb\"), person(\"Tom\", \"Torsney-Weir\", role = \"ctb\"), person(\"Trevor\", \"Davis\", role = \"ctb\"), person(\"Viktoras\", \"Veitas\", role = \"ctb\"), person(\"Weicheng\", \"Zhu\", role = \"ctb\"), person(\"Wush\", \"Wu\", role = \"ctb\"), person(\"Zachary\", \"Foster\", role = \"ctb\"), person(\"Zhian N.\", \"Kamvar\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1458-7108\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides a general-purpose tool for dynamic report generation in R using Literate Programming techniques.", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "evaluate (>= 0.15)", + "highr (>= 0.11)", + "methods", + "tools", + "xfun (>= 0.48)", + "yaml (>= 2.1.19)" + ], + "Suggests": [ + "bslib", + "codetools", + "DBI (>= 0.4-1)", + "digest", + "formatR", + "gifski", + "gridSVG", + "htmlwidgets (>= 0.7)", + "jpeg", + "JuliaCall (>= 0.11.1)", + "magick", + "litedown", + "markdown (>= 1.3)", + "png", + "ragg", + "reticulate (>= 1.4)", + "rgl (>= 0.95.1201)", + "rlang", + "rmarkdown", + "sass", + "showtext", + "styler (>= 1.2.0)", + "targets (>= 0.6.0)", + "testit", + "tibble", + "tikzDevice (>= 0.10)", + "tinytex (>= 0.46)", + "webshot", + "rstudioapi", + "svglite" + ], + "License": "GPL", + "URL": "https://yihui.org/knitr/", + "BugReports": "https://github.com/yihui/knitr/issues", + "Encoding": "UTF-8", + "VignetteBuilder": "litedown, knitr", + "SystemRequirements": "Package vignettes based on R Markdown v2 or reStructuredText require Pandoc (http://pandoc.org). The function rst2pdf() requires rst2pdf (https://github.com/rst2pdf/rst2pdf).", + "Collate": "'block.R' 'cache.R' 'utils.R' 'citation.R' 'hooks-html.R' 'plot.R' 'defaults.R' 'concordance.R' 'engine.R' 'highlight.R' 'themes.R' 'header.R' 'hooks-asciidoc.R' 'hooks-chunk.R' 'hooks-extra.R' 'hooks-latex.R' 'hooks-md.R' 'hooks-rst.R' 'hooks-textile.R' 'hooks.R' 'output.R' 'package.R' 'pandoc.R' 'params.R' 'parser.R' 'pattern.R' 'rocco.R' 'spin.R' 'table.R' 'template.R' 'utils-conversion.R' 'utils-rd2html.R' 'utils-string.R' 'utils-sweave.R' 'utils-upload.R' 'utils-vignettes.R' 'zzz.R'", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Yihui Xie [aut, cre] (), Abhraneel Sarma [ctb], Adam Vogt [ctb], Alastair Andrew [ctb], Alex Zvoleff [ctb], Amar Al-Zubaidi [ctb], Andre Simon [ctb] (the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de), Aron Atkins [ctb], Aaron Wolen [ctb], Ashley Manton [ctb], Atsushi Yasumoto [ctb] (), Ben Baumer [ctb], Brian Diggs [ctb], Brian Zhang [ctb], Bulat Yapparov [ctb], Cassio Pereira [ctb], Christophe Dervieux [ctb], David Hall [ctb], David Hugh-Jones [ctb], David Robinson [ctb], Doug Hemken [ctb], Duncan Murdoch [ctb], Elio Campitelli [ctb], Ellis Hughes [ctb], Emily Riederer [ctb], Fabian Hirschmann [ctb], Fitch Simeon [ctb], Forest Fang [ctb], Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty), Garrick Aden-Buie [ctb], Gregoire Detrez [ctb], Hadley Wickham [ctb], Hao Zhu [ctb], Heewon Jeon [ctb], Henrik Bengtsson [ctb], Hiroaki Yutani [ctb], Ian Lyttle [ctb], Hodges Daniel [ctb], Jacob Bien [ctb], Jake Burkhead [ctb], James Manton [ctb], Jared Lander [ctb], Jason Punyon [ctb], Javier Luraschi [ctb], Jeff Arnold [ctb], Jenny Bryan [ctb], Jeremy Ashkenas [ctb, cph] (the CSS file at inst/misc/docco-classic.css), Jeremy Stephens [ctb], Jim Hester [ctb], Joe Cheng [ctb], Johannes Ranke [ctb], John Honaker [ctb], John Muschelli [ctb], Jonathan Keane [ctb], JJ Allaire [ctb], Johan Toloe [ctb], Jonathan Sidi [ctb], Joseph Larmarange [ctb], Julien Barnier [ctb], Kaiyin Zhong [ctb], Kamil Slowikowski [ctb], Karl Forner [ctb], Kevin K. Smith [ctb], Kirill Mueller [ctb], Kohske Takahashi [ctb], Lorenz Walthert [ctb], Lucas Gallindo [ctb], Marius Hofert [ctb], Martin Modrák [ctb], Michael Chirico [ctb], Michael Friendly [ctb], Michal Bojanowski [ctb], Michel Kuhlmann [ctb], Miller Patrick [ctb], Nacho Caballero [ctb], Nick Salkowski [ctb], Niels Richard Hansen [ctb], Noam Ross [ctb], Obada Mahdi [ctb], Pavel N. Krivitsky [ctb] (), Pedro Faria [ctb], Qiang Li [ctb], Ramnath Vaidyanathan [ctb], Richard Cotton [ctb], Robert Krzyzanowski [ctb], Rodrigo Copetti [ctb], Romain Francois [ctb], Ruaridh Williamson [ctb], Sagiru Mati [ctb] (), Scott Kostyshak [ctb], Sebastian Meyer [ctb], Sietse Brouwer [ctb], Simon de Bernard [ctb], Sylvain Rousseau [ctb], Taiyun Wei [ctb], Thibaut Assus [ctb], Thibaut Lamadon [ctb], Thomas Leeper [ctb], Tim Mastny [ctb], Tom Torsney-Weir [ctb], Trevor Davis [ctb], Viktoras Veitas [ctb], Weicheng Zhu [ctb], Wush Wu [ctb], Zachary Foster [ctb], Zhian N. Kamvar [ctb] (), Posit Software, PBC [cph, fnd]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "labeling": { + "Package": "labeling", + "Version": "0.4.3", + "Source": "Repository", + "Type": "Package", + "Title": "Axis Labeling", + "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" + ], + "Repository": "CRAN" + }, + "later": { + "Package": "later", + "Version": "1.4.1", + "Source": "Repository", + "Type": "Package", + "Title": "Utilities for Scheduling Functions to Execute Later with Event Loops", + "Authors@R": "c( person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\"), person(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"joe@posit.co\"), person(\"Charlie\", \"Gao\", role = c(\"aut\"), email = \"charlie.gao@shikokuchuo.net\", comment = c(ORCID = \"0000-0002-0750-061X\")), person(family = \"Posit Software, PBC\", role = \"cph\"), person(\"Marcus\", \"Geelnard\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\"), person(\"Evan\", \"Nemerson\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\") )", + "Description": "Executes arbitrary R or C functions some time after the current time, after the R execution stack has emptied. The functions are scheduled in 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.3.2", + "Suggests": [ + "knitr", + "nanonext", + "R6", + "rmarkdown", + "testthat (>= 2.1.0)" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Winston Chang [aut, cre], Joe Cheng [aut], Charlie Gao [aut] (), Posit Software, PBC [cph], Marcus Geelnard [ctb, cph] (TinyCThread library, https://tinycthread.github.io/), Evan Nemerson [ctb, cph] (TinyCThread library, https://tinycthread.github.io/)", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "lattice": { + "Package": "lattice", + "Version": "0.22-6", + "Source": "Repository", + "Date": "2024-03-20", + "Priority": "recommended", + "Title": "Trellis Graphics for R", + "Authors@R": "c(person(\"Deepayan\", \"Sarkar\", role = c(\"aut\", \"cre\"), email = \"deepayan.sarkar@r-project.org\", comment = c(ORCID = \"0000-0003-4107-1553\")), person(\"Felix\", \"Andrews\", role = \"ctb\"), person(\"Kevin\", \"Wright\", role = \"ctb\", comment = \"documentation\"), person(\"Neil\", \"Klepeis\", role = \"ctb\"), person(\"Johan\", \"Larsson\", role = \"ctb\", comment = \"miscellaneous improvements\"), person(\"Zhijian (Jason)\", \"Wen\", role = \"cph\", comment = \"filled contour code\"), person(\"Paul\", \"Murrell\", role = \"ctb\", email = \"paul@stat.auckland.ac.nz\"), person(\"Stefan\", \"Eng\", role = \"ctb\", comment = \"violin plot improvements\"), person(\"Achim\", \"Zeileis\", role = \"ctb\", comment = \"modern colors\"), person(\"Alexandre\", \"Courtiol\", role = \"ctb\", comment = \"generics for larrows, lpolygon, lrect and lsegments\") )", + "Description": "A powerful and elegant high-level data visualization system inspired by Trellis graphics, with an emphasis on multivariate data. Lattice is sufficient for typical graphics needs, and is also flexible enough to handle most nonstandard requirements. See ?Lattice for an introduction.", + "Depends": [ + "R (>= 4.0.0)" + ], + "Suggests": [ + "KernSmooth", + "MASS", + "latticeExtra", + "colorspace" + ], + "Imports": [ + "grid", + "grDevices", + "graphics", + "stats", + "utils" + ], + "Enhances": [ + "chron", + "zoo" + ], + "LazyLoad": "yes", + "LazyData": "yes", + "License": "GPL (>= 2)", + "URL": "https://lattice.r-forge.r-project.org/", + "BugReports": "https://github.com/deepayan/lattice/issues", + "NeedsCompilation": "yes", + "Author": "Deepayan Sarkar [aut, cre] (), Felix Andrews [ctb], Kevin Wright [ctb] (documentation), Neil Klepeis [ctb], Johan Larsson [ctb] (miscellaneous improvements), Zhijian (Jason) Wen [cph] (filled contour code), Paul Murrell [ctb], Stefan Eng [ctb] (violin plot improvements), Achim Zeileis [ctb] (modern colors), Alexandre Courtiol [ctb] (generics for larrows, lpolygon, lrect and lsegments)", + "Maintainer": "Deepayan Sarkar ", + "Repository": "CRAN" + }, + "lava": { + "Package": "lava", + "Version": "1.8.1", + "Source": "Repository", + "Type": "Package", + "Title": "Latent Variable Models", + "Authors@R": "c(person(\"Klaus K.\", \"Holst\", email=\"klaus@holst.it\", role=c(\"aut\", \"cre\")), person(\"Brice\", \"Ozenne\", role = \"ctb\"), person(\"Thomas\", \"Gerds\", role = \"ctb\"))", + "Author": "Klaus K. Holst [aut, cre], Brice Ozenne [ctb], Thomas Gerds [ctb]", + "Maintainer": "Klaus K. Holst ", + "Description": "A general implementation of Structural Equation Models with latent variables (MLE, 2SLS, and composite likelihood estimators) with both continuous, censored, and ordinal outcomes (Holst and Budtz-Joergensen (2013) ). Mixture latent variable models and non-linear latent variable models (Holst and Budtz-Joergensen (2020) ). The package also provides methods for graph exploration (d-separation, back-door criterion), simulation of general non-linear latent variable models, and estimation of influence functions for a broad range of statistical models.", + "URL": "https://kkholst.github.io/lava/", + "BugReports": "https://github.com/kkholst/lava/issues", + "License": "GPL-3", + "LazyLoad": "yes", + "Depends": [ + "R (>= 3.0)" + ], + "Imports": [ + "cli", + "future.apply", + "graphics", + "grDevices", + "methods", + "numDeriv", + "progressr", + "stats", + "survival", + "SQUAREM", + "utils" + ], + "Suggests": [ + "KernSmooth", + "Rgraphviz", + "data.table", + "ellipse", + "fields", + "geepack", + "graph", + "knitr", + "rmarkdown", + "igraph (>= 0.6)", + "lavaSearch2", + "lme4 (>= 1.1.35.1)", + "MASS", + "Matrix (>= 1.6.3)", + "mets (>= 1.1)", + "nlme", + "optimx", + "polycor", + "quantreg", + "rgl", + "targeted (>= 0.4)", + "testthat (>= 0.11)", + "visNetwork" + ], + "VignetteBuilder": "knitr,rmarkdown", + "ByteCompile": "yes", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "lazyeval": { + "Package": "lazyeval", + "Version": "0.2.2", + "Source": "Repository", + "Title": "Lazy (Non-Standard) Evaluation", + "Description": "An alternative approach to non-standard evaluation using formulas. Provides a full implementation of LISP style 'quasiquotation', making it easier to generate code with other code.", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", ,\"hadley@rstudio.com\", c(\"aut\", \"cre\")), person(\"RStudio\", role = \"cph\") )", + "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", + "Author": "Hadley Wickham [aut, cre], RStudio [cph]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "lifecycle": { + "Package": "lifecycle", + "Version": "1.0.4", + "Source": "Repository", + "Title": "Manage the Life Cycle of your Package Functions", + "Authors@R": "c( person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Manage the life cycle of your exported functions with shared conventions, documentation badges, and user-friendly deprecation warnings.", + "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.6)" + ], + "Imports": [ + "cli (>= 3.4.0)", + "glue", + "rlang (>= 1.1.0)" + ], + "Suggests": [ + "covr", + "crayon", + "knitr", + "lintr", + "rmarkdown", + "testthat (>= 3.0.1)", + "tibble", + "tidyverse", + "tools", + "vctrs", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate, usethis", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Author": "Lionel Henry [aut, cre], Hadley Wickham [aut] (), Posit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "lintr": { + "Package": "lintr", + "Version": "3.1.2", + "Source": "Repository", + "Title": "A 'Linter' for R Code", + "Authors@R": "c( person(\"Jim\", \"Hester\", , role = \"aut\"), person(\"Florent\", \"Angly\", role = \"aut\", comment = \"fangly\"), person(\"Russ\", \"Hyde\", role = \"aut\"), person(\"Michael\", \"Chirico\", email = \"michaelchirico4@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Kun\", \"Ren\", role = \"aut\"), person(\"Alexander\", \"Rosenstock\", role = \"aut\", comment = \"AshesITR\"), person(\"Indrajeet\", \"Patil\", , \"patilindrajeet.science@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0003-1995-6531\", Twitter = \"@patilindrajeets\")) )", + "Description": "Checks adherence to a given style, syntax errors and possible semantic issues. Supports on the fly checking of R code edited with 'RStudio IDE', 'Emacs', 'Vim', 'Sublime Text', 'Atom' and 'Visual Studio Code'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/lintr, https://lintr.r-lib.org", + "BugReports": "https://github.com/r-lib/lintr/issues", + "Depends": [ + "R (>= 3.5)" + ], + "Imports": [ + "backports (>= 1.1.7)", + "codetools", + "cyclocomp", + "digest", + "glue", + "knitr", + "rex", + "stats", + "utils", + "xml2 (>= 1.0.0)", + "xmlparsedata (>= 1.0.5)" + ], + "Suggests": [ + "bookdown", + "crayon", + "httr (>= 1.2.1)", + "jsonlite", + "mockery", + "patrick", + "rlang", + "rmarkdown", + "rstudioapi (>= 0.2)", + "testthat (>= 3.1.5)", + "tibble", + "tufte", + "withr (>= 2.5.0)" + ], + "Enhances": [ + "data.table" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Collate": "'make_linter_from_xpath.R' 'xp_utils.R' 'utils.R' 'AAA.R' 'T_and_F_symbol_linter.R' 'absolute_path_linter.R' 'actions.R' 'addins.R' 'any_duplicated_linter.R' 'any_is_na_linter.R' 'assignment_linter.R' 'backport_linter.R' 'boolean_arithmetic_linter.R' 'brace_linter.R' 'cache.R' 'class_equals_linter.R' 'commas_linter.R' 'comment_linters.R' 'comments.R' 'condition_message_linter.R' 'conjunct_test_linter.R' 'consecutive_assertion_linter.R' 'cyclocomp_linter.R' 'declared_functions.R' 'deprecated.R' 'duplicate_argument_linter.R' 'empty_assignment_linter.R' 'equals_na_linter.R' 'exclude.R' 'expect_comparison_linter.R' 'expect_identical_linter.R' 'expect_length_linter.R' 'expect_lint.R' 'expect_named_linter.R' 'expect_not_linter.R' 'expect_null_linter.R' 'expect_s3_class_linter.R' 'expect_s4_class_linter.R' 'expect_true_false_linter.R' 'expect_type_linter.R' 'extract.R' 'extraction_operator_linter.R' 'fixed_regex_linter.R' 'for_loop_index_linter.R' 'function_argument_linter.R' 'function_left_parentheses_linter.R' 'function_return_linter.R' 'get_source_expressions.R' 'ids_with_token.R' 'if_not_else_linter.R' 'ifelse_censor_linter.R' 'implicit_assignment_linter.R' 'implicit_integer_linter.R' 'indentation_linter.R' 'infix_spaces_linter.R' 'inner_combine_linter.R' 'is_lint_level.R' 'is_numeric_linter.R' 'keyword_quote_linter.R' 'length_levels_linter.R' 'length_test_linter.R' 'lengths_linter.R' 'library_call_linter.R' 'line_length_linter.R' 'lint.R' 'linter_tag_docs.R' 'linter_tags.R' 'lintr-deprecated.R' 'lintr-package.R' 'literal_coercion_linter.R' 'make_linter_from_regex.R' 'matrix_apply_linter.R' 'methods.R' 'missing_argument_linter.R' 'missing_package_linter.R' 'namespace.R' 'namespace_linter.R' 'nested_ifelse_linter.R' 'nonportable_path_linter.R' 'numeric_leading_zero_linter.R' 'object_length_linter.R' 'object_name_linter.R' 'object_usage_linter.R' 'outer_negation_linter.R' 'package_hooks_linter.R' 'paren_body_linter.R' 'paste_linter.R' 'path_utils.R' 'pipe_call_linter.R' 'pipe_consistency_linter.R' 'pipe_continuation_linter.R' 'quotes_linter.R' 'redundant_equals_linter.R' 'redundant_ifelse_linter.R' 'regex_subset_linter.R' 'repeat_linter.R' 'routine_registration_linter.R' 'scalar_in_linter.R' 'semicolon_linter.R' 'seq_linter.R' 'settings.R' 'settings_utils.R' 'shared_constants.R' 'sort_linter.R' 'spaces_inside_linter.R' 'spaces_left_parentheses_linter.R' 'sprintf_linter.R' 'string_boundary_linter.R' 'strings_as_factors_linter.R' 'system_file_linter.R' 'trailing_blank_lines_linter.R' 'trailing_whitespace_linter.R' 'tree_utils.R' 'undesirable_function_linter.R' 'undesirable_operator_linter.R' 'unnecessary_concatenation_linter.R' 'unnecessary_lambda_linter.R' 'unnecessary_nested_if_linter.R' 'unnecessary_placeholder_linter.R' 'unreachable_code_linter.R' 'unused_import_linter.R' 'use_lintr.R' 'vector_logic_linter.R' 'whitespace_linter.R' 'with.R' 'with_id.R' 'xml_nodes_to_lints.R' 'yoda_test_linter.R' 'zzz.R'", + "Language": "en-US", + "NeedsCompilation": "no", + "Author": "Jim Hester [aut], Florent Angly [aut] (fangly), Russ Hyde [aut], Michael Chirico [aut, cre], Kun Ren [aut], Alexander Rosenstock [aut] (AshesITR), Indrajeet Patil [aut] (, @patilindrajeets)", + "Maintainer": "Michael Chirico ", + "Repository": "CRAN" + }, + "listenv": { + "Package": "listenv", + "Version": "0.9.1", + "Source": "Repository", + "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\"), email = \"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, https://github.com/HenrikBengtsson/listenv", + "BugReports": "https://github.com/HenrikBengtsson/listenv/issues", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "no", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN" + }, + "lmtest": { + "Package": "lmtest", + "Version": "0.9-40", + "Source": "Repository", + "Title": "Testing Linear Regression Models", + "Date": "2022-03-21", + "Authors@R": "c(person(given = \"Torsten\", family = \"Hothorn\", role = \"aut\", email = \"Torsten.Hothorn@R-project.org\", comment = c(ORCID = \"0000-0001-8301-0471\")), person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\", comment = c(ORCID = \"0000-0003-0918-3766\")), person(given = c(\"Richard\", \"W.\"), family = \"Farebrother\", role = \"aut\", comment = \"pan.f\"), person(given = \"Clint\", family = \"Cummins\", role = \"aut\", comment = \"pan.f\"), person(given = \"Giovanni\", family = \"Millo\", role = \"ctb\"), person(given = \"David\", family = \"Mitchell\", role = \"ctb\"))", + "Description": "A collection of tests, data sets, and examples for diagnostic checking in linear regression models. Furthermore, some generic tools for inference in parametric models are provided.", + "LazyData": "yes", + "Depends": [ + "R (>= 3.0.0)", + "stats", + "zoo" + ], + "Suggests": [ + "car", + "strucchange", + "sandwich", + "dynlm", + "stats4", + "survival", + "AER" + ], + "Imports": [ + "graphics" + ], + "License": "GPL-2 | GPL-3", + "NeedsCompilation": "yes", + "Author": "Torsten Hothorn [aut] (), Achim Zeileis [aut, cre] (), Richard W. Farebrother [aut] (pan.f), Clint Cummins [aut] (pan.f), Giovanni Millo [ctb], David Mitchell [ctb]", + "Maintainer": "Achim Zeileis ", + "Repository": "CRAN" + }, + "logger": { + "Package": "logger", + "Version": "0.4.0", + "Source": "Repository", + "Type": "Package", + "Title": "A Lightweight, Modern and Flexible Logging Utility", + "Date": "2024-10-19", + "Authors@R": "c( person(\"Gergely\", \"Daróczi\", , \"daroczig@rapporter.net\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-3149-8537\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"System1\", role = \"fnd\") )", + "Description": "Inspired by the the 'futile.logger' R package and 'logging' Python module, this utility provides a flexible and extensible way of formatting and delivering log messages with low overhead.", + "License": "MIT + file LICENSE", + "URL": "https://daroczig.github.io/logger/", + "BugReports": "https://github.com/daroczig/logger/issues", + "Depends": [ + "R (>= 4.0.0)" + ], + "Imports": [ + "utils" + ], + "Suggests": [ + "botor", + "covr", + "crayon", + "devtools", + "glue", + "jsonlite", + "knitr", + "mirai (>= 1.3.0)", + "pander", + "parallel", + "R.utils", + "rmarkdown", + "roxygen2", + "RPushbullet", + "rsyslog", + "shiny", + "slackr (>= 1.4.1)", + "syslognet", + "telegram", + "testthat (>= 3.0.0)", + "withr" + ], + "Enhances": [ + "futile.logger", + "log4r", + "logging" + ], + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "TRUE", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Gergely Daróczi [aut, cre] (), Hadley Wickham [aut] (), System1 [fnd]", + "Maintainer": "Gergely Daróczi ", + "Repository": "CRAN" + }, + "lubridate": { + "Package": "lubridate", + "Version": "1.9.4", + "Source": "Repository", + "Type": "Package", + "Title": "Make Dealing with Dates a Little Easier", + "Authors@R": "c( person(\"Vitalie\", \"Spinu\", , \"spinuvit@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Garrett\", \"Grolemund\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Davis\", \"Vaughan\", role = \"ctb\"), person(\"Ian\", \"Lyttle\", role = \"ctb\"), person(\"Imanuel\", \"Costigan\", role = \"ctb\"), person(\"Jason\", \"Law\", role = \"ctb\"), person(\"Doug\", \"Mitarotonda\", role = \"ctb\"), person(\"Joseph\", \"Larmarange\", role = \"ctb\"), person(\"Jonathan\", \"Boiser\", role = \"ctb\"), person(\"Chel Hee\", \"Lee\", role = \"ctb\") )", + "Maintainer": "Vitalie Spinu ", + "Description": "Functions to work with date-times and time-spans: fast and user friendly parsing of date-time data, extraction and updating of components of a date-time (years, months, days, hours, minutes, and seconds), algebraic manipulation on date-time and time-span objects. The 'lubridate' package has a consistent and memorable syntax that makes working with dates easy and fun.", + "License": "GPL (>= 2)", + "URL": "https://lubridate.tidyverse.org, https://github.com/tidyverse/lubridate", + "BugReports": "https://github.com/tidyverse/lubridate/issues", + "Depends": [ + "methods", + "R (>= 3.2)" + ], + "Imports": [ + "generics", + "timechange (>= 0.3.0)" + ], + "Suggests": [ + "covr", + "knitr", + "rmarkdown", + "testthat (>= 2.1.0)", + "vctrs (>= 0.6.5)" + ], + "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. /usr/share/zoneinfo). On Windows the zoneinfo included with R is used.", + "Collate": "'Dates.r' 'POSIXt.r' 'util.r' 'parse.r' 'timespans.r' 'intervals.r' 'difftimes.r' 'durations.r' 'periods.r' 'accessors-date.R' 'accessors-day.r' 'accessors-dst.r' 'accessors-hour.r' 'accessors-minute.r' 'accessors-month.r' 'accessors-quarter.r' 'accessors-second.r' 'accessors-tz.r' 'accessors-week.r' 'accessors-year.r' 'am-pm.r' 'time-zones.r' 'numeric.r' 'coercion.r' 'constants.r' 'cyclic_encoding.r' 'data.r' 'decimal-dates.r' 'deprecated.r' 'format_ISO8601.r' 'guess.r' 'hidden.r' 'instants.r' 'leap-years.r' 'ops-addition.r' 'ops-compare.r' 'ops-division.r' 'ops-integer-division.r' 'ops-m+.r' 'ops-modulo.r' 'ops-multiplication.r' 'ops-subtraction.r' 'package.r' 'pretty.r' 'round.r' 'stamp.r' 'tzdir.R' 'update.r' 'vctrs.R' 'zzz.R'", + "NeedsCompilation": "yes", + "Author": "Vitalie Spinu [aut, cre], Garrett Grolemund [aut], Hadley Wickham [aut], Davis Vaughan [ctb], Ian Lyttle [ctb], Imanuel Costigan [ctb], Jason Law [ctb], Doug Mitarotonda [ctb], Joseph Larmarange [ctb], Jonathan Boiser [ctb], Chel Hee Lee [ctb]", + "Repository": "CRAN" + }, + "magrittr": { + "Package": "magrittr", + "Version": "2.0.3", + "Source": "Repository", + "Type": "Package", + "Title": "A Forward-Pipe Operator for R", + "Authors@R": "c( person(\"Stefan Milton\", \"Bache\", , \"stefan@stefanbache.dk\", role = c(\"aut\", \"cph\"), comment = \"Original author and creator of magrittr\"), person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = \"cre\"), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides a mechanism for chaining commands with a new forward-pipe operator, %>%. This operator will forward a value, or the result of an expression, into the next function call/expression. There is flexible support for the type of right-hand side expressions. For more information, see package vignette. To quote Rene Magritte, \"Ceci n'est pas un pipe.\"", + "License": "MIT + file LICENSE", + "URL": "https://magrittr.tidyverse.org, https://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", + "Author": "Stefan Milton Bache [aut, cph] (Original author and creator of magrittr), Hadley Wickham [aut], Lionel Henry [cre], RStudio [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "memoise": { + "Package": "memoise", + "Version": "2.0.1", + "Source": "Repository", + "Title": "'Memoisation' of Functions", + "Authors@R": "c(person(given = \"Hadley\", family = \"Wickham\", role = \"aut\", email = \"hadley@rstudio.com\"), person(given = \"Jim\", family = \"Hester\", role = \"aut\"), person(given = \"Winston\", family = \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@rstudio.com\"), person(given = \"Kirill\", family = \"Müller\", role = \"aut\", email = \"krlmlr+r@mailbox.org\"), person(given = \"Daniel\", family = \"Cook\", role = \"aut\", email = \"danielecook@gmail.com\"), person(given = \"Mark\", family = \"Edmondson\", role = \"ctb\", email = \"r@sunholo.com\"))", + "Description": "Cache the results of a function so that when you call it again with the same arguments it returns the previously computed value.", + "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", + "testthat" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Jim Hester [aut], Winston Chang [aut, cre], Kirill Müller [aut], Daniel Cook [aut], Mark Edmondson [ctb]", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "mgcv": { + "Package": "mgcv", + "Version": "1.9-1", + "Source": "Repository", + "Author": "Simon Wood ", + "Maintainer": "Simon Wood ", + "Title": "Mixed GAM Computation Vehicle with Automatic Smoothness Estimation", + "Description": "Generalized additive (mixed) models, some of their extensions and other generalized ridge regression with multiple smoothing parameter estimation by (Restricted) Marginal Likelihood, Generalized Cross Validation and similar, or using iterated nested Laplace approximation for fully Bayesian inference. See Wood (2017) for an overview. Includes a gam() function, a wide variety of smoothers, 'JAGS' support 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", + "Repository": "CRAN" + }, + "mime": { + "Package": "mime", + "Version": "0.12", + "Source": "Repository", + "Type": "Package", + "Title": "Map Filenames to MIME Types", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Jeffrey\", \"Horner\", role = \"ctb\"), person(\"Beilei\", \"Bian\", role = \"ctb\") )", + "Description": "Guesses the MIME type from a filename extension using the data derived 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", + "Author": "Yihui Xie [aut, cre] (), Jeffrey Horner [ctb], Beilei Bian [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "mirai": { + "Package": "mirai", + "Version": "2.1.0", + "Source": "Repository", + "Type": "Package", + "Title": "Minimalist Async Evaluation Framework for R", + "Description": "Designed for simplicity, a 'mirai' evaluates an R expression asynchronously in a parallel process, locally or distributed over the network. The result is automatically available upon completion. Modern networking and concurrency, built on 'nanonext' and 'NNG' (Nanomsg Next Gen), ensures reliable and efficient scheduling over fast inter-process communications or TCP/IP secured by TLS. Distributed computing can launch remote resources via SSH or cluster managers. An inherently queued architecture handles many more tasks than available processes, and requires no storage on the file system. Innovative features include support for otherwise non-exportable reference objects, event-driven promises, and asynchronous parallel map.", + "Authors@R": "c(person(given = \"Charlie\", family = \"Gao\", role = c(\"aut\", \"cre\"), email = \"charlie.gao@shikokuchuo.net\", comment = c(ORCID = \"0000-0002-0750-061X\")), person(given = \"Joe\", family = \"Cheng\", role = \"ctb\", email = \"joe@posit.co\"), person(given = \"Hibiki AI Limited\", role = \"cph\"), person(given = \"Posit Software, PBC\", role = \"cph\"))", + "License": "GPL (>= 3)", + "BugReports": "https://github.com/shikokuchuo/mirai/issues", + "URL": "https://shikokuchuo.net/mirai/, https://github.com/shikokuchuo/mirai/", + "Encoding": "UTF-8", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "nanonext (>= 1.5.0)" + ], + "Enhances": [ + "parallel", + "promises" + ], + "Suggests": [ + "cli", + "litedown" + ], + "VignetteBuilder": "litedown", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Charlie Gao [aut, cre] (), Joe Cheng [ctb], Hibiki AI Limited [cph], Posit Software, PBC [cph]", + "Maintainer": "Charlie Gao ", + "Repository": "CRAN" + }, + "munsell": { + "Package": "munsell", + "Version": "0.5.1", + "Source": "Repository", + "Type": "Package", + "Title": "Utilities for Using Munsell Colours", + "Author": "Charlotte Wickham ", + "Maintainer": "Charlotte Wickham ", + "Description": "Provides easy access to, and manipulation of, the Munsell colours. Provides a mapping between Munsell's original notation (e.g. \"5R 5/10\") and hexadecimal strings suitable for use directly in R graphics. Also provides utilities to explore slices through the Munsell colour tree, to transform Munsell colours and display colour palettes.", + "Suggests": [ + "ggplot2", + "testthat" + ], + "Imports": [ + "colorspace", + "methods" + ], + "License": "MIT + file LICENSE", + "URL": "https://cran.r-project.org/package=munsell, https://github.com/cwickham/munsell/", + "RoxygenNote": "7.3.1", + "Encoding": "UTF-8", + "BugReports": "https://github.com/cwickham/munsell/issues", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "nanonext": { + "Package": "nanonext", + "Version": "1.5.2", + "Source": "Repository", + "Type": "Package", + "Title": "NNG (Nanomsg Next Gen) Lightweight Messaging Library", + "Description": "R binding for NNG (Nanomsg Next Gen), a successor to ZeroMQ. NNG is a socket library for reliable, high-performance messaging over in-process, IPC, TCP, WebSocket and secure TLS transports. Implements 'Scalability Protocols', a standard for common communications patterns including publish/subscribe, request/reply and service discovery. As its own threaded concurrency framework, provides a toolkit for asynchronous programming and distributed computing. Intuitive 'aio' objects resolve automatically when asynchronous operations complete, and synchronisation primitives allow R to wait upon events signalled by concurrent threads.", + "Authors@R": "c(person(given = \"Charlie\", family = \"Gao\", role = c(\"aut\", \"cre\"), email = \"charlie.gao@shikokuchuo.net\", comment = c(ORCID = \"0000-0002-0750-061X\")), person(given = \"Hibiki AI Limited\", role = \"cph\"), person(given = \"R Consortium\", role = \"fnd\"))", + "License": "GPL (>= 3)", + "BugReports": "https://github.com/shikokuchuo/nanonext/issues", + "URL": "https://shikokuchuo.net/nanonext/, https://github.com/shikokuchuo/nanonext/", + "Encoding": "UTF-8", + "SystemRequirements": "'libnng' >= 1.9 and 'libmbedtls' >= 2.5, or 'cmake' and 'xz' to compile NNG and/or Mbed TLS included in package sources", + "Depends": [ + "R (>= 3.6)" + ], + "Enhances": [ + "promises" + ], + "Suggests": [ + "later", + "litedown" + ], + "VignetteBuilder": "litedown", + "RoxygenNote": "7.3.2", + "Config/build/compilation-database": "true", + "NeedsCompilation": "yes", + "Author": "Charlie Gao [aut, cre] (), Hibiki AI Limited [cph], R Consortium [fnd]", + "Maintainer": "Charlie Gao ", + "Repository": "CRAN" + }, + "nlme": { + "Package": "nlme", + "Version": "3.1-167", + "Source": "Repository", + "Date": "2025-01-27", + "Priority": "recommended", + "Title": "Linear and Nonlinear Mixed Effects Models", + "Authors@R": "c(person(\"José\", \"Pinheiro\", role = \"aut\", comment = \"S version\"), person(\"Douglas\", \"Bates\", role = \"aut\", comment = \"up to 2007\"), person(\"Saikat\", \"DebRoy\", role = \"ctb\", comment = \"up to 2002\"), person(\"Deepayan\", \"Sarkar\", role = \"ctb\", comment = \"up to 2005\"), person(\"EISPACK authors\", role = \"ctb\", comment = \"src/rs.f\"), person(\"Siem\", \"Heisterkamp\", role = \"ctb\", comment = \"Author fixed sigma\"), person(\"Bert\", \"Van Willigen\",role = \"ctb\", comment = \"Programmer fixed sigma\"), person(\"Johannes\", \"Ranke\", role = \"ctb\", comment = \"varConstProp()\"), person(\"R Core Team\", email = \"R-core@R-project.org\", role = c(\"aut\", \"cre\"), comment = c(ROR = \"02zz1nj61\")))", + "Contact": "see 'MailingList'", + "Description": "Fit and compare Gaussian linear and nonlinear mixed-effects models.", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "graphics", + "stats", + "utils", + "lattice" + ], + "Suggests": [ + "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", + "Author": "José Pinheiro [aut] (S version), Douglas Bates [aut] (up to 2007), Saikat DebRoy [ctb] (up to 2002), Deepayan Sarkar [ctb] (up to 2005), EISPACK authors [ctb] (src/rs.f), Siem Heisterkamp [ctb] (Author fixed sigma), Bert Van Willigen [ctb] (Programmer fixed sigma), Johannes Ranke [ctb] (varConstProp()), R Core Team [aut, cre] (02zz1nj61)", + "Maintainer": "R Core Team ", + "Repository": "CRAN" + }, + "nnet": { + "Package": "nnet", + "Version": "7.3-20", + "Source": "Repository", + "Priority": "recommended", + "Date": "2025-01-01", + "Depends": [ + "R (>= 3.0.0)", + "stats", + "utils" + ], + "Suggests": [ + "MASS" + ], + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"William\", \"Venables\", role = \"cph\"))", + "Description": "Software for feed-forward neural networks with a single hidden 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", + "Author": "Brian Ripley [aut, cre, cph], William Venables [cph]", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN" + }, + "numDeriv": { + "Package": "numDeriv", + "Version": "2016.8-1.1", + "Source": "Repository", + "Title": "Accurate Numerical Derivatives", + "Description": "Methods for calculating (usually) accurate numerical first and second order derivatives. Accurate calculations are done using 'Richardson''s' extrapolation or, when applicable, a complex step derivative is available. A simple difference method is also provided. Simple difference is (usually) less accurate but is much quicker than 'Richardson''s' extrapolation and provides a useful cross-check. Methods 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", + "Repository": "CRAN" + }, + "openssl": { + "Package": "openssl", + "Version": "2.3.2", + "Source": "Repository", + "Type": "Package", + "Title": "Toolkit for Encryption, Signatures and Certificates Based on OpenSSL", + "Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Oliver\", \"Keyes\", role = \"ctb\"))", + "Description": "Bindings to OpenSSL libssl and libcrypto, plus custom SSH key parsers. Supports RSA, DSA and EC curves P-256, P-384, P-521, and curve25519. Cryptographic signatures can either be created and verified manually or via x509 certificates. AES can be used in cbc, ctr or gcm mode for symmetric encryption; RSA for asymmetric (public key) encryption or EC for Diffie Hellman. High-level envelope functions combine RSA and AES for encrypting arbitrary sized data. Other utilities include key generators, hash functions (md5, sha1, sha256, etc), base64 encoder, a secure random number generator, and 'bignum' math methods for manually performing crypto calculations 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", + "jsonlite", + "jose", + "sodium" + ], + "RoxygenNote": "7.3.2", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Jeroen Ooms [aut, cre] (), Oliver Keyes [ctb]", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "packrat": { + "Package": "packrat", + "Version": "0.9.2", + "Source": "Repository", + "Type": "Package", + "Title": "A Dependency Management System for Projects and their R Package Dependencies", + "Authors@R": "c( person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")), person(\"Toph\", \"Allen\", role = \"aut\"), person(\"Kevin\", \"Ushey\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\"), person(\"Joe\", \"Cheng\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Manage the R packages your project depends on in an isolated, portable, and reproducible way.", + "License": "GPL-2", + "URL": "https://github.com/rstudio/packrat", + "BugReports": "https://github.com/rstudio/packrat/issues", + "Depends": [ + "R (>= 3.0.0)" + ], + "Imports": [ + "tools", + "utils" + ], + "Suggests": [ + "devtools", + "httr", + "knitr", + "mockery", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Aron Atkins [aut, cre], Toph Allen [aut], Kevin Ushey [aut], Jonathan McPherson [aut], Joe Cheng [aut], JJ Allaire [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Aron Atkins ", + "Repository": "CRAN" + }, + "padr": { + "Package": "padr", + "Version": "0.6.3", + "Source": "Repository", + "Type": "Package", + "Title": "Quickly Get Datetime Data Ready for Analysis", + "Authors@R": "person(given = \"Edwin\", family = \"Thoen\", role = c(\"aut\", \"cre\"), email = \"edwinthoen@gmail.com\")", + "Description": "Transforms datetime data into a format ready for analysis. It offers two core functionalities; aggregating data to a higher level interval (thicken) and imputing records where observations were absent (pad).", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "LazyData": "true", + "Depends": [ + "R (>= 3.0.0)" + ], + "Imports": [ + "Rcpp", + "dplyr (>= 1.0.0)", + "lubridate", + "rlang" + ], + "Suggests": [ + "ggplot2", + "testthat", + "knitr", + "rmarkdown", + "lazyeval", + "tidyr", + "data.table" + ], + "RoxygenNote": "7.2.1", + "LinkingTo": [ + "Rcpp" + ], + "VignetteBuilder": "knitr", + "URL": "https://edwinth.github.io/padr/, https://github.com/EdwinTh/padr", + "BugReports": "https://github.com/EdwinTh/padr/issues", + "ByteCompile": "true", + "NeedsCompilation": "yes", + "Author": "Edwin Thoen [aut, cre]", + "Maintainer": "Edwin Thoen ", + "Repository": "CRAN" + }, + "parallelly": { + "Package": "parallelly", + "Version": "1.42.0", + "Source": "Repository", + "Title": "Enhancing the 'parallel' Package", + "Imports": [ + "parallel", + "tools", + "utils" + ], + "Suggests": [ + "commonmark", + "base64enc" + ], + "VignetteBuilder": "parallelly", + "Authors@R": "c( person(\"Henrik\", \"Bengtsson\", role = c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\", comment = c(ORCID = \"0000-0002-7579-5165\")), person(\"Mike\", \"Cheng\", role = c(\"ctb\"), email = \"mikefc@coolbutuseless.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, https://github.com/futureverse/parallelly", + "BugReports": "https://github.com/futureverse/parallelly/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Henrik Bengtsson [aut, cre, cph] (), Mike Cheng [ctb]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN" + }, + "pillar": { + "Package": "pillar", + "Version": "1.10.1", + "Source": "Repository", + "Title": "Coloured Formatting for Columns", + "Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\"), person(given = \"RStudio\", role = \"cph\"))", + "Description": "Provides 'pillar' and 'colonnade' generics designed for formatting columns of data using the full range of colours provided 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)", + "glue", + "lifecycle", + "rlang (>= 1.0.2)", + "utf8 (>= 1.1.0)", + "utils", + "vctrs (>= 0.5.0)" + ], + "Suggests": [ + "bit64", + "DBI", + "debugme", + "DiagrammeR", + "dplyr", + "formattable", + "ggplot2", + "knitr", + "lubridate", + "nanotime", + "nycflights13", + "palmerpenguins", + "rmarkdown", + "scales", + "stringi", + "survival", + "testthat (>= 3.1.1)", + "tibble", + "units (>= 0.7.2)", + "vdiffr", + "withr" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2.9000", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "format_multi_fuzz, format_multi_fuzz_2, format_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", + "Author": "Kirill Müller [aut, cre] (), Hadley Wickham [aut], RStudio [cph]", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "pingr": { + "Package": "pingr", + "Version": "2.0.5", + "Source": "Repository", + "Title": "Check if a Remote Computer is Up", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Check if a remote computer is up. It can either just call the system ping command, or check a specified TCP port.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.github.io/pingr/, https://github.com/r-lib/pingr", + "BugReports": "https://github.com/r-lib/pingr/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "processx", + "utils" + ], + "Suggests": [ + "covr", + "ps", + "testthat (>= 3.0.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "Biarch": "true", + "NeedsCompilation": "yes", + "Author": "Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "pkgbuild": { + "Package": "pkgbuild", + "Version": "1.4.6", + "Source": "Repository", + "Title": "Find Tools Needed to Build R Packages", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides functions used to build R packages. Locates compilers needed to build R packages on various platforms and ensures the 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.5)" + ], + "Imports": [ + "callr (>= 3.2.0)", + "cli (>= 3.4.0)", + "desc", + "processx", + "R6" + ], + "Suggests": [ + "covr", + "cpp11", + "knitr", + "Rcpp", + "rmarkdown", + "testthat (>= 3.2.0)", + "withr (>= 2.3.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Jim Hester [aut], Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "pkgconfig": { + "Package": "pkgconfig", + "Version": "2.0.3", + "Source": "Repository", + "Title": "Private Configuration for 'R' Packages", + "Author": "Gábor Csárdi", + "Maintainer": "Gábor Csárdi ", + "Description": "Set configuration options on a per-package basis. Options set by a given package only apply to that package, other 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", + "Repository": "CRAN" + }, + "pkgload": { + "Package": "pkgload", + "Version": "1.4.0", + "Source": "Repository", + "Title": "Simulate Package Installation and Attach", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Core team\", role = \"ctb\", comment = \"Some namespace and vignette code extracted from base R\") )", + "Description": "Simulates the process of installing a package and then attaching it. This is a key part of the 'devtools' package as it allows 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)", + "desc", + "fs", + "glue", + "lifecycle", + "methods", + "pkgbuild", + "processx", + "rlang (>= 1.1.1)", + "rprojroot", + "utils", + "withr (>= 2.4.3)" + ], + "Suggests": [ + "bitops", + "jsonlite", + "mathjaxr", + "pak", + "Rcpp", + "remotes", + "rstudioapi", + "testthat (>= 3.2.1.1)", + "usethis" + ], + "Config/Needs/website": "tidyverse/tidytemplate, ggplot2", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "TRUE", + "Config/testthat/start-first": "dll", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Winston Chang [aut], Jim Hester [aut], Lionel Henry [aut, cre], Posit Software, PBC [cph, fnd], R Core team [ctb] (Some namespace and vignette code extracted from base R)", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "plotly": { + "Package": "plotly", + "Version": "4.10.4", + "Source": "Repository", + "Title": "Create Interactive Web Graphics via 'plotly.js'", + "Authors@R": "c(person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"cpsievert1@gmail.com\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Chris\", \"Parmer\", role = \"aut\", email = \"chris@plot.ly\"), person(\"Toby\", \"Hocking\", role = \"aut\", email = \"tdhock5@gmail.com\"), person(\"Scott\", \"Chamberlain\", role = \"aut\", email = \"myrmecocystus@gmail.com\"), person(\"Karthik\", \"Ram\", role = \"aut\", email = \"karthik.ram@gmail.com\"), person(\"Marianne\", \"Corvellec\", role = \"aut\", email = \"marianne.corvellec@igdore.org\", comment = c(ORCID = \"0000-0002-1994-3581\")), person(\"Pedro\", \"Despouy\", role = \"aut\", email = \"pedro@plot.ly\"), person(\"Salim\", \"Brüggemann\", role = \"ctb\", email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Plotly Technologies Inc.\", role = \"cph\"))", + "License": "MIT + file LICENSE", + "Description": "Create interactive web graphics from 'ggplot2' graphs and/or a custom interface to the (MIT-licensed) JavaScript library 'plotly.js' inspired by the grammar of graphics.", + "URL": "https://plotly-r.com, https://github.com/plotly/plotly.R, https://plotly.com/r/", + "BugReports": "https://github.com/plotly/plotly.R/issues", + "Depends": [ + "R (>= 3.2.0)", + "ggplot2 (>= 3.0.0)" + ], + "Imports": [ + "tools", + "scales", + "httr (>= 1.3.0)", + "jsonlite (>= 1.6)", + "magrittr", + "digest", + "viridisLite", + "base64enc", + "htmltools (>= 0.3.6)", + "htmlwidgets (>= 1.5.2.9001)", + "tidyr (>= 1.0.0)", + "RColorBrewer", + "dplyr", + "vctrs", + "tibble", + "lazyeval (>= 0.2.0)", + "rlang (>= 0.4.10)", + "crosstalk", + "purrr", + "data.table", + "promises" + ], + "Suggests": [ + "MASS", + "maps", + "hexbin", + "ggthemes", + "GGally", + "ggalluvial", + "testthat", + "knitr", + "shiny (>= 1.1.0)", + "shinytest (>= 1.3.0)", + "curl", + "rmarkdown", + "Cairo", + "broom", + "webshot", + "listviewer", + "dendextend", + "sf", + "png", + "IRdisplay", + "processx", + "plotlyGeoAssets", + "forcats", + "withr", + "palmerpenguins", + "rversions", + "reticulate", + "rsvg" + ], + "LazyData": "true", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "Config/Needs/check": "tidyverse/ggplot2, rcmdcheck, devtools, reshape2", + "NeedsCompilation": "no", + "Author": "Carson Sievert [aut, cre] (), Chris Parmer [aut], Toby Hocking [aut], Scott Chamberlain [aut], Karthik Ram [aut], Marianne Corvellec [aut] (), Pedro Despouy [aut], Salim Brüggemann [ctb] (), Plotly Technologies Inc. [cph]", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "praise": { + "Package": "praise", + "Version": "1.0.0", + "Source": "Repository", + "Title": "Praise Users", + "Author": "Gabor Csardi, Sindre Sorhus", + "Maintainer": "Gabor Csardi ", + "Description": "Build friendly R packages that praise their users if they have done something good, 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' 'package.R'", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "prettyunits": { + "Package": "prettyunits", + "Version": "1.2.0", + "Source": "Repository", + "Title": "Pretty, Human Readable Formatting of Quantities", + "Authors@R": "c( person(\"Gabor\", \"Csardi\", email=\"csardi.gabor@gmail.com\", role=c(\"aut\", \"cre\")), person(\"Bill\", \"Denney\", email=\"wdenney@humanpredictions.com\", role=c(\"ctb\"), comment=c(ORCID=\"0000-0002-5759-428X\")), person(\"Christophe\", \"Regouby\", email=\"christophe.regouby@free.fr\", role=c(\"ctb\")) )", + "Description": "Pretty, human readable formatting of quantities. Time intervals: '1337000' -> '15d 11h 23m 20s'. Vague time intervals: '2674000' -> 'about a month ago'. Bytes: '1337' -> '1.34 kB'. Rounding: '99' with 3 significant digits -> '99.0' p-values: '0.00001' -> '<0.0001'. Colors: '#FF0000' -> 'red'. Quantities: '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", + "Author": "Gabor Csardi [aut, cre], Bill Denney [ctb] (), Christophe Regouby [ctb]", + "Maintainer": "Gabor Csardi ", + "Repository": "CRAN" + }, + "processx": { + "Package": "processx", + "Version": "3.8.5", + "Source": "Repository", + "Title": "Execute and Control System Processes", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0001-7098-9676\")), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\")) )", + "Description": "Tools to run system processes in the background. It can check if a background process is running; wait on a background process to finish; get the exit status of finished processes; kill background processes. It can read the standard output and error of the processes, using non-blocking connections. 'processx' can poll a process for standard output or error, with a timeout. It can also poll several processes at once.", + "License": "MIT + file LICENSE", + "URL": "https://processx.r-lib.org, https://github.com/r-lib/processx", + "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", + "debugme", + "parallel", + "rlang (>= 1.0.2)", + "testthat (>= 3.0.0)", + "webfakes", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1.9000", + "NeedsCompilation": "yes", + "Author": "Gábor Csárdi [aut, cre, cph] (), Winston Chang [aut], Posit Software, PBC [cph, fnd], Ascent Digital Services [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "prodlim": { + "Package": "prodlim", + "Version": "2024.06.25", + "Source": "Repository", + "Title": "Product-Limit Estimation for Censored Event History Analysis", + "Author": "Thomas A. Gerds", + "Description": "Fast and user friendly implementation of nonparametric estimators for censored event history (survival) analysis. Kaplan-Meier and Aalen-Johansen method.", + "Depends": [ + "R (>= 2.9.0)" + ], + "Imports": [ + "Rcpp (>= 0.11.5)", + "stats", + "data.table", + "grDevices", + "graphics", + "diagram", + "survival", + "KernSmooth", + "lava" + ], + "LinkingTo": [ + "Rcpp" + ], + "Maintainer": "Thomas A. Gerds ", + "BugReports": "https://github.com/tagteam/prodlim/issues", + "License": "GPL (>= 2)", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "progress": { + "Package": "progress", + "Version": "1.2.3", + "Source": "Repository", + "Title": "Terminal Progress Bars", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Rich\", \"FitzJohn\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Configurable Progress bars, they may include percentage, elapsed time, and/or the estimated completion time. They work in terminals, in 'Emacs' 'ESS', 'RStudio', 'Windows' 'Rgui' and the 'macOS' 'R.app'. The package also provides a 'C++' 'API', that works with or without 'Rcpp'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/progress#readme, http://r-lib.github.io/progress/", + "BugReports": "https://github.com/r-lib/progress/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "crayon", + "hms", + "prettyunits", + "R6" + ], + "Suggests": [ + "Rcpp", + "testthat (>= 3.0.0)", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Rich FitzJohn [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "progressr": { + "Package": "progressr", + "Version": "0.15.1", + "Source": "Repository", + "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(person(\"Henrik\", \"Bengtsson\", role = c(\"aut\", \"cre\", \"cph\"), email = \"henrikb@braju.com\", comment = c(ORCID = \"0000-0002-7579-5165\")))", + "License": "GPL (>= 3)", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "digest", + "utils" + ], + "Suggests": [ + "graphics", + "tcltk", + "beepr", + "cli", + "crayon", + "pbmcapply", + "progress", + "purrr", + "foreach", + "plyr", + "doFuture", + "future", + "future.apply", + "furrr", + "ntfy", + "RPushbullet", + "rstudioapi", + "shiny", + "commonmark", + "base64enc", + "tools" + ], + "VignetteBuilder": "progressr", + "URL": "https://progressr.futureverse.org, https://github.com/futureverse/progressr", + "BugReports": "https://github.com/futureverse/progressr/issues", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Henrik Bengtsson [aut, cre, cph] ()", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN" + }, + "promises": { + "Package": "promises", + "Version": "1.3.2", + "Source": "Repository", + "Type": "Package", + "Title": "Abstractions for Promise-Based Asynchronous Programming", + "Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides fundamental abstractions for doing asynchronous programming in R using promises. Asynchronous programming is useful for allowing a single R process to orchestrate multiple tasks in the background while also attending to something else. Semantics are similar to 'JavaScript' promises, but with a syntax that is idiomatic R.", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/promises/, https://github.com/rstudio/promises", + "BugReports": "https://github.com/rstudio/promises/issues", + "Imports": [ + "fastmap (>= 1.1.0)", + "later", + "magrittr (>= 1.5)", + "R6", + "Rcpp", + "rlang", + "stats" + ], + "Suggests": [ + "future (>= 1.21.0)", + "knitr", + "purrr", + "rmarkdown", + "spelling", + "testthat", + "vembedr" + ], + "LinkingTo": [ + "later", + "Rcpp" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "rsconnect", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Joe Cheng [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Joe Cheng ", + "Repository": "CRAN" + }, + "ps": { + "Package": "ps", + "Version": "1.8.1", + "Source": "Repository", + "Title": "List, Query, Manipulate System Processes", + "Authors@R": "c( person(\"Jay\", \"Loden\", role = \"aut\"), person(\"Dave\", \"Daeschler\", role = \"aut\"), person(\"Giampaolo\", \"Rodola'\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "List, query and manipulate all system processes, on 'Windows', 'Linux' and 'macOS'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/ps, 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", + "rlang", + "testthat (>= 3.0.0)", + "webfakes", + "withr" + ], + "Biarch": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Jay Loden [aut], Dave Daeschler [aut], Giampaolo Rodola' [aut], Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "purrr": { + "Package": "purrr", + "Version": "1.0.2", + "Source": "Repository", + "Title": "Functional Programming Tools", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = \"aut\"), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )", + "Description": "A complete and consistent functional programming toolkit for R.", + "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)", + "rlang (>= 1.1.1)", + "vctrs (>= 0.6.3)" + ], + "Suggests": [ + "covr", + "dplyr (>= 0.7.8)", + "httr", + "knitr", + "lubridate", + "rmarkdown", + "testthat (>= 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", + "Author": "Hadley Wickham [aut, cre] (), Lionel Henry [aut], RStudio [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "quadprog": { + "Package": "quadprog", + "Version": "1.5-8", + "Source": "Repository", + "Type": "Package", + "Title": "Functions to Solve Quadratic Programming Problems", + "Date": "2019-11-20", + "Author": "S original by Berwin A. Turlach R port by Andreas Weingessel Fortran contributions from Cleve Moler (dposl/LINPACK and (a modified version of) dpodi/LINPACK)", + "Maintainer": "Berwin A. Turlach ", + "Description": "This package contains routines and documentation for solving quadratic programming problems.", + "Depends": [ + "R (>= 3.1.0)" + ], + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "quantmod": { + "Package": "quantmod", + "Version": "0.4.26", + "Source": "Repository", + "Type": "Package", + "Title": "Quantitative Financial Modelling Framework", + "Authors@R": "c( person(given=c(\"Jeffrey\",\"A.\"), family=\"Ryan\", role=c(\"aut\",\"cph\")), person(given=c(\"Joshua\",\"M.\"), family=\"Ulrich\", role=c(\"cre\",\"aut\"), email=\"josh.m.ulrich@gmail.com\"), person(given=c(\"Ethan\",\"B.\"), family=\"Smith\", role=\"ctb\"), person(given=\"Wouter\", family=\"Thielen\", role=\"ctb\"), person(given=\"Paul\", family=\"Teetor\", role=\"ctb\"), person(given=\"Steve\", family=\"Bronder\", role=\"ctb\") )", + "Depends": [ + "R (>= 3.2.0)", + "xts(>= 0.9-0)", + "zoo", + "TTR(>= 0.2)", + "methods" + ], + "Imports": [ + "curl", + "jsonlite(>= 1.1)" + ], + "Suggests": [ + "DBI", + "RMySQL", + "RSQLite", + "timeSeries", + "xml2", + "downloader" + ], + "Description": "Specify, build, trade, and analyse quantitative financial trading strategies.", + "LazyLoad": "yes", + "License": "GPL-3", + "URL": "https://www.quantmod.com/, https://github.com/joshuaulrich/quantmod", + "BugReports": "https://github.com/joshuaulrich/quantmod/issues", + "NeedsCompilation": "no", + "Author": "Jeffrey A. Ryan [aut, cph], Joshua M. Ulrich [cre, aut], Ethan B. Smith [ctb], Wouter Thielen [ctb], Paul Teetor [ctb], Steve Bronder [ctb]", + "Maintainer": "Joshua M. Ulrich ", + "Repository": "CRAN" + }, + "rappdirs": { + "Package": "rappdirs", + "Version": "0.3.3", + "Source": "Repository", + "Type": "Package", + "Title": "Application Directories: Determine Where to Save Data, Caches, and Logs", + "Authors@R": "c(person(given = \"Hadley\", family = \"Wickham\", role = c(\"trl\", \"cre\", \"cph\"), email = \"hadley@rstudio.com\"), person(given = \"RStudio\", role = \"cph\"), person(given = \"Sridhar\", family = \"Ratnakumar\", role = \"aut\"), person(given = \"Trent\", family = \"Mick\", role = \"aut\"), person(given = \"ActiveState\", role = \"cph\", comment = \"R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs\"), person(given = \"Eddy\", family = \"Petrisor\", role = \"ctb\"), person(given = \"Trevor\", family = \"Davis\", role = c(\"trl\", \"aut\")), person(given = \"Gabor\", family = \"Csardi\", role = \"ctb\"), person(given = \"Gregory\", family = \"Jefferis\", role = \"ctb\"))", + "Description": "An easy way to determine which directories on the users computer you should use to save data, caches and logs. A port of Python's 'Appdirs' () to R.", + "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 ActiveState Software Inc. R port copyright Hadley Wickham, RStudio. See file LICENSE for details.", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.1", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [trl, cre, cph], RStudio [cph], Sridhar Ratnakumar [aut], Trent Mick [aut], ActiveState [cph] (R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs), Eddy Petrisor [ctb], Trevor Davis [trl, aut], Gabor Csardi [ctb], Gregory Jefferis [ctb]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "reactR": { + "Package": "reactR", + "Version": "0.6.1", + "Source": "Repository", + "Type": "Package", + "Title": "React Helpers", + "Date": "2024-09-14", + "Authors@R": "c( person( \"Facebook\", \"Inc\" , role = c(\"aut\", \"cph\") , comment = \"React library in lib, https://reactjs.org/; see AUTHORS for full list of contributors\" ), person( \"Michel\",\"Weststrate\", , role = c(\"aut\", \"cph\") , comment = \"mobx library in lib, https://github.com/mobxjs\" ), person( \"Kent\", \"Russell\" , role = c(\"aut\", \"cre\") , comment = \"R interface\" , email = \"kent.russell@timelyportfolio.com\" ), person( \"Alan\", \"Dipert\" , role = c(\"aut\") , comment = \"R interface\" , email = \"alan@rstudio.com\" ), person( \"Greg\", \"Lin\" , role = c(\"aut\") , comment = \"R interface\" , email = \"glin@glin.io\" ) )", + "Maintainer": "Kent Russell ", + "Description": "Make it easy to use 'React' in R with 'htmlwidget' scaffolds, helper dependency functions, an embedded 'Babel' 'transpiler', and examples.", + "URL": "https://github.com/react-R/reactR", + "BugReports": "https://github.com/react-R/reactR/issues", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Imports": [ + "htmltools" + ], + "Suggests": [ + "htmlwidgets (>= 1.5.3)", + "rmarkdown", + "shiny", + "V8", + "knitr", + "usethis", + "jsonlite" + ], + "RoxygenNote": "7.3.2", + "VignetteBuilder": "knitr", + "NeedsCompilation": "no", + "Author": "Facebook Inc [aut, cph] (React library in lib, https://reactjs.org/; see AUTHORS for full list of contributors), Michel Weststrate [aut, cph] (mobx library in lib, https://github.com/mobxjs), Kent Russell [aut, cre] (R interface), Alan Dipert [aut] (R interface), Greg Lin [aut] (R interface)", + "Repository": "CRAN" + }, + "reactable": { + "Package": "reactable", + "Version": "0.4.4", + "Source": "Repository", + "Type": "Package", + "Title": "Interactive Data Tables for R", + "Authors@R": "c( person(\"Greg\", \"Lin\", email = \"glin@glin.io\", role = c(\"aut\", \"cre\")), person(\"Tanner\", \"Linsley\", role = c(\"ctb\", \"cph\"), comment = \"React Table library\"), person(family = \"Emotion team and other contributors\", role = c(\"ctb\", \"cph\"), comment = \"Emotion library\"), person(\"Kent\", \"Russell\", role = c(\"ctb\", \"cph\"), comment = \"reactR package\"), person(\"Ramnath\", \"Vaidyanathan\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"), person(\"Joe\", \"Cheng\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"), person(\"JJ\", \"Allaire\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"), person(\"Yihui\", \"Xie\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"), person(\"Kenton\", \"Russell\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"), person(family = \"Facebook, Inc. and its affiliates\", role = c(\"ctb\", \"cph\"), comment = \"React library\"), person(family = \"FormatJS\", role = c(\"ctb\", \"cph\"), comment = \"FormatJS libraries\"), person(family = \"Feross Aboukhadijeh, and other contributors\", role = c(\"ctb\", \"cph\"), comment = \"buffer library\"), person(\"Roman\", \"Shtylman\", role = c(\"ctb\", \"cph\"), comment = \"process library\"), person(\"James\", \"Halliday\", role = c(\"ctb\", \"cph\"), comment = \"stream-browserify library\"), person(family = \"Posit Software, PBC\", role = c(\"fnd\", \"cph\")) )", + "Description": "Interactive data tables for R, based on the 'React Table' JavaScript library. Provides an HTML widget that can be used in 'R Markdown' or 'Quarto' documents, 'Shiny' applications, or viewed from an R console.", + "License": "MIT + file LICENSE", + "URL": "https://glin.github.io/reactable/, https://github.com/glin/reactable", + "BugReports": "https://github.com/glin/reactable/issues", + "Depends": [ + "R (>= 3.1)" + ], + "Imports": [ + "digest", + "htmltools (>= 0.5.2)", + "htmlwidgets (>= 1.5.3)", + "jsonlite", + "reactR" + ], + "Suggests": [ + "covr", + "crosstalk", + "dplyr", + "fontawesome", + "knitr", + "leaflet", + "MASS", + "rmarkdown", + "shiny", + "sparkline", + "testthat", + "tippy", + "V8" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Greg Lin [aut, cre], Tanner Linsley [ctb, cph] (React Table library), Emotion team and other contributors [ctb, cph] (Emotion library), Kent Russell [ctb, cph] (reactR package), Ramnath Vaidyanathan [ctb, cph] (htmlwidgets package), Joe Cheng [ctb, cph] (htmlwidgets package), JJ Allaire [ctb, cph] (htmlwidgets package), Yihui Xie [ctb, cph] (htmlwidgets package), Kenton Russell [ctb, cph] (htmlwidgets package), Facebook, Inc. and its affiliates [ctb, cph] (React library), FormatJS [ctb, cph] (FormatJS libraries), Feross Aboukhadijeh, and other contributors [ctb, cph] (buffer library), Roman Shtylman [ctb, cph] (process library), James Halliday [ctb, cph] (stream-browserify library), Posit Software, PBC [fnd, cph]", + "Maintainer": "Greg Lin ", + "Repository": "CRAN" + }, + "readr": { + "Package": "readr", + "Version": "2.1.5", + "Source": "Repository", + "Title": "Read Rectangular Text Data", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Romain\", \"Francois\", role = \"ctb\"), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Shelby\", \"Bearrows\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"https://github.com/mandreyel/\", role = \"cph\", comment = \"mio library\"), person(\"Jukka\", \"Jylänki\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\"), person(\"Mikkel\", \"Jørgensen\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\") )", + "Description": "The goal of 'readr' is to provide a fast and friendly way to read rectangular data (like 'csv', 'tsv', and 'fwf'). It is designed to flexibly parse many types of data found in the wild, while still cleanly 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.6)" + ], + "Imports": [ + "cli (>= 3.2.0)", + "clipr", + "crayon", + "hms (>= 0.4.1)", + "lifecycle (>= 0.2.0)", + "methods", + "R6", + "rlang", + "tibble", + "utils", + "vroom (>= 1.6.0)" + ], + "Suggests": [ + "covr", + "curl", + "datasets", + "knitr", + "rmarkdown", + "spelling", + "stringi", + "testthat (>= 3.2.0)", + "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", + "Author": "Hadley Wickham [aut], Jim Hester [aut], Romain Francois [ctb], Jennifer Bryan [aut, cre] (), Shelby Bearrows [ctb], Posit Software, PBC [cph, fnd], https://github.com/mandreyel/ [cph] (mio library), Jukka Jylänki [ctb, cph] (grisu3 implementation), Mikkel Jørgensen [ctb, cph] (grisu3 implementation)", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN" + }, + "recipes": { + "Package": "recipes", + "Version": "1.1.0", + "Source": "Repository", + "Title": "Preprocessing and Feature Engineering Steps for Modeling", + "Authors@R": "c( person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = \"aut\"), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A recipe prepares your data for modeling. We provide an extensible framework for pipeable sequences of feature engineering steps provides preprocessing tools to be applied to data. Statistical parameters for the steps can be estimated from an initial data set and then applied to other data sets. The resulting processed output can then be used as inputs for statistical or machine learning models.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/tidymodels/recipes, https://recipes.tidymodels.org/", + "BugReports": "https://github.com/tidymodels/recipes/issues", + "Depends": [ + "dplyr (>= 1.1.0)", + "R (>= 3.6)" + ], + "Imports": [ + "cli", + "clock (>= 0.6.1)", + "generics (>= 0.1.2)", + "glue", + "gower", + "hardhat (>= 1.4.0)", + "ipred (>= 0.9-12)", + "lifecycle (>= 1.0.3)", + "lubridate (>= 1.8.0)", + "magrittr", + "Matrix", + "purrr (>= 1.0.0)", + "rlang (>= 1.1.0)", + "stats", + "tibble", + "tidyr (>= 1.0.0)", + "tidyselect (>= 1.2.0)", + "timeDate", + "utils", + "vctrs (>= 0.5.0)", + "withr" + ], + "Suggests": [ + "covr", + "ddalpha", + "dials (>= 1.2.0)", + "ggplot2", + "igraph", + "kernlab", + "knitr", + "modeldata (>= 0.1.1)", + "parsnip (>= 1.2.0)", + "RANN", + "RcppRoll", + "rmarkdown", + "rpart", + "rsample", + "RSpectra", + "splines2", + "testthat (>= 3.0.0)", + "workflows", + "xml2" + ], + "VignetteBuilder": "knitr", + "RdMacros": "lifecycle", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "no", + "Author": "Max Kuhn [aut, cre], Hadley Wickham [aut], Emil Hvitfeldt [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Max Kuhn ", + "Repository": "CRAN" + }, + "remotes": { + "Package": "remotes", + "Version": "2.5.0", + "Source": "Repository", + "Title": "R Package Installation from Remote Repositories, Including 'GitHub'", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Martin\", \"Morgan\", role = \"aut\"), person(\"Dan\", \"Tenenbaum\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Ascent Digital Services\", role = \"cph\") )", + "Description": "Download and install R packages stored in 'GitHub', 'GitLab', 'Bitbucket', 'Bioconductor', or plain 'subversion' or 'git' repositories. This package provides the 'install_*' functions in 'devtools'. Indeed most of the code was copied over from 'devtools'.", + "License": "MIT + file LICENSE", + "URL": "https://remotes.r-lib.org, https://github.com/r-lib/remotes#readme", + "BugReports": "https://github.com/r-lib/remotes/issues", + "Depends": [ + "R (>= 3.0.0)" + ], + "Imports": [ + "methods", + "stats", + "tools", + "utils" + ], + "Suggests": [ + "brew", + "callr", + "codetools", + "covr", + "curl", + "git2r (>= 0.23.0)", + "knitr", + "mockery", + "pingr", + "pkgbuild (>= 1.0.1)", + "rmarkdown", + "rprojroot", + "testthat (>= 3.0.0)", + "webfakes", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "SystemRequirements": "Subversion for install_svn, git for install_git", + "NeedsCompilation": "no", + "Author": "Gábor Csárdi [aut, cre], Jim Hester [aut], Hadley Wickham [aut], Winston Chang [aut], Martin Morgan [aut], Dan Tenenbaum [aut], Posit Software, PBC [cph, fnd], Ascent Digital Services [cph]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN" + }, + "renv": { + "Package": "renv", + "Version": "1.1.4", + "Source": "Repository", + "Type": "Package", + "Title": "Project Environments", + "Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"kevin@rstudio.com\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"hadley@rstudio.com\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A dependency management toolkit for R. Using 'renv', you can create and manage project-local R libraries, save the state of these libraries to a 'lockfile', and later restore your library as required. Together, these tools can help make your projects more isolated, portable, and reproducible.", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/renv/, https://github.com/rstudio/renv", + "BugReports": "https://github.com/rstudio/renv/issues", + "Imports": [ + "utils" + ], + "Suggests": [ + "BiocManager", + "cli", + "compiler", + "covr", + "cpp11", + "devtools", + "gitcreds", + "jsonlite", + "jsonvalidate", + "knitr", + "miniUI", + "modules", + "packrat", + "pak", + "R6", + "remotes", + "reticulate", + "rmarkdown", + "rstudioapi", + "shiny", + "testthat", + "uuid", + "waldo", + "yaml", + "webfakes" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "bioconductor,python,install,restore,snapshot,retrieve,remotes", + "NeedsCompilation": "no", + "Author": "Kevin Ushey [aut, cre] (), Hadley Wickham [aut] (), Posit Software, PBC [cph, fnd]", + "Maintainer": "Kevin Ushey ", + "Repository": "CRAN" + }, + "rex": { + "Package": "rex", + "Version": "1.2.1", + "Source": "Repository", + "Type": "Package", + "Title": "Friendly Regular Expressions", + "Authors@R": "c( person(\"Kevin\", \"Ushey\", , \"kevinushey@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jim\", \"Hester\", , \"james.f.hester@gmail.com\", role = \"aut\"), person(\"Robert\", \"Krzyzanowski\", , \"rkrzyzanowski@gmail.com\", role = \"aut\") )", + "Description": "A friendly interface for the construction of regular expressions.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/kevinushey/rex", + "BugReports": "https://github.com/kevinushey/rex/issues", + "Imports": [ + "lazyeval" + ], + "Suggests": [ + "covr", + "dplyr", + "ggplot2", + "Hmisc", + "knitr", + "magrittr", + "rmarkdown", + "roxygen2", + "rvest", + "stringr", + "testthat" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "Collate": "'aaa.R' 'utils.R' 'escape.R' 'capture.R' 'character_class.R' 'counts.R' 'lookarounds.R' 'match.R' 'or.R' 'rex-mode.R' 'rex.R' 'shortcuts.R' 'wildcards.R' 'zzz.R'", + "NeedsCompilation": "no", + "Author": "Kevin Ushey [aut, cre], Jim Hester [aut], Robert Krzyzanowski [aut]", + "Maintainer": "Kevin Ushey ", + "Repository": "CRAN" + }, + "rhino": { + "Package": "rhino", + "Version": "1.10.1", + "Source": "Repository", + "Title": "A Framework for Enterprise Shiny Applications", + "Authors@R": "c( person(\"Kamil\", \"Żyła\", role = c(\"aut\", \"cre\"), email = \"opensource+kamil@appsilon.com\"), person(\"Jakub\", \"Nowicki\", role = \"aut\", email = \"kuba@appsilon.com\"), person(\"Leszek\", \"Siemiński\", role = \"aut\", email = \"leszek.sieminski@appsilon.com\"), person(\"Marek\", \"Rogala\", role = \"aut\", email = \"marek@appsilon.com\"), person(\"Recle\", \"Vibal\", role = \"aut\", email = \"recle.vibal@appsilon.com\"), person(\"Tymoteusz\", \"Makowski\", role = \"aut\", email = \"tymoteusz@appsilon.com\"), person(\"Rodrigo\", \"Basa\", role = \"aut\", email = \"rodrigo@appsilon.com\"), person(\"Eduardo\", \"Almeida\", role = \"ctb\", email = \"eduardo@appsilon.com\"), person(\"Appsilon Sp. z o.o.\", role = \"cph\", email = \"opensource@appsilon.com\") )", + "Description": "A framework that supports creating and extending enterprise Shiny applications using best practices.", + "URL": "https://appsilon.github.io/rhino/, https://github.com/Appsilon/rhino", + "BugReports": "https://github.com/Appsilon/rhino/issues", + "License": "LGPL-3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Depends": [ + "R (>= 2.10)" + ], + "Imports": [ + "box (>= 1.1.3)", + "box.linters (>= 0.10.5)", + "box.lsp", + "cli", + "config", + "fs", + "glue", + "lintr (>= 3.0.0)", + "logger", + "purrr", + "renv", + "rstudioapi", + "sass", + "shiny", + "styler", + "testthat (>= 3.0.0)", + "utils", + "withr", + "yaml" + ], + "Suggests": [ + "covr", + "knitr", + "mockery", + "rcmdcheck", + "rex", + "rlang", + "rmarkdown", + "shiny.react", + "spelling" + ], + "LazyData": "true", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Language": "en-US", + "NeedsCompilation": "no", + "Author": "Kamil Żyła [aut, cre], Jakub Nowicki [aut], Leszek Siemiński [aut], Marek Rogala [aut], Recle Vibal [aut], Tymoteusz Makowski [aut], Rodrigo Basa [aut], Eduardo Almeida [ctb], Appsilon Sp. z o.o. [cph]", + "Maintainer": "Kamil Żyła ", + "Repository": "CRAN" + }, + "rlang": { + "Package": "rlang", + "Version": "1.1.5", + "Source": "Repository", + "Title": "Functions for Base Types and Core R and 'Tidyverse' Features", + "Description": "A toolbox for working with base types, core R features like the condition system, and core 'Tidyverse' features like tidy evaluation.", + "Authors@R": "c( person(\"Lionel\", \"Henry\", ,\"lionel@posit.co\", c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", ,\"hadley@posit.co\", \"aut\"), person(given = \"mikefc\", email = \"mikefc@coolbutuseless.com\", role = \"cph\", comment = \"Hash implementation based on Mike's xxhashlite\"), person(given = \"Yann\", family = \"Collet\", role = \"cph\", comment = \"Author of the embedded xxHash library\"), person(given = \"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", + "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", + "methods", + "pillar", + "rmarkdown", + "stats", + "testthat (>= 3.0.0)", + "tibble", + "usethis", + "vctrs (>= 0.2.3)", + "withr" + ], + "Enhances": [ + "winch" + ], + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "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", + "Author": "Lionel Henry [aut, cre], Hadley Wickham [aut], mikefc [cph] (Hash implementation based on Mike's xxhashlite), Yann Collet [cph] (Author of the embedded xxHash library), Posit, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "rmarkdown": { + "Package": "rmarkdown", + "Version": "2.29", + "Source": "Repository", + "Type": "Package", + "Title": "Dynamic Documents for R", + "Authors@R": "c( person(\"JJ\", \"Allaire\", , \"jj@posit.co\", role = \"aut\"), person(\"Yihui\", \"Xie\", , \"xie@yihui.name\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Christophe\", \"Dervieux\", , \"cderv@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4474-2498\")), person(\"Jonathan\", \"McPherson\", , \"jonathan@posit.co\", role = \"aut\"), person(\"Javier\", \"Luraschi\", role = \"aut\"), person(\"Kevin\", \"Ushey\", , \"kevin@posit.co\", role = \"aut\"), person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = \"aut\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\"), person(\"Richard\", \"Iannone\", , \"rich@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Andrew\", \"Dunning\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0464-5036\")), person(\"Atsushi\", \"Yasumoto\", role = c(\"ctb\", \"cph\"), comment = c(ORCID = \"0000-0002-8335-495X\", cph = \"Number sections Lua filter\")), person(\"Barret\", \"Schloerke\", role = \"ctb\"), person(\"Carson\", \"Sievert\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Devon\", \"Ryan\", , \"dpryan79@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8549-0971\")), person(\"Frederik\", \"Aust\", , \"frederik.aust@uni-koeln.de\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4900-788X\")), person(\"Jeff\", \"Allen\", , \"jeff@posit.co\", role = \"ctb\"), person(\"JooYoung\", \"Seo\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4064-6012\")), person(\"Malcolm\", \"Barrett\", role = \"ctb\"), person(\"Rob\", \"Hyndman\", , \"Rob.Hyndman@monash.edu\", role = \"ctb\"), person(\"Romain\", \"Lesur\", role = \"ctb\"), person(\"Roy\", \"Storey\", role = \"ctb\"), person(\"Ruben\", \"Arslan\", , \"ruben.arslan@uni-goettingen.de\", role = \"ctb\"), person(\"Sergio\", \"Oller\", role = \"ctb\"), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(, \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery UI library; authors listed in inst/rmd/h/jqueryui/AUTHORS.txt\"), person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"), person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Alexander\", \"Farkas\", role = c(\"ctb\", \"cph\"), comment = \"html5shiv library\"), person(\"Scott\", \"Jehl\", role = c(\"ctb\", \"cph\"), comment = \"Respond.js library\"), person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\"), person(\"Greg\", \"Franko\", role = c(\"ctb\", \"cph\"), comment = \"tocify library\"), person(\"John\", \"MacFarlane\", role = c(\"ctb\", \"cph\"), comment = \"Pandoc templates\"), person(, \"Google, Inc.\", role = c(\"ctb\", \"cph\"), comment = \"ioslides library\"), person(\"Dave\", \"Raggett\", role = \"ctb\", comment = \"slidy library\"), person(, \"W3C\", role = \"cph\", comment = \"slidy library\"), person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"), comment = \"Font-Awesome\"), person(\"Ben\", \"Sperry\", role = \"ctb\", comment = \"Ionicons\"), person(, \"Drifty\", role = \"cph\", comment = \"Ionicons\"), person(\"Aidan\", \"Lister\", role = c(\"ctb\", \"cph\"), comment = \"jQuery StickyTabs\"), person(\"Benct Philip\", \"Jonsson\", role = c(\"ctb\", \"cph\"), comment = \"pagebreak Lua filter\"), person(\"Albert\", \"Krewinkel\", role = c(\"ctb\", \"cph\"), comment = \"pagebreak Lua filter\") )", + "Description": "Convert R Markdown documents into a variety of formats.", + "License": "GPL-3", + "URL": "https://github.com/rstudio/rmarkdown, https://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 (>= 0.5.0)", + "htmltools (>= 0.5.1)", + "jquerylib", + "jsonlite", + "knitr (>= 1.43)", + "methods", + "tinytex (>= 0.31)", + "tools", + "utils", + "xfun (>= 0.36)", + "yaml (>= 2.1.19)" + ], + "Suggests": [ + "digest", + "dygraphs", + "fs", + "rsconnect", + "downlit (>= 0.4.0)", + "katex (>= 1.4.0)", + "sass (>= 0.4.0)", + "shiny (>= 1.6.0)", + "testthat (>= 3.0.3)", + "tibble", + "vctrs", + "cleanrmd", + "withr (>= 2.4.2)", + "xml2" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "rstudio/quillt, pkgdown", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "SystemRequirements": "pandoc (>= 1.14) - http://pandoc.org", + "NeedsCompilation": "no", + "Author": "JJ Allaire [aut], Yihui Xie [aut, cre] (), Christophe Dervieux [aut] (), Jonathan McPherson [aut], Javier Luraschi [aut], Kevin Ushey [aut], Aron Atkins [aut], Hadley Wickham [aut], Joe Cheng [aut], Winston Chang [aut], Richard Iannone [aut] (), Andrew Dunning [ctb] (), Atsushi Yasumoto [ctb, cph] (, Number sections Lua filter), Barret Schloerke [ctb], Carson Sievert [ctb] (), Devon Ryan [ctb] (), Frederik Aust [ctb] (), Jeff Allen [ctb], JooYoung Seo [ctb] (), Malcolm Barrett [ctb], Rob Hyndman [ctb], Romain Lesur [ctb], Roy Storey [ctb], Ruben Arslan [ctb], Sergio Oller [ctb], Posit Software, PBC [cph, fnd], jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in inst/rmd/h/jqueryui/AUTHORS.txt), Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library), Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Alexander Farkas [ctb, cph] (html5shiv library), Scott Jehl [ctb, cph] (Respond.js library), Ivan Sagalaev [ctb, cph] (highlight.js library), Greg Franko [ctb, cph] (tocify library), John MacFarlane [ctb, cph] (Pandoc templates), Google, Inc. [ctb, cph] (ioslides library), Dave Raggett [ctb] (slidy library), W3C [cph] (slidy library), Dave Gandy [ctb, cph] (Font-Awesome), Ben Sperry [ctb] (Ionicons), Drifty [cph] (Ionicons), Aidan Lister [ctb, cph] (jQuery StickyTabs), Benct Philip Jonsson [ctb, cph] (pagebreak Lua filter), Albert Krewinkel [ctb, cph] (pagebreak Lua filter)", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "rpart": { + "Package": "rpart", + "Version": "4.1.24", + "Source": "Repository", + "Priority": "recommended", + "Date": "2025-01-06", + "Authors@R": "c(person(\"Terry\", \"Therneau\", role = \"aut\", email = \"therneau@mayo.edu\"), person(\"Beth\", \"Atkinson\", role = c(\"aut\", \"cre\"), email = \"atkinson@mayo.edu\"), person(\"Brian\", \"Ripley\", role = \"trl\", email = \"ripley@stats.ox.ac.uk\", comment = \"producer of the initial R port, maintainer 1999-2017\"))", + "Description": "Recursive partitioning for classification, regression and survival trees. An implementation of most of the functionality 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], Beth Atkinson [aut, cre], Brian Ripley [trl] (producer of the initial R port, maintainer 1999-2017)", + "Maintainer": "Beth Atkinson ", + "Repository": "CRAN", + "URL": "https://github.com/bethatkinson/rpart, https://cran.r-project.org/package=rpart", + "BugReports": "https://github.com/bethatkinson/rpart/issues" + }, + "rprojroot": { + "Package": "rprojroot", + "Version": "2.0.4", + "Source": "Repository", + "Title": "Finding Files in Project Subdirectories", + "Authors@R": "person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\"))", + "Description": "Robust, reliable and flexible paths to files below a project root. The 'root' of a project is defined as a directory that matches 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", + "rlang", + "rmarkdown", + "testthat (>= 3.0.0)", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Kirill Müller [aut, cre] ()", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "rsample": { + "Package": "rsample", + "Version": "1.2.1", + "Source": "Repository", + "Title": "General Resampling Infrastructure", + "Authors@R": "c( person(\"Hannah\", \"Frick\", , \"hannah@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6049-5258\")), person(\"Fanny\", \"Chow\", , \"fannybchow@gmail.com\", role = \"aut\"), person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"), person(\"Michael\", \"Mahoney\", , \"mike.mahoney.218@gmail.com\", role = c(\"aut\"), comment = c(ORCID = \"0000-0003-2402-304X\")), person(\"Julia\", \"Silge\", , \"julia.silge@posit.co\", role = c(\"aut\"), comment = c(ORCID = \"0000-0002-3671-836X\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Classes and functions to create and summarize different types of resampling objects (e.g. bootstrap, cross-validation).", + "License": "MIT + file LICENSE", + "URL": "https://rsample.tidymodels.org, https://github.com/tidymodels/rsample", + "BugReports": "https://github.com/tidymodels/rsample/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "cli", + "dplyr (>= 1.1.1)", + "furrr", + "generics", + "glue", + "lifecycle", + "methods", + "pillar", + "purrr (>= 1.0.0)", + "rlang (>= 0.4.10)", + "slider (>= 0.1.5)", + "tibble", + "tidyr", + "tidyselect", + "vctrs (>= 0.5.0)" + ], + "Suggests": [ + "broom", + "covr", + "ggplot2", + "knitr", + "modeldata", + "recipes (>= 0.1.4)", + "rmarkdown", + "stats", + "testthat (>= 3.0.0)", + "utils", + "whisker", + "withr", + "xml2" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "GGally, nlstools, tidymodels, tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Author": "Hannah Frick [aut, cre] (), Fanny Chow [aut], Max Kuhn [aut], Michael Mahoney [aut] (), Julia Silge [aut] (), Hadley Wickham [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hannah Frick ", + "Repository": "CRAN" + }, + "rsconnect": { + "Package": "rsconnect", + "Version": "1.4.1", + "Source": "Repository", + "Type": "Package", + "Title": "Deploy Docs, Apps, and APIs to 'Posit Connect', 'shinyapps.io', and 'RPubs'", + "Authors@R": "c( person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")), person(\"Toph\", \"Allen\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Programmatic deployment interface for 'RPubs', 'shinyapps.io', and 'Posit Connect'. Supported content types include R Markdown documents, Shiny applications, Plumber APIs, plots, and static web content.", + "License": "GPL-2", + "URL": "https://rstudio.github.io/rsconnect/, https://github.com/rstudio/rsconnect", + "BugReports": "https://github.com/rstudio/rsconnect/issues", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "cli", + "curl", + "digest", + "jsonlite", + "lifecycle", + "openssl (>= 2.0.0)", + "PKI", + "packrat (>= 0.6)", + "renv (>= 1.0.0)", + "rlang (>= 1.0.0)", + "rstudioapi (>= 0.5)", + "tools", + "yaml (>= 2.1.5)", + "RcppTOML", + "jose", + "utils" + ], + "Suggests": [ + "Biobase", + "BiocManager", + "foreign", + "knitr", + "MASS", + "plumber (>= 0.3.2)", + "quarto", + "RCurl", + "reticulate", + "rmarkdown (>= 1.1)", + "shiny", + "testthat (>= 3.1.9)", + "webfakes", + "withr" + ], + "VignetteBuilder": "knitr, rmarkdown", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Aron Atkins [aut, cre], Toph Allen [aut], Hadley Wickham [aut], Jonathan McPherson [aut], JJ Allaire [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Aron Atkins ", + "Repository": "CRAN" + }, + "rstudioapi": { + "Package": "rstudioapi", + "Version": "0.17.1", + "Source": "Repository", + "Title": "Safely Access the RStudio API", + "Description": "Access the RStudio API (if available) and provide informative error messages when it's not.", + "Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"kevin@rstudio.com\"), person(\"JJ\", \"Allaire\", role = c(\"aut\"), email = \"jj@posit.co\"), person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"hadley@posit.co\"), person(\"Gary\", \"Ritchie\", role = c(\"aut\"), email = \"gary@posit.co\"), person(family = \"RStudio\", role = \"cph\") )", + "Maintainer": "Kevin Ushey ", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/rstudioapi/, https://github.com/rstudio/rstudioapi", + "BugReports": "https://github.com/rstudio/rstudioapi/issues", + "RoxygenNote": "7.3.2", + "Suggests": [ + "testthat", + "knitr", + "rmarkdown", + "clipr", + "covr" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Author": "Kevin Ushey [aut, cre], JJ Allaire [aut], Hadley Wickham [aut], Gary Ritchie [aut], RStudio [cph]", + "Repository": "CRAN" + }, + "sass": { + "Package": "sass", + "Version": "0.4.9", + "Source": "Repository", + "Type": "Package", + "Title": "Syntactically Awesome Style Sheets ('Sass')", + "Description": "An 'SCSS' compiler, powered by the 'LibSass' library. With this, R developers can use variables, inheritance, and functions to generate dynamic style sheets. The package uses the 'Sass CSS' extension language, which is stable, powerful, and CSS compatible.", + "Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@rstudio.com\", \"aut\"), person(\"Timothy\", \"Mastny\", , \"tim.mastny@gmail.com\", \"aut\"), person(\"Richard\", \"Iannone\", , \"rich@rstudio.com\", \"aut\", comment = c(ORCID = \"0000-0003-3925-190X\")), person(\"Barret\", \"Schloerke\", , \"barret@rstudio.com\", \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Carson\", \"Sievert\", , \"carson@rstudio.com\", c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Christophe\", \"Dervieux\", , \"cderv@rstudio.com\", c(\"ctb\"), comment = c(ORCID = \"0000-0003-4474-2498\")), person(family = \"RStudio\", role = c(\"cph\", \"fnd\")), person(family = \"Sass Open Source Foundation\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Greter\", \"Marcel\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Mifsud\", \"Michael\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Hampton\", \"Catlin\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Natalie\", \"Weizenbaum\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Chris\", \"Eppstein\", role = c(\"ctb\", \"cph\"), comment = \"LibSass library\"), person(\"Adams\", \"Joseph\", role = c(\"ctb\", \"cph\"), comment = \"json.cpp\"), person(\"Trifunovic\", \"Nemanja\", role = c(\"ctb\", \"cph\"), comment = \"utf8.h\") )", + "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.3.1", + "SystemRequirements": "GNU make", + "Imports": [ + "fs (>= 1.2.4)", + "rlang (>= 0.4.10)", + "htmltools (>= 0.5.1)", + "R6", + "rappdirs" + ], + "Suggests": [ + "testthat", + "knitr", + "rmarkdown", + "withr", + "shiny", + "curl" + ], + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Author": "Joe Cheng [aut], Timothy Mastny [aut], Richard Iannone [aut] (), Barret Schloerke [aut] (), Carson Sievert [aut, cre] (), Christophe Dervieux [ctb] (), RStudio [cph, fnd], Sass Open Source Foundation [ctb, cph] (LibSass library), Greter Marcel [ctb, cph] (LibSass library), Mifsud Michael [ctb, cph] (LibSass library), Hampton Catlin [ctb, cph] (LibSass library), Natalie Weizenbaum [ctb, cph] (LibSass library), Chris Eppstein [ctb, cph] (LibSass library), Adams Joseph [ctb, cph] (json.cpp), Trifunovic Nemanja [ctb, cph] (utf8.h)", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN" + }, + "scales": { + "Package": "scales", + "Version": "1.3.0", + "Source": "Repository", + "Title": "Scale Functions for Visualization", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\")), person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Dana\", \"Seidel\", role = \"aut\"), person(\"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Graphical scales map data to aesthetics, and provide methods for 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.6)" + ], + "Imports": [ + "cli", + "farver (>= 2.0.3)", + "glue", + "labeling", + "lifecycle", + "munsell (>= 0.5)", + "R6", + "RColorBrewer", + "rlang (>= 1.0.0)", + "viridisLite" + ], + "Suggests": [ + "bit64", + "covr", + "dichromat", + "ggplot2", + "hms (>= 0.5.0)", + "stringi", + "testthat (>= 3.0.0)" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyLoad": "yes", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut], Thomas Lin Pedersen [cre, aut] (), Dana Seidel [aut], Posit, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN" + }, + "shape": { + "Package": "shape", + "Version": "1.4.6.1", + "Source": "Repository", + "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 such as ellipses, circles, cylinders, arrows, ...", + "License": "GPL (>= 3)", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "shiny": { + "Package": "shiny", + "Version": "1.10.0", + "Source": "Repository", + "Type": "Package", + "Title": "Web Application Framework for R", + "Authors@R": "c( person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"), person(\"JJ\", \"Allaire\", role = \"aut\", email = \"jj@posit.co\"), person(\"Carson\", \"Sievert\", role = \"aut\", email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Barret\", \"Schloerke\", role = \"aut\", email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Yihui\", \"Xie\", role = \"aut\", email = \"yihui@posit.co\"), person(\"Jeff\", \"Allen\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"jonathan@posit.co\"), person(\"Alan\", \"Dipert\", role = \"aut\"), person(\"Barbara\", \"Borges\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(family = \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library and jQuery UI library\"), person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"), person(family = \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt\"), person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"), person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"), person(family = \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(family = \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Prem Nawaz\", \"Khan\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Victor\", \"Tsaran\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Dennis\", \"Lembree\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Srinivasu\", \"Chakravarthula\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Cathy\", \"O'Connor\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(family = \"PayPal, Inc\", role = \"cph\", comment = \"Bootstrap accessibility plugin\"), person(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js library\"), person(\"Salmen\", \"Bejaoui\", role = c(\"ctb\", \"cph\"), comment = \"selectize-plugin-a11y library\"), person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"), comment = \"ion.rangeSlider library\"), person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"), comment = \"Javascript strftime library\"), person(family = \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables library\"), person(\"John\", \"Fraser\", role = c(\"ctb\", \"cph\"), comment = \"showdown.js library\"), person(\"John\", \"Gruber\", role = c(\"ctb\", \"cph\"), comment = \"showdown.js library\"), person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\"), person(family = \"R Core Team\", role = c(\"ctb\", \"cph\"), comment = \"tar implementation from R\") )", + "Description": "Makes it incredibly easy to build interactive web applications with R. Automatic \"reactive\" binding between inputs and outputs and extensive prebuilt widgets make it possible to build beautiful, 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 (>= 0.9.16)", + "xtable", + "fontawesome (>= 0.4.0)", + "htmltools (>= 0.5.4)", + "R6 (>= 2.0)", + "sourcetools", + "later (>= 1.0.0)", + "promises (>= 1.3.2)", + "tools", + "crayon", + "rlang (>= 0.4.10)", + "fastmap (>= 1.1.1)", + "withr", + "commonmark (>= 1.7)", + "glue (>= 1.3.2)", + "bslib (>= 0.6.0)", + "cachem (>= 1.1.0)", + "lifecycle (>= 0.2.0)" + ], + "Suggests": [ + "coro (>= 1.1.0)", + "datasets", + "DT", + "Cairo (>= 1.5-5)", + "testthat (>= 3.0.0)", + "knitr (>= 1.6)", + "markdown", + "rmarkdown", + "ggplot2", + "reactlog (>= 1.0.0)", + "magrittr", + "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' 'bind-event.R' 'bookmark-state-local.R' 'bookmark-state.R' 'bootstrap-deprecated.R' 'bootstrap-layout.R' 'conditions.R' 'map.R' 'utils.R' 'bootstrap.R' 'busy-indicators-spinners.R' 'busy-indicators.R' 'cache-utils.R' 'deprecated.R' 'devmode.R' 'diagnose.R' 'extended-task.R' 'fileupload.R' 'graph.R' 'reactives.R' 'reactive-domains.R' 'history.R' 'hooks.R' 'html-deps.R' 'image-interact-opts.R' 'image-interact.R' 'imageutils.R' 'input-action.R' 'input-checkbox.R' 'input-checkboxgroup.R' 'input-date.R' 'input-daterange.R' 'input-file.R' 'input-numeric.R' 'input-password.R' 'input-radiobuttons.R' 'input-select.R' 'input-slider.R' 'input-submit.R' 'input-text.R' 'input-textarea.R' 'input-utils.R' 'insert-tab.R' 'insert-ui.R' 'jqueryui.R' 'knitr.R' 'middleware-shiny.R' 'middleware.R' 'timer.R' 'shiny.R' 'mock-session.R' 'modal.R' 'modules.R' 'notifications.R' 'priorityqueue.R' 'progress.R' 'react.R' 'reexports.R' 'render-cached-plot.R' 'render-plot.R' 'render-table.R' 'run-url.R' 'runapp.R' 'serializers.R' 'server-input-handlers.R' 'server-resource-paths.R' 'server.R' 'shiny-options.R' 'shiny-package.R' 'shinyapp.R' 'shinyui.R' 'shinywrappers.R' 'showcase.R' 'snapshot.R' 'staticimports.R' 'tar.R' 'test-export.R' 'test-server.R' 'test.R' 'update-input.R' 'utils-lang.R' 'version_bs_date_picker.R' 'version_ion_range_slider.R' 'version_jquery.R' 'version_jqueryui.R' 'version_selectize.R' 'version_strftime.R' 'viewer.R'", + "RoxygenNote": "7.3.2", + "Encoding": "UTF-8", + "RdMacros": "lifecycle", + "Config/testthat/edition": "3", + "Config/Needs/check": "shinytest2", + "NeedsCompilation": "no", + "Author": "Winston Chang [aut, cre] (), Joe Cheng [aut], JJ Allaire [aut], Carson Sievert [aut] (), Barret Schloerke [aut] (), Yihui Xie [aut], Jeff Allen [aut], Jonathan McPherson [aut], Alan Dipert [aut], Barbara Borges [aut], Posit Software, PBC [cph, fnd], jQuery Foundation [cph] (jQuery library and jQuery UI library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt), jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt), Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library), Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Prem Nawaz Khan [ctb] (Bootstrap accessibility plugin), Victor Tsaran [ctb] (Bootstrap accessibility plugin), Dennis Lembree [ctb] (Bootstrap accessibility plugin), Srinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin), Cathy O'Connor [ctb] (Bootstrap accessibility plugin), PayPal, Inc [cph] (Bootstrap accessibility plugin), Stefan Petre [ctb, cph] (Bootstrap-datepicker library), Andrew Rowls [ctb, cph] (Bootstrap-datepicker library), Brian Reavis [ctb, cph] (selectize.js library), Salmen Bejaoui [ctb, cph] (selectize-plugin-a11y library), Denis Ineshin [ctb, cph] (ion.rangeSlider library), Sami Samhuri [ctb, cph] (Javascript strftime library), SpryMedia Limited [ctb, cph] (DataTables library), John Fraser [ctb, cph] (showdown.js library), John Gruber [ctb, cph] (showdown.js library), Ivan Sagalaev [ctb, cph] (highlight.js library), R Core Team [ctb, cph] (tar implementation from R)", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "shinyTime": { + "Package": "shinyTime", + "Version": "1.0.3", + "Source": "Repository", + "Type": "Package", + "Title": "A Time Input Widget for Shiny", + "Authors@R": "person(\"Gerhard\", \"Burger\", email = \"burger.ga@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-1062-5576\"))", + "Description": "Provides a time input widget for Shiny. This widget allows intuitive time input in the '[hh]:[mm]:[ss]' or '[hh]:[mm]' (24H) format by using a separate numeric input for each time component. The interface with R uses date-time objects. See the project page for more information and examples.", + "License": "GPL-3 | file LICENSE", + "Imports": [ + "htmltools", + "shiny" + ], + "URL": "https://burgerga.github.io/shinyTime/, https://github.com/burgerga/shinyTime", + "BugReports": "https://github.com/burgerga/shinyTime/issues", + "RoxygenNote": "7.2.1", + "Encoding": "UTF-8", + "Language": "en-US", + "Suggests": [ + "testthat (>= 2.1.0)", + "spelling", + "hms" + ], + "NeedsCompilation": "no", + "Author": "Gerhard Burger [aut, cre] ()", + "Maintainer": "Gerhard Burger ", + "Repository": "CRAN" + }, + "shinyWidgets": { + "Package": "shinyWidgets", + "Version": "0.8.7", + "Source": "Repository", + "Title": "Custom Inputs Widgets for Shiny", + "Authors@R": "c( person(\"Victor\", \"Perrier\", email = \"victor.perrier@dreamrs.fr\", role = c(\"aut\", \"cre\", \"cph\")), person(\"Fanny\", \"Meyer\", role = \"aut\"), person(\"David\", \"Granjon\", role = \"aut\"), person(\"Ian\", \"Fellows\", role = \"ctb\", comment = \"Methods for mutating vertical tabs & updateMultiInput\"), person(\"Wil\", \"Davis\", role = \"ctb\", comment = \"numericRangeInput function\"), person(\"Spencer\", \"Matthews\", role = \"ctb\", comment = \"autoNumeric methods\"), person(family = \"JavaScript and CSS libraries authors\", role = c(\"ctb\", \"cph\"), comment = \"All authors are listed in LICENSE.md\") )", + "Description": "Collection of custom input controls and user interface components for 'Shiny' applications. Give your applications a unique and colorful style !", + "URL": "https://github.com/dreamRs/shinyWidgets, https://dreamrs.github.io/shinyWidgets/", + "BugReports": "https://github.com/dreamRs/shinyWidgets/issues", + "License": "GPL-3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.2", + "Depends": [ + "R (>= 3.1.0)" + ], + "Imports": [ + "bslib", + "sass", + "shiny (>= 1.6.0)", + "htmltools (>= 0.5.1)", + "jsonlite", + "grDevices", + "rlang" + ], + "Suggests": [ + "testthat", + "covr", + "ggplot2", + "DT", + "scales", + "shinydashboard", + "shinydashboardPlus" + ], + "NeedsCompilation": "no", + "Author": "Victor Perrier [aut, cre, cph], Fanny Meyer [aut], David Granjon [aut], Ian Fellows [ctb] (Methods for mutating vertical tabs & updateMultiInput), Wil Davis [ctb] (numericRangeInput function), Spencer Matthews [ctb] (autoNumeric methods), JavaScript and CSS libraries authors [ctb, cph] (All authors are listed in LICENSE.md)", + "Maintainer": "Victor Perrier ", + "Repository": "CRAN" + }, + "shinycssloaders": { + "Package": "shinycssloaders", + "Version": "1.1.0", + "Source": "Repository", + "Title": "Add Loading Animations to a 'shiny' Output While It's Recalculating", + "Authors@R": "c( person(\"Dean\",\"Attali\",email=\"daattali@gmail.com\",role=c(\"aut\",\"cre\"), comment = c(\"Maintainer/developer of shinycssloaders since 2019\", ORCID=\"0000-0002-5645-3493\")), person(\"Andras\",\"Sali\",email=\"andras.sali@alphacruncher.hu\",role=c(\"aut\"),comment=\"Original creator of shinycssloaders package\"), person(\"Luke\",\"Hass\",role=c(\"ctb\",\"cph\"),comment=\"Author of included CSS loader code\") )", + "Description": "When a 'Shiny' output (such as a plot, table, map, etc.) is recalculating, it remains visible but gets greyed out. Using 'shinycssloaders', you can add a loading animation (\"spinner\") to outputs instead. By wrapping a 'Shiny' output in 'withSpinner()', a spinner will automatically appear while the output is recalculating. You can also manually show and hide the spinner, or add a full-page spinner to cover the entire page. See the demo online at .", + "License": "MIT + file LICENSE", + "URL": "https://github.com/daattali/shinycssloaders, https://daattali.com/shiny/shinycssloaders-demo/", + "BugReports": "https://github.com/daattali/shinycssloaders/issues", + "Depends": [ + "R (>= 3.1)" + ], + "Imports": [ + "digest", + "glue", + "grDevices", + "htmltools (>= 0.3.5)", + "shiny" + ], + "Suggests": [ + "knitr", + "shinydisconnect", + "shinyjs" + ], + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Author": "Dean Attali [aut, cre] (Maintainer/developer of shinycssloaders since 2019, ), Andras Sali [aut] (Original creator of shinycssloaders package), Luke Hass [ctb, cph] (Author of included CSS loader code)", + "Maintainer": "Dean Attali ", + "Repository": "CRAN" + }, + "shinyjs": { + "Package": "shinyjs", + "Version": "2.1.0", + "Source": "Repository", + "Title": "Easily Improve the User Experience of Your Shiny Apps in Seconds", + "Authors@R": "person(\"Dean\", \"Attali\", email = \"daattali@gmail.com\", role = c(\"aut\", \"cre\"), comment= c(ORCID=\"0000-0002-5645-3493\"))", + "Description": "Perform common useful JavaScript operations in Shiny apps that will greatly improve your apps without having to know any JavaScript. Examples include: hiding an element, disabling an input, resetting an input back to its original value, delaying code execution by a few seconds, and many more useful functions for both the end user and the developer. 'shinyjs' can also be 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", + "shinydisconnect", + "testthat (>= 0.9.1)" + ], + "License": "MIT + file LICENSE", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.1.1", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Author": "Dean Attali [aut, cre] ()", + "Maintainer": "Dean Attali ", + "Repository": "CRAN" + }, + "shinytest2": { + "Package": "shinytest2", + "Version": "0.3.2", + "Source": "Repository", + "Title": "Testing for Shiny Applications", + "Authors@R": "c( person(\"Barret\", \"Schloerke\", role = c(\"cre\", \"aut\"), email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(family = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Winston\", \"Chang\", role =\"ctb\", email = \"winston@posit.co\", comment = \"Original author to rstudio/shinytest\"), person(\"Gábor\", \"Csárdi\", role = \"ctb\", email = \"gabor@posit.co\", comment = \"Original author to rstudio/shinytest\"), person(\"Hadley\", \"Wickham\", role = \"ctb\", email = \"hadley@posit.co\", comment = \"Original author to rstudio/shinytest\"), person(family = \"Mango Solutions\", role = c(\"cph\", \"ccp\"), comment = \"Original author to rstudio/shinytest\") )", + "Description": "Automated unit testing of Shiny applications through a headless 'Chromium' browser.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.1", + "URL": "https://rstudio.github.io/shinytest2/, https://github.com/rstudio/shinytest2", + "BugReports": "https://github.com/rstudio/shinytest2/issues", + "VignetteBuilder": "knitr", + "Depends": [ + "testthat (>= 3.1.2)" + ], + "Imports": [ + "R6 (>= 2.4.0)", + "callr", + "checkmate (>= 2.0.0)", + "chromote (>= 0.1.2)", + "crayon", + "fs", + "globals (>= 0.14.0)", + "httr", + "jsonlite", + "pingr", + "rlang (>= 1.0.0)", + "rmarkdown", + "shiny", + "withr" + ], + "Suggests": [ + "deSolve", + "diffobj", + "ggplot2", + "knitr", + "plotly", + "png", + "rstudioapi", + "shinyWidgets", + "shinytest (>= 1.5.1)", + "shinyvalidate (>= 0.1.2)", + "showimage", + "usethis", + "vdiffr (>= 1.0.0)", + "spelling" + ], + "Config/Needs/check": "rstudio/shiny", + "Config/Needs/website": "pkgdown, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Collate": "'R6-helper.R' 'app-driver-chromote.R' 'app-driver-dir.R' 'app-driver-expect-download.R' 'app-driver-expect-js.R' 'app-driver-expect-screenshot.R' 'app-driver-expect-unique-names.R' 'app-driver-expect-values.R' 'app-driver-get-log.R' 'app-driver-initialize.R' 'app-driver-log-message.R' 'app-driver-message.R' 'app-driver-node.R' 'app-driver-set-inputs.R' 'app-driver-start.R' 'app-driver-stop.R' 'app-driver-timeout.R' 'app-driver-upload-file.R' 'app-driver-variant.R' 'app-driver-wait.R' 'app-driver-window.R' 'app-driver.R' 'chromote-methods.R' 'compare-screenshot-threshold.R' 'cpp11.R' 'expect-snapshot.R' 'expr-recurse.R' 'httr.R' 'migrate.R' 'missing-value.R' 'utils.R' 'platform.R' 'record-test-unique-name.R' 'record-test.R' 'rstudio.R' 'save-app.R' 'shiny-browser.R' 'shinytest2-logs.R' 'shinytest2-package.R' 'test-app.R' 'use.R'", + "LinkingTo": [ + "cpp11" + ], + "NeedsCompilation": "yes", + "Author": "Barret Schloerke [cre, aut] (), Posit Software, PBC [cph, fnd], Winston Chang [ctb] (Original author to rstudio/shinytest), Gábor Csárdi [ctb] (Original author to rstudio/shinytest), Hadley Wickham [ctb] (Original author to rstudio/shinytest), Mango Solutions [cph, ccp] (Original author to rstudio/shinytest)", + "Maintainer": "Barret Schloerke ", + "Repository": "CRAN" + }, + "slider": { + "Package": "slider", + "Version": "0.3.2", + "Source": "Repository", + "Title": "Sliding Window Functions", + "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides type-stable rolling window functions over any R data type. Cumulative and expanding windows are also supported. For more advanced usage, an index can be used as a secondary vector that defines how sliding windows are to be created.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/slider, https://slider.r-lib.org", + "BugReports": "https://github.com/r-lib/slider/issues", + "Depends": [ + "R (>= 4.0.0)" + ], + "Imports": [ + "cli (>= 3.6.1)", + "rlang (>= 1.1.1)", + "vctrs (>= 0.6.3)", + "warp" + ], + "Suggests": [ + "covr", + "dplyr (>= 1.0.0)", + "knitr", + "lubridate", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "LinkingTo": [ + "vctrs (>= 0.6.3)" + ], + "VignetteBuilder": "knitr", + "Config/build/compilation-database": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2024-10-25", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Collate": "'arithmetic.R' 'block.R' 'conditions.R' 'hop-common.R' 'hop-index-common.R' 'hop-index.R' 'hop-index2.R' 'hop.R' 'hop2.R' 'phop-index.R' 'phop.R' 'slide-index2.R' 'pslide-index.R' 'slide-period2.R' 'pslide-period.R' 'slide2.R' 'pslide.R' 'segment-tree.R' 'slide-common.R' 'slide-index-common.R' 'slide-index.R' 'slide-period-common.R' 'slide-period.R' 'slide.R' 'slider-package.R' 'summary-index.R' 'summary-slide.R' 'utils.R' 'zzz.R'", + "NeedsCompilation": "yes", + "Author": "Davis Vaughan [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "sourcetools": { + "Package": "sourcetools", + "Version": "0.1.7-1", + "Source": "Repository", + "Type": "Package", + "Title": "Tools for Reading, Tokenizing and Parsing R Code", + "Author": "Kevin Ushey", + "Maintainer": "Kevin Ushey ", + "Description": "Tools for the reading and tokenization of R code. The 'sourcetools' package provides both an R and C++ interface for the tokenization of R code, and helpers for interacting with the tokenized representation of R code.", + "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", + "Repository": "CRAN" + }, + "sparsevctrs": { + "Package": "sparsevctrs", + "Version": "0.2.0", + "Source": "Repository", + "Title": "Sparse Vectors for Use in Data Frames", + "Authors@R": "c( person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-0679-1945\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides sparse vectors powered by ALTREP (Alternative Representations for R Objects) that behave like regular vectors, and can thus be used in data frames. Also provides tools to convert between sparse matrices and data frames with sparse columns and functions to interact with sparse vectors.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/sparsevctrs, https://r-lib.github.io/sparsevctrs/", + "BugReports": "https://github.com/r-lib/sparsevctrs/issues", + "Depends": [ + "R (>= 4.0.0)" + ], + "Imports": [ + "cli (>= 3.4.0)", + "rlang (>= 1.1.0)", + "vctrs" + ], + "Suggests": [ + "knitr", + "Matrix", + "methods", + "rmarkdown", + "testthat (>= 3.0.0)", + "tibble", + "withr" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate, rmarkdown, lobstr, ggplot2, bench, tidyr, ggbeeswarm", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Emil Hvitfeldt [aut, cre] (), Davis Vaughan [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Emil Hvitfeldt ", + "Repository": "CRAN" + }, + "stringi": { + "Package": "stringi", + "Version": "1.8.4", + "Source": "Repository", + "Date": "2024-05-06", + "Title": "Fast and Portable Character String Processing Facilities", + "Description": "A collection of character string/text/natural language processing tools for pattern searching (e.g., with 'Java'-like regular expressions or the 'Unicode' collation algorithm), random string generation, case mapping, string transliteration, concatenation, sorting, padding, wrapping, Unicode normalisation, date-time formatting and parsing, and many more. They are fast, consistent, convenient, and - thanks to 'ICU' (International Components for Unicode) - portable across all locales and platforms. Documentation about 'stringi' is provided via its website at and the paper by Gagolewski (2022, ).", + "URL": "https://stringi.gagolewski.com/, https://github.com/gagolews/stringi, https://icu.unicode.org/", + "BugReports": "https://github.com/gagolews/stringi/issues", + "SystemRequirements": "ICU4C (>= 61, optional)", + "Type": "Package", + "Depends": [ + "R (>= 3.4)" + ], + "Imports": [ + "tools", + "utils", + "stats" + ], + "Biarch": "TRUE", + "License": "file LICENSE", + "Author": "Marek Gagolewski [aut, cre, cph] (), Bartek Tartanus [ctb], and others (stringi source code); Unicode, Inc. and others (ICU4C source code, Unicode Character Database)", + "Maintainer": "Marek Gagolewski ", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "License_is_FOSS": "yes", + "Repository": "CRAN" + }, + "stringr": { + "Package": "stringr", + "Version": "1.5.1", + "Source": "Repository", + "Title": "Simple, Consistent Wrappers for Common String Operations", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\", \"cph\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A consistent, simple and easy to use set of wrappers around the fantastic 'stringi' package. All function and argument names (and positions) are consistent, all functions deal with \"NA\"'s and zero length vectors in the same way, and the output from one function is easy to feed into the input of another.", + "License": "MIT + file LICENSE", + "URL": "https://stringr.tidyverse.org, https://github.com/tidyverse/stringr", + "BugReports": "https://github.com/tidyverse/stringr/issues", + "Depends": [ + "R (>= 3.6)" + ], + "Imports": [ + "cli", + "glue (>= 1.6.1)", + "lifecycle (>= 1.0.3)", + "magrittr", + "rlang (>= 1.0.0)", + "stringi (>= 1.5.3)", + "vctrs (>= 0.4.0)" + ], + "Suggests": [ + "covr", + "dplyr", + "gt", + "htmltools", + "htmlwidgets", + "knitr", + "rmarkdown", + "testthat (>= 3.0.0)", + "tibble" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre, cph], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "styler": { + "Package": "styler", + "Version": "1.10.3", + "Source": "Repository", + "Type": "Package", + "Title": "Non-Invasive Pretty Printing of R Code", + "Authors@R": "c(person(given = \"Kirill\", family = \"Müller\", role = \"aut\", email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Lorenz\", family = \"Walthert\", role = c(\"cre\", \"aut\"), email = \"lorenz.walthert@icloud.com\"), person(given = \"Indrajeet\", family = \"Patil\", role = \"ctb\", email = \"patilindrajeet.science@gmail.com\", comment = c(ORCID = \"0000-0003-1995-6531\", Twitter = \"@patilindrajeets\")))", + "Description": "Pretty-prints R code without changing the user's formatting intent.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/styler, https://styler.r-lib.org", + "BugReports": "https://github.com/r-lib/styler/issues", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "cli (>= 3.1.1)", + "magrittr (>= 2.0.0)", + "purrr (>= 0.2.3)", + "R.cache (>= 0.15.0)", + "rlang (>= 1.0.0)", + "rprojroot (>= 1.1)", + "tools", + "vctrs (>= 0.4.1)", + "withr (>= 2.3.0)" + ], + "Suggests": [ + "data.tree (>= 0.1.6)", + "digest", + "here", + "knitr", + "prettycode", + "rmarkdown", + "roxygen2", + "rstudioapi (>= 0.7)", + "tibble (>= 1.4.2)", + "testthat (>= 3.0.0)" + ], + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Collate": "'addins.R' 'communicate.R' 'compat-dplyr.R' 'compat-tidyr.R' 'detect-alignment-utils.R' 'detect-alignment.R' 'environments.R' 'expr-is.R' 'indent.R' 'initialize.R' 'io.R' 'nest.R' 'nested-to-tree.R' 'parse.R' 'reindent.R' 'token-define.R' 'relevel.R' 'roxygen-examples-add-remove.R' 'roxygen-examples-find.R' 'roxygen-examples-parse.R' 'roxygen-examples.R' 'rules-indention.R' 'rules-line-breaks.R' 'rules-spaces.R' 'rules-tokens.R' 'serialize.R' 'set-assert-args.R' 'style-guides.R' 'styler-package.R' 'stylerignore.R' 'testing-mocks.R' 'testing-public-api.R' 'ui-caching.R' 'testing.R' 'token-create.R' 'transform-block.R' 'transform-code.R' 'transform-files.R' 'ui-styling.R' 'unindent.R' 'utils-cache.R' 'utils-files.R' 'utils-navigate-nest.R' 'utils-strings.R' 'utils.R' 'vertical.R' 'visit.R' 'zzz.R'", + "NeedsCompilation": "no", + "Author": "Kirill Müller [aut] (), Lorenz Walthert [cre, aut], Indrajeet Patil [ctb] (, @patilindrajeets)", + "Maintainer": "Lorenz Walthert ", + "Repository": "CRAN" + }, + "survival": { + "Package": "survival", + "Version": "3.8-3", + "Source": "Repository", + "Title": "Survival Analysis", + "Priority": "recommended", + "Date": "2024-12-17", + "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\", email=\"therneau.terry@mayo.edu\", role=c(\"aut\", \"cre\")), person(\"Thomas\", \"Lumley\", role=c(\"ctb\", \"trl\"), comment=\"original S->R port and R maintainer until 2009\"), person(\"Atkinson\", \"Elizabeth\", role=\"ctb\"), person(\"Crowson\", \"Cynthia\", role=\"ctb\"))", + "Description": "Contains the core survival analysis routines, including definition of Surv objects, Kaplan-Meier and Aalen-Johansen (multi-state) curves, Cox models, and parametric accelerated failure time models.", + "License": "LGPL (>= 2)", + "URL": "https://github.com/therneau/survival", + "NeedsCompilation": "yes", + "Author": "Terry M Therneau [aut, cre], Thomas Lumley [ctb, trl] (original S->R port and R maintainer until 2009), Atkinson Elizabeth [ctb], Crowson Cynthia [ctb]", + "Maintainer": "Terry M Therneau ", + "Repository": "CRAN" + }, + "sys": { + "Package": "sys", + "Version": "3.4.3", + "Source": "Repository", + "Type": "Package", + "Title": "Powerful and Reliable Tools for Running System Commands in R", + "Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"ctb\"))", + "Description": "Drop-in replacements for the base system2() function with fine control and consistent behavior across platforms. Supports clean interruption, timeout, background tasks, and streaming STDIN / STDOUT / STDERR over binary or text connections. Arguments on Windows automatically get encoded and quoted to work on 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", + "Author": "Jeroen Ooms [aut, cre] (), Gábor Csárdi [ctb]", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, + "testthat": { + "Package": "testthat", + "Version": "3.2.3", + "Source": "Repository", + "Title": "Unit Testing for R", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Core team\", role = \"ctb\", comment = \"Implementation of utils::recover()\") )", + "Description": "Software testing is important, but, in part because it is frustrating and boring, many of us avoid it. 'testthat' is a testing framework for R that is easy to learn and use, and integrates with your 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 (>= 1.4.2)", + "digest (>= 0.6.33)", + "evaluate (>= 1.0.1)", + "jsonlite (>= 1.8.7)", + "lifecycle (>= 1.0.3)", + "magrittr (>= 2.0.3)", + "methods", + "pkgload (>= 1.3.2.1)", + "praise (>= 1.0.0)", + "processx (>= 3.8.2)", + "ps (>= 1.7.5)", + "R6 (>= 2.5.1)", + "rlang (>= 1.1.1)", + "utils", + "waldo (>= 0.6.0)", + "withr (>= 3.0.2)" + ], + "Suggests": [ + "covr", + "curl (>= 0.9.5)", + "diffviewer (>= 0.1.0)", + "knitr", + "rmarkdown", + "rstudioapi", + "S7", + "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.3.2", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd], R Core team [ctb] (Implementation of utils::recover())", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "tibble": { + "Package": "tibble", + "Version": "3.2.1", + "Source": "Repository", + "Title": "Simple Data Frames", + "Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\", email = \"hadley@rstudio.com\"), person(given = \"Romain\", family = \"Francois\", role = \"ctb\", email = \"romain@r-enthusiasts.com\"), person(given = \"Jennifer\", family = \"Bryan\", role = \"ctb\", email = \"jenny@rstudio.com\"), person(given = \"RStudio\", role = c(\"cph\", \"fnd\")))", + "Description": "Provides a 'tbl_df' class (the 'tibble') with stricter checking and better formatting than the traditional data 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", + "pillar (>= 1.8.1)", + "pkgconfig", + "rlang (>= 1.0.2)", + "utils", + "vctrs (>= 0.4.2)" + ], + "Suggests": [ + "bench", + "bit64", + "blob", + "brio", + "callr", + "cli", + "covr", + "crayon (>= 1.3.4)", + "DiagrammeR", + "dplyr", + "evaluate", + "formattable", + "ggplot2", + "here", + "hms", + "htmltools", + "knitr", + "lubridate", + "mockr", + "nycflights13", + "pkgbuild", + "pkgload", + "purrr", + "rmarkdown", + "stringi", + "testthat (>= 3.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, invariants", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "true", + "Config/autostyle/rmd": "false", + "Config/Needs/website": "tidyverse/tidytemplate", + "NeedsCompilation": "yes", + "Author": "Kirill Müller [aut, cre] (), Hadley Wickham [aut], Romain Francois [ctb], Jennifer Bryan [ctb], RStudio [cph, fnd]", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "tidyr": { + "Package": "tidyr", + "Version": "1.3.1", + "Source": "Repository", + "Title": "Tidy Messy Data", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"), person(\"Maximilian\", \"Girlich\", role = \"aut\"), person(\"Kevin\", \"Ushey\", , \"kevin@posit.co\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Tools to help to create tidy data, where each column is a variable, each row is an observation, and each cell contains a single value. 'tidyr' contains tools for changing the shape (pivoting) and hierarchy (nesting and 'unnesting') of a dataset, turning deeply nested lists into rectangular data frames ('rectangling'), and extracting values out of string columns. It also includes tools for working 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.6)" + ], + "Imports": [ + "cli (>= 3.4.1)", + "dplyr (>= 1.0.10)", + "glue", + "lifecycle (>= 1.0.3)", + "magrittr", + "purrr (>= 1.0.1)", + "rlang (>= 1.1.1)", + "stringr (>= 1.5.0)", + "tibble (>= 2.1.1)", + "tidyselect (>= 1.2.0)", + "utils", + "vctrs (>= 0.5.2)" + ], + "Suggests": [ + "covr", + "data.table", + "knitr", + "readr", + "repurrrsive (>= 1.1.0)", + "rmarkdown", + "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.3.0", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre], Davis Vaughan [aut], Maximilian Girlich [aut], Kevin Ushey [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "tidyselect": { + "Package": "tidyselect", + "Version": "1.2.1", + "Source": "Repository", + "Title": "Select from a Set of Strings", + "Authors@R": "c( person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A backend for the selecting functions of the 'tidyverse'. It makes it easy to implement select-like functions in your own packages in a way that is consistent with other 'tidyverse' interfaces for selection.", + "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 (>= 1.0.4)", + "vctrs (>= 0.5.2)", + "withr" + ], + "Suggests": [ + "covr", + "crayon", + "dplyr", + "knitr", + "magrittr", + "rmarkdown", + "stringr", + "testthat (>= 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.3.0.9000", + "NeedsCompilation": "yes", + "Author": "Lionel Henry [aut, cre], Hadley Wickham [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "timeDate": { + "Package": "timeDate", + "Version": "4041.110", + "Source": "Repository", + "Title": "Rmetrics - Chronological and Calendar Objects", + "Authors@R": "c(person(\"Diethelm\", \"Wuertz\", role=\"aut\", comment = \"original code\") , person(\"Tobias\", \"Setz\", role = c(\"aut\"), email = \"tobias.setz@live.com\") , person(\"Yohan\", \"Chalabi\", role = \"aut\") , person(\"Martin\",\"Maechler\", role = \"ctb\", email = \"maechler@stat.math.ethz.ch\", comment = c(ORCID = \"0000-0002-8685-9910\")) , person(given = c(\"Joe\", \"W.\"), family = \"Byers\", role = \"ctb\") , person(given = c(\"Georgi\", \"N.\"), family = \"Boshnakov\", role = c(\"cre\", \"aut\"), email = \"georgi.boshnakov@manchester.ac.uk\") )", + "Description": "The 'timeDate' class fulfils the conventions of the ISO 8601 standard as well as of the ANSI C and POSIX standards. Beyond these standards it provides the \"Financial Center\" concept which allows to handle data records collected in different time zones and mix them up to have always the proper time stamps with respect to your personal financial center, or alternatively to the GMT reference time. It can thus also handle time stamps from historical data records from the same time zone, even if the financial centers changed day light saving times at different calendar dates.", + "Depends": [ + "R (>= 3.6.0)", + "methods" + ], + "Imports": [ + "graphics", + "utils", + "stats" + ], + "Suggests": [ + "RUnit" + ], + "License": "GPL (>= 2)", + "Encoding": "UTF-8", + "URL": "https://geobosh.github.io/timeDateDoc/ (doc), https://r-forge.r-project.org/scm/viewvc.php/pkg/timeDate/?root=rmetrics (devel), https://www.rmetrics.org", + "BugReports": "https://r-forge.r-project.org/projects/rmetrics", + "NeedsCompilation": "no", + "Author": "Diethelm Wuertz [aut] (original code), Tobias Setz [aut], Yohan Chalabi [aut], Martin Maechler [ctb] (), Joe W. Byers [ctb], Georgi N. Boshnakov [cre, aut]", + "Maintainer": "Georgi N. Boshnakov ", + "Repository": "CRAN" + }, + "timechange": { + "Package": "timechange", + "Version": "0.3.0", + "Source": "Repository", + "Title": "Efficient Manipulation of Date-Times", + "Authors@R": "c(person(\"Vitalie\", \"Spinu\", email = \"spinuvit@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Google Inc.\", role = c(\"ctb\", \"cph\")))", + "Description": "Efficient routines for manipulation of date-time objects while accounting for time-zones and daylight saving times. The package includes utilities for updating of date-time components (year, month, day etc.), modification of time-zones, rounding of date-times, period addition and subtraction etc. Parts of the 'CCTZ' source code, released under the Apache 2.0 License, are included in this package. See 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. /usr/share/zoneinfo) as well as a recent-enough C++11 compiler (such as g++-4.8 or later). On Windows the zoneinfo included with R is used.", + "BugReports": "https://github.com/vspinu/timechange/issues", + "URL": "https://github.com/vspinu/timechange/", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "yes", + "Author": "Vitalie Spinu [aut, cre], Google Inc. [ctb, cph]", + "Maintainer": "Vitalie Spinu ", + "Repository": "CRAN" + }, + "timetk": { + "Package": "timetk", + "Version": "2.9.0", + "Source": "Repository", + "Type": "Package", + "Title": "A Tool Kit for Working with Time Series", + "Authors@R": "c( person(\"Matt\", \"Dancho\", email = \"mdancho@business-science.io\", role = c(\"aut\", \"cre\")), person(\"Davis\", \"Vaughan\", email = \"dvaughan@business-science.io\", role = c(\"aut\")) )", + "Description": "Easy visualization, wrangling, and feature engineering of time series data for forecasting and machine learning prediction. Consolidates and extends time series functionality from packages including 'dplyr', 'stats', 'xts', 'forecast', 'slider', 'padr', 'recipes', and 'rsample'.", + "URL": "https://github.com/business-science/timetk, https://business-science.github.io/timetk/", + "BugReports": "https://github.com/business-science/timetk/issues", + "License": "GPL (>= 3)", + "Encoding": "UTF-8", + "LazyData": "true", + "Depends": [ + "R (>= 3.3.0)" + ], + "Imports": [ + "recipes (>= 1.0.4)", + "rsample", + "dplyr (>= 1.0.0)", + "ggplot2 (>= 3.4.0)", + "forcats", + "stringr", + "plotly", + "lubridate (>= 1.6.0)", + "padr (>= 0.5.2)", + "purrr (>= 0.2.2)", + "readr (>= 1.3.0)", + "stringi (>= 1.4.6)", + "tibble (>= 3.0.3)", + "tidyr (>= 1.1.0)", + "xts (>= 0.9-7)", + "zoo (>= 1.7-14)", + "rlang (>= 1.1.1)", + "tidyselect (>= 1.1.0)", + "slider", + "anytime", + "timeDate", + "forecast", + "tsfeatures", + "hms", + "generics" + ], + "Suggests": [ + "modeltime", + "glmnet", + "workflows", + "parsnip", + "tune (>= 0.1.2)", + "knitr", + "rmarkdown", + "broom", + "scales", + "testthat", + "fracdiff", + "timeSeries", + "tseries", + "trelliscopejs" + ], + "RoxygenNote": "7.2.3", + "VignetteBuilder": "knitr", + "NeedsCompilation": "no", + "Author": "Matt Dancho [aut, cre], Davis Vaughan [aut]", + "Maintainer": "Matt Dancho ", + "Repository": "CRAN" + }, + "tinytex": { + "Package": "tinytex", + "Version": "0.54", + "Source": "Repository", + "Type": "Package", + "Title": "Helper Functions to Install and Maintain TeX Live, and Compile LaTeX Documents", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Christophe\", \"Dervieux\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4474-2498\")), person(\"Devon\", \"Ryan\", role = \"ctb\", email = \"dpryan79@gmail.com\", comment = c(ORCID = \"0000-0002-8549-0971\")), person(\"Ethan\", \"Heinzen\", role = \"ctb\"), person(\"Fernando\", \"Cagua\", role = \"ctb\"), person() )", + "Description": "Helper functions to install and maintain the 'LaTeX' distribution named 'TinyTeX' (), a lightweight, cross-platform, portable, and easy-to-maintain version of 'TeX Live'. This package also contains helper functions to compile 'LaTeX' documents, and install missing 'LaTeX' packages automatically.", + "Imports": [ + "xfun (>= 0.48)" + ], + "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.3.2", + "NeedsCompilation": "no", + "Author": "Yihui Xie [aut, cre, cph] (), Posit Software, PBC [cph, fnd], Christophe Dervieux [ctb] (), Devon Ryan [ctb] (), Ethan Heinzen [ctb], Fernando Cagua [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "treesitter": { + "Package": "treesitter", + "Version": "0.1.0", + "Source": "Repository", + "Title": "Bindings to 'Tree-Sitter'", + "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Tree-sitter authors\", role = \"cph\", comment = \"Tree-sitter C library\") )", + "Description": "Provides bindings to 'Tree-sitter', an incremental parsing system for programming tools. 'Tree-sitter' builds concrete syntax trees for source files of any language, and can efficiently update those syntax trees as the source file is edited. It also includes a robust error recovery system that provides useful parse results even in the presence of syntax errors.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/DavisVaughan/r-tree-sitter", + "BugReports": "https://github.com/DavisVaughan/r-tree-sitter/issues", + "Depends": [ + "R (>= 4.3.0)" + ], + "Imports": [ + "cli (>= 3.6.2)", + "R6 (>= 2.5.1)", + "rlang (>= 1.1.3)", + "vctrs (>= 0.6.5)" + ], + "Suggests": [ + "testthat (>= 3.0.0)", + "treesitter.r" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "yes", + "Author": "Davis Vaughan [aut, cre], Posit Software, PBC [cph, fnd], Tree-sitter authors [cph] (Tree-sitter C library)", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "treesitter.r": { + "Package": "treesitter.r", + "Version": "1.1.0", + "Source": "Repository", + "Title": "'R' Grammar for 'Tree-Sitter'", + "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Tree-sitter authors\", role = \"cph\", comment = \"Tree-sitter C headers and parser.c\") )", + "Description": "Provides bindings to an 'R' grammar for 'Tree-sitter', to be used alongside the 'treesitter' package. 'Tree-sitter' builds concrete syntax trees for source files of any language, and can efficiently update those syntax trees as the source file is edited.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/tree-sitter-r", + "BugReports": "https://github.com/r-lib/tree-sitter-r/issues", + "Depends": [ + "R (>= 4.3.0)" + ], + "Suggests": [ + "testthat (>= 3.0.0)", + "treesitter" + ], + "Config/build/bootstrap": "TRUE", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Author": "Davis Vaughan [aut, cre], Posit Software, PBC [cph, fnd], Tree-sitter authors [cph] (Tree-sitter C headers and parser.c)", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "tseries": { + "Package": "tseries", + "Version": "0.10-58", + "Source": "Repository", + "Title": "Time Series Analysis and Computational Finance", + "Authors@R": "c(person(\"Adrian\", \"Trapletti\", role = \"aut\", email = \"adrian@trapletti.org\"), person(\"Kurt\", \"Hornik\", role = c(\"aut\", \"cre\"), email = \"Kurt.Hornik@R-project.org\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(\"Blake\", \"LeBaron\", role = \"ctb\", comment = \"BDS test code\"))", + "Description": "Time series analysis and computational finance.", + "Depends": [ + "R (>= 3.4.0)" + ], + "Imports": [ + "graphics", + "stats", + "utils", + "quadprog", + "zoo", + "quantmod (>= 0.4-9)", + "jsonlite" + ], + "License": "GPL-2 | GPL-3", + "NeedsCompilation": "yes", + "Author": "Adrian Trapletti [aut], Kurt Hornik [aut, cre] (), Blake LeBaron [ctb] (BDS test code)", + "Maintainer": "Kurt Hornik ", + "Repository": "CRAN" + }, + "tsfeatures": { + "Package": "tsfeatures", + "Version": "1.1.1", + "Source": "Repository", + "Title": "Time Series Feature Extraction", + "Authors@R": "c( person(\"Rob\", \"Hyndman\", email = \"Rob.Hyndman@monash.edu\", role = c(\"aut\",\"cre\"), comment = c(ORCID = \"0000-0002-2140-5352\")), person(\"Yanfei\", \"Kang\", role = \"aut\", comment = c(ORCID = \"0000-0001-8769-6650\")), person(\"Pablo\", \"Montero-Manso\", email=\"p.montero.manso@udc.es\", role=\"aut\"), person(\"Mitchell\", \"O'Hara-Wild\", role=\"aut\", comment=c(ORCID = \"0000-0001-6729-7695\")), person(\"Thiyanga\", \"Talagala\", role = \"aut\", comment=c(ORCID = \"0000-0002-0656-9789\")), person(\"Earo\", \"Wang\", role = \"aut\", comment=c(ORCID = \"0000-0001-6448-5260\")), person(\"Yangzhuoran\", \"Yang\", email = \"Fin.Yang@monash.edu\", role = \"aut\"), person(\"Souhaib\", \"Ben Taieb\", role = \"ctb\"), person(\"Cao\", \"Hanqing\", role=\"ctb\"), person(\"D K\", \"Lake\", role=\"ctb\"), person(\"Nikolay\", \"Laptev\", role=\"ctb\"), person(\"J R\", \"Moorman\", role=\"ctb\"), person(\"Bohan\", \"Zhang\", role = \"ctb\"))", + "Description": "Methods for extracting various features from time series data. The features provided are those from Hyndman, Wang and Laptev (2013) , Kang, Hyndman and Smith-Miles (2017) and from Fulcher, Little and Jones (2013) . Features include spectral entropy, autocorrelations, measures of the strength of seasonality and trend, and so on. Users can also define their own feature functions.", + "Depends": [ + "R (>= 3.6.0)" + ], + "Imports": [ + "fracdiff", + "forecast (>= 8.3)", + "purrr", + "RcppRoll (>= 0.2.2)", + "stats", + "tibble", + "tseries", + "urca", + "future", + "furrr" + ], + "Suggests": [ + "testthat", + "knitr", + "rmarkdown", + "ggplot2", + "tidyr", + "dplyr", + "Mcomp", + "GGally" + ], + "License": "GPL-3", + "ByteCompile": "true", + "URL": "https://pkg.robjhyndman.com/tsfeatures/, https://github.com/robjhyndman/tsfeatures", + "BugReports": "https://github.com/robjhyndman/tsfeatures/issues", + "RoxygenNote": "7.2.3", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Author": "Rob Hyndman [aut, cre] (), Yanfei Kang [aut] (), Pablo Montero-Manso [aut], Mitchell O'Hara-Wild [aut] (), Thiyanga Talagala [aut] (), Earo Wang [aut] (), Yangzhuoran Yang [aut], Souhaib Ben Taieb [ctb], Cao Hanqing [ctb], D K Lake [ctb], Nikolay Laptev [ctb], J R Moorman [ctb], Bohan Zhang [ctb]", + "Maintainer": "Rob Hyndman ", + "Repository": "CRAN" + }, + "tzdb": { + "Package": "tzdb", + "Version": "0.4.0", + "Source": "Repository", + "Title": "Time Zone Database Information", + "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Howard\", \"Hinnant\", role = \"cph\", comment = \"Author of the included date library\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Provides an up-to-date copy of the Internet Assigned Numbers Authority (IANA) Time Zone Database. It is updated periodically to reflect changes made by political bodies to time zone boundaries, UTC offsets, and daylight saving time rules. Additionally, this package provides a C++ interface for working with the 'date' library. 'date' provides comprehensive support for working with dates and date-times, which this package exposes to make it easier for other R packages to utilize. Headers are provided for calendar specific calculations, along 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", + "Author": "Davis Vaughan [aut, cre], Howard Hinnant [cph] (Author of the included date library), Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "urca": { + "Package": "urca", + "Version": "1.3-4", + "Source": "Repository", + "Date": "2024-05-25", + "Title": "Unit Root and Cointegration Tests for Time Series Data", + "Authors@R": "c(person(\"Bernhard\", \"Pfaff\", email = \"bernhard@pfaffikus.de\", role = c(\"aut\", \"cre\")), person(\"Eric\", \"Zivot\",email = \"ezivot@u.washington.edu\", role = \"ctb\"), person(\"Matthieu\", \"Stigler\", role = \"ctb\"))", + "Depends": [ + "R (>= 2.0.0)", + "methods" + ], + "Imports": [ + "nlme", + "graphics", + "stats" + ], + "LazyLoad": "yes", + "Description": "Unit root and cointegration tests encountered in applied econometric analysis are implemented.", + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Author": "Bernhard Pfaff [aut, cre], Eric Zivot [ctb], Matthieu Stigler [ctb]", + "Maintainer": "Bernhard Pfaff ", + "Repository": "CRAN" + }, + "utf8": { + "Package": "utf8", + "Version": "1.2.4", + "Source": "Repository", + "Title": "Unicode Text Processing", + "Authors@R": "c(person(given = c(\"Patrick\", \"O.\"), family = \"Perry\", role = c(\"aut\", \"cph\")), person(given = \"Kirill\", family = \"M\\u00fcller\", role = \"cre\", email = \"kirill@cynkra.com\"), person(given = \"Unicode, Inc.\", role = c(\"cph\", \"dtc\"), comment = \"Unicode Character Database\"))", + "Description": "Process and print 'UTF-8' encoded international text (Unicode). Input, validate, normalize, encode, format, and display.", + "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)", + "withr" + ], + "VignetteBuilder": "knitr, rmarkdown", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Patrick O. Perry [aut, cph], Kirill Müller [cre], Unicode, Inc. [cph, dtc] (Unicode Character Database)", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN" + }, + "uuid": { + "Package": "uuid", + "Version": "1.2-1", + "Source": "Repository", + "Title": "Tools for Generating and Handling of UUIDs", + "Author": "Simon Urbanek [aut, cre, cph] (https://urbanek.org, ), Theodore Ts'o [aut, cph] (libuuid)", + "Maintainer": "Simon Urbanek ", + "Authors@R": "c(person(\"Simon\", \"Urbanek\", role=c(\"aut\",\"cre\",\"cph\"), email=\"Simon.Urbanek@r-project.org\", comment=c(\"https://urbanek.org\", ORCID=\"0000-0003-2297-1732\")), person(\"Theodore\",\"Ts'o\", email=\"tytso@thunk.org\", role=c(\"aut\",\"cph\"), comment=\"libuuid\"))", + "Depends": [ + "R (>= 2.9.0)" + ], + "Description": "Tools for generating and handling of UUIDs (Universally Unique Identifiers).", + "License": "MIT + file LICENSE", + "URL": "https://www.rforge.net/uuid", + "BugReports": "https://github.com/s-u/uuid/issues", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "vctrs": { + "Package": "vctrs", + "Version": "0.6.5", + "Source": "Repository", + "Title": "Vector Helpers", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"data.table team\", role = \"cph\", comment = \"Radix sort based on data.table's forder() and their contribution to R's order()\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Defines new notions of prototype and size that are used to provide tools for consistent and well-founded type-coercion and size-recycling, and are in turn connected to ideas of type- and size-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", + "pillar (>= 1.4.4)", + "pkgdown (>= 2.0.1)", + "rmarkdown", + "testthat (>= 3.0.0)", + "tibble (>= 3.1.3)", + "waldo (>= 0.2.0)", + "withr", + "xml2", + "zeallot" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-GB", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut], Lionel Henry [aut], Davis Vaughan [aut, cre], data.table team [cph] (Radix sort based on data.table's forder() and their contribution to R's order()), Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "viridisLite": { + "Package": "viridisLite", + "Version": "0.4.2", + "Source": "Repository", + "Type": "Package", + "Title": "Colorblind-Friendly Color Maps (Lite Version)", + "Date": "2023-05-02", + "Authors@R": "c( person(\"Simon\", \"Garnier\", email = \"garnier@njit.edu\", role = c(\"aut\", \"cre\")), person(\"Noam\", \"Ross\", email = \"noam.ross@gmail.com\", role = c(\"ctb\", \"cph\")), person(\"Bob\", \"Rudis\", email = \"bob@rud.is\", role = c(\"ctb\", \"cph\")), person(\"Marco\", \"Sciaini\", email = \"sciaini.marco@gmail.com\", role = c(\"ctb\", \"cph\")), person(\"Antônio Pedro\", \"Camargo\", role = c(\"ctb\", \"cph\")), person(\"Cédric\", \"Scherer\", email = \"scherer@izw-berlin.de\", role = c(\"ctb\", \"cph\")) )", + "Maintainer": "Simon Garnier ", + "Description": "Color maps designed to improve graph readability for readers with common forms of color blindness and/or color vision deficiency. The color maps are also perceptually-uniform, both in regular form and also when converted to black-and-white for printing. This is the 'lite' version of the 'viridis' package that also contains 'ggplot2' bindings for discrete and continuous color and fill scales and can be found at .", + "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/, https://github.com/sjmgarnier/viridisLite/", + "BugReports": "https://github.com/sjmgarnier/viridisLite/issues/", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Simon Garnier [aut, cre], Noam Ross [ctb, cph], Bob Rudis [ctb, cph], Marco Sciaini [ctb, cph], Antônio Pedro Camargo [ctb, cph], Cédric Scherer [ctb, cph]", + "Repository": "CRAN" + }, + "vroom": { + "Package": "vroom", + "Version": "1.6.5", + "Source": "Repository", + "Title": "Read and Write Rectangular Text Data Quickly", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"Shelby\", \"Bearrows\", role = \"ctb\"), person(\"https://github.com/mandreyel/\", role = \"cph\", comment = \"mio library\"), person(\"Jukka\", \"Jylänki\", role = \"cph\", comment = \"grisu3 implementation\"), person(\"Mikkel\", \"Jørgensen\", role = \"cph\", comment = \"grisu3 implementation\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "The goal of 'vroom' is to read and write data (like 'csv', 'tsv' and 'fwf') quickly. When reading it uses a quick initial indexing step, then reads the values lazily , so only the data you actually use needs to be read. The writer formats the data in parallel 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 (>= 1.0.3)", + "methods", + "rlang (>= 0.4.2)", + "stats", + "tibble (>= 2.0.0)", + "tidyselect", + "tzdb (>= 0.1.1)", + "vctrs (>= 0.2.0)", + "withr" + ], + "Suggests": [ + "archive", + "bench (>= 1.1.0)", + "covr", + "curl", + "dplyr", + "forcats", + "fs", + "ggplot2", + "knitr", + "patchwork", + "prettyunits", + "purrr", + "rmarkdown", + "rstudioapi", + "scales", + "spelling", + "testthat (>= 2.1.0)", + "tidyr", + "utils", + "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.9000", + "NeedsCompilation": "yes", + "Author": "Jim Hester [aut] (), Hadley Wickham [aut] (), Jennifer Bryan [aut, cre] (), Shelby Bearrows [ctb], https://github.com/mandreyel/ [cph] (mio library), Jukka Jylänki [cph] (grisu3 implementation), Mikkel Jørgensen [cph] (grisu3 implementation), Posit Software, PBC [cph, fnd]", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN" + }, + "waldo": { + "Package": "waldo", + "Version": "0.6.1", + "Source": "Repository", + "Title": "Find Differences Between R Objects", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Compare complex R objects and reveal the key differences. Designed particularly for use in testing packages where being able to quickly isolate key differences makes understanding test failures much easier.", + "License": "MIT + file LICENSE", + "URL": "https://waldo.r-lib.org, https://github.com/r-lib/waldo", + "BugReports": "https://github.com/r-lib/waldo/issues", + "Depends": [ + "R (>= 4.0)" + ], + "Imports": [ + "cli", + "diffobj (>= 0.3.4)", + "glue", + "methods", + "rlang (>= 1.1.0)" + ], + "Suggests": [ + "bit64", + "R6", + "S7", + "testthat (>= 3.0.0)", + "withr", + "xml2" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "warp": { + "Package": "warp", + "Version": "0.2.1", + "Source": "Repository", + "Title": "Group Dates", + "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Tooling to group dates by a variety of periods including: yearly, monthly, by second, by week of the month, and more. The groups are defined in such a way that they also represent the distance between dates in terms of the period. This extracts valuable information that can be used in further calculations that rely on a specific temporal spacing between observations.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/DavisVaughan/warp, https://davisvaughan.github.io/warp/", + "BugReports": "https://github.com/DavisVaughan/warp/issues", + "Depends": [ + "R (>= 3.2)" + ], + "Suggests": [ + "covr", + "knitr", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Author": "Davis Vaughan [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN" + }, + "websocket": { + "Package": "websocket", + "Version": "1.4.2", + "Source": "Repository", + "Title": "'WebSocket' Client Library", + "Description": "Provides a 'WebSocket' client interface for R. 'WebSocket' is a protocol for low-overhead real-time communication: .", + "Authors@R": "c( person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\"), person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"), person(\"Alan\", \"Dipert\", role = \"aut\"), person(\"Barbara\", \"Borges\", role = \"aut\"), person(family = \"Posit, PBC\", role = \"cph\"), person(\"Peter\", \"Thorson\", role = c(\"ctb\", \"cph\"), comment = \"WebSocket++ library\"), person(\"René\", \"Nyffenegger\", role = c(\"ctb\", \"cph\"), comment = \"Base 64 library\"), person(\"Micael\", \"Hildenborg\", role = c(\"ctb\", \"cph\"), comment = \"SHA1 library\"), person(family = \"Aladdin Enterprises\", role = \"cph\", comment = \"MD5 library\"), person(\"Bjoern\", \"Hoehrmann\", role = c(\"ctb\", \"cph\"), comment = \"UTF8 Validation library\"))", + "License": "GPL-2", + "Encoding": "UTF-8", + "ByteCompile": "true", + "Imports": [ + "R6", + "later (>= 1.2.0)" + ], + "LinkingTo": [ + "cpp11", + "AsioHeaders", + "later" + ], + "BugReports": "https://github.com/rstudio/websocket/issues", + "SystemRequirements": "GNU make, OpenSSL >= 1.0.2", + "RoxygenNote": "7.3.2", + "Suggests": [ + "httpuv", + "testthat", + "knitr", + "rmarkdown" + ], + "VignetteBuilder": "knitr", + "NeedsCompilation": "yes", + "Author": "Winston Chang [aut, cre], Joe Cheng [aut], Alan Dipert [aut], Barbara Borges [aut], Posit, PBC [cph], Peter Thorson [ctb, cph] (WebSocket++ library), René Nyffenegger [ctb, cph] (Base 64 library), Micael Hildenborg [ctb, cph] (SHA1 library), Aladdin Enterprises [cph] (MD5 library), Bjoern Hoehrmann [ctb, cph] (UTF8 Validation library)", + "Maintainer": "Winston Chang ", + "Repository": "CRAN" + }, + "withr": { + "Package": "withr", + "Version": "3.0.2", + "Source": "Repository", + "Title": "Run Code 'With' Temporarily Modified Global State", + "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")), person(\"Kirill\", \"Müller\", , \"krlmlr+r@mailbox.org\", role = \"aut\"), person(\"Kevin\", \"Ushey\", , \"kevinushey@gmail.com\", role = \"aut\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Jennifer\", \"Bryan\", role = \"ctb\"), person(\"Richard\", \"Cotton\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "A set of functions to run code 'with' safely and temporarily modified global state. Many of these functions were originally a part of the 'devtools' package, this provides a simple package with limited dependencies to provide access to these functions.", + "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.6.0)" + ], + "Imports": [ + "graphics", + "grDevices" + ], + "Suggests": [ + "callr", + "DBI", + "knitr", + "methods", + "rlang", + "rmarkdown (>= 2.12)", + "RSQLite", + "testthat (>= 3.0.0)" + ], + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Collate": "'aaa.R' 'collate.R' 'connection.R' 'db.R' 'defer-exit.R' 'standalone-defer.R' 'defer.R' 'devices.R' 'local_.R' 'with_.R' 'dir.R' 'env.R' 'file.R' 'language.R' 'libpaths.R' 'locale.R' 'makevars.R' 'namespace.R' 'options.R' 'par.R' 'path.R' 'rng.R' 'seed.R' 'wrap.R' 'sink.R' 'tempfile.R' 'timezone.R' 'torture.R' 'utils.R' 'with.R'", + "NeedsCompilation": "no", + "Author": "Jim Hester [aut], Lionel Henry [aut, cre], Kirill Müller [aut], Kevin Ushey [aut], Hadley Wickham [aut], Winston Chang [aut], Jennifer Bryan [ctb], Richard Cotton [ctb], Posit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN" + }, + "xfun": { + "Package": "xfun", + "Version": "0.50", + "Source": "Repository", + "Type": "Package", + "Title": "Supporting Functions for Packages Maintained by 'Yihui Xie'", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Wush\", \"Wu\", role = \"ctb\"), person(\"Daijiang\", \"Li\", role = \"ctb\"), person(\"Xianying\", \"Tan\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", role = \"ctb\", email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Christophe\", \"Dervieux\", role = \"ctb\"), person() )", + "Description": "Miscellaneous functions commonly used in other packages maintained by 'Yihui Xie'.", + "Depends": [ + "R (>= 3.2.0)" + ], + "Imports": [ + "grDevices", + "stats", + "tools" + ], + "Suggests": [ + "testit", + "parallel", + "codetools", + "methods", + "rstudioapi", + "tinytex (>= 0.30)", + "mime", + "litedown (>= 0.4)", + "commonmark", + "knitr (>= 1.47)", + "remotes", + "pak", + "rhub", + "renv", + "curl", + "xml2", + "jsonlite", + "magick", + "yaml", + "qs", + "rmarkdown" + ], + "License": "MIT + file LICENSE", + "URL": "https://github.com/yihui/xfun", + "BugReports": "https://github.com/yihui/xfun/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "VignetteBuilder": "litedown", + "NeedsCompilation": "yes", + "Author": "Yihui Xie [aut, cre, cph] (), Wush Wu [ctb], Daijiang Li [ctb], Xianying Tan [ctb], Salim Brüggemann [ctb] (), Christophe Dervieux [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN" + }, + "xml2": { + "Package": "xml2", + "Version": "1.3.6", + "Source": "Repository", + "Title": "Parse XML", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Jeroen\", \"Ooms\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Foundation\", role = \"ctb\", comment = \"Copy of R-project homepage cached as example\") )", + "Description": "Work with XML files using a simple, consistent interface. Built 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.6.0)" + ], + "Imports": [ + "cli", + "methods", + "rlang (>= 1.1.0)" + ], + "Suggests": [ + "covr", + "curl", + "httr", + "knitr", + "magrittr", + "mockery", + "rmarkdown", + "testthat (>= 3.0.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' 'classes.R' 'format.R' 'import-standalone-obj-type.R' 'import-standalone-purrr.R' 'import-standalone-types-check.R' 'init.R' 'nodeset_apply.R' 'paths.R' 'utils.R' 'xml2-package.R' 'xml_attr.R' 'xml_children.R' 'xml_document.R' 'xml_find.R' 'xml_missing.R' 'xml_modify.R' 'xml_name.R' 'xml_namespaces.R' 'xml_node.R' 'xml_nodeset.R' 'xml_path.R' 'xml_schema.R' 'xml_serialize.R' 'xml_structure.R' 'xml_text.R' 'xml_type.R' 'xml_url.R' 'xml_write.R' 'zzz.R'", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Author": "Hadley Wickham [aut, cre], Jim Hester [aut], Jeroen Ooms [aut], Posit Software, PBC [cph, fnd], R Foundation [ctb] (Copy of R-project homepage cached as example)", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN" + }, + "xmlparsedata": { + "Package": "xmlparsedata", + "Version": "1.0.5", + "Source": "Repository", + "Title": "Parse Data of 'R' Code as an 'XML' Tree", + "Author": "Gábor Csárdi", + "Maintainer": "Gábor Csárdi ", + "Description": "Convert the output of 'utils::getParseData()' to an 'XML' tree, that one can search via 'XPath', and easier to manipulate in general.", + "License": "MIT + file LICENSE", + "LazyData": "true", + "URL": "https://github.com/r-lib/xmlparsedata#readme", + "BugReports": "https://github.com/r-lib/xmlparsedata/issues", + "RoxygenNote": "6.0.1", + "Suggests": [ + "covr", + "testthat", + "xml2" + ], + "Depends": [ + "R (>= 3.0.0)" + ], + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Repository": "CRAN" + }, + "xtable": { + "Package": "xtable", + "Version": "1.8-4", + "Source": "Repository", + "Date": "2019-04-08", + "Title": "Export Tables to LaTeX or HTML", + "Authors@R": "c(person(\"David B.\", \"Dahl\", role=\"aut\"), person(\"David\", \"Scott\", role=c(\"aut\",\"cre\"), email=\"d.scott@auckland.ac.nz\"), person(\"Charles\", \"Roosen\", role=\"aut\"), person(\"Arni\", \"Magnusson\", role=\"aut\"), person(\"Jonathan\", \"Swinton\", role=\"aut\"), person(\"Ajay\", \"Shah\", role=\"ctb\"), person(\"Arne\", \"Henningsen\", role=\"ctb\"), person(\"Benno\", \"Puetz\", role=\"ctb\"), person(\"Bernhard\", \"Pfaff\", role=\"ctb\"), person(\"Claudio\", \"Agostinelli\", role=\"ctb\"), person(\"Claudius\", \"Loehnert\", role=\"ctb\"), person(\"David\", \"Mitchell\", role=\"ctb\"), person(\"David\", \"Whiting\", role=\"ctb\"), person(\"Fernando da\", \"Rosa\", role=\"ctb\"), person(\"Guido\", \"Gay\", role=\"ctb\"), person(\"Guido\", \"Schulz\", role=\"ctb\"), person(\"Ian\", \"Fellows\", role=\"ctb\"), person(\"Jeff\", \"Laake\", role=\"ctb\"), person(\"John\", \"Walker\", role=\"ctb\"), person(\"Jun\", \"Yan\", role=\"ctb\"), person(\"Liviu\", \"Andronic\", role=\"ctb\"), person(\"Markus\", \"Loecher\", role=\"ctb\"), person(\"Martin\", \"Gubri\", role=\"ctb\"), person(\"Matthieu\", \"Stigler\", role=\"ctb\"), person(\"Robert\", \"Castelo\", role=\"ctb\"), person(\"Seth\", \"Falcon\", role=\"ctb\"), person(\"Stefan\", \"Edwards\", role=\"ctb\"), person(\"Sven\", \"Garbade\", role=\"ctb\"), person(\"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": "CRAN", + "NeedsCompilation": "no", + "Author": "David B. Dahl [aut], David Scott [aut, cre], Charles Roosen [aut], Arni Magnusson [aut], Jonathan Swinton [aut], Ajay Shah [ctb], Arne Henningsen [ctb], Benno Puetz [ctb], Bernhard Pfaff [ctb], Claudio Agostinelli [ctb], Claudius Loehnert [ctb], David Mitchell [ctb], David Whiting [ctb], Fernando da Rosa [ctb], Guido Gay [ctb], Guido Schulz [ctb], Ian Fellows [ctb], Jeff Laake [ctb], John Walker [ctb], Jun Yan [ctb], Liviu Andronic [ctb], Markus Loecher [ctb], Martin Gubri [ctb], Matthieu Stigler [ctb], Robert Castelo [ctb], Seth Falcon [ctb], Stefan Edwards [ctb], Sven Garbade [ctb], Uwe Ligges [ctb]" + }, + "xts": { + "Package": "xts", + "Version": "0.14.1", + "Source": "Repository", + "Type": "Package", + "Title": "eXtensible Time Series", + "Authors@R": "c( person(given=c(\"Jeffrey\",\"A.\"), family=\"Ryan\", role=c(\"aut\",\"cph\")), person(given=c(\"Joshua\",\"M.\"), family=\"Ulrich\", role=c(\"cre\",\"aut\"), email=\"josh.m.ulrich@gmail.com\"), person(given=\"Ross\", family=\"Bennett\", role=\"ctb\"), person(given=\"Corwin\", family=\"Joy\", role=\"ctb\") )", + "Depends": [ + "R (>= 3.6.0)", + "zoo (>= 1.7-12)" + ], + "Imports": [ + "methods" + ], + "LinkingTo": [ + "zoo" + ], + "Suggests": [ + "timeSeries", + "timeDate", + "tseries", + "chron", + "tinytest" + ], + "LazyLoad": "yes", + "Description": "Provide for uniform handling of R's different time-based data classes by extending zoo, maximizing native format information preservation and allowing for user level customization and extension, while simplifying cross-class interoperability.", + "License": "GPL (>= 2)", + "URL": "https://joshuaulrich.github.io/xts/, https://github.com/joshuaulrich/xts", + "BugReports": "https://github.com/joshuaulrich/xts/issues", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Author": "Jeffrey A. Ryan [aut, cph], Joshua M. Ulrich [cre, aut], Ross Bennett [ctb], Corwin Joy [ctb]", + "Maintainer": "Joshua M. Ulrich ", + "Repository": "CRAN" + }, + "yaml": { + "Package": "yaml", + "Version": "2.3.10", + "Source": "Repository", + "Type": "Package", + "Title": "Methods to Convert R Data to YAML and Back", + "Date": "2024-07-22", + "Suggests": [ + "RUnit" + ], + "Author": "Shawn P Garbett [aut], Jeremy Stephens [aut, cre], Kirill Simonov [aut], Yihui Xie [ctb], Zhuoer Dong [ctb], Hadley Wickham [ctb], Jeffrey Horner [ctb], reikoch [ctb], Will Beasley [ctb], Brendan O'Connor [ctb], Gregory R. Warnes [ctb], Michael Quinn [ctb], Zhian N. Kamvar [ctb], Charlie Gao [ctb]", + "Maintainer": "Shawn Garbett ", + "License": "BSD_3_clause + file LICENSE", + "Description": "Implements the 'libyaml' 'YAML' 1.1 parser and emitter () for R.", + "URL": "https://github.com/vubiostat/r-yaml/", + "BugReports": "https://github.com/vubiostat/r-yaml/issues", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, + "zoo": { + "Package": "zoo", + "Version": "1.8-12", + "Source": "Repository", + "Date": "2023-04-11", + "Title": "S3 Infrastructure for Regular and Irregular Time Series (Z's Ordered Observations)", + "Authors@R": "c(person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\", comment = c(ORCID = \"0000-0003-0918-3766\")), person(given = \"Gabor\", family = \"Grothendieck\", role = \"aut\", email = \"ggrothendieck@gmail.com\"), person(given = c(\"Jeffrey\", \"A.\"), family = \"Ryan\", role = \"aut\", email = \"jeff.a.ryan@gmail.com\"), person(given = c(\"Joshua\", \"M.\"), family = \"Ulrich\", role = \"ctb\", email = \"josh.m.ulrich@gmail.com\"), person(given = \"Felix\", family = \"Andrews\", role = \"ctb\", email = \"felix@nfrac.org\"))", + "Description": "An S3 class with methods for totally ordered indexed observations. It is particularly aimed at irregular time series of numeric vectors/matrices and factors. zoo's key design goals are independence of a particular index/date/time class and consistency with ts and base R by providing methods to extend standard generics.", + "Depends": [ + "R (>= 3.1.0)", + "stats" + ], + "Suggests": [ + "AER", + "coda", + "chron", + "ggplot2 (>= 3.0.0)", + "mondate", + "scales", + "stinepack", + "strucchange", + "timeDate", + "timeSeries", + "tis", + "tseries", + "xts" + ], + "Imports": [ + "utils", + "graphics", + "grDevices", + "lattice (>= 0.20-27)" + ], + "License": "GPL-2 | GPL-3", + "URL": "https://zoo.R-Forge.R-project.org/", + "NeedsCompilation": "yes", + "Author": "Achim Zeileis [aut, cre] (), Gabor Grothendieck [aut], Jeffrey A. Ryan [aut], Joshua M. Ulrich [ctb], Felix Andrews [ctb]", + "Maintainer": "Achim Zeileis ", + "Repository": "CRAN" + } + } +} diff --git a/extensions/connect-user-metrics/renv/.gitignore b/extensions/connect-user-metrics/renv/.gitignore new file mode 100644 index 00000000..0ec0cbba --- /dev/null +++ b/extensions/connect-user-metrics/renv/.gitignore @@ -0,0 +1,7 @@ +library/ +local/ +cellar/ +lock/ +python/ +sandbox/ +staging/ diff --git a/extensions/connect-user-metrics/renv/activate.R b/extensions/connect-user-metrics/renv/activate.R new file mode 100644 index 00000000..90b251ca --- /dev/null +++ b/extensions/connect-user-metrics/renv/activate.R @@ -0,0 +1,1334 @@ + +local({ + + # the requested version of renv + version <- "1.1.4" + attr(version, "sha") <- NULL + + # the project directory + project <- Sys.getenv("RENV_PROJECT") + if (!nzchar(project)) + project <- getwd() + + # use start-up diagnostics if enabled + diagnostics <- Sys.getenv("RENV_STARTUP_DIAGNOSTICS", unset = "FALSE") + if (diagnostics) { + start <- Sys.time() + profile <- tempfile("renv-startup-", fileext = ".Rprof") + utils::Rprof(profile) + on.exit({ + utils::Rprof(NULL) + elapsed <- signif(difftime(Sys.time(), start, units = "auto"), digits = 2L) + writeLines(sprintf("- renv took %s to run the autoloader.", format(elapsed))) + writeLines(sprintf("- Profile: %s", profile)) + print(utils::summaryRprof(profile)) + }, add = TRUE) + } + + # figure out whether the autoloader is enabled + enabled <- local({ + + # first, check config option + override <- getOption("renv.config.autoloader.enabled") + if (!is.null(override)) + return(override) + + # if we're being run in a context where R_LIBS is already set, + # don't load -- presumably we're being run as a sub-process and + # the parent process has already set up library paths for us + rcmd <- Sys.getenv("R_CMD", unset = NA) + rlibs <- Sys.getenv("R_LIBS", unset = NA) + if (!is.na(rlibs) && !is.na(rcmd)) + return(FALSE) + + # next, check environment variables + # prefer using the configuration one in the future + envvars <- c( + "RENV_CONFIG_AUTOLOADER_ENABLED", + "RENV_AUTOLOADER_ENABLED", + "RENV_ACTIVATE_PROJECT" + ) + + for (envvar in envvars) { + envval <- Sys.getenv(envvar, unset = NA) + if (!is.na(envval)) + return(tolower(envval) %in% c("true", "t", "1")) + } + + # enable by default + TRUE + + }) + + # bail if we're not enabled + if (!enabled) { + + # if we're not enabled, we might still need to manually load + # the user profile here + profile <- Sys.getenv("R_PROFILE_USER", unset = "~/.Rprofile") + if (file.exists(profile)) { + cfg <- Sys.getenv("RENV_CONFIG_USER_PROFILE", unset = "TRUE") + if (tolower(cfg) %in% c("true", "t", "1")) + sys.source(profile, envir = globalenv()) + } + + return(FALSE) + + } + + # avoid recursion + if (identical(getOption("renv.autoloader.running"), TRUE)) { + warning("ignoring recursive attempt to run renv autoloader") + return(invisible(TRUE)) + } + + # signal that we're loading renv during R startup + options(renv.autoloader.running = TRUE) + on.exit(options(renv.autoloader.running = NULL), add = TRUE) + + # signal that we've consented to use renv + options(renv.consent = TRUE) + + # load the 'utils' package eagerly -- this ensures that renv shims, which + # mask 'utils' packages, will come first on the search path + library(utils, lib.loc = .Library) + + # unload renv if it's already been loaded + if ("renv" %in% loadedNamespaces()) + unloadNamespace("renv") + + # load bootstrap tools + ansify <- function(text) { + if (renv_ansify_enabled()) + renv_ansify_enhanced(text) + else + renv_ansify_default(text) + } + + renv_ansify_enabled <- function() { + + override <- Sys.getenv("RENV_ANSIFY_ENABLED", unset = NA) + if (!is.na(override)) + return(as.logical(override)) + + pane <- Sys.getenv("RSTUDIO_CHILD_PROCESS_PANE", unset = NA) + if (identical(pane, "build")) + return(FALSE) + + testthat <- Sys.getenv("TESTTHAT", unset = "false") + if (tolower(testthat) %in% "true") + return(FALSE) + + iderun <- Sys.getenv("R_CLI_HAS_HYPERLINK_IDE_RUN", unset = "false") + if (tolower(iderun) %in% "false") + return(FALSE) + + TRUE + + } + + renv_ansify_default <- function(text) { + text + } + + renv_ansify_enhanced <- function(text) { + + # R help links + pattern <- "`\\?(renv::(?:[^`])+)`" + replacement <- "`\033]8;;x-r-help:\\1\a?\\1\033]8;;\a`" + text <- gsub(pattern, replacement, text, perl = TRUE) + + # runnable code + pattern <- "`(renv::(?:[^`])+)`" + replacement <- "`\033]8;;x-r-run:\\1\a\\1\033]8;;\a`" + text <- gsub(pattern, replacement, text, perl = TRUE) + + # return ansified text + text + + } + + renv_ansify_init <- function() { + + envir <- renv_envir_self() + if (renv_ansify_enabled()) + assign("ansify", renv_ansify_enhanced, envir = envir) + else + assign("ansify", renv_ansify_default, envir = envir) + + } + + `%||%` <- function(x, y) { + if (is.null(x)) y else x + } + + catf <- function(fmt, ..., appendLF = TRUE) { + + quiet <- getOption("renv.bootstrap.quiet", default = FALSE) + if (quiet) + return(invisible()) + + msg <- sprintf(fmt, ...) + cat(msg, file = stdout(), sep = if (appendLF) "\n" else "") + + invisible(msg) + + } + + header <- function(label, + ..., + prefix = "#", + suffix = "-", + n = min(getOption("width"), 78)) + { + label <- sprintf(label, ...) + n <- max(n - nchar(label) - nchar(prefix) - 2L, 8L) + if (n <= 0) + return(paste(prefix, label)) + + tail <- paste(rep.int(suffix, n), collapse = "") + paste0(prefix, " ", label, " ", tail) + + } + + heredoc <- function(text, leave = 0) { + + # remove leading, trailing whitespace + trimmed <- gsub("^\\s*\\n|\\n\\s*$", "", text) + + # split into lines + lines <- strsplit(trimmed, "\n", fixed = TRUE)[[1L]] + + # compute common indent + indent <- regexpr("[^[:space:]]", lines) + common <- min(setdiff(indent, -1L)) - leave + text <- paste(substring(lines, common), collapse = "\n") + + # substitute in ANSI links for executable renv code + ansify(text) + + } + + bootstrap <- function(version, library) { + + friendly <- renv_bootstrap_version_friendly(version) + section <- header(sprintf("Bootstrapping renv %s", friendly)) + catf(section) + + # attempt to download renv + catf("- Downloading renv ... ", appendLF = FALSE) + withCallingHandlers( + tarball <- renv_bootstrap_download(version), + error = function(err) { + catf("FAILED") + stop("failed to download:\n", conditionMessage(err)) + } + ) + catf("OK") + on.exit(unlink(tarball), add = TRUE) + + # now attempt to install + catf("- Installing renv ... ", appendLF = FALSE) + withCallingHandlers( + status <- renv_bootstrap_install(version, tarball, library), + error = function(err) { + catf("FAILED") + stop("failed to install:\n", conditionMessage(err)) + } + ) + catf("OK") + + # add empty line to break up bootstrapping from normal output + catf("") + + return(invisible()) + } + + renv_bootstrap_tests_running <- function() { + getOption("renv.tests.running", default = FALSE) + } + + renv_bootstrap_repos <- function() { + + # get CRAN repository + cran <- getOption("renv.repos.cran", "https://cloud.r-project.org") + + # check for repos override + repos <- Sys.getenv("RENV_CONFIG_REPOS_OVERRIDE", unset = NA) + if (!is.na(repos)) { + + # check for RSPM; if set, use a fallback repository for renv + rspm <- Sys.getenv("RSPM", unset = NA) + if (identical(rspm, repos)) + repos <- c(RSPM = rspm, CRAN = cran) + + return(repos) + + } + + # check for lockfile repositories + repos <- tryCatch(renv_bootstrap_repos_lockfile(), error = identity) + if (!inherits(repos, "error") && length(repos)) + return(repos) + + # retrieve current repos + repos <- getOption("repos") + + # ensure @CRAN@ entries are resolved + repos[repos == "@CRAN@"] <- cran + + # add in renv.bootstrap.repos if set + default <- c(FALLBACK = "https://cloud.r-project.org") + extra <- getOption("renv.bootstrap.repos", default = default) + repos <- c(repos, extra) + + # remove duplicates that might've snuck in + dupes <- duplicated(repos) | duplicated(names(repos)) + repos[!dupes] + + } + + renv_bootstrap_repos_lockfile <- function() { + + lockpath <- Sys.getenv("RENV_PATHS_LOCKFILE", unset = "renv.lock") + if (!file.exists(lockpath)) + return(NULL) + + lockfile <- tryCatch(renv_json_read(lockpath), error = identity) + if (inherits(lockfile, "error")) { + warning(lockfile) + return(NULL) + } + + repos <- lockfile$R$Repositories + if (length(repos) == 0) + return(NULL) + + keys <- vapply(repos, `[[`, "Name", FUN.VALUE = character(1)) + vals <- vapply(repos, `[[`, "URL", FUN.VALUE = character(1)) + names(vals) <- keys + + return(vals) + + } + + renv_bootstrap_download <- function(version) { + + sha <- attr(version, "sha", exact = TRUE) + + methods <- if (!is.null(sha)) { + + # attempting to bootstrap a development version of renv + c( + function() renv_bootstrap_download_tarball(sha), + function() renv_bootstrap_download_github(sha) + ) + + } else { + + # attempting to bootstrap a release version of renv + c( + function() renv_bootstrap_download_tarball(version), + function() renv_bootstrap_download_cran_latest(version), + function() renv_bootstrap_download_cran_archive(version) + ) + + } + + for (method in methods) { + path <- tryCatch(method(), error = identity) + if (is.character(path) && file.exists(path)) + return(path) + } + + stop("All download methods failed") + + } + + renv_bootstrap_download_impl <- function(url, destfile) { + + mode <- "wb" + + # https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17715 + fixup <- + Sys.info()[["sysname"]] == "Windows" && + substring(url, 1L, 5L) == "file:" + + if (fixup) + mode <- "w+b" + + args <- list( + url = url, + destfile = destfile, + mode = mode, + quiet = TRUE + ) + + if ("headers" %in% names(formals(utils::download.file))) { + headers <- renv_bootstrap_download_custom_headers(url) + if (length(headers) && is.character(headers)) + args$headers <- headers + } + + do.call(utils::download.file, args) + + } + + renv_bootstrap_download_custom_headers <- function(url) { + + headers <- getOption("renv.download.headers") + if (is.null(headers)) + return(character()) + + if (!is.function(headers)) + stopf("'renv.download.headers' is not a function") + + headers <- headers(url) + if (length(headers) == 0L) + return(character()) + + if (is.list(headers)) + headers <- unlist(headers, recursive = FALSE, use.names = TRUE) + + ok <- + is.character(headers) && + is.character(names(headers)) && + all(nzchar(names(headers))) + + if (!ok) + stop("invocation of 'renv.download.headers' did not return a named character vector") + + headers + + } + + renv_bootstrap_download_cran_latest <- function(version) { + + spec <- renv_bootstrap_download_cran_latest_find(version) + type <- spec$type + repos <- spec$repos + + baseurl <- utils::contrib.url(repos = repos, type = type) + ext <- if (identical(type, "source")) + ".tar.gz" + else if (Sys.info()[["sysname"]] == "Windows") + ".zip" + else + ".tgz" + name <- sprintf("renv_%s%s", version, ext) + url <- paste(baseurl, name, sep = "/") + + destfile <- file.path(tempdir(), name) + status <- tryCatch( + renv_bootstrap_download_impl(url, destfile), + condition = identity + ) + + if (inherits(status, "condition")) + return(FALSE) + + # report success and return + destfile + + } + + renv_bootstrap_download_cran_latest_find <- function(version) { + + # check whether binaries are supported on this system + binary <- + getOption("renv.bootstrap.binary", default = TRUE) && + !identical(.Platform$pkgType, "source") && + !identical(getOption("pkgType"), "source") && + Sys.info()[["sysname"]] %in% c("Darwin", "Windows") + + types <- c(if (binary) "binary", "source") + + # iterate over types + repositories + for (type in types) { + for (repos in renv_bootstrap_repos()) { + + # build arguments for utils::available.packages() call + args <- list(type = type, repos = repos) + + # add custom headers if available -- note that + # utils::available.packages() will pass this to download.file() + if ("headers" %in% names(formals(utils::download.file))) { + headers <- renv_bootstrap_download_custom_headers(repos) + if (length(headers) && is.character(headers)) + args$headers <- headers + } + + # retrieve package database + db <- tryCatch( + as.data.frame( + do.call(utils::available.packages, args), + stringsAsFactors = FALSE + ), + error = identity + ) + + if (inherits(db, "error")) + next + + # check for compatible entry + entry <- db[db$Package %in% "renv" & db$Version %in% version, ] + if (nrow(entry) == 0) + next + + # found it; return spec to caller + spec <- list(entry = entry, type = type, repos = repos) + return(spec) + + } + } + + # if we got here, we failed to find renv + fmt <- "renv %s is not available from your declared package repositories" + stop(sprintf(fmt, version)) + + } + + renv_bootstrap_download_cran_archive <- function(version) { + + name <- sprintf("renv_%s.tar.gz", version) + repos <- renv_bootstrap_repos() + urls <- file.path(repos, "src/contrib/Archive/renv", name) + destfile <- file.path(tempdir(), name) + + for (url in urls) { + + status <- tryCatch( + renv_bootstrap_download_impl(url, destfile), + condition = identity + ) + + if (identical(status, 0L)) + return(destfile) + + } + + return(FALSE) + + } + + renv_bootstrap_download_tarball <- function(version) { + + # if the user has provided the path to a tarball via + # an environment variable, then use it + tarball <- Sys.getenv("RENV_BOOTSTRAP_TARBALL", unset = NA) + if (is.na(tarball)) + return() + + # allow directories + if (dir.exists(tarball)) { + name <- sprintf("renv_%s.tar.gz", version) + tarball <- file.path(tarball, name) + } + + # bail if it doesn't exist + if (!file.exists(tarball)) { + + # let the user know we weren't able to honour their request + fmt <- "- RENV_BOOTSTRAP_TARBALL is set (%s) but does not exist." + msg <- sprintf(fmt, tarball) + warning(msg) + + # bail + return() + + } + + catf("- Using local tarball '%s'.", tarball) + tarball + + } + + renv_bootstrap_github_token <- function() { + for (envvar in c("GITHUB_TOKEN", "GITHUB_PAT", "GH_TOKEN")) { + envval <- Sys.getenv(envvar, unset = NA) + if (!is.na(envval)) + return(envval) + } + } + + renv_bootstrap_download_github <- function(version) { + + enabled <- Sys.getenv("RENV_BOOTSTRAP_FROM_GITHUB", unset = "TRUE") + if (!identical(enabled, "TRUE")) + return(FALSE) + + # prepare download options + token <- renv_bootstrap_github_token() + if (is.null(token)) + token <- "" + + if (nzchar(Sys.which("curl")) && nzchar(token)) { + fmt <- "--location --fail --header \"Authorization: token %s\"" + extra <- sprintf(fmt, token) + saved <- options("download.file.method", "download.file.extra") + options(download.file.method = "curl", download.file.extra = extra) + on.exit(do.call(base::options, saved), add = TRUE) + } else if (nzchar(Sys.which("wget")) && nzchar(token)) { + fmt <- "--header=\"Authorization: token %s\"" + extra <- sprintf(fmt, token) + saved <- options("download.file.method", "download.file.extra") + options(download.file.method = "wget", download.file.extra = extra) + on.exit(do.call(base::options, saved), add = TRUE) + } + + url <- file.path("https://api.github.com/repos/rstudio/renv/tarball", version) + name <- sprintf("renv_%s.tar.gz", version) + destfile <- file.path(tempdir(), name) + + status <- tryCatch( + renv_bootstrap_download_impl(url, destfile), + condition = identity + ) + + if (!identical(status, 0L)) + return(FALSE) + + renv_bootstrap_download_augment(destfile) + + return(destfile) + + } + + # Add Sha to DESCRIPTION. This is stop gap until #890, after which we + # can use renv::install() to fully capture metadata. + renv_bootstrap_download_augment <- function(destfile) { + sha <- renv_bootstrap_git_extract_sha1_tar(destfile) + if (is.null(sha)) { + return() + } + + # Untar + tempdir <- tempfile("renv-github-") + on.exit(unlink(tempdir, recursive = TRUE), add = TRUE) + untar(destfile, exdir = tempdir) + pkgdir <- dir(tempdir, full.names = TRUE)[[1]] + + # Modify description + desc_path <- file.path(pkgdir, "DESCRIPTION") + desc_lines <- readLines(desc_path) + remotes_fields <- c( + "RemoteType: github", + "RemoteHost: api.github.com", + "RemoteRepo: renv", + "RemoteUsername: rstudio", + "RemotePkgRef: rstudio/renv", + paste("RemoteRef: ", sha), + paste("RemoteSha: ", sha) + ) + writeLines(c(desc_lines[desc_lines != ""], remotes_fields), con = desc_path) + + # Re-tar + local({ + old <- setwd(tempdir) + on.exit(setwd(old), add = TRUE) + + tar(destfile, compression = "gzip") + }) + invisible() + } + + # Extract the commit hash from a git archive. Git archives include the SHA1 + # hash as the comment field of the tarball pax extended header + # (see https://www.kernel.org/pub/software/scm/git/docs/git-archive.html) + # For GitHub archives this should be the first header after the default one + # (512 byte) header. + renv_bootstrap_git_extract_sha1_tar <- function(bundle) { + + # open the bundle for reading + # We use gzcon for everything because (from ?gzcon) + # > Reading from a connection which does not supply a 'gzip' magic + # > header is equivalent to reading from the original connection + conn <- gzcon(file(bundle, open = "rb", raw = TRUE)) + on.exit(close(conn)) + + # The default pax header is 512 bytes long and the first pax extended header + # with the comment should be 51 bytes long + # `52 comment=` (11 chars) + 40 byte SHA1 hash + len <- 0x200 + 0x33 + res <- rawToChar(readBin(conn, "raw", n = len)[0x201:len]) + + if (grepl("^52 comment=", res)) { + sub("52 comment=", "", res) + } else { + NULL + } + } + + renv_bootstrap_install <- function(version, tarball, library) { + + # attempt to install it into project library + dir.create(library, showWarnings = FALSE, recursive = TRUE) + output <- renv_bootstrap_install_impl(library, tarball) + + # check for successful install + status <- attr(output, "status") + if (is.null(status) || identical(status, 0L)) + return(status) + + # an error occurred; report it + header <- "installation of renv failed" + lines <- paste(rep.int("=", nchar(header)), collapse = "") + text <- paste(c(header, lines, output), collapse = "\n") + stop(text) + + } + + renv_bootstrap_install_impl <- function(library, tarball) { + + # invoke using system2 so we can capture and report output + bin <- R.home("bin") + exe <- if (Sys.info()[["sysname"]] == "Windows") "R.exe" else "R" + R <- file.path(bin, exe) + + args <- c( + "--vanilla", "CMD", "INSTALL", "--no-multiarch", + "-l", shQuote(path.expand(library)), + shQuote(path.expand(tarball)) + ) + + system2(R, args, stdout = TRUE, stderr = TRUE) + + } + + renv_bootstrap_platform_prefix_default <- function() { + + # read version component + version <- Sys.getenv("RENV_PATHS_VERSION", unset = "R-%v") + + # expand placeholders + placeholders <- list( + list("%v", format(getRversion()[1, 1:2])), + list("%V", format(getRversion()[1, 1:3])) + ) + + for (placeholder in placeholders) + version <- gsub(placeholder[[1L]], placeholder[[2L]], version, fixed = TRUE) + + # include SVN revision for development versions of R + # (to avoid sharing platform-specific artefacts with released versions of R) + devel <- + identical(R.version[["status"]], "Under development (unstable)") || + identical(R.version[["nickname"]], "Unsuffered Consequences") + + if (devel) + version <- paste(version, R.version[["svn rev"]], sep = "-r") + + version + + } + + renv_bootstrap_platform_prefix <- function() { + + # construct version prefix + version <- renv_bootstrap_platform_prefix_default() + + # build list of path components + components <- c(version, R.version$platform) + + # include prefix if provided by user + prefix <- renv_bootstrap_platform_prefix_impl() + if (!is.na(prefix) && nzchar(prefix)) + components <- c(prefix, components) + + # build prefix + paste(components, collapse = "/") + + } + + renv_bootstrap_platform_prefix_impl <- function() { + + # if an explicit prefix has been supplied, use it + prefix <- Sys.getenv("RENV_PATHS_PREFIX", unset = NA) + if (!is.na(prefix)) + return(prefix) + + # if the user has requested an automatic prefix, generate it + auto <- Sys.getenv("RENV_PATHS_PREFIX_AUTO", unset = NA) + if (is.na(auto) && getRversion() >= "4.4.0") + auto <- "TRUE" + + if (auto %in% c("TRUE", "True", "true", "1")) + return(renv_bootstrap_platform_prefix_auto()) + + # empty string on failure + "" + + } + + renv_bootstrap_platform_prefix_auto <- function() { + + prefix <- tryCatch(renv_bootstrap_platform_os(), error = identity) + if (inherits(prefix, "error") || prefix %in% "unknown") { + + msg <- paste( + "failed to infer current operating system", + "please file a bug report at https://github.com/rstudio/renv/issues", + sep = "; " + ) + + warning(msg) + + } + + prefix + + } + + renv_bootstrap_platform_os <- function() { + + sysinfo <- Sys.info() + sysname <- sysinfo[["sysname"]] + + # handle Windows + macOS up front + if (sysname == "Windows") + return("windows") + else if (sysname == "Darwin") + return("macos") + + # check for os-release files + for (file in c("/etc/os-release", "/usr/lib/os-release")) + if (file.exists(file)) + return(renv_bootstrap_platform_os_via_os_release(file, sysinfo)) + + # check for redhat-release files + if (file.exists("/etc/redhat-release")) + return(renv_bootstrap_platform_os_via_redhat_release()) + + "unknown" + + } + + renv_bootstrap_platform_os_via_os_release <- function(file, sysinfo) { + + # read /etc/os-release + release <- utils::read.table( + file = file, + sep = "=", + quote = c("\"", "'"), + col.names = c("Key", "Value"), + comment.char = "#", + stringsAsFactors = FALSE + ) + + vars <- as.list(release$Value) + names(vars) <- release$Key + + # get os name + os <- tolower(sysinfo[["sysname"]]) + + # read id + id <- "unknown" + for (field in c("ID", "ID_LIKE")) { + if (field %in% names(vars) && nzchar(vars[[field]])) { + id <- vars[[field]] + break + } + } + + # read version + version <- "unknown" + for (field in c("UBUNTU_CODENAME", "VERSION_CODENAME", "VERSION_ID", "BUILD_ID")) { + if (field %in% names(vars) && nzchar(vars[[field]])) { + version <- vars[[field]] + break + } + } + + # join together + paste(c(os, id, version), collapse = "-") + + } + + renv_bootstrap_platform_os_via_redhat_release <- function() { + + # read /etc/redhat-release + contents <- readLines("/etc/redhat-release", warn = FALSE) + + # infer id + id <- if (grepl("centos", contents, ignore.case = TRUE)) + "centos" + else if (grepl("redhat", contents, ignore.case = TRUE)) + "redhat" + else + "unknown" + + # try to find a version component (very hacky) + version <- "unknown" + + parts <- strsplit(contents, "[[:space:]]")[[1L]] + for (part in parts) { + + nv <- tryCatch(numeric_version(part), error = identity) + if (inherits(nv, "error")) + next + + version <- nv[1, 1] + break + + } + + paste(c("linux", id, version), collapse = "-") + + } + + renv_bootstrap_library_root_name <- function(project) { + + # use project name as-is if requested + asis <- Sys.getenv("RENV_PATHS_LIBRARY_ROOT_ASIS", unset = "FALSE") + if (asis) + return(basename(project)) + + # otherwise, disambiguate based on project's path + id <- substring(renv_bootstrap_hash_text(project), 1L, 8L) + paste(basename(project), id, sep = "-") + + } + + renv_bootstrap_library_root <- function(project) { + + prefix <- renv_bootstrap_profile_prefix() + + path <- Sys.getenv("RENV_PATHS_LIBRARY", unset = NA) + if (!is.na(path)) + return(paste(c(path, prefix), collapse = "/")) + + path <- renv_bootstrap_library_root_impl(project) + if (!is.null(path)) { + name <- renv_bootstrap_library_root_name(project) + return(paste(c(path, prefix, name), collapse = "/")) + } + + renv_bootstrap_paths_renv("library", project = project) + + } + + renv_bootstrap_library_root_impl <- function(project) { + + root <- Sys.getenv("RENV_PATHS_LIBRARY_ROOT", unset = NA) + if (!is.na(root)) + return(root) + + type <- renv_bootstrap_project_type(project) + if (identical(type, "package")) { + userdir <- renv_bootstrap_user_dir() + return(file.path(userdir, "library")) + } + + } + + renv_bootstrap_validate_version <- function(version, description = NULL) { + + # resolve description file + # + # avoid passing lib.loc to `packageDescription()` below, since R will + # use the loaded version of the package by default anyhow. note that + # this function should only be called after 'renv' is loaded + # https://github.com/rstudio/renv/issues/1625 + description <- description %||% packageDescription("renv") + + # check whether requested version 'version' matches loaded version of renv + sha <- attr(version, "sha", exact = TRUE) + valid <- if (!is.null(sha)) + renv_bootstrap_validate_version_dev(sha, description) + else + renv_bootstrap_validate_version_release(version, description) + + if (valid) + return(TRUE) + + # the loaded version of renv doesn't match the requested version; + # give the user instructions on how to proceed + dev <- identical(description[["RemoteType"]], "github") + remote <- if (dev) + paste("rstudio/renv", description[["RemoteSha"]], sep = "@") + else + paste("renv", description[["Version"]], sep = "@") + + # display both loaded version + sha if available + friendly <- renv_bootstrap_version_friendly( + version = description[["Version"]], + sha = if (dev) description[["RemoteSha"]] + ) + + fmt <- heredoc(" + renv %1$s was loaded from project library, but this project is configured to use renv %2$s. + - Use `renv::record(\"%3$s\")` to record renv %1$s in the lockfile. + - Use `renv::restore(packages = \"renv\")` to install renv %2$s into the project library. + ") + catf(fmt, friendly, renv_bootstrap_version_friendly(version), remote) + + FALSE + + } + + renv_bootstrap_validate_version_dev <- function(version, description) { + + expected <- description[["RemoteSha"]] + if (!is.character(expected)) + return(FALSE) + + pattern <- sprintf("^\\Q%s\\E", version) + grepl(pattern, expected, perl = TRUE) + + } + + renv_bootstrap_validate_version_release <- function(version, description) { + expected <- description[["Version"]] + is.character(expected) && identical(expected, version) + } + + renv_bootstrap_hash_text <- function(text) { + + hashfile <- tempfile("renv-hash-") + on.exit(unlink(hashfile), add = TRUE) + + writeLines(text, con = hashfile) + tools::md5sum(hashfile) + + } + + renv_bootstrap_load <- function(project, libpath, version) { + + # try to load renv from the project library + if (!requireNamespace("renv", lib.loc = libpath, quietly = TRUE)) + return(FALSE) + + # warn if the version of renv loaded does not match + renv_bootstrap_validate_version(version) + + # execute renv load hooks, if any + hooks <- getHook("renv::autoload") + for (hook in hooks) + if (is.function(hook)) + tryCatch(hook(), error = warnify) + + # load the project + renv::load(project) + + TRUE + + } + + renv_bootstrap_profile_load <- function(project) { + + # if RENV_PROFILE is already set, just use that + profile <- Sys.getenv("RENV_PROFILE", unset = NA) + if (!is.na(profile) && nzchar(profile)) + return(profile) + + # check for a profile file (nothing to do if it doesn't exist) + path <- renv_bootstrap_paths_renv("profile", profile = FALSE, project = project) + if (!file.exists(path)) + return(NULL) + + # read the profile, and set it if it exists + contents <- readLines(path, warn = FALSE) + if (length(contents) == 0L) + return(NULL) + + # set RENV_PROFILE + profile <- contents[[1L]] + if (!profile %in% c("", "default")) + Sys.setenv(RENV_PROFILE = profile) + + profile + + } + + renv_bootstrap_profile_prefix <- function() { + profile <- renv_bootstrap_profile_get() + if (!is.null(profile)) + return(file.path("profiles", profile, "renv")) + } + + renv_bootstrap_profile_get <- function() { + profile <- Sys.getenv("RENV_PROFILE", unset = "") + renv_bootstrap_profile_normalize(profile) + } + + renv_bootstrap_profile_set <- function(profile) { + profile <- renv_bootstrap_profile_normalize(profile) + if (is.null(profile)) + Sys.unsetenv("RENV_PROFILE") + else + Sys.setenv(RENV_PROFILE = profile) + } + + renv_bootstrap_profile_normalize <- function(profile) { + + if (is.null(profile) || profile %in% c("", "default")) + return(NULL) + + profile + + } + + renv_bootstrap_path_absolute <- function(path) { + + substr(path, 1L, 1L) %in% c("~", "/", "\\") || ( + substr(path, 1L, 1L) %in% c(letters, LETTERS) && + substr(path, 2L, 3L) %in% c(":/", ":\\") + ) + + } + + renv_bootstrap_paths_renv <- function(..., profile = TRUE, project = NULL) { + renv <- Sys.getenv("RENV_PATHS_RENV", unset = "renv") + root <- if (renv_bootstrap_path_absolute(renv)) NULL else project + prefix <- if (profile) renv_bootstrap_profile_prefix() + components <- c(root, renv, prefix, ...) + paste(components, collapse = "/") + } + + renv_bootstrap_project_type <- function(path) { + + descpath <- file.path(path, "DESCRIPTION") + if (!file.exists(descpath)) + return("unknown") + + desc <- tryCatch( + read.dcf(descpath, all = TRUE), + error = identity + ) + + if (inherits(desc, "error")) + return("unknown") + + type <- desc$Type + if (!is.null(type)) + return(tolower(type)) + + package <- desc$Package + if (!is.null(package)) + return("package") + + "unknown" + + } + + renv_bootstrap_user_dir <- function() { + dir <- renv_bootstrap_user_dir_impl() + path.expand(chartr("\\", "/", dir)) + } + + renv_bootstrap_user_dir_impl <- function() { + + # use local override if set + override <- getOption("renv.userdir.override") + if (!is.null(override)) + return(override) + + # use R_user_dir if available + tools <- asNamespace("tools") + if (is.function(tools$R_user_dir)) + return(tools$R_user_dir("renv", "cache")) + + # try using our own backfill for older versions of R + envvars <- c("R_USER_CACHE_DIR", "XDG_CACHE_HOME") + for (envvar in envvars) { + root <- Sys.getenv(envvar, unset = NA) + if (!is.na(root)) + return(file.path(root, "R/renv")) + } + + # use platform-specific default fallbacks + if (Sys.info()[["sysname"]] == "Windows") + file.path(Sys.getenv("LOCALAPPDATA"), "R/cache/R/renv") + else if (Sys.info()[["sysname"]] == "Darwin") + "~/Library/Caches/org.R-project.R/R/renv" + else + "~/.cache/R/renv" + + } + + renv_bootstrap_version_friendly <- function(version, shafmt = NULL, sha = NULL) { + sha <- sha %||% attr(version, "sha", exact = TRUE) + parts <- c(version, sprintf(shafmt %||% " [sha: %s]", substring(sha, 1L, 7L))) + paste(parts, collapse = "") + } + + renv_bootstrap_exec <- function(project, libpath, version) { + if (!renv_bootstrap_load(project, libpath, version)) + renv_bootstrap_run(project, libpath, version) + } + + renv_bootstrap_run <- function(project, libpath, version) { + + # perform bootstrap + bootstrap(version, libpath) + + # exit early if we're just testing bootstrap + if (!is.na(Sys.getenv("RENV_BOOTSTRAP_INSTALL_ONLY", unset = NA))) + return(TRUE) + + # try again to load + if (requireNamespace("renv", lib.loc = libpath, quietly = TRUE)) { + return(renv::load(project = project)) + } + + # failed to download or load renv; warn the user + msg <- c( + "Failed to find an renv installation: the project will not be loaded.", + "Use `renv::activate()` to re-initialize the project." + ) + + warning(paste(msg, collapse = "\n"), call. = FALSE) + + } + + renv_json_read <- function(file = NULL, text = NULL) { + + jlerr <- NULL + + # if jsonlite is loaded, use that instead + if ("jsonlite" %in% loadedNamespaces()) { + + json <- tryCatch(renv_json_read_jsonlite(file, text), error = identity) + if (!inherits(json, "error")) + return(json) + + jlerr <- json + + } + + # otherwise, fall back to the default JSON reader + json <- tryCatch(renv_json_read_default(file, text), error = identity) + if (!inherits(json, "error")) + return(json) + + # report an error + if (!is.null(jlerr)) + stop(jlerr) + else + stop(json) + + } + + renv_json_read_jsonlite <- function(file = NULL, text = NULL) { + text <- paste(text %||% readLines(file, warn = FALSE), collapse = "\n") + jsonlite::fromJSON(txt = text, simplifyVector = FALSE) + } + + renv_json_read_patterns <- function() { + + list( + + # objects + list("{", "\t\n\tobject(\t\n\t", TRUE), + list("}", "\t\n\t)\t\n\t", TRUE), + + # arrays + list("[", "\t\n\tarray(\t\n\t", TRUE), + list("]", "\n\t\n)\n\t\n", TRUE), + + # maps + list(":", "\t\n\t=\t\n\t", TRUE), + + # newlines + list("\\u000a", "\n", FALSE) + + ) + + } + + renv_json_read_envir <- function() { + + envir <- new.env(parent = emptyenv()) + + envir[["+"]] <- `+` + envir[["-"]] <- `-` + + envir[["object"]] <- function(...) { + result <- list(...) + names(result) <- as.character(names(result)) + result + } + + envir[["array"]] <- list + + envir[["true"]] <- TRUE + envir[["false"]] <- FALSE + envir[["null"]] <- NULL + + envir + + } + + renv_json_read_remap <- function(object, patterns) { + + # repair names if necessary + if (!is.null(names(object))) { + + nms <- names(object) + for (pattern in patterns) + nms <- gsub(pattern[[2L]], pattern[[1L]], nms, fixed = TRUE) + names(object) <- nms + + } + + # repair strings if necessary + if (is.character(object)) { + for (pattern in patterns) + object <- gsub(pattern[[2L]], pattern[[1L]], object, fixed = TRUE) + } + + # recurse for other objects + if (is.recursive(object)) + for (i in seq_along(object)) + object[i] <- list(renv_json_read_remap(object[[i]], patterns)) + + # return remapped object + object + + } + + renv_json_read_default <- function(file = NULL, text = NULL) { + + # read json text + text <- paste(text %||% readLines(file, warn = FALSE), collapse = "\n") + + # convert into something the R parser will understand + patterns <- renv_json_read_patterns() + transformed <- text + for (pattern in patterns) + transformed <- gsub(pattern[[1L]], pattern[[2L]], transformed, fixed = TRUE) + + # parse it + rfile <- tempfile("renv-json-", fileext = ".R") + on.exit(unlink(rfile), add = TRUE) + writeLines(transformed, con = rfile) + json <- parse(rfile, keep.source = FALSE, srcfile = NULL)[[1L]] + + # evaluate in safe environment + result <- eval(json, envir = renv_json_read_envir()) + + # fix up strings if necessary -- do so only with reversible patterns + patterns <- Filter(function(pattern) pattern[[3L]], patterns) + renv_json_read_remap(result, patterns) + + } + + + # load the renv profile, if any + renv_bootstrap_profile_load(project) + + # construct path to library root + root <- renv_bootstrap_library_root(project) + + # construct library prefix for platform + prefix <- renv_bootstrap_platform_prefix() + + # construct full libpath + libpath <- file.path(root, prefix) + + # run bootstrap code + renv_bootstrap_exec(project, libpath, version) + + invisible() + +}) diff --git a/extensions/connect-user-metrics/renv/settings.json b/extensions/connect-user-metrics/renv/settings.json new file mode 100644 index 00000000..ffdbb320 --- /dev/null +++ b/extensions/connect-user-metrics/renv/settings.json @@ -0,0 +1,19 @@ +{ + "bioconductor.version": null, + "external.libraries": [], + "ignored.packages": [], + "package.dependency.fields": [ + "Imports", + "Depends", + "LinkingTo" + ], + "ppm.enabled": null, + "ppm.ignored.urls": [], + "r.version": null, + "snapshot.type": "implicit", + "use.cache": true, + "vcs.ignore.cellar": true, + "vcs.ignore.library": true, + "vcs.ignore.local": true, + "vcs.manage.ignores": true +} diff --git a/extensions/connect-user-metrics/rhino.yml b/extensions/connect-user-metrics/rhino.yml new file mode 100644 index 00000000..fea13278 --- /dev/null +++ b/extensions/connect-user-metrics/rhino.yml @@ -0,0 +1 @@ +sass: node diff --git a/extensions/connect-user-metrics/tests/cypress.config.js b/extensions/connect-user-metrics/tests/cypress.config.js new file mode 100644 index 00000000..5c23de01 --- /dev/null +++ b/extensions/connect-user-metrics/tests/cypress.config.js @@ -0,0 +1,7 @@ +module.exports = { + e2e: { + setupNodeEvents(on, config) {}, + baseUrl: 'http://localhost:3333', + supportFile: false, + }, +} diff --git a/extensions/connect-user-metrics/tests/cypress/.gitignore b/extensions/connect-user-metrics/tests/cypress/.gitignore new file mode 100644 index 00000000..e0cd7dc8 --- /dev/null +++ b/extensions/connect-user-metrics/tests/cypress/.gitignore @@ -0,0 +1,2 @@ +/screenshots/ +/videos/ diff --git a/extensions/connect-user-metrics/tests/cypress/e2e/app.cy.js b/extensions/connect-user-metrics/tests/cypress/e2e/app.cy.js new file mode 100644 index 00000000..b9a58df5 --- /dev/null +++ b/extensions/connect-user-metrics/tests/cypress/e2e/app.cy.js @@ -0,0 +1,7 @@ +describe('app', () => { + beforeEach(() => { + cy.visit('/') + }) + + it('starts', () => {}) +}) diff --git a/extensions/connect-user-metrics/tests/testthat.R b/extensions/connect-user-metrics/tests/testthat.R new file mode 100644 index 00000000..7d25b5b9 --- /dev/null +++ b/extensions/connect-user-metrics/tests/testthat.R @@ -0,0 +1 @@ +shinytest2::test_app() diff --git a/extensions/connect-user-metrics/tests/testthat/setup.R b/extensions/connect-user-metrics/tests/testthat/setup.R new file mode 100644 index 00000000..8fcd2b8b --- /dev/null +++ b/extensions/connect-user-metrics/tests/testthat/setup.R @@ -0,0 +1,2 @@ +# Load application support files into testing environment +shinytest2::load_app_env() # nolint: namespaced_function_calls diff --git a/extensions/connect-user-metrics/tests/testthat/test-aggregation.R b/extensions/connect-user-metrics/tests/testthat/test-aggregation.R new file mode 100644 index 00000000..187bd483 --- /dev/null +++ b/extensions/connect-user-metrics/tests/testthat/test-aggregation.R @@ -0,0 +1,206 @@ +box::use( + dplyr[mutate, select, tibble], + lubridate[as_datetime], + magrittr[`%>%`], + testthat[describe, expect_equal, it], + tools[toTitleCase], +) + +box::use( + app/logic/aggregation[format_agg_usage, process_agg_usage], + app/logic/utils[week_start_day], +) + +describe("process_agg_usage", { + # Setup test data to match real data structure + test_usage <- data.frame( + content_guid = c("app1", "app1", "app1", "app2"), + user_guid = c("user1", "user1", "user2", "user1"), + started = as_datetime(c( + "2024-01-01 10:00:00", "2024-01-01 11:00:00", + "2024-01-01 12:00:00", "2024-01-02 10:00:00" + )), + ended = as_datetime(c( + "2024-01-01 10:30:00", "2024-01-01 11:30:00", + "2024-01-01 13:00:00", "2024-01-02 11:00:00" + )), + stringsAsFactors = FALSE + ) %>% + mutate( + duration = as.numeric(ended - started, units = "secs"), + start_date = as.Date(started), + title = ifelse(content_guid == "app1", "App One", "App Two"), + username = ifelse(user_guid == "user1", "User One", "User Two") + ) + + test_apps <- data.frame( + guid = c("app1", "app2"), + title = c("App One", "App Two"), + stringsAsFactors = FALSE + ) + + test_users <- data.frame( + guid = c("user1", "user2"), + username = c("User One", "User Two"), + stringsAsFactors = FALSE + ) + + it("aggregates by start_date", { + result <- process_agg_usage( + usage = test_usage, + agg_levels = "start_date", + date_aggregation = "day", + apps = test_apps, + users = test_users + ) + + expect_equal(nrow(result), 2) # One row per date + expect_equal(as.character(sort(result$start_date)), c("2024-01-01", "2024-01-02")) + expect_equal(sort(result$`Session count`), c(1, 3)) # 1 session on day 2, 3 on day 1 + expect_equal(sort(result$`Unique users`), c(1, 2)) # 1 user on day 2, 2 users on day 1 + expect_equal( + sort(result$avg_duration), c(2400, 3600) + ) # Day 1: avg(1800,1800,3600)=2400, Day 2: 3600 + }) + + it("aggregates by content_guid and start_date", { + result <- process_agg_usage( + usage = test_usage, + agg_levels = c("content_guid", "start_date"), + date_aggregation = "day", + apps = test_apps, + users = test_users + ) + + expect_equal(nrow(result), 2) # app1-day1, app2-day2 + expect_equal(sort(result$title), c("App One", "App Two")) + expect_equal(as.character(sort(unique(result$start_date))), c("2024-01-01", "2024-01-02")) + expect_equal(sort(result$`Session count`), c(1, 3)) # app2-day2: 1, app1-day1: 3 + expect_equal(sort(result$`Unique users`), c(1, 2)) # app2-day2: 1 user, app1-day1: 2 users + }) + + it("aggregates by content_guid and user_guid", { + result <- process_agg_usage( + usage = test_usage, + agg_levels = c("content_guid", "user_guid"), + date_aggregation = "day", + apps = test_apps, + users = test_users + ) + + expect_equal(nrow(result), 3) # user1-app1, user2-app1, user1-app2 + expect_equal(sort(result$title), c("App One", "App One", "App Two")) + expect_equal(sort(result$username), c("User One", "User One", "User Two")) + expect_equal( + sort(result$`Session count`), c(1, 1, 2) + ) # user2-app1: 1, user1-app2: 1, user1-app1: 2 + }) +}) + +describe("format_agg_usage", { + # Setup test data + test_agg_data <- tibble( + title = c("App One", "App Two"), + username = c("User One", "User Two"), + start_date = as.Date(c("2024-01-01", "2024-01-02")), + `Session count` = c(3, 1), + `Unique users` = c(2, 1), + avg_duration = c(2400, 3600), + content_guid = c("abc123", "def456") + ) + + mock_format_duration <- function(x) { + paste(round(x / 60), "minutes") + } + + it("formats daily aggregation correctly", { + result <- format_agg_usage(test_agg_data, "day", mock_format_duration) + + expect_equal( + colnames(result), + c( + "Application", "Username", "Date", "Session count", + "Unique users", "Average session duration" + ) + ) + expect_equal( + result$`Average session duration`, + c("40 minutes", "60 minutes") + ) + }) + + it("formats weekly aggregation correctly", { + result <- format_agg_usage(test_agg_data, "week", mock_format_duration) + + expect_equal( + colnames(result), + c( + "Application", "Username", + paste(toTitleCase(week_start_day), "Date"), + "Session count", "Unique users", "Average session duration" + ) + ) + expect_equal( + result$`Average session duration`, + c("40 minutes", "60 minutes") + ) + }) + + it("formats monthly aggregation correctly", { + result <- format_agg_usage(test_agg_data, "month", mock_format_duration) + expect_equal( + colnames(result), + c( + "Application", "Username", "Month", "Session count", + "Unique users", "Average session duration" + ) + ) + expect_equal( + result$`Average session duration`, + c("40 minutes", "60 minutes") + ) + }) + + it("handles missing username column", { + data_no_username <- test_agg_data %>% + select(-username) + + result <- format_agg_usage(data_no_username, "day", mock_format_duration) + expect_equal( + colnames(result), + c( + "Application", "Date", "Session count", + "Unique users", "Average session duration" + ) + ) + }) + + it("handles missing title column", { + data_no_title <- test_agg_data %>% + select(-title) + + result <- format_agg_usage(data_no_title, "day", mock_format_duration) + expect_equal( + colnames(result), + c( + "Username", "Date", "Session count", + "Unique users", "Average session duration" + ) + ) + }) + + it("handles data with only required columns", { + minimal_data <- tibble( + start_date = as.Date(c("2024-01-01", "2024-01-02")), + `Session count` = c(3, 1), + `Unique users` = c(2, 1), + avg_duration = c(2400, 3600) + ) + + result <- format_agg_usage(minimal_data, "day", mock_format_duration) + expect_equal( + colnames(result), + c("Date", "Session count", "Unique users", "Average session duration") + ) + }) +}) diff --git a/extensions/connect-user-metrics/tests/testthat/test-charts.R b/extensions/connect-user-metrics/tests/testthat/test-charts.R new file mode 100644 index 00000000..3ed84d6b --- /dev/null +++ b/extensions/connect-user-metrics/tests/testthat/test-charts.R @@ -0,0 +1,69 @@ +box::use( + checkmate[expect_data_frame], + testthat[context, test_that], +) + +box::use( + app/logic/charts, +) + +impl <- attr(charts, "namespace") + +context("charts date_zero_value_fillter()") + +test_that("returns data as is when start date equals to end date", { + test_data <- data.frame( + start_date = as.Date(c("2022-10-01")), + values = 5 + ) + + date_range <- as.Date(c("2022-10-01", "2022-10-01")) # 1 day + + result <- impl$date_zero_value_filler(test_data, date_range, "day") + + expect_data_frame(result, nrows = 1) +}) + +test_that("it fills up by day", { + test_data <- data.frame( + start_date = as.Date(c("2022-10-04", "2022-10-11", "2022-10-27")), + values = c(5, 3, 10) + ) + + date_range <- as.Date(c("2022-10-02", "2022-10-29")) # 28 days + + result <- impl$date_zero_value_filler(test_data, date_range, "day") + + expect_data_frame(result, nrows = 28) +}) + +test_that("it fills up by week", { + test_data <- data.frame( + start_date = as.Date(c("2022-10-03", "2022-10-10", "2022-10-24")), + values = c(5, 3, 10) + ) + + date_range <- as.Date(c("2022-10-02", "2022-10-29")) # 5 calendar weeks + + result <- impl$date_zero_value_filler( + test_data, + date_range, + "week", + week_start = 1 # week starts from Monday + ) + + expect_data_frame(result, nrows = 5) +}) + +test_that("it fills up by month", { + test_data <- data.frame( + start_date = as.Date(c("2022-09-01", "2022-11-01", "2022-12-01")), + values = c(5, 3, 10) + ) + + date_range <- as.Date(c("2022-09-01", "2022-12-01")) # 4 months + + result <- impl$date_zero_value_filler(test_data, date_range, "month") + + expect_data_frame(result, nrows = 4) +}) diff --git a/extensions/connect-user-metrics/tests/testthat/test-config.R b/extensions/connect-user-metrics/tests/testthat/test-config.R new file mode 100644 index 00000000..cfdd6979 --- /dev/null +++ b/extensions/connect-user-metrics/tests/testthat/test-config.R @@ -0,0 +1,181 @@ +box::use( + magrittr[`%>%`], + purrr[map], + testthat, + tibble[tibble], + yaml[write_yaml], +) + +box::use( + app/logic/config_settings, + app/logic/utils[AGG_LEVELS], +) + +impl <- attr(config_settings, "namespace") + +# all_params_present, check_config_data + +raw_data <- list( + apps = data.frame(guid = 1:3, title = c("app1", "app2", "app3")), + users = data.frame(guid = 1:3, username = c("user1", "user2", "user3")) +) + +testthat$context("Reading config file") +testthat$test_that("config.yml can be loaded and contains necessary inputs", { + config1 <- list( + default = list("apps" = "app1,app2", "users" = "user1,user2,user3", "agg_levels" = NULL) + ) + dir.create("conf", recursive = TRUE) + write_yaml(config1, file = "conf/config.yml") + config <- config_settings$read_config_yml(file_path = "conf/config.yml") + testthat$expect_true(inherits(config, "list")) + testthat$expect_named(config, c("apps", "users", "agg_levels")) +}) + +testthat$test_that("Multiple parameters can be read", { + config <- config_settings$read_config_yml(file_path = "conf/config.yml") + testthat$expect_equal(config$apps, list("app1", "app2")) + testthat$expect_equal(config$users, list("user1", "user2", "user3")) + testthat$expect_null(config$agg_levels) +}) + +testthat$test_that("Wrong or missing yml is treated as NULL", { + # Trying to read non-existent config.yml + testthat$expect_error( + config_settings$read_config_yml(file_path = "configuration.yml") + ) # Misspelled file + + # Wrong config structure + config2 <- list(custom = list()) + write_yaml(config2, "conf/config.yml") + testthat$expect_error(config_settings$read_config_yml(file_path = "conf/config.yml")) + + unlink("conf/", recursive = TRUE) +}) + +testthat$context("Check config parameters") +testthat$test_that("All parameters values present in apps & users", { + config <- list( + default = list( + "apps" = "app1,app2", + "users" = "user1,user2,user3", + "agg_levels" = "user_guid" + ) + ) + config <- config$default %>% map(config_settings$split_yml_params) + apps_check <- config_settings$is_config_valid(config, "apps", data = raw_data$apps$title) + testthat$expect_true(apps_check) + + users_check <- config_settings$is_config_valid(config, "users", data = raw_data$users$username) + testthat$expect_true(users_check) + + agg_check <- config_settings$is_config_valid(config, "agg_levels", data = AGG_LEVELS) + testthat$expect_true(agg_check) +}) + +testthat$test_that("Parameter values not found in apps & users", { + config <- list( + default = list( + "apps" = "app4,app5", + "users" = "user4", + "agg_levels" = "user_guid" + ) + ) + config <- config$default %>% map(config_settings$split_yml_params) + apps_check <- config_settings$is_config_valid(config, "apps", data = raw_data$apps$title) + testthat$expect_false(apps_check) + + users_check <- config_settings$is_config_valid(config, "users", data = raw_data$users$username) + testthat$expect_false(users_check) + + agg_check <- config_settings$is_config_valid(config, "agg_levels", data = AGG_LEVELS) + testthat$expect_true(agg_check) +}) + +testthat$test_that("Not user parameter provided (Only apps & aggregation level)", { + config <- list( + default = list( + "apps" = "app1,app2", + "agg_levels" = "content_guid" + ) + ) + config <- config$default %>% map(config_settings$split_yml_params) + apps_check <- config_settings$is_config_valid(config, "apps", data = raw_data$apps$title) + testthat$expect_true(apps_check) + + users_check <- config_settings$is_config_valid(config, "users", data = raw_data$users$username) + testthat$expect_true(users_check) + + agg_check <- config_settings$is_config_valid(config, "agg_levels", data = AGG_LEVELS) + testthat$expect_true(agg_check) +}) + +testthat$context("Validate config parameters") + +testthat$test_that("validate_agg_time validates time levels correctly", { + config <- list(agg_time = "day") + testthat$expect_true(impl$validate_agg_time(config)) + + config <- list(agg_time = "invalid_time") + testthat$expect_false(impl$validate_agg_time(config)) +}) + +testthat$test_that("validate_min_time validates time format correctly", { + config <- list(min_time = "00:30:00") + testthat$expect_true(impl$validate_min_time(config)) + + config <- list(min_time = "invalid_time") + testthat$expect_false(impl$validate_min_time(config)) + + config <- list(min_time = "25:00:00") # Invalid hour + testthat$expect_false(impl$validate_min_time(config)) +}) + +testthat$test_that("validate_goal validates different goal types correctly", { + # Numeric goal + config <- list(unique_users_goal = "100") + testthat$expect_true(impl$validate_goal(config, "unique_users_goal")) + + # Tibble goal + config <- list(sessions_goal = tibble( + date = c("2024-01-01", "2024-01-02"), + goal = c(100, 200) + )) + testthat$expect_true(impl$validate_goal(config, "sessions_goal")) + + # Invalid numeric goal + config <- list(unique_users_goal = "invalid") + testthat$expect_warning(result <- impl$validate_goal(config, "unique_users_goal")) + testthat$expect_false(result) + + # Empty tibble goal + config <- list(sessions_goal = tibble()) + testthat$expect_false(impl$validate_goal(config, "sessions_goal")) + + # Missing goal + config <- list() + testthat$expect_false(impl$validate_goal(config, "sessions_goal")) +}) + +testthat$test_that("validate_week_start validates day names correctly", { + config <- list(week_start = "monday") + testthat$expect_true(impl$validate_week_start(config)) + + config <- list(week_start = "sunday") + testthat$expect_true(impl$validate_week_start(config)) + + config <- list(week_start = "invalid_day") + testthat$expect_false(impl$validate_week_start(config)) + + config <- list(week_start = "MONDAY") # Case sensitive + testthat$expect_false(impl$validate_week_start(config)) + + config <- list(week_start = NULL) + testthat$expect_false(impl$validate_week_start(config)) + + config <- list(week_start = NA) + testthat$expect_false(impl$validate_week_start(config)) + + config <- list(week_start = "") + testthat$expect_false(impl$validate_week_start(config)) +}) diff --git a/extensions/connect-user-metrics/tests/testthat/test-data_utils.R b/extensions/connect-user-metrics/tests/testthat/test-data_utils.R new file mode 100644 index 00000000..b1f12752 --- /dev/null +++ b/extensions/connect-user-metrics/tests/testthat/test-data_utils.R @@ -0,0 +1,63 @@ +box::use( + testthat[expect_equal, expect_error, test_that], +) + +box::use( + app/logic/data_utils, +) + +test_that("is_non_trivial_string works", { + + # true ones --- + expect_equal(data_utils$is_non_trivial_string(1), TRUE) + + expect_equal(data_utils$is_non_trivial_string("a"), TRUE) + + expect_equal(data_utils$is_non_trivial_string("abcdef"), TRUE) + + expect_equal(data_utils$is_non_trivial_string(TRUE), TRUE) + + # false ones ---- + expect_equal(data_utils$is_non_trivial_string(""), FALSE) + + expect_equal(data_utils$is_non_trivial_string(NA), FALSE) + + expect_equal(data_utils$is_non_trivial_string(NA_character_), FALSE) + + expect_equal(data_utils$is_non_trivial_string(NULL), FALSE) + + # error ones ---- + # we don't expect vectors of lenght > 1 + expect_error(data_utils$is_non_trivial_string(1:5)) +}) + +test_that("split_guids works", { + + guids <- "" + expect_equal(data_utils$split_guids(guids), NULL) + + guids <- "a" + expect_equal(data_utils$split_guids(guids), "a") + + guids <- "a,b" + expect_equal(data_utils$split_guids(guids), c("a", "b")) + + # we are not trimming whitespaces in the strings + guids <- "a, b" + expect_equal(data_utils$split_guids(guids), c("a", " b")) + + guids <- "a,,b" + expect_equal(data_utils$split_guids(guids), c("a", "b")) + + guids <- ",,b" + expect_equal(data_utils$split_guids(guids), "b") + + guids <- ",,,,,," + expect_equal(data_utils$split_guids(guids), NULL) + + guids <- NA + expect_equal(data_utils$split_guids(guids), NULL) + + guids <- NA_character_ + expect_equal(data_utils$split_guids(guids), NULL) +}) diff --git a/extensions/connect-user-metrics/tests/testthat/test-duration_utils.R b/extensions/connect-user-metrics/tests/testthat/test-duration_utils.R new file mode 100644 index 00000000..d1376998 --- /dev/null +++ b/extensions/connect-user-metrics/tests/testthat/test-duration_utils.R @@ -0,0 +1,62 @@ +box::use( + testthat[context, expect_equal, expect_length, test_that], +) + +box::use( + app/logic/duration_utils[format_duration], +) + + +context("Test duration_utils$format_duration()") + +test_that("format_duration returns empty string when passed duration is not valid", { + expect_equal(format_duration(NA), c("")) + expect_equal(format_duration(c(NA, NA, NA)), c("", "", "")) + expect_equal(format_duration(NaN), c("")) +}) + +test_that("format_duration returns zero length vector when receives zero length vector", { + expect_equal(format_duration(numeric(0)), character(0)) + expect_equal(format_duration(c()), character(0)) +}) + + +test_that("format_duration rounds floating point values", { + expect_equal(format_duration(10.5), "00:00:10") + expect_equal(format_duration(10.3), "00:00:10") + expect_equal(format_duration(10.7), "00:00:11") +}) + +test_that("format_duration combinations of NaN/NA return empty string at proper positions", { + input <- c(56, NA, 79, 245, NaN, 90) + output <- format_duration(input) + expect_length(output, length(input)) + expect_equal(output[1], "00:00:56") + expect_equal(output[2], "") + expect_equal(output[3], "00:01:19") + expect_equal(output[4], "00:04:05") + expect_equal(output[5], "") + expect_equal(output[6], "00:01:30") +}) + +test_that("format_duration outputs the same legth as input's", { + for (n in c(1:10, 15, 30, 90, 200, 500)) { + input <- sample(1:10000, size = n) + expect_length(format_duration(input), n) + } +}) + +test_that("format_duration output proper strings", { + input <- c(0, 1, 30, 60, 55, 180, 185, 250, 3600, 3620, 4859, 3600 * 24 + 60 * 2 + 55) + output <- c( + "00:00:00", "00:00:01", "00:00:30", "00:01:00", "00:00:55", "00:03:00", "00:03:05", + "00:04:10", "01:00:00", "01:00:20", "01:20:59", "24:02:55" + ) + expect_equal(format_duration(input), output) +}) + +test_that("format_duration outputs 00:00:00 for negative numbers", { + input <- c(-1, -10, -3600) + output <- rep("00:00:00", length(input)) + expect_equal(format_duration(input), output) +}) diff --git a/extensions/connect-user-metrics/tests/testthat/test-session_duration.R b/extensions/connect-user-metrics/tests/testthat/test-session_duration.R new file mode 100644 index 00000000..3207488f --- /dev/null +++ b/extensions/connect-user-metrics/tests/testthat/test-session_duration.R @@ -0,0 +1,57 @@ +box::use( + testthat[expect_equal, test_that], +) + +box::use( + app/view/session_duration, +) + +test_that("min_time is correctly used in session_duration", { + default_return <- session_duration$default_min_time_list + + min_time <- "00:00:00" + expect_equal(session_duration$get_min_time(min_time), default_return) + + min_time <- "00:00:-10" + expect_equal(session_duration$get_min_time(min_time), default_return) + + min_time <- "00:00:10" + expect_equal(session_duration$get_min_time(min_time), list(number = 10, unit = "seconds")) + + min_time <- "00:00:90" + expect_equal(session_duration$get_min_time(min_time), list(number = 90, unit = "seconds")) + + min_time <- "00:01:00" + expect_equal(session_duration$get_min_time(min_time), list(number = 1, unit = "minutes")) + + min_time <- "00:01:20" + expect_equal(session_duration$get_min_time(min_time), list(number = 80, unit = "seconds")) + + min_time <- "01:01:01" + expect_equal(session_duration$get_min_time(min_time), list(number = 3661, unit = "seconds")) + + min_time <- "01:01:00" + expect_equal(session_duration$get_min_time(min_time), list(number = 61, unit = "minutes")) + + min_time <- "01:00:00" + expect_equal(session_duration$get_min_time(min_time), list(number = 1, unit = "hours")) + + min_time <- "11:00:00" + expect_equal(session_duration$get_min_time(min_time), list(number = 11, unit = "hours")) + + # wrong formats of string ---- + min_time <- "00:AA:00" + expect_equal(suppressWarnings(session_duration$get_min_time(min_time)), default_return) + + min_time <- "" + expect_equal(suppressWarnings(session_duration$get_min_time(min_time)), default_return) + + min_time <- "a,b,c,d,e" + expect_equal(suppressWarnings(session_duration$get_min_time(min_time)), default_return) + + min_time <- "MY_DATETIME" + expect_equal(suppressWarnings(session_duration$get_min_time(min_time)), default_return) + + min_time <- "10:20" + expect_equal(suppressWarnings(session_duration$get_min_time(min_time)), default_return) +}) diff --git a/extensions/connect-user-metrics/tests/testthat/test-ui_utils.R b/extensions/connect-user-metrics/tests/testthat/test-ui_utils.R new file mode 100644 index 00000000..ee12e242 --- /dev/null +++ b/extensions/connect-user-metrics/tests/testthat/test-ui_utils.R @@ -0,0 +1,220 @@ +box::use( + jsonlite[fromJSON], + testthat[ + expect_equal, + expect_match, + expect_true, + expect_type, + test_that + ], + withr[with_tempdir], + yaml[read_yaml], +) + +box::use( + app/logic/ui_utils, +) + +black <- "#000000" +white <- "#FFFFFF" +gray <- "#808080" + +test_that("color_mix returns hex color", { + ui_utils$color_mix(black, white, 0.2) |> + expect_type("character") |> + expect_match("#") +}) + +test_that("color_mix returns base color when weight is 0", { + expect_equal( + ui_utils$color_mix(black, white, 0), + black + ) +}) + +test_that("color_mix returns blend color when weight is 1", { + expect_equal( + ui_utils$color_mix(black, white, 1), + white + ) +}) + +test_that("color_mix returns gray when white and black are mixed in same equally", { + expect_equal( + ui_utils$color_mix(black, white, 0.5), + gray + ) +}) + +test_that("replace_placeholders replaces single placeholder", { + input <- "color: $COLOR" + replacements <- list("$COLOR" = black) + + expect_equal( + ui_utils$replace_placeholders(input, replacements), + "color: #000000" + ) +}) + +test_that("replace_placeholders replaces multiple placeholders", { + input <- "font: $FONT, color: $COLOR" + replacements <- list( + "$FONT" = "Roboto", + "$COLOR" = black + ) + + expect_equal( + ui_utils$replace_placeholders(input, replacements), + "font: Roboto, color: #000000" + ) +}) + +test_that("replace_placeholders is not replacing placeholders if no matches", { + input <- "Text with $PLACEHOLDER" + + replacements <- list( + "$NAME" = "Test" + ) + expect_equal( + ui_utils$replace_placeholders(input, replacements), + "Text with $PLACEHOLDER" + ) + + replacements <- list() + expect_equal( + ui_utils$replace_placeholders(input, replacements), + "Text with $PLACEHOLDER" + ) +}) + +test_that("replace_placeholders replaces across multiple lines", { + input <- c( + "{", + " \"color\": \"$COLOR\",", + " \"font\": \"$FONT\"", + "}" + ) + + replacements <- list( + "$COLOR" = black, + "$FONT" = "Roboto" + ) + + expect_equal( + ui_utils$replace_placeholders(input, replacements), + c( + "{", + " \"color\": \"#000000\",", + " \"font\": \"Roboto\"", + "}" + ) + ) +}) + +test_that("compose_charts_theme returns '' when there is no replacements or template file", { + expect_equal( + ui_utils$compose_charts_theme( + placeholder_replacements = NULL, + template_path = "app/test_template.json" + ), + "" + ) + + expect_equal( + ui_utils$compose_charts_theme( + placeholder_replacements = NA, + template_path = "app/test_template.json" + ), + "" + ) + + expect_equal( + ui_utils$compose_charts_theme( + placeholder_replacements = list(), + template_path = "app/test_template.json" + ), + "" + ) + + expect_equal( + ui_utils$compose_charts_theme( + placeholder_replacements = list( + "$TEST" = "test", + ), + template_path = "app/test_template.json" + ), + "" + ) + + expect_equal( + ui_utils$compose_charts_theme( + placeholder_replacements = list(), + template_path = "app/metrics_theme_template.json" + ), + "" + ) +}) + +test_that("compose_charts_theme returns path to charts theme and replaces placeholders with values from brand file", { #nolint line_length_linter + with_tempdir( + { + brand_path <- "test_brand.yml" + template_path <- "test_template.json" + output_path <- sub("_template", "", template_path) + expected_theme_path <- "expected_theme.json" + + # Minimal valid branding file + writeLines( + c( + "color:", + " palette:", + " black: \"#000000\"", + " primary: black" + ), + brand_path + ) + + # Minimal valid charts theme template file + writeLines( + c( + "{", + " \"color\": \"$PRIMARY_COLOR\"", + "}" + ), + template_path + ) + + # Expected charts theme file + writeLines( + c( + "{", + " \"color\": \"#000000\"", + "}" + ), + expected_theme_path + ) + + brand <- read_yaml(brand_path) + placeholder_replacements <- list( + "$PRIMARY_COLOR" = brand$color$palette[[brand$color$primary]] + ) + + chart_theme_path <- ui_utils$compose_charts_theme( + placeholder_replacements = placeholder_replacements, + template_path = template_path + ) + + expect_true(file.exists(chart_theme_path)) + + expect_equal( + chart_theme_path, + output_path + ) + + expect_equal( + fromJSON(chart_theme_path), + fromJSON(expected_theme_path) + ) + } + ) +}) diff --git a/extensions/connect-user-metrics/tests/testthat/test-utils.R b/extensions/connect-user-metrics/tests/testthat/test-utils.R new file mode 100644 index 00000000..ed5e1da8 --- /dev/null +++ b/extensions/connect-user-metrics/tests/testthat/test-utils.R @@ -0,0 +1,320 @@ +box::use( + lubridate[as_date, days], + testthat[expect_equal, expect_null, test_that], +) + +box::use( + app/logic/utils, +) + +impl <- attr(utils, "namespace") + +test_that("map_wday gives monday as one", { + expect_equal(utils$map_wday(c("Monday")), c(1)) +}) + +test_that("map_wday is case insensitive", { + expect_equal(utils$map_wday(c("Monday", "monday", "mOnDaY")), c(1, 1, 1)) +}) + +test_that("map_wday sets sunday as 7", { + expect_equal(utils$map_wday(c("Sunday")), c(7)) +}) + +test_that("get_goal_spec works for basic example", { + test_goal_df <- data.frame( + freq = c("day"), + per = c("start_date"), + goal = c("28") + ) + expect_equal( + 28, + impl$get_goal_spec(test_goal_df, agg_levels = c("start_date"), date_agg = c("day")) + ) +}) + +test_that("get_goal_spec gives NULL for non existent goals", { + test_goal_df <- data.frame( + freq = c("day"), + per = c("start_date"), + goal = c("28") + ) + expect_null(impl$get_goal_spec(test_goal_df, agg_levels = c("start_date"), date_agg = c("week"))) + expect_null(impl$get_goal_spec(test_goal_df, agg_levels = c("content_guid"), date_agg = c("day"))) + + test_goal_df <- data.frame( + freq = c("day"), + per = c("start_date,content_guid"), + goal = c("28") + ) + expect_null(impl$get_goal_spec(test_goal_df, agg_levels = c("start_date"), date_agg = c("day"))) + expect_null(impl$get_goal_spec(test_goal_df, agg_levels = c("content_guid"), date_agg = c("day"))) +}) + +test_that("get_goal_spec captures comma separated lists", { + test_goal_df <- data.frame( + freq = c("day"), + per = c("start_date,content_guid"), + goal = c("28") + ) + expect_equal( + 28, + impl$get_goal_spec( + test_goal_df, + agg_levels = c("start_date", "content_guid"), + date_agg = c("day") + ) + ) +}) + +test_that("get_goal_spec avoids whitespace in user input", { + test_goal_df <- data.frame( + freq = c("day"), + per = c(" start_date , content_guid "), + goal = c("28") + ) + expect_equal( + 28, + impl$get_goal_spec( + test_goal_df, + agg_levels = c("start_date", "content_guid"), + date_agg = c("day") + ) + ) +}) + +test_that("get_goal_spec is robust to ordering of agg_level in input_df", { + test_goal_df <- data.frame( + freq = c("day"), + per = c("content_guid,start_date"), + goal = c("28") + ) + expect_equal( + 28, + impl$get_goal_spec( + test_goal_df, + agg_levels = c("start_date", "content_guid"), + date_agg = c("day") + ) + ) + + test_goal_df <- data.frame( + freq = c("day"), + per = c("content_guid,start_date,user_guid"), + goal = c("28") + ) + expect_equal( + 28, + impl$get_goal_spec( + test_goal_df, + agg_levels = c("start_date", "content_guid", "user_guid"), + date_agg = c("day") + ) + ) +}) + +test_that("get_goal_spec is robust to ordering of agg_level in func args", { + test_goal_df <- data.frame( + freq = c("day"), + per = c("start_date,content_guid"), + goal = c("28") + ) + expect_equal( + 28, + impl$get_goal_spec( + test_goal_df, + agg_levels = c("content_guid", "start_date"), + date_agg = c("day") + ) + ) + + test_goal_df <- data.frame( + freq = c("day"), + per = c("content_guid,start_date,user_guid"), + goal = c("28") + ) + expect_equal( + 28, + impl$get_goal_spec( + test_goal_df, + agg_levels = c("start_date", "user_guid", "content_guid"), + date_agg = c("day") + ) + ) +}) + +test_that("process_chart_goal handles numeric input", { + expect_equal( + 42, + utils$process_chart_goal(42, agg_levels = c("start_date"), date_aggregation = "day") + ) +}) + +test_that("process_chart_goal handles NULL input", { + expect_null( + utils$process_chart_goal(NULL, agg_levels = c("start_date"), date_aggregation = "day") + ) +}) + +test_that("create_image_path returns image path when image filename is given as an input", { + image_filename <- "image.jpeg" + + expect_equal( + as.character(utils$create_image_path(image_filename)), + "static/images/image.jpeg" + ) +}) + +test_that("create_image_path returns image path when image is located in sub-folder", { + image_filename <- "test/image.jpeg" + + expect_equal( + as.character(utils$create_image_path(image_filename)), + "static/images/test/image.jpeg" + ) +}) + +test_that("get_app_titles returns app titles if they exist", { + apps <- data.frame( + guid = c("test_guid_1", "test_guid_2", "test_guid_3"), + name = c("test_name_1", "test_name_2", "test_name_3"), + title = c("test_title_1", "test_title_2", "test_title_3") + ) + + expect_equal( + c("test_title_1", "test_title_2", "test_title_3"), + utils$get_app_titles(apps$title, apps$name) + ) +}) + +test_that("get_app_titles returns app names instead of NA titles", { + apps <- data.frame( + guid = c("test_guid_1", "test_guid_2", "test_guid_3"), + name = c("test_name_1", "test_name_2", "test_name_3"), + title = c("test_title_1", NA, "test_title_3") + ) + + expect_equal( + c("test_title_1", "test_name_2", "test_title_3"), + utils$get_app_titles(apps$title, apps$name) + ) +}) + +test_that("get_app_titles returns app names instead of empty titles", { + apps <- data.frame( + guid = c("test_guid_1", "test_guid_2", "test_guid_3"), + name = c("test_name_1", "test_name_2", "test_name_3"), + title = c("", "test_title_2", "") + ) + + expect_equal( + c("test_name_1", "test_title_2", "test_name_3"), + utils$get_app_titles(apps$title, apps$name) + ) +}) + +test_that("get_date_range_length_in_units returns zero when start date is greater than end date", { + expect_equal( + 0, + utils$get_date_range_length_in_units( + start_date = "2025-04-01", + end_date = "2025-03-01", + unit = "day" + ) + ) +}) + +test_that("get_date_range_length_in_units returns difference between two dates in days", { + expect_equal( + 1, + utils$get_date_range_length_in_units( + start_date = "2025-03-01", + end_date = "2025-03-01", + unit = "day" + ) + ) + + expect_equal( + 32, + utils$get_date_range_length_in_units( + start_date = "2025-03-01", + end_date = "2025-04-01", + unit = "day" + ) + ) +}) + +test_that("get_date_range_length_in_units returns difference between two dates in weeks", { + week_day_ids <- seq(1:7) + names(week_day_ids) <- c( + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday", + "Sunday" + ) + + # Check each day in the period of two calendar weeks + for (i in 0:13) { + initial_monday <- as_date("2025-03-03") + + expect_equal( + utils$get_date_range_length_in_units( + start_date = initial_monday, + end_date = initial_monday + days(i), + unit = "week", + week_start = week_day_ids["Monday"] + ), + 1 + i %/% 7 + ) + } + + # Check same date range with different week start days + expect_equal( + 6, + utils$get_date_range_length_in_units( + start_date = "2025-03-02", # Sunday + end_date = "2025-04-01", + unit = "week", + week_start = week_day_ids["Monday"] + ) + ) + + expect_equal( + 5, + utils$get_date_range_length_in_units( + start_date = "2025-03-02", # Sunday + end_date = "2025-04-01", + unit = "week", + week_start = week_day_ids["Sunday"] + ) + ) +}) + +test_that("get_date_range_length_in_units returns difference between two dates in months", { + # Each day in the same month return same length in months + for (i in 0:30) { + initial_day <- as_date("2025-03-01") + + expect_equal( + 1, + utils$get_date_range_length_in_units( + start_date = initial_day, + end_date = initial_day + days(i), + unit = "month" + ) + ) + } + + # Date range of two calendar months + expect_equal( + 2, + utils$get_date_range_length_in_units( + start_date = "2025-03-01", + end_date = "2025-04-01", + unit = "month" + ) + ) +}) diff --git a/extensions/connect-user-metrics/user.metrics.Rproj b/extensions/connect-user-metrics/user.metrics.Rproj new file mode 100644 index 00000000..e24a7795 --- /dev/null +++ b/extensions/connect-user-metrics/user.metrics.Rproj @@ -0,0 +1,18 @@ +Version: 1.0 +ProjectId: ad131b4c-1efe-42fc-b38e-6000236a4d71 + +RestoreWorkspace: No +SaveWorkspace: No +AlwaysSaveHistory: Default + +EnableCodeIndexing: Yes +UseSpacesForTab: Yes +NumSpacesForTab: 2 +Encoding: UTF-8 + +RnwWeave: Sweave +LaTeX: pdfLaTeX + +AutoAppendNewline: Yes +StripTrailingWhitespace: Yes +LineEndingConversion: Posix From ad72f9da0a7ae47d1d1b53f32792e5430a2ea140 Mon Sep 17 00:00:00 2001 From: vituri Date: Fri, 6 Jun 2025 14:36:12 -0300 Subject: [PATCH 02/31] add manifest file --- extensions/connect-user-metrics/manifest.json | 5459 +++++++++++++++++ 1 file changed, 5459 insertions(+) create mode 100644 extensions/connect-user-metrics/manifest.json diff --git a/extensions/connect-user-metrics/manifest.json b/extensions/connect-user-metrics/manifest.json new file mode 100644 index 00000000..1b0e1958 --- /dev/null +++ b/extensions/connect-user-metrics/manifest.json @@ -0,0 +1,5459 @@ +{ + "version": 1, + "locale": "en_US", + "platform": "4.5.0", + "metadata": { + "appmode": "shiny", + "primary_rmd": null, + "primary_html": null, + "content_category": null, + "has_parameters": false + }, + "environment": { + "r": { + "requires": "~=4.5.0" + } + }, + "packages": { + "AsioHeaders": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "AsioHeaders", + "Type": "Package", + "Title": "'Asio' C++ Header Files", + "Version": "1.22.1-2", + "Date": "2022-12-07", + "Author": "Dirk Eddelbuettel", + "Maintainer": "Dirk Eddelbuettel ", + "Description": "'Asio' is a cross-platform C++ library for network and low-level\n I/O programming that provides developers with a consistent asynchronous model\n using a modern C++ approach. It is also included in Boost but requires linking\n when used with Boost. Standalone it can be used header-only (provided a recent\n compiler). 'Asio' is written and maintained by Christopher M. Kohlhoff, and\n released under the 'Boost Software License', Version 1.0.", + "Copyright": "file inst/COPYRIGHTS", + "License": "BSL-1.0", + "URL": "https://github.com/eddelbuettel/asioheaders,\nhttps://dirk.eddelbuettel.com/code/asioheaders.html", + "BugReports": "https://github.com/eddelbuettel/asioheaders/issues", + "NeedsCompilation": "no", + "Packaged": "2022-12-08 04:04:23 UTC; edd", + "Repository": "CRAN", + "Date/Publication": "2022-12-08 08:12:34 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:47:13 UTC; unix" + } + }, + "BH": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "BH", + "Type": "Package", + "Title": "Boost C++ Header Files", + "Version": "1.87.0-1", + "Date": "2024-12-17", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"John W.\", \"Emerson\", role = \"aut\"), \n person(\"Michael J.\", \"Kane\", role = \"aut\", \n comment = c(ORCID = \"0000-0003-1899-6662\")))", + "Description": "Boost provides free peer-reviewed portable C++ source \n libraries. A large part of Boost is provided as C++ template code\n which is resolved entirely at compile-time without linking. This \n package aims to provide the most useful subset of Boost libraries \n for template use among CRAN packages. By placing these libraries in \n this package, we offer a more efficient distribution system for CRAN \n as replication of this code in the sources of other packages is \n avoided. As of release 1.84.0-0, the following Boost libraries are\n included: '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' 'qvm' '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": "2024-12-17 14:33:33 UTC; edd", + "Author": "Dirk Eddelbuettel [aut, cre] (),\n John W. Emerson [aut],\n Michael J. Kane [aut] ()", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN", + "Date/Publication": "2024-12-17 18:20:03 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:47:14 UTC; unix" + } + }, + "KernSmooth": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "KernSmooth", + "Priority": "recommended", + "Version": "2.23-26", + "Date": "2024-12-10", + "Title": "Functions for Kernel Smoothing Supporting Wand & Jones (1995)", + "Authors@R": "c(person(\"Matt\", \"Wand\", role = \"aut\",\n\t email = \"Matt.Wand@uts.edu.au\"),\n\t person(\"Cleve\", \"Moler\", role = \"ctb\",\n\t comment = \"LINPACK routines in src/d*\"),\n person(\"Brian\", \"Ripley\", role = c(\"trl\", \"cre\", \"ctb\"),\n email = \"Brian.Ripley@R-project.org\",\n\t\t comment = \"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)\n corresponding to the book: \n Wand, M.P. and Jones, M.C. (1995) \"Kernel Smoothing\".", + "License": "Unlimited", + "ByteCompile": "yes", + "NeedsCompilation": "yes", + "Packaged": "2024-12-10 15:33:25 UTC; ripley", + "Author": "Matt Wand [aut],\n Cleve Moler [ctb] (LINPACK routines in src/d*),\n Brian Ripley [trl, cre, ctb] (R port and updates)", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN", + "Date/Publication": "2025-01-01 10:25:36 UTC", + "Built": "R 4.4.2; x86_64-pc-linux-gnu; 'Tue, 07 Jan 2025 00:15:06 +0000'; unix" + } + }, + "MASS": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "MASS", + "Priority": "recommended", + "Version": "7.3-65", + "Date": "2025-02-19", + "Revision": "$Rev: 3681 $", + "Depends": "R (>= 4.4.0), grDevices, graphics, stats, utils", + "Imports": "methods", + "Suggests": "lattice, nlme, nnet, survival", + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\n email = \"Brian.Ripley@R-project.org\"),\n\t person(\"Bill\", \"Venables\", role = c(\"aut\", \"cph\")),\n\t person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"),\n\t person(\"Kurt\", \"Hornik\", role = \"trl\",\n comment = \"partial port ca 1998\"),\n\t person(\"Albrecht\", \"Gebhardt\", role = \"trl\",\n comment = \"partial port ca 1998\"),\n\t person(\"David\", \"Firth\", role = \"ctb\",\n\t comment = \"support functions for polr\"))", + "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": "2025-02-19 08:49:43 UTC; ripley", + "Author": "Brian Ripley [aut, cre, cph],\n Bill Venables [aut, cph],\n Douglas M. Bates [ctb],\n Kurt Hornik [trl] (partial port ca 1998),\n Albrecht Gebhardt [trl] (partial port ca 1998),\n David Firth [ctb] (support functions for polr)", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN", + "Date/Publication": "2025-02-28 17:44:52 UTC", + "Built": "R 4.4.3; x86_64-pc-linux-gnu; 'Wed, 12 Mar 2025 13:46:16 +0000'; unix" + } + }, + "Matrix": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "Matrix", + "Version": "1.7-2", + "VersionNote": "do also bump src/version.h, inst/include/Matrix/version.h", + "Date": "2025-01-20", + "Priority": "recommended", + "Title": "Sparse and Dense Matrix Classes and Methods", + "Description": "A rich hierarchy of sparse and dense matrix classes,\n\tincluding general, symmetric, triangular, and diagonal matrices\n\twith numeric, logical, or pattern entries. Efficient methods for\n\toperating on such matrices, often wrapping the 'BLAS', 'LAPACK',\n\tand '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": "\n\tc(person(\"Douglas\", \"Bates\", role = \"aut\",\n\t comment = c(ORCID = \"0000-0001-8316-9503\")),\n\t person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"),\n\t email = \"mmaechler+Matrix@gmail.com\",\n\t comment = c(ORCID = \"0000-0002-8685-9910\")),\n\t person(\"Mikael\", \"Jagan\", role = \"aut\",\n\t comment = c(ORCID = \"0000-0002-3542-2938\")),\n\t person(\"Timothy A.\", \"Davis\", role = \"ctb\",\n\t comment = c(ORCID = \"0000-0001-7614-6899\",\n\t \"SuiteSparse libraries\",\n\t \"collaborators listed in dir(system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"), pattern=\\\"License\\\", full.names=TRUE, recursive=TRUE)\")),\n\t person(\"George\", \"Karypis\", role = \"ctb\",\n\t comment = c(ORCID = \"0000-0003-2753-1437\",\n\t \"METIS library\",\n\t \"Copyright: Regents of the University of Minnesota\")),\n\t person(\"Jason\", \"Riedy\", role = \"ctb\",\n\t comment = c(ORCID = \"0000-0002-4345-4200\",\n\t \"GNU Octave's condest() and onenormest()\",\n\t \"Copyright: Regents of the University of California\")),\n\t person(\"Jens\", \"Oehlschlägel\", role = \"ctb\",\n\t comment = \"initial nearPD()\"),\n\t person(\"R Core Team\", role = \"ctb\",\n\t comment = c(ROR = \"02zz1nj61\", \"base R's matrix implementation\")))", + "Depends": "R (>= 4.4), methods", + "Imports": "grDevices, graphics, grid, lattice, stats, utils", + "Suggests": "MASS, datasets, sfsmisc, tools", + "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": "2025-01-23 10:24:58 UTC; maechler", + "Author": "Douglas Bates [aut] (),\n Martin Maechler [aut, cre] (),\n Mikael Jagan [aut] (),\n Timothy A. Davis [ctb] (,\n SuiteSparse libraries, collaborators listed in\n dir(system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"),\n pattern=\"License\", full.names=TRUE, recursive=TRUE)),\n George Karypis [ctb] (, METIS\n library, Copyright: Regents of the University of Minnesota),\n Jason Riedy [ctb] (, GNU\n Octave's condest() and onenormest(), Copyright: Regents of the\n University of California),\n Jens Oehlschlägel [ctb] (initial nearPD()),\n R Core Team [ctb] (02zz1nj61, base R's matrix implementation)", + "Maintainer": "Martin Maechler ", + "Repository": "CRAN", + "Date/Publication": "2025-01-23 16:40:11 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:45:47 UTC; unix" + } + }, + "R.cache": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "R.cache", + "Version": "0.16.0", + "Depends": "R (>= 2.14.0)", + "Imports": "utils, R.methodsS3 (>= 1.8.1), R.oo (>= 1.24.0), R.utils (>=\n2.10.1), digest (>= 0.6.13)", + "Title": "Fast and Light-Weight Caching (Memoization) of Objects and\nResults to Speed Up Computations", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\n email = \"henrikb@braju.com\"))", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Description": "Memoization can be used to speed up repetitive and computational expensive function calls. The first time a function that implements memoization is called the results are stored in a cache memory. The next time the function is called with the same set of parameters, the results are momentarily retrieved from the cache avoiding repeating the calculations. With this package, any R object can be cached in a key-value storage where the key can be an arbitrary set of R objects. The cache memory is persistent (on the file system).", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "URL": "https://github.com/HenrikBengtsson/R.cache", + "BugReports": "https://github.com/HenrikBengtsson/R.cache/issues", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Packaged": "2022-07-21 13:19:33 UTC; hb", + "Repository": "CRAN", + "Date/Publication": "2022-07-21 16:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:47:25 UTC; unix" + } + }, + "R.methodsS3": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "R.methodsS3", + "Version": "1.8.2", + "Depends": "R (>= 2.13.0)", + "Imports": "utils", + "Suggests": "codetools", + "Title": "S3 Methods Simplified", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\n email = \"henrikb@braju.com\"))", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Description": "Methods that simplify the setup of S3 generic functions and S3 methods. Major effort has been made in making definition of methods as simple as possible with a minimum of maintenance for package developers. For example, generic functions are created automatically, if missing, and naming conflict are automatically solved, if possible. The method setMethodS3() is a good start for those who in the future may want to migrate to S4. This is a cross-platform package implemented in pure R that generates standard S3 methods.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "URL": "https://github.com/HenrikBengtsson/R.methodsS3", + "BugReports": "https://github.com/HenrikBengtsson/R.methodsS3/issues", + "NeedsCompilation": "no", + "Packaged": "2022-06-13 18:23:35 UTC; hb", + "Repository": "CRAN", + "Date/Publication": "2022-06-13 22:00:14 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:47:15 UTC; unix" + } + }, + "R.oo": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "R.oo", + "Version": "1.27.0", + "Depends": "R (>= 2.13.0), R.methodsS3 (>= 1.8.2)", + "Imports": "methods, utils", + "Suggests": "tools", + "Title": "R Object-Oriented Programming with or without References", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\n email = \"henrikb@braju.com\"))", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Description": "Methods and classes for object-oriented programming in R with or without references. Large effort has been made on making definition of methods as simple as possible with a minimum of maintenance for package developers. The package has been developed since 2001 and is now considered very stable. This is a cross-platform package implemented in pure R that defines standard S3 classes without any tricks.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "URL": "https://github.com/HenrikBengtsson/R.oo", + "BugReports": "https://github.com/HenrikBengtsson/R.oo/issues", + "NeedsCompilation": "no", + "Packaged": "2024-11-01 17:26:30 UTC; henrik", + "Repository": "CRAN", + "Date/Publication": "2024-11-01 18:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:47:16 UTC; unix" + } + }, + "R.utils": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "R.utils", + "Version": "2.12.3", + "Depends": "R (>= 2.14.0), R.oo", + "Imports": "methods, utils, tools, R.methodsS3", + "Suggests": "datasets, digest (>= 0.6.10)", + "Title": "Various Programming Utilities", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\n email = \"henrikb@braju.com\"))", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Description": "Utility functions useful when programming and developing R packages.", + "License": "LGPL (>= 2.1)", + "LazyLoad": "TRUE", + "URL": "https://henrikbengtsson.github.io/R.utils/,\nhttps://github.com/HenrikBengtsson/R.utils", + "BugReports": "https://github.com/HenrikBengtsson/R.utils/issues", + "NeedsCompilation": "no", + "Packaged": "2023-11-17 05:13:25 UTC; henrik", + "Repository": "CRAN", + "Date/Publication": "2023-11-18 01:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:47:18 UTC; unix" + } + }, + "R6": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "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\n reference classes. Compared to reference classes, R6 classes are simpler\n and lighter-weight, and they are not built on S4 classes so they do not\n require the methods package. These classes allow public and private\n members, and they support inheritance, even when the classes are defined in\n different 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": "CRAN", + "Date/Publication": "2021-08-19 14:00:05 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:47:26 UTC; unix" + } + }, + "RColorBrewer": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "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)\n designed 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": "CRAN", + "Date/Publication": "2022-04-03 19:20:13 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:47:27 UTC; unix" + } + }, + "Rcpp": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "Rcpp", + "Title": "Seamless R and C++ Integration", + "Version": "1.0.14", + "Date": "2025-01-11", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Romain\", \"Francois\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"JJ\", \"Allaire\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-0174-9868\")),\n person(\"Kevin\", \"Ushey\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-2880-7407\")),\n person(\"Qiang\", \"Kou\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-6786-5453\")),\n person(\"Nathan\", \"Russell\", role = \"aut\"),\n person(\"Iñaki\", \"Ucar\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-6403-5550\")),\n person(\"Doug\", \"Bates\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-8316-9503\")),\n person(\"John\", \"Chambers\", role = \"aut\"))", + "Description": "The 'Rcpp' package provides R functions as well as C++ classes which\n offer a seamless integration of R and C++. Many R data types and objects can be\n mapped back and forth to C++ equivalents which facilitates both writing of new\n code as well as easier integration of third-party libraries. Documentation\n about 'Rcpp' is provided by several vignettes included in this package, via the\n 'Rcpp Gallery' site at , the paper by Eddelbuettel and\n Francois (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": "2025-01-11 20:21:25 UTC; edd", + "Author": "Dirk Eddelbuettel [aut, cre] (),\n Romain Francois [aut] (),\n JJ Allaire [aut] (),\n Kevin Ushey [aut] (),\n Qiang Kou [aut] (),\n Nathan Russell [aut],\n Iñaki Ucar [aut] (),\n Doug Bates [aut] (),\n John Chambers [aut]", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN", + "Date/Publication": "2025-01-12 16:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:27 UTC; unix" + } + }, + "RcppArmadillo": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "RcppArmadillo", + "Type": "Package", + "Title": "'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra\nLibrary", + "Version": "14.2.3-1", + "Date": "2025-02-05", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Romain\", \"Francois\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Doug\", \"Bates\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-8316-9503\")),\n person(\"Binxiang\", \"Ni\", role = \"aut\"),\n person(\"Conrad\", \"Sanderson\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-0049-4501\")))", + "Description": "'Armadillo' is a templated C++ linear algebra library (by Conrad\n Sanderson) that aims towards a good balance between speed and ease of\n use. Integer, floating point and complex numbers are supported, as\n well as a subset of trigonometric and statistics functions. Various\n matrix decompositions are provided through optional integration with\n LAPACK and ATLAS libraries. The 'RcppArmadillo' package includes the\n header files from the templated 'Armadillo' library. Thus users do\n not need to install 'Armadillo' itself in order to use\n 'RcppArmadillo'. From release 7.800.0 on, 'Armadillo' is licensed\n under Apache License 2; previous releases were under licensed as MPL\n 2.0 from version 3.800.0 onwards and LGPL-3 prior to that;\n 'RcppArmadillo' (the 'Rcpp' bindings/bridge to Armadillo) is licensed\n under 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 (>= 1.0.12), 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", + "RoxygenNote": "6.0.1", + "NeedsCompilation": "yes", + "Packaged": "2025-02-05 15:53:51 UTC; edd", + "Author": "Dirk Eddelbuettel [aut, cre] (),\n Romain Francois [aut] (),\n Doug Bates [aut] (),\n Binxiang Ni [aut],\n Conrad Sanderson [aut] ()", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN", + "Date/Publication": "2025-02-06 08:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-17 14:39:28 UTC; unix" + } + }, + "RcppRoll": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "RcppRoll", + "Type": "Package", + "Title": "Efficient Rolling / Windowed Operations", + "Version": "0.3.1", + "Author": "Kevin Ushey", + "Maintainer": "Kevin Ushey ", + "Description": "Provides fast and efficient routines for\n common rolling / windowed operations. Routines for the\n efficient computation of windowed mean, median,\n sum, product, minimum, maximum, standard deviation\n and variance are provided.", + "License": "GPL (>= 2)", + "Depends": "R (>= 2.15.1)", + "Suggests": "zoo, testthat", + "Imports": "Rcpp", + "LinkingTo": "Rcpp", + "RoxygenNote": "6.0.1", + "NeedsCompilation": "yes", + "Packaged": "2024-07-07 10:09:06 UTC; kevin", + "Repository": "CRAN", + "Date/Publication": "2024-07-07 11:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:45 UTC; unix" + } + }, + "SQUAREM": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "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,\n monotone sequences from smooth, contraction mapping such as the\n EM algorithm. It can be used to accelerate any smooth, linearly\n convergent acceleration scheme. A tutorial style introduction\n to this package is available in a vignette on the CRAN download\n page or, when the package is loaded in an R session, with\n vignette(\"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": "CRAN", + "NeedsCompilation": "no", + "Packaged": "2021-01-12 23:59:02 UTC; rvaradhan", + "Date/Publication": "2021-01-13 06:40:10 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:47:49 UTC; unix" + } + }, + "TTR": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "TTR", + "Type": "Package", + "Title": "Technical Trading Rules", + "Version": "0.24.4", + "Authors@R": "c(\n person(given=\"Joshua\", family=\"Ulrich\", role=c(\"cre\",\"aut\"), email=\"josh.m.ulrich@gmail.com\"),\n person(given=c(\"Ethan\",\"B.\"), family=\"Smith\", role=\"ctb\")\n )", + "Imports": "xts (>= 0.10-0), zoo, curl", + "LinkingTo": "xts", + "Enhances": "quantmod", + "Suggests": "RUnit", + "Description": "A collection of over 50 technical indicators for creating technical trading rules. The package also provides fast implementations of common rolling-window functions, and several volatility calculations.", + "License": "GPL (>= 2)", + "URL": "https://github.com/joshuaulrich/TTR", + "BugReports": "https://github.com/joshuaulrich/TTR/issues", + "NeedsCompilation": "yes", + "Packaged": "2023-11-28 00:12:35 UTC; josh", + "Author": "Joshua Ulrich [cre, aut],\n Ethan B. Smith [ctb]", + "Maintainer": "Joshua Ulrich ", + "Repository": "CRAN", + "Date/Publication": "2023-11-28 05:20:21 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:58 UTC; unix" + } + }, + "anytime": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "anytime", + "Type": "Package", + "Title": "Anything to 'POSIXct' or 'Date' Converter", + "Version": "0.3.11", + "Date": "2024-12-18", + "Authors@R": "person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\"))", + "Description": "Convert input in any one of character, integer, numeric, factor,\n or ordered type into 'POSIXct' (or 'Date') objects, using one of a number of\n predefined formats, and relying on Boost facilities for date and time parsing.", + "URL": "https://github.com/eddelbuettel/anytime,\nhttps://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": "2024-12-18 14:26:53 UTC; edd", + "Author": "Dirk Eddelbuettel [aut, cre] ()", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN", + "Date/Publication": "2024-12-19 15:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:00 UTC; unix" + } + }, + "askpass": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "askpass", + "Type": "Package", + "Title": "Password Entry Utilities for R, Git, and SSH", + "Version": "1.2.1", + "Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), \n email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\"))", + "Description": "Cross-platform utilities for prompting the user for credentials or a \n passphrase, for example to authenticate with a server or read a protected key.\n Includes native programs for MacOS and Windows, hence no 'tcltk' is required. \n Password entry can be invoked in two different ways: directly from R via the \n askpass() function, or indirectly as password-entry back-end for 'ssh-agent' \n or 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables.\n Thereby the user can be prompted for credentials or a passphrase if needed \n when R calls out to git or ssh.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.r-universe.dev/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": "2024-10-03 14:12:09 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] ()", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN", + "Date/Publication": "2024-10-04 07:20:03 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:06 UTC; unix" + } + }, + "backports": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "backports", + "Type": "Package", + "Title": "Reimplementations of Functions Introduced Since R-3.0.0", + "Version": "1.5.0", + "Authors@R": "c(\n person(\"Michel\", \"Lang\", NULL, \"michellang@gmail.com\",\n role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")),\n person(\"Duncan\", \"Murdoch\", NULL, \"murdoch.duncan@gmail.com\",\n role = c(\"aut\")),\n person(\"R Core Team\", role = \"aut\"))", + "Maintainer": "Michel Lang ", + "Description": "\n Functions introduced or changed since R v3.0.0 are re-implemented in this\n package. The backports are conditionally exported in order to let R resolve\n the function name to either the implemented backport, or the respective base\n version, if available. Package developers can make use of new functions or\n arguments by selectively importing specific backports to\n support older installations.", + "URL": "https://github.com/r-lib/backports", + "BugReports": "https://github.com/r-lib/backports/issues", + "License": "GPL-2 | GPL-3", + "NeedsCompilation": "yes", + "ByteCompile": "yes", + "Depends": "R (>= 3.0.0)", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Packaged": "2024-05-23 11:56:25 UTC; michel", + "Author": "Michel Lang [cre, aut] (),\n Duncan Murdoch [aut],\n R Core Team [aut]", + "Repository": "CRAN", + "Date/Publication": "2024-05-23 12:30:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:07 UTC; unix" + } + }, + "base64enc": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "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": "CRAN", + "Date/Publication": "2015-07-28 08:03:37", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:08 UTC; unix" + } + }, + "bit": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "bit", + "Type": "Package", + "Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections", + "Version": "4.5.0.1", + "Date": "2024-09-17", + "Authors@R": "c(person(given = \"Jens\",\n family = \"Oehlschlägel\",\n role = c(\"aut\", \"cre\"),\n email = \"Jens.Oehlschlaegel@truecluster.com\"),\n person(given = \"Brian\",\n family = \"Ripley\",\n role = \"ctb\"))", + "Author": "Jens Oehlschlägel [aut, cre],\n Brian Ripley [ctb]", + "Maintainer": "Jens Oehlschlägel ", + "Depends": "R (>= 3.4.0)", + "Suggests": "testthat (>= 0.11.0), roxygen2, knitr, markdown, rmarkdown,\nmicrobenchmark, bit64 (>= 4.0.0), ff (>= 4.0.0)", + "Description": "Provided are classes for boolean and skewed boolean vectors,\n fast boolean methods, fast unique and non-unique integer sorting,\n fast set operations on sorted and unsorted sets of integers, and\n foundations 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.3.2", + "NeedsCompilation": "yes", + "Packaged": "2024-11-27 08:15:13 UTC; ripley", + "Repository": "CRAN", + "Date/Publication": "2024-12-03 13:45:44 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:08 UTC; unix" + } + }, + "bit64": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "bit64", + "Title": "A S3 Class for Vectors of 64bit Integers", + "Version": "4.6.0-1", + "Authors@R": "c(\n person(\"Michael\", \"Chirico\", email = \"michaelchirico4@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Jens\", \"Oehlschlägel\", role = \"aut\"),\n person(\"Leonardo\", \"Silvestri\", role = \"ctb\"),\n person(\"Ofek\", \"Shilon\", role = \"ctb\")\n )", + "Depends": "R (>= 3.4.0), bit (>= 4.0.0)", + "Description": "\n Package 'bit64' provides serializable S3 atomic 64bit (signed) integers.\n These are useful for handling database keys and exact counting in +-2^63.\n WARNING: do not use them as replacement for 32bit integers, integer64 are not\n supported for subscripting by R-core and they have different semantics when\n combined with double, e.g. integer64 + double => integer64.\n Class integer64 can be used in vectors, matrices, arrays and data.frames.\n Methods are available for coercion from and to logicals, integers, doubles,\n characters and factors as well as many elementwise and summary functions.\n Many fast algorithmic operations such as 'match' and 'order' support inter-\n active data exploration and manipulation and optionally leverage caching.", + "License": "GPL-2 | GPL-3", + "LazyLoad": "yes", + "ByteCompile": "yes", + "URL": "https://github.com/r-lib/bit64", + "Encoding": "UTF-8", + "Imports": "graphics, methods, stats, utils", + "Suggests": "testthat (>= 3.0.3), withr", + "Config/testthat/edition": "3", + "Config/needs/development": "testthat", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Packaged": "2025-01-16 14:04:20 UTC; michael", + "Author": "Michael Chirico [aut, cre],\n Jens Oehlschlägel [aut],\n Leonardo Silvestri [ctb],\n Ofek Shilon [ctb]", + "Maintainer": "Michael Chirico ", + "Repository": "CRAN", + "Date/Publication": "2025-01-16 16:00:07 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:11 UTC; unix" + } + }, + "box": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "box", + "Title": "Write Reusable, Composable and Modular R Code", + "Version": "1.2.0", + "Authors@R": "c(\n person(\n 'Konrad', 'Rudolph',\n email = 'konrad.rudolph@gmail.com',\n role = c('aut', 'cre'),\n comment = c(ORCID = '0000-0002-9866-7051')\n ),\n person(\n 'Michael', 'Schubert',\n email = 'mschu.dev@gmail.com',\n role = 'ctb',\n comment = c(ORCID = '0000-0002-6862-5221')\n )\n )", + "URL": "https://klmr.me/box/, https://github.com/klmr/box", + "BugReports": "https://github.com/klmr/box/issues", + "Description": "A modern module system for R. Organise code into hierarchical,\n composable, reusable modules, and use it effortlessly across projects via a\n flexible, declarative dependency loading syntax.", + "Depends": "R (>= 3.6.0)", + "Imports": "tools", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Suggests": "devtools, knitr (>= 1.40), rmarkdown, R6, rlang, roxygen2 (>=\n7.2.1), shiny, stringr, testthat (>= 3.1.7)", + "Enhances": "rstudioapi", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "yes", + "Packaged": "2024-02-06 23:06:27 UTC; rudolpk2", + "Author": "Konrad Rudolph [aut, cre] (),\n Michael Schubert [ctb] ()", + "Maintainer": "Konrad Rudolph ", + "Repository": "CRAN", + "Date/Publication": "2024-02-06 23:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:15 UTC; unix" + } + }, + "box.linters": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "box.linters", + "Title": "Linters for 'box' Modules", + "Version": "0.10.5", + "Authors@R": "\n c(\n person(\"Ricardo Rodrigo\", \"Basa\", role = c(\"aut\", \"cre\"), email = \"opensource+rodrigo@appsilon.com\"),\n person(\"Jakub\", \"Nowicki\", role = \"aut\", email = \"kuba@appsilon.com\"),\n person(\"Mateusz\", \"Kołomański\", role = \"ctb\", email = \"mateusz.kolomanski@appsilon.com\"),\n person(\"Appsilon Sp. z o.o.\", role = \"cph\", email = \"opensource@appsilon.com\")\n )", + "Description": "Static code analysis of 'box' modules.\n The package enhances code quality by providing linters that check for common issues,\n enforce best practices, and ensure consistent coding standards.", + "URL": "https://appsilon.github.io/box.linters/,\nhttps://github.com/Appsilon/box.linters", + "License": "LGPL-3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Depends": "R (>= 2.10)", + "Imports": "cli, fs, glue, lintr (>= 3.1.0), purrr, rlang, stringr, withr,\nxfun, xml2, xmlparsedata", + "Suggests": "box, covr, dplyr, knitr, prettycode, rcmdcheck, rmarkdown,\nR6, rex, rhino, shiny, spelling, testthat (>= 3.0.0),\ntreesitter, treesitter.r (>= 1.1.0)", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Language": "en-US", + "NeedsCompilation": "no", + "Packaged": "2024-09-10 09:47:05 UTC; kuba", + "Author": "Ricardo Rodrigo Basa [aut, cre],\n Jakub Nowicki [aut],\n Mateusz Kołomański [ctb],\n Appsilon Sp. z o.o. [cph]", + "Maintainer": "Ricardo Rodrigo Basa ", + "Repository": "CRAN", + "Date/Publication": "2024-09-10 11:00:01 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:49:54 UTC; unix" + } + }, + "box.lsp": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "box.lsp", + "Title": "Provides 'box' Compatibility for 'languageserver'", + "Version": "0.1.3", + "Authors@R": "\n c(\n person(\"Ricardo Rodrigo\", \"Basa\", role = c(\"aut\", \"cre\"), email = \"opensource+rodrigo@appsilon.com\"),\n person(\"Pavel\", \"Demin\", role = \"aut\", email = \"pavel.demin@appsilon.com\"),\n person(\"Jakub\", \"Nowicki\", role = \"aut\", email = \"kuba@appsilon.com\"),\n person(\"Appsilon Sp. z o.o.\", role = \"cph\", email = \"opensource@appsilon.com\")\n )", + "Description": "A 'box' compatible custom language parser for the 'languageserver' package to provide\n completion and signature hints in code editors.", + "URL": "https://github.com/Appsilon/box.lsp,\nhttps://appsilon.github.io/box.lsp/", + "BugReports": "https://github.com/Appsilon/box.lsp/issues", + "License": "LGPL-3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Imports": "box, cli, fs, rlang", + "Suggests": "languageserver, lintr, magrittr, mockery, purrr, rprojroot,\nstringi, stringr, testthat (>= 3.0.0), withr", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Packaged": "2024-09-19 07:33:10 UTC; kuba", + "Author": "Ricardo Rodrigo Basa [aut, cre],\n Pavel Demin [aut],\n Jakub Nowicki [aut],\n Appsilon Sp. z o.o. [cph]", + "Maintainer": "Ricardo Rodrigo Basa ", + "Repository": "CRAN", + "Date/Publication": "2024-09-19 14:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:49:55 UTC; unix" + } + }, + "brio": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "brio", + "Title": "Basic R Input Output", + "Version": "1.1.5", + "Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Functions to handle basic input output, these functions\n always read and write UTF-8 (8-bit Unicode Transformation Format)\n files 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", + "Depends": "R (>= 3.6)", + "Suggests": "covr, testthat (>= 3.0.0)", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2024-04-24 18:51:29 UTC; gaborcsardi", + "Author": "Jim Hester [aut] (),\n Gábor Csárdi [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN", + "Date/Publication": "2024-04-24 19:20:07 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:56 UTC; unix" + } + }, + "broom": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "broom", + "Title": "Convert Statistical Objects into Tidy Tibbles", + "Version": "1.0.7", + "Authors@R": "\n c(person(given = \"David\",\n family = \"Robinson\",\n role = \"aut\",\n email = \"admiral.david@gmail.com\"),\n person(given = \"Alex\",\n family = \"Hayes\",\n role = \"aut\",\n email = \"alexpghayes@gmail.com\",\n comment = c(ORCID = \"0000-0002-4985-5160\")),\n person(given = \"Simon\",\n family = \"Couch\",\n role = c(\"aut\", \"cre\"),\n email = \"simon.couch@posit.co\",\n comment = c(ORCID = \"0000-0001-5676-5107\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(given = \"Indrajeet\",\n family = \"Patil\",\n role = \"ctb\",\n email = \"patilindrajeet.science@gmail.com\",\n comment = c(ORCID = \"0000-0003-1995-6531\")),\n person(given = \"Derek\",\n family = \"Chiu\",\n role = \"ctb\",\n email = \"dchiu@bccrc.ca\"),\n person(given = \"Matthieu\",\n family = \"Gomez\",\n role = \"ctb\",\n email = \"mattg@princeton.edu\"),\n person(given = \"Boris\",\n family = \"Demeshev\",\n role = \"ctb\",\n email = \"boris.demeshev@gmail.com\"),\n person(given = \"Dieter\",\n family = \"Menne\",\n role = \"ctb\",\n email = \"dieter.menne@menne-biomed.de\"),\n person(given = \"Benjamin\",\n family = \"Nutter\",\n role = \"ctb\",\n email = \"nutter@battelle.org\"),\n person(given = \"Luke\",\n family = \"Johnston\",\n role = \"ctb\",\n email = \"luke.johnston@mail.utoronto.ca\"),\n person(given = \"Ben\",\n family = \"Bolker\",\n role = \"ctb\",\n email = \"bolker@mcmaster.ca\"),\n person(given = \"Francois\",\n family = \"Briatte\",\n role = \"ctb\",\n email = \"f.briatte@gmail.com\"),\n person(given = \"Jeffrey\",\n family = \"Arnold\",\n role = \"ctb\",\n email = \"jeffrey.arnold@gmail.com\"),\n person(given = \"Jonah\",\n family = \"Gabry\",\n role = \"ctb\",\n email = \"jsg2201@columbia.edu\"),\n person(given = \"Luciano\",\n family = \"Selzer\",\n role = \"ctb\",\n email = \"luciano.selzer@gmail.com\"),\n person(given = \"Gavin\",\n family = \"Simpson\",\n role = \"ctb\",\n email = \"ucfagls@gmail.com\"),\n person(given = \"Jens\",\n family = \"Preussner\",\n role = \"ctb\",\n email = \" jens.preussner@mpi-bn.mpg.de\"),\n person(given = \"Jay\",\n family = \"Hesselberth\",\n role = \"ctb\",\n email = \"jay.hesselberth@gmail.com\"),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"ctb\",\n email = \"hadley@posit.co\"),\n person(given = \"Matthew\",\n family = \"Lincoln\",\n role = \"ctb\",\n email = \"matthew.d.lincoln@gmail.com\"),\n person(given = \"Alessandro\",\n family = \"Gasparini\",\n role = \"ctb\",\n email = \"ag475@leicester.ac.uk\"),\n person(given = \"Lukasz\",\n family = \"Komsta\",\n role = \"ctb\",\n email = \"lukasz.komsta@umlub.pl\"),\n person(given = \"Frederick\",\n family = \"Novometsky\",\n role = \"ctb\"),\n person(given = \"Wilson\",\n family = \"Freitas\",\n role = \"ctb\"),\n person(given = \"Michelle\",\n family = \"Evans\",\n role = \"ctb\"),\n person(given = \"Jason Cory\",\n family = \"Brunson\",\n role = \"ctb\",\n email = \"cornelioid@gmail.com\"),\n person(given = \"Simon\",\n family = \"Jackson\",\n role = \"ctb\",\n email = \"drsimonjackson@gmail.com\"),\n person(given = \"Ben\",\n family = \"Whalley\",\n role = \"ctb\",\n email = \"ben.whalley@plymouth.ac.uk\"),\n person(given = \"Karissa\",\n family = \"Whiting\",\n role = \"ctb\",\n email = \"karissa.whiting@gmail.com\"),\n person(given = \"Yves\",\n family = \"Rosseel\",\n role = \"ctb\",\n email = \"yrosseel@gmail.com\"),\n person(given = \"Michael\",\n family = \"Kuehn\",\n role = \"ctb\",\n email = \"mkuehn10@gmail.com\"),\n person(given = \"Jorge\",\n family = \"Cimentada\",\n role = \"ctb\",\n email = \"cimentadaj@gmail.com\"),\n person(given = \"Erle\",\n family = \"Holgersen\",\n role = \"ctb\",\n email = \"erle.holgersen@gmail.com\"),\n person(given = \"Karl\",\n family = \"Dunkle Werner\",\n role = \"ctb\",\n comment = c(ORCID = \"0000-0003-0523-7309\")),\n person(given = \"Ethan\",\n family = \"Christensen\",\n role = \"ctb\",\n email = \"christensen.ej@gmail.com\"),\n person(given = \"Steven\",\n family = \"Pav\",\n role = \"ctb\",\n email = \"shabbychef@gmail.com\"),\n person(given = \"Paul\",\n family = \"PJ\",\n role = \"ctb\",\n email = \"pjpaul.stephens@gmail.com\"),\n person(given = \"Ben\",\n family = \"Schneider\",\n role = \"ctb\",\n email = \"benjamin.julius.schneider@gmail.com\"),\n person(given = \"Patrick\",\n family = \"Kennedy\",\n role = \"ctb\",\n email = \"pkqstr@protonmail.com\"),\n person(given = \"Lily\",\n family = \"Medina\",\n role = \"ctb\",\n email = \"lilymiru@gmail.com\"),\n person(given = \"Brian\",\n family = \"Fannin\",\n role = \"ctb\",\n email = \"captain@pirategrunt.com\"),\n person(given = \"Jason\",\n family = \"Muhlenkamp\",\n role = \"ctb\",\n email = \"jason.muhlenkamp@gmail.com\"),\n person(given = \"Matt\",\n family = \"Lehman\",\n role = \"ctb\"),\n person(given = \"Bill\",\n family = \"Denney\",\n role = \"ctb\",\n email = \"wdenney@humanpredictions.com\",\n comment = c(ORCID = \"0000-0002-5759-428X\")),\n person(given = \"Nic\",\n family = \"Crane\",\n role = \"ctb\"),\n person(given = \"Andrew\",\n family = \"Bates\",\n role = \"ctb\"),\n person(given = \"Vincent\",\n family = \"Arel-Bundock\",\n role = \"ctb\",\n email = \"vincent.arel-bundock@umontreal.ca\",\n comment = c(ORCID = \"0000-0003-2042-7063\")),\n person(given = \"Hideaki\",\n family = \"Hayashi\",\n role = \"ctb\"),\n person(given = \"Luis\",\n family = \"Tobalina\",\n role = \"ctb\"),\n person(given = \"Annie\",\n family = \"Wang\",\n role = \"ctb\",\n email = \"anniewang.uc@gmail.com\"),\n person(given = \"Wei Yang\",\n family = \"Tham\",\n role = \"ctb\",\n email = \"weiyang.tham@gmail.com\"),\n person(given = \"Clara\",\n family = \"Wang\",\n role = \"ctb\",\n email = \"clara.wang.94@gmail.com\"),\n person(given = \"Abby\",\n family = \"Smith\",\n role = \"ctb\",\n email = \"als1@u.northwestern.edu\",\n comment = c(ORCID = \"0000-0002-3207-0375\")),\n person(given = \"Jasper\",\n family = \"Cooper\",\n role = \"ctb\",\n email = \"jaspercooper@gmail.com\",\n comment = c(ORCID = \"0000-0002-8639-3188\")),\n person(given = \"E Auden\",\n family = \"Krauska\",\n role = \"ctb\",\n email = \"krauskae@gmail.com\",\n comment = c(ORCID = \"0000-0002-1466-5850\")),\n person(given = \"Alex\",\n family = \"Wang\",\n role = \"ctb\",\n email = \"x249wang@uwaterloo.ca\"),\n person(given = \"Malcolm\",\n family = \"Barrett\",\n role = \"ctb\",\n email = \"malcolmbarrett@gmail.com\",\n comment = c(ORCID = \"0000-0003-0299-5825\")),\n person(given = \"Charles\",\n family = \"Gray\",\n role = \"ctb\",\n email = \"charlestigray@gmail.com\",\n comment = c(ORCID = \"0000-0002-9978-011X\")),\n person(given = \"Jared\",\n family = \"Wilber\",\n role = \"ctb\"),\n person(given = \"Vilmantas\",\n family = \"Gegzna\",\n role = \"ctb\",\n email = \"GegznaV@gmail.com\",\n comment = c(ORCID = \"0000-0002-9500-5167\")),\n person(given = \"Eduard\",\n family = \"Szoecs\",\n role = \"ctb\",\n email = \"eduardszoecs@gmail.com\"),\n person(given = \"Frederik\",\n family = \"Aust\",\n role = \"ctb\",\n email = \"frederik.aust@uni-koeln.de\",\n comment = c(ORCID = \"0000-0003-4900-788X\")),\n person(given = \"Angus\",\n family = \"Moore\",\n role = \"ctb\",\n email = \"angusmoore9@gmail.com\"),\n person(given = \"Nick\",\n family = \"Williams\",\n role = \"ctb\",\n email = \"ntwilliams.personal@gmail.com\"),\n person(given = \"Marius\",\n family = \"Barth\",\n role = \"ctb\",\n email = \"marius.barth.uni.koeln@gmail.com\",\n comment = c(ORCID = \"0000-0002-3421-6665\")),\n person(given = \"Bruna\",\n family = \"Wundervald\",\n role = \"ctb\",\n email = \"brunadaviesw@gmail.com\",\n comment = c(ORCID = \"0000-0001-8163-220X\")),\n person(given = \"Joyce\",\n family = \"Cahoon\",\n role = \"ctb\",\n email = \"joyceyu48@gmail.com\",\n comment = c(ORCID = \"0000-0001-7217-4702\")),\n person(given = \"Grant\",\n family = \"McDermott\",\n role = \"ctb\",\n email = \"grantmcd@uoregon.edu\",\n comment = c(ORCID = \"0000-0001-7883-8573\")),\n person(given = \"Kevin\",\n family = \"Zarca\",\n role = \"ctb\",\n email = \"kevin.zarca@gmail.com\"),\n person(given = \"Shiro\",\n family = \"Kuriwaki\",\n role = \"ctb\",\n email = \"shirokuriwaki@gmail.com\",\n comment = c(ORCID = \"0000-0002-5687-2647\")),\n person(given = \"Lukas\",\n family = \"Wallrich\",\n role = \"ctb\",\n email = \"lukas.wallrich@gmail.com\",\n comment = c(ORCID = \"0000-0003-2121-5177\")),\n person(given = \"James\",\n family = \"Martherus\",\n role = \"ctb\",\n email = \"james@martherus.com\",\n comment = c(ORCID = \"0000-0002-8285-3300\")),\n person(given = \"Chuliang\",\n family = \"Xiao\",\n role = \"ctb\",\n email = \"cxiao@umich.edu\",\n comment = c(ORCID = \"0000-0002-8466-9398\")),\n person(given = \"Joseph\",\n family = \"Larmarange\",\n role = \"ctb\",\n email = \"joseph@larmarange.net\"),\n person(given = \"Max\",\n family = \"Kuhn\",\n role = \"ctb\",\n email = \"max@posit.co\"),\n person(given = \"Michal\",\n family = \"Bojanowski\",\n role = \"ctb\",\n email = \"michal2992@gmail.com\"),\n person(given = \"Hakon\",\n family = \"Malmedal\",\n role = \"ctb\",\n email = \"hmalmedal@gmail.com\"),\n person(given = \"Clara\",\n family = \"Wang\",\n role = \"ctb\"),\n person(given = \"Sergio\",\n family = \"Oller\",\n role = \"ctb\",\n email = \"sergioller@gmail.com\"),\n person(given = \"Luke\",\n family = \"Sonnet\",\n role = \"ctb\",\n email = \"luke.sonnet@gmail.com\"),\n person(given = \"Jim\",\n family = \"Hester\",\n role = \"ctb\",\n email = \"jim.hester@posit.co\"),\n person(given = \"Ben\",\n family = \"Schneider\",\n role = \"ctb\",\n email = \"benjamin.julius.schneider@gmail.com\"),\n person(given = \"Bernie\",\n family = \"Gray\",\n role = \"ctb\",\n email = \"bfgray3@gmail.com\",\n comment = c(ORCID = \"0000-0001-9190-6032\")),\n person(given = \"Mara\",\n family = \"Averick\",\n role = \"ctb\",\n email = \"mara@posit.co\"),\n person(given = \"Aaron\",\n family = \"Jacobs\",\n role = \"ctb\",\n email = \"atheriel@gmail.com\"),\n person(given = \"Andreas\",\n family = \"Bender\",\n role = \"ctb\",\n email = \"bender.at.R@gmail.com\"),\n person(given = \"Sven\",\n family = \"Templer\",\n role = \"ctb\",\n email = \"sven.templer@gmail.com\"),\n person(given = \"Paul-Christian\",\n family = \"Buerkner\",\n role = \"ctb\",\n email = \"paul.buerkner@gmail.com\"),\n person(given = \"Matthew\",\n family = \"Kay\",\n role = \"ctb\",\n email = \"mjskay@umich.edu\"),\n person(given = \"Erwan\",\n family = \"Le Pennec\",\n role = \"ctb\",\n email = \"lepennec@gmail.com\"),\n person(given = \"Johan\",\n family = \"Junkka\",\n role = \"ctb\",\n email = \"johan.junkka@umu.se\"),\n person(given = \"Hao\",\n family = \"Zhu\",\n role = \"ctb\",\n email = \"haozhu233@gmail.com\"),\n person(given = \"Benjamin\",\n family = \"Soltoff\",\n role = \"ctb\",\n email = \"soltoffbc@uchicago.edu\"),\n person(given = \"Zoe\",\n family = \"Wilkinson Saldana\",\n role = \"ctb\",\n email = \"zoewsaldana@gmail.com\"),\n person(given = \"Tyler\",\n family = \"Littlefield\",\n role = \"ctb\",\n email = \"tylurp1@gmail.com\"),\n person(given = \"Charles T.\",\n family = \"Gray\",\n role = \"ctb\",\n email = \"charlestigray@gmail.com\"),\n person(given = \"Shabbh E.\",\n family = \"Banks\",\n role = \"ctb\"),\n person(given = \"Serina\",\n family = \"Robinson\",\n role = \"ctb\",\n email = \"robi0916@umn.edu\"),\n person(given = \"Roger\",\n family = \"Bivand\",\n role = \"ctb\",\n email = \"Roger.Bivand@nhh.no\"),\n person(given = \"Riinu\",\n family = \"Ots\",\n role = \"ctb\",\n email = \"riinuots@gmail.com\"),\n person(given = \"Nicholas\",\n family = \"Williams\",\n role = \"ctb\",\n email = \"ntwilliams.personal@gmail.com\"),\n person(given = \"Nina\",\n family = \"Jakobsen\",\n role = \"ctb\"),\n person(given = \"Michael\",\n family = \"Weylandt\",\n role = \"ctb\",\n email = \"michael.weylandt@gmail.com\"),\n person(given = \"Lisa\",\n family = \"Lendway\",\n role = \"ctb\",\n email = \"llendway@macalester.edu\"),\n person(given = \"Karl\",\n family = \"Hailperin\",\n role = \"ctb\",\n email = \"khailper@gmail.com\"),\n person(given = \"Josue\",\n family = \"Rodriguez\",\n role = \"ctb\",\n email = \"jerrodriguez@ucdavis.edu\"),\n person(given = \"Jenny\",\n family = \"Bryan\",\n role = \"ctb\",\n email = \"jenny@posit.co\"),\n person(given = \"Chris\",\n family = \"Jarvis\",\n role = \"ctb\",\n email = \"Christopher1.jarvis@gmail.com\"),\n person(given = \"Greg\",\n family = \"Macfarlane\",\n role = \"ctb\",\n email = \"gregmacfarlane@gmail.com\"),\n person(given = \"Brian\",\n family = \"Mannakee\",\n role = \"ctb\",\n email = \"bmannakee@gmail.com\"),\n person(given = \"Drew\",\n family = \"Tyre\",\n role = \"ctb\",\n email = \"atyre2@unl.edu\"),\n person(given = \"Shreyas\",\n family = \"Singh\",\n role = \"ctb\",\n email = \"shreyas.singh.298@gmail.com\"),\n person(given = \"Laurens\",\n family = \"Geffert\",\n role = \"ctb\",\n email = \"laurensgeffert@gmail.com\"),\n person(given = \"Hong\",\n family = \"Ooi\",\n role = \"ctb\",\n email = \"hongooi@microsoft.com\"),\n person(given = \"Henrik\",\n family = \"Bengtsson\",\n role = \"ctb\",\n email = \"henrikb@braju.com\"),\n person(given = \"Eduard\",\n family = \"Szocs\",\n role = \"ctb\",\n email = \"eduardszoecs@gmail.com\"),\n person(given = \"David\",\n family = \"Hugh-Jones\",\n role = \"ctb\",\n email = \"davidhughjones@gmail.com\"),\n person(given = \"Matthieu\",\n family = \"Stigler\",\n role = \"ctb\",\n email = \"Matthieu.Stigler@gmail.com\"),\n person(given = \"Hugo\",\n family = \"Tavares\",\n role = \"ctb\",\n email = \"hm533@cam.ac.uk\",\n comment = c(ORCID = \"0000-0001-9373-2726\")),\n\t person(given = \"R. Willem\",\n family = \"Vervoort\",\n role = \"ctb\",\n email = \"Willemvervoort@gmail.com\"),\n person(given = \"Brenton M.\",\n family = \"Wiernik\",\n role = \"ctb\",\n email = \"brenton@wiernik.org\"),\n person(given = \"Josh\",\n family = \"Yamamoto\",\n role = \"ctb\",\n email = \"joshuayamamoto5@gmail.com\"),\n person(given = \"Jasme\",\n family = \"Lee\",\n role = \"ctb\"),\n person(given = \"Taren\",\n family = \"Sanders\",\n role = \"ctb\",\n email = \"taren.sanders@acu.edu.au\",\n comment = c(ORCID = \"0000-0002-4504-6008\")),\n person(given = \"Ilaria\",\n family = \"Prosdocimi\",\n role = \"ctb\",\n email = \"prosdocimi.ilaria@gmail.com\",\n comment = c(ORCID = \"0000-0001-8565-094X\")),\n person(given = \"Daniel D.\",\n family = \"Sjoberg\",\n role = \"ctb\",\n email = \"danield.sjoberg@gmail.com\",\n comment = c(ORCID = \"0000-0003-0862-2018\")),\n person(given = \"Alex\",\n family = \"Reinhart\",\n role = \"ctb\",\n email = \"areinhar@stat.cmu.edu\",\n comment = c(ORCID = \"0000-0002-6658-514X\")))", + "Description": "Summarizes key information about statistical\n objects in tidy tibbles. This makes it easy to report results, create\n plots and consistently work with large numbers of models at once.\n Broom provides three verbs that each provide different types of\n information about a model. tidy() summarizes information about model\n components such as coefficients of a regression. glance() reports\n information about an entire model, such as goodness of fit measures\n like AIC and BIC. augment() adds information about individual\n observations to a dataset, such as fitted values or influence\n measures.", + "License": "MIT + file LICENSE", + "URL": "https://broom.tidymodels.org/, https://github.com/tidymodels/broom", + "BugReports": "https://github.com/tidymodels/broom/issues", + "Depends": "R (>= 3.5)", + "Imports": "backports, dplyr (>= 1.0.0), generics (>= 0.0.2), glue,\nlifecycle, purrr, rlang, stringr, tibble (>= 3.0.0), tidyr (>=\n1.0.0)", + "Suggests": "AER, AUC, bbmle, betareg (>= 3.2-1), biglm, binGroup, boot,\nbtergm (>= 1.10.6), car (>= 3.1-2), carData, caret, cluster,\ncmprsk, coda, covr, drc, e1071, emmeans, epiR, ergm (>=\n3.10.4), fixest (>= 0.9.0), gam (>= 1.15), gee, geepack,\nggplot2, glmnet, glmnetUtils, gmm, Hmisc, irlba, interp,\njoineRML, Kendall, knitr, ks, Lahman, lavaan (>= 0.6.18),\nleaps, lfe, lm.beta, lme4, lmodel2, lmtest (>= 0.9.38),\nlsmeans, maps, margins, MASS, mclust, mediation, metafor, mfx,\nmgcv, mlogit, modeldata, modeltests (>= 0.1.6), muhaz,\nmultcomp, network, nnet, orcutt (>= 2.2), ordinal, plm, poLCA,\npsych, quantreg, rmarkdown, robust, robustbase, rsample,\nsandwich, spdep (>= 1.1), spatialreg, speedglm, spelling,\nsurvey, survival (>= 3.6-4), systemfit, testthat (>= 2.1.0),\ntseries, vars, zoo", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Language": "en-US", + "Collate": "'aaa-documentation-helper.R' 'null-and-default-tidiers.R'\n'aer-tidiers.R' 'auc-tidiers.R' 'base-tidiers.R'\n'bbmle-tidiers.R' 'betareg-tidiers.R' 'biglm-tidiers.R'\n'bingroup-tidiers.R' 'boot-tidiers.R' 'broom-package.R'\n'broom.R' 'btergm-tidiers.R' 'car-tidiers.R' 'caret-tidiers.R'\n'cluster-tidiers.R' 'cmprsk-tidiers.R' 'data-frame-tidiers.R'\n'deprecated-0-7-0.R' 'drc-tidiers.R' 'emmeans-tidiers.R'\n'epiR-tidiers.R' 'ergm-tidiers.R' 'fixest-tidiers.R'\n'gam-tidiers.R' 'geepack-tidiers.R'\n'glmnet-cv-glmnet-tidiers.R' 'glmnet-glmnet-tidiers.R'\n'gmm-tidiers.R' 'hmisc-tidiers.R' 'joinerml-tidiers.R'\n'kendall-tidiers.R' 'ks-tidiers.R' 'lavaan-tidiers.R'\n'leaps-tidiers.R' 'lfe-tidiers.R' 'list-irlba.R'\n'list-optim-tidiers.R' 'list-svd-tidiers.R' 'list-tidiers.R'\n'list-xyz-tidiers.R' 'lm-beta-tidiers.R' 'lmodel2-tidiers.R'\n'lmtest-tidiers.R' 'maps-tidiers.R' 'margins-tidiers.R'\n'mass-fitdistr-tidiers.R' 'mass-negbin-tidiers.R'\n'mass-polr-tidiers.R' 'mass-ridgelm-tidiers.R'\n'stats-lm-tidiers.R' 'mass-rlm-tidiers.R' 'mclust-tidiers.R'\n'mediation-tidiers.R' 'metafor-tidiers.R' 'mfx-tidiers.R'\n'mgcv-tidiers.R' 'mlogit-tidiers.R' 'muhaz-tidiers.R'\n'multcomp-tidiers.R' 'nnet-tidiers.R' 'nobs.R'\n'orcutt-tidiers.R' 'ordinal-clm-tidiers.R'\n'ordinal-clmm-tidiers.R' 'plm-tidiers.R' 'polca-tidiers.R'\n'psych-tidiers.R' 'stats-nls-tidiers.R'\n'quantreg-nlrq-tidiers.R' 'quantreg-rq-tidiers.R'\n'quantreg-rqs-tidiers.R' 'robust-glmrob-tidiers.R'\n'robust-lmrob-tidiers.R' 'robustbase-glmrob-tidiers.R'\n'robustbase-lmrob-tidiers.R' 'sp-tidiers.R' 'spdep-tidiers.R'\n'speedglm-speedglm-tidiers.R' 'speedglm-speedlm-tidiers.R'\n'stats-anova-tidiers.R' 'stats-arima-tidiers.R'\n'stats-decompose-tidiers.R' 'stats-factanal-tidiers.R'\n'stats-glm-tidiers.R' 'stats-htest-tidiers.R'\n'stats-kmeans-tidiers.R' 'stats-loess-tidiers.R'\n'stats-mlm-tidiers.R' 'stats-prcomp-tidiers.R'\n'stats-smooth.spline-tidiers.R' 'stats-summary-lm-tidiers.R'\n'stats-time-series-tidiers.R' 'survey-tidiers.R'\n'survival-aareg-tidiers.R' 'survival-cch-tidiers.R'\n'survival-coxph-tidiers.R' 'survival-pyears-tidiers.R'\n'survival-survdiff-tidiers.R' 'survival-survexp-tidiers.R'\n'survival-survfit-tidiers.R' 'survival-survreg-tidiers.R'\n'systemfit-tidiers.R' 'tseries-tidiers.R' 'utilities.R'\n'vars-tidiers.R' 'zoo-tidiers.R' 'zzz.R'", + "NeedsCompilation": "no", + "Packaged": "2024-09-26 19:48:33 UTC; simoncouch", + "Author": "David Robinson [aut],\n Alex Hayes [aut] (),\n Simon Couch [aut, cre] (),\n Posit Software, PBC [cph, fnd],\n Indrajeet Patil [ctb] (),\n Derek Chiu [ctb],\n Matthieu Gomez [ctb],\n Boris Demeshev [ctb],\n Dieter Menne [ctb],\n Benjamin Nutter [ctb],\n Luke Johnston [ctb],\n Ben Bolker [ctb],\n Francois Briatte [ctb],\n Jeffrey Arnold [ctb],\n Jonah Gabry [ctb],\n Luciano Selzer [ctb],\n Gavin Simpson [ctb],\n Jens Preussner [ctb],\n Jay Hesselberth [ctb],\n Hadley Wickham [ctb],\n Matthew Lincoln [ctb],\n Alessandro Gasparini [ctb],\n Lukasz Komsta [ctb],\n Frederick Novometsky [ctb],\n Wilson Freitas [ctb],\n Michelle Evans [ctb],\n Jason Cory Brunson [ctb],\n Simon Jackson [ctb],\n Ben Whalley [ctb],\n Karissa Whiting [ctb],\n Yves Rosseel [ctb],\n Michael Kuehn [ctb],\n Jorge Cimentada [ctb],\n Erle Holgersen [ctb],\n Karl Dunkle Werner [ctb] (),\n Ethan Christensen [ctb],\n Steven Pav [ctb],\n Paul PJ [ctb],\n Ben Schneider [ctb],\n Patrick Kennedy [ctb],\n Lily Medina [ctb],\n Brian Fannin [ctb],\n Jason Muhlenkamp [ctb],\n Matt Lehman [ctb],\n Bill Denney [ctb] (),\n Nic Crane [ctb],\n Andrew Bates [ctb],\n Vincent Arel-Bundock [ctb] (),\n Hideaki Hayashi [ctb],\n Luis Tobalina [ctb],\n Annie Wang [ctb],\n Wei Yang Tham [ctb],\n Clara Wang [ctb],\n Abby Smith [ctb] (),\n Jasper Cooper [ctb] (),\n E Auden Krauska [ctb] (),\n Alex Wang [ctb],\n Malcolm Barrett [ctb] (),\n Charles Gray [ctb] (),\n Jared Wilber [ctb],\n Vilmantas Gegzna [ctb] (),\n Eduard Szoecs [ctb],\n Frederik Aust [ctb] (),\n Angus Moore [ctb],\n Nick Williams [ctb],\n Marius Barth [ctb] (),\n Bruna Wundervald [ctb] (),\n Joyce Cahoon [ctb] (),\n Grant McDermott [ctb] (),\n Kevin Zarca [ctb],\n Shiro Kuriwaki [ctb] (),\n Lukas Wallrich [ctb] (),\n James Martherus [ctb] (),\n Chuliang Xiao [ctb] (),\n Joseph Larmarange [ctb],\n Max Kuhn [ctb],\n Michal Bojanowski [ctb],\n Hakon Malmedal [ctb],\n Clara Wang [ctb],\n Sergio Oller [ctb],\n Luke Sonnet [ctb],\n Jim Hester [ctb],\n Ben Schneider [ctb],\n Bernie Gray [ctb] (),\n Mara Averick [ctb],\n Aaron Jacobs [ctb],\n Andreas Bender [ctb],\n Sven Templer [ctb],\n Paul-Christian Buerkner [ctb],\n Matthew Kay [ctb],\n Erwan Le Pennec [ctb],\n Johan Junkka [ctb],\n Hao Zhu [ctb],\n Benjamin Soltoff [ctb],\n Zoe Wilkinson Saldana [ctb],\n Tyler Littlefield [ctb],\n Charles T. Gray [ctb],\n Shabbh E. Banks [ctb],\n Serina Robinson [ctb],\n Roger Bivand [ctb],\n Riinu Ots [ctb],\n Nicholas Williams [ctb],\n Nina Jakobsen [ctb],\n Michael Weylandt [ctb],\n Lisa Lendway [ctb],\n Karl Hailperin [ctb],\n Josue Rodriguez [ctb],\n Jenny Bryan [ctb],\n Chris Jarvis [ctb],\n Greg Macfarlane [ctb],\n Brian Mannakee [ctb],\n Drew Tyre [ctb],\n Shreyas Singh [ctb],\n Laurens Geffert [ctb],\n Hong Ooi [ctb],\n Henrik Bengtsson [ctb],\n Eduard Szocs [ctb],\n David Hugh-Jones [ctb],\n Matthieu Stigler [ctb],\n Hugo Tavares [ctb] (),\n R. Willem Vervoort [ctb],\n Brenton M. Wiernik [ctb],\n Josh Yamamoto [ctb],\n Jasme Lee [ctb],\n Taren Sanders [ctb] (),\n Ilaria Prosdocimi [ctb] (),\n Daniel D. Sjoberg [ctb] (),\n Alex Reinhart [ctb] ()", + "Maintainer": "Simon Couch ", + "Repository": "CRAN", + "Date/Publication": "2024-09-26 21:00:13 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:50:16 UTC; unix" + } + }, + "bslib": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "bslib", + "Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'", + "Version": "0.9.0", + "Authors@R": "c(\n person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"),\n person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-7111-0077\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(, \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(, \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap colorpicker library\"),\n person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootswatch library\"),\n person(, \"PayPal\", role = c(\"ctb\", \"cph\"),\n comment = \"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\n well as their various 'Bootswatch' themes. An interactive widget is\n also 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, fastmap (>= 1.1.1), grDevices, htmltools\n(>= 0.5.8), jquerylib (>= 0.1.3), jsonlite, lifecycle, memoise\n(>= 2.0.1), mime, rlang, sass (>= 0.4.9)", + "Suggests": "bsicons, curl, fontawesome, future, ggplot2, knitr, magrittr,\nrappdirs, rmarkdown (>= 2.7), shiny (> 1.8.1), testthat,\nthematic, tools, utils, withr, yaml", + "Config/Needs/deploy": "BH, chiflights22, colourpicker, commonmark, cpp11,\ncpsievert/chiflights22, cpsievert/histoslider, dplyr, DT,\nggplot2, ggridges, gt, hexbin, histoslider, htmlwidgets,\nlattice, leaflet, lubridate, markdown, modelr, plotly,\nreactable, reshape2, rprojroot, rsconnect, rstudio/shiny,\nscales, styler, tibble", + "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/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "zzzz-bs-sass, fonts, zzz-precompile,\ntheme-*, rmd-*", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "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-brand.R' 'bs-theme-preset-builtin.R'\n'bs-theme-preset.R' 'utils.R' 'bs-theme-preview.R'\n'bs-theme-update.R' 'bs-theme.R' 'bslib-package.R' 'buttons.R'\n'card.R' 'deprecated.R' 'files.R' 'fill.R' 'imports.R'\n'input-dark-mode.R' 'input-switch.R' 'layout.R' 'nav-items.R'\n'nav-update.R' 'navbar_options.R' 'navs-legacy.R' 'navs.R'\n'onLoad.R' 'page.R' 'popover.R' 'precompiled.R' 'print.R'\n'shiny-devmode.R' 'sidebar.R' 'staticimports.R' 'tooltip.R'\n'utils-deps.R' 'utils-shiny.R' 'utils-tags.R' 'value-box.R'\n'version-default.R' 'versions.R'", + "NeedsCompilation": "no", + "Packaged": "2025-01-30 22:04:52 UTC; garrick", + "Author": "Carson Sievert [aut, cre] (),\n Joe Cheng [aut],\n Garrick Aden-Buie [aut] (),\n Posit Software, PBC [cph, fnd],\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Javi Aguilar [ctb, cph] (Bootstrap colorpicker library),\n Thomas Park [ctb, cph] (Bootswatch library),\n PayPal [ctb, cph] (Bootstrap accessibility plugin)", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN", + "Date/Publication": "2025-01-30 23:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:51:14 UTC; unix" + } + }, + "cachem": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "cachem", + "Version": "1.1.0", + "Title": "Cache R Objects with Automatic Pruning", + "Description": "Key-value stores with automatic pruning. Caches can limit\n either their total size or the age of the oldest object (or both),\n automatically pruning objects to maintain the constraints.", + "Authors@R": "c(\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", c(\"aut\", \"cre\")),\n person(family = \"Posit Software, PBC\", 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.2.0)", + "Suggests": "testthat", + "RoxygenNote": "7.2.3", + "Config/Needs/routine": "lobstr", + "Config/Needs/website": "pkgdown", + "NeedsCompilation": "yes", + "Packaged": "2024-05-15 15:54:22 UTC; winston", + "Author": "Winston Chang [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Winston Chang ", + "Repository": "CRAN", + "Date/Publication": "2024-05-16 09:50:11 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:21 UTC; unix" + } + }, + "callr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "callr", + "Title": "Call R from R", + "Version": "3.7.6", + "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"),\n comment = c(ORCID = \"0000-0001-7098-9676\")),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "It is sometimes useful to perform a computation in a separate\n R process, without affecting the current R process at all. This\n packages does exactly that.", + "License": "MIT + file LICENSE", + "URL": "https://callr.r-lib.org, https://github.com/r-lib/callr", + "BugReports": "https://github.com/r-lib/callr/issues", + "Depends": "R (>= 3.4)", + "Imports": "processx (>= 3.6.1), R6, utils", + "Suggests": "asciicast (>= 2.3.1), cli (>= 1.1.0), mockery, ps, rprojroot,\nspelling, testthat (>= 3.2.0), withr (>= 2.3.0)", + "Config/Needs/website": "r-lib/asciicast, glue, htmlwidgets, igraph,\ntibble, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.1.9000", + "NeedsCompilation": "no", + "Packaged": "2024-03-25 12:10:25 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre, cph] (),\n Winston Chang [aut],\n Posit Software, PBC [cph, fnd],\n Ascent Digital Services [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN", + "Date/Publication": "2024-03-25 13:30:06 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:48:40 UTC; unix" + } + }, + "checkmate": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "checkmate", + "Type": "Package", + "Title": "Fast and Versatile Argument Checks", + "Description": "Tests and assertions to perform frequent argument checks. A\n substantial part of the package was written in C to minimize any worries\n about execution time overhead.", + "Version": "2.3.2", + "Authors@R": "c(\n person(\"Michel\", \"Lang\", NULL, \"michellang@gmail.com\",\n role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")),\n person(\"Bernd\", \"Bischl\", NULL, \"bernd_bischl@gmx.net\", role = \"ctb\"),\n person(\"Dénes\", \"Tóth\", NULL, \"toth.denes@kogentum.hu\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-4262-3217\"))\n )", + "URL": "https://mllg.github.io/checkmate/,\nhttps://github.com/mllg/checkmate", + "URLNote": "https://github.com/mllg/checkmate", + "BugReports": "https://github.com/mllg/checkmate/issues", + "NeedsCompilation": "yes", + "ByteCompile": "yes", + "Encoding": "UTF-8", + "Depends": "R (>= 3.0.0)", + "Imports": "backports (>= 1.1.0), utils", + "Suggests": "R6, fastmatch, data.table (>= 1.9.8), devtools, ggplot2,\nknitr, magrittr, microbenchmark, rmarkdown, testthat (>=\n3.0.4), tinytest (>= 1.1.0), tibble", + "License": "BSD_3_clause + file LICENSE", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.3.2", + "Collate": "'AssertCollection.R' 'allMissing.R' 'anyInfinite.R'\n'anyMissing.R' 'anyNaN.R' 'asInteger.R' 'assert.R' 'helper.R'\n'makeExpectation.R' 'makeTest.R' 'makeAssertion.R'\n'checkAccess.R' 'checkArray.R' 'checkAtomic.R'\n'checkAtomicVector.R' 'checkCharacter.R' 'checkChoice.R'\n'checkClass.R' 'checkComplex.R' 'checkCount.R'\n'checkDataFrame.R' 'checkDataTable.R' 'checkDate.R'\n'checkDirectoryExists.R' 'checkDisjunct.R' 'checkDouble.R'\n'checkEnvironment.R' 'checkFALSE.R' 'checkFactor.R'\n'checkFileExists.R' 'checkFlag.R' 'checkFormula.R'\n'checkFunction.R' 'checkInt.R' 'checkInteger.R'\n'checkIntegerish.R' 'checkList.R' 'checkLogical.R'\n'checkMatrix.R' 'checkMultiClass.R' 'checkNamed.R'\n'checkNames.R' 'checkNull.R' 'checkNumber.R' 'checkNumeric.R'\n'checkOS.R' 'checkPOSIXct.R' 'checkPathForOutput.R'\n'checkPermutation.R' 'checkR6.R' 'checkRaw.R' 'checkScalar.R'\n'checkScalarNA.R' 'checkSetEqual.R' 'checkString.R'\n'checkSubset.R' 'checkTRUE.R' 'checkTibble.R' 'checkVector.R'\n'coalesce.R' 'isIntegerish.R' 'matchArg.R' 'qassert.R'\n'qassertr.R' 'vname.R' 'wfwl.R' 'zzz.R'", + "Packaged": "2024-07-29 09:26:26 UTC; michel", + "Author": "Michel Lang [cre, aut] (),\n Bernd Bischl [ctb],\n Dénes Tóth [ctb] ()", + "Maintainer": "Michel Lang ", + "Repository": "CRAN", + "Date/Publication": "2024-07-29 12:30:06 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:51:16 UTC; unix" + } + }, + "chromote": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "chromote", + "Title": "Headless Chrome Web Browser Interface", + "Version": "0.4.0", + "Authors@R": "c(\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-7111-0077\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "An implementation of the 'Chrome DevTools Protocol', for\n controlling a headless Chrome web browser.", + "License": "GPL-2", + "URL": "https://rstudio.github.io/chromote/,\nhttps://github.com/rstudio/chromote", + "BugReports": "https://github.com/rstudio/chromote/issues", + "Imports": "curl, fastmap, jsonlite, later (>= 1.1.0), magrittr, processx,\npromises (>= 1.1.1), R6, rlang, utils, websocket (>= 1.2.0)", + "Suggests": "showimage, testthat (>= 3.0.0)", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.2", + "SystemRequirements": "Google Chrome or other Chromium-based browser.\nchromium: chromium (rpm) or chromium-browser (deb)", + "NeedsCompilation": "no", + "Packaged": "2025-01-24 16:36:51 UTC; garrick", + "Author": "Winston Chang [aut, cre],\n Barret Schloerke [aut] (),\n Garrick Aden-Buie [aut] (),\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Winston Chang ", + "Repository": "CRAN", + "Date/Publication": "2025-01-25 00:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:51:49 UTC; unix" + } + }, + "class": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "class", + "Priority": "recommended", + "Version": "7.3-23", + "Date": "2025-01-01", + "Depends": "R (>= 3.0.0), stats, utils", + "Imports": "MASS", + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\n email = \"Brian.Ripley@R-project.org\"),\n person(\"William\", \"Venables\", role = \"cph\"))", + "Description": "Various functions for classification, including k-nearest\n neighbour, 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": "2025-01-01 07:07:13 UTC; ripley", + "Author": "Brian Ripley [aut, cre, cph],\n William Venables [cph]", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN", + "Date/Publication": "2025-01-01 10:25:33 UTC", + "Built": "R 4.4.2; x86_64-pc-linux-gnu; 'Tue, 07 Jan 2025 00:15:21 +0000'; unix" + } + }, + "cli": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "cli", + "Title": "Helpers for Developing Command Line Interfaces", + "Version": "3.6.3", + "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Kirill\", \"Müller\", role = \"ctb\"),\n person(\"Salim\", \"Brüggemann\", , \"salim-b@pm.me\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-5329-5987\")),\n person(\"Posit Software, PBC\", 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,\n etc. Supports custom themes via a 'CSS'-like language. It also\n contains a number of lower level 'CLI' elements: rules, boxes, trees,\n and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI\n colors and text styles as well.", + "License": "MIT + file LICENSE", + "URL": "https://cli.r-lib.org, https://github.com/r-lib/cli", + "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.3", + "NeedsCompilation": "yes", + "Packaged": "2024-06-21 17:24:00 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre],\n Hadley Wickham [ctb],\n Kirill Müller [ctb],\n Salim Brüggemann [ctb] (),\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN", + "Date/Publication": "2024-06-21 21:00:07 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:16 UTC; unix" + } + }, + "clipr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "clipr", + "Title": "Read and Write from the System Clipboard", + "Version": "0.8.0", + "Authors@R": "c(\n person(\"Matthew\", \"Lincoln\", , \"matthew.d.lincoln@gmail.com\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4387-3384\")),\n person(\"Louis\", \"Maddox\", role = \"ctb\"),\n person(\"Steve\", \"Simpson\", role = \"ctb\"),\n person(\"Jennifer\", \"Bryan\", role = \"ctb\")\n )", + "Description": "Simple utility functions to read from and write to\n the 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] (),\n Louis Maddox [ctb],\n Steve Simpson [ctb],\n Jennifer Bryan [ctb]", + "Maintainer": "Matthew Lincoln ", + "Repository": "CRAN", + "Date/Publication": "2022-02-22 00:58:45 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:51:51 UTC; unix" + } + }, + "clock": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "clock", + "Title": "Date-Time Types and Tools", + "Version": "0.7.2", + "Authors@R": "c(\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Provides a comprehensive library for date-time manipulations\n using a new family of orthogonal date-time classes (durations, time\n points, zoned-times, and calendars) that partition responsibilities so\n that the complexities of time zones are only considered when they are\n really needed. Capabilities include: date-time parsing, formatting,\n arithmetic, 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.6.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.5.1), tzdb (>= 0.4.0)", + "VignetteBuilder": "knitr", + "Config/build/compilation-database": "true", + "Config/Needs/website": "lubridate, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Packaged": "2025-01-21 22:04:46 UTC; davis", + "Author": "Davis Vaughan [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN", + "Date/Publication": "2025-01-21 23:00:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:51:57 UTC; unix" + } + }, + "codetools": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "codetools", + "Version": "0.2-20", + "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": "2024-03-31 18:18:09 UTC; luke", + "Repository": "CRAN", + "Date/Publication": "2024-03-31 20:10:06 UTC", + "Built": "R 4.4.0; ; 'Sat, 27 Apr 2024 18:01:06 +0000'; unix" + } + }, + "colorspace": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "colorspace", + "Version": "2.1-1", + "Date": "2024-07-26", + "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\"),\n person(given = \"Paul\", family = \"Murrell\", role = \"aut\", email = \"paul@stat.auckland.ac.nz\",\n comment = c(ORCID = \"0000-0002-3224-8858\")),\n person(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"Kurt.Hornik@R-project.org\",\n\t\t comment = c(ORCID = \"0000-0003-4198-9911\")),\n person(given = c(\"Jason\", \"C.\"), family = \"Fisher\", role = \"aut\", email = \"jfisher@usgs.gov\",\n comment = c(ORCID = \"0000-0001-9032-8912\")),\n person(given = \"Reto\", family = \"Stauffer\", role = \"aut\", email = \"Reto.Stauffer@uibk.ac.at\",\n comment = c(ORCID = \"0000-0002-3798-5507\")),\n person(given = c(\"Claus\", \"O.\"), family = \"Wilke\", role = \"aut\", email = \"wilke@austin.utexas.edu\",\n comment = c(ORCID = \"0000-0002-7470-9261\")),\n person(given = c(\"Claire\", \"D.\"), family = \"McWhite\", role = \"aut\", email = \"claire.mcwhite@utmail.utexas.edu\",\n comment = c(ORCID = \"0000-0001-7346-3047\")),\n person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\",\n comment = c(ORCID = \"0000-0003-0918-3766\")))", + "Description": "Carries out mapping between assorted color spaces including RGB, HSV, HLS,\n CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB, and polar CIELAB.\n\t Qualitative, sequential, and diverging color palettes based on HCL colors\n\t are provided along with corresponding ggplot2 color scales.\n\t Color palette choice is aided by an interactive app (with either a Tcl/Tk\n\t or a shiny graphical user interface) and shiny apps with an HCL color picker and a\n\t color vision deficiency emulator. Plotting functions for displaying\n\t and assessing palettes include color swatches, visualizations of the\n\t HCL space, and trajectories in HCL and/or RGB spectrum. Color manipulation\n\t functions include: desaturation, lightening/darkening, mixing, and\n\t simulation of color vision deficiencies (deutanomaly, protanomaly, tritanomaly).\n\t Details can be found on the project web page at \n\t and in the accompanying scientific paper: Zeileis et al. (2020, Journal of Statistical\n\t Software, ).", + "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.3.1", + "NeedsCompilation": "yes", + "Packaged": "2024-07-26 15:40:41 UTC; zeileis", + "Author": "Ross Ihaka [aut],\n Paul Murrell [aut] (),\n Kurt Hornik [aut] (),\n Jason C. Fisher [aut] (),\n Reto Stauffer [aut] (),\n Claus O. Wilke [aut] (),\n Claire D. McWhite [aut] (),\n Achim Zeileis [aut, cre] ()", + "Maintainer": "Achim Zeileis ", + "Repository": "CRAN", + "Date/Publication": "2024-07-26 17:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:52:38 UTC; unix" + } + }, + "commonmark": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "commonmark", + "Type": "Package", + "Title": "High Performance CommonMark and Github Markdown Rendering in R", + "Version": "1.9.2", + "Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", ,\"jeroenooms@gmail.com\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))", + "Description": "The CommonMark specification defines\n a rationalized version of markdown syntax. This package uses the 'cmark' \n reference implementation for converting markdown text into various formats\n including html, latex and groff man. In addition it exposes the markdown\n parse tree in xml format. Also includes opt-in support for GFM extensions\n including tables, autolinks, and strikethrough text.", + "License": "BSD_2_clause + file LICENSE", + "URL": "https://docs.ropensci.org/commonmark/\nhttps://ropensci.r-universe.dev/commonmark", + "BugReports": "https://github.com/r-lib/commonmark/issues", + "Suggests": "curl, testthat, xml2", + "RoxygenNote": "7.2.3", + "Language": "en-US", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2024-10-03 14:12:30 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (),\n John MacFarlane [cph] (Author of cmark)", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN", + "Date/Publication": "2024-10-04 12:40:06 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:52:41 UTC; unix" + } + }, + "config": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "config", + "Type": "Package", + "Title": "Manage Environment Specific Configuration Values", + "Version": "0.3.2", + "Authors@R": "c(\n person(\"JJ\", \"Allaire\", role = c(\"aut\"), email = \"jj@rstudio.com\"),\n person(\"Andrie\", \"de Vries\", role = \"cre\", email = \"apdevries@gmail.com\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Imports": "yaml (>= 2.1.19)", + "Suggests": "testthat, knitr, rmarkdown, covr, spelling, withr", + "Description": "Manage configuration values across multiple environments (e.g.\n development, test, production). Read values using a function that determines\n the current environment and returns the appropriate value.", + "License": "GPL-3", + "URL": "https://rstudio.github.io/config/,\nhttps://github.com/rstudio/config", + "BugReports": "https://github.com/rstudio/config/issues", + "RoxygenNote": "7.2.3", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Language": "en-US", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Packaged": "2023-08-30 09:28:23 UTC; apdev", + "Author": "JJ Allaire [aut],\n Andrie de Vries [cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Andrie de Vries ", + "Repository": "CRAN", + "Date/Publication": "2023-08-30 16:50:36 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:52:45 UTC; unix" + } + }, + "connectapi": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "connectapi", + "Title": "Utilities for Interacting with the 'Posit Connect' Server API", + "Version": "0.5.0", + "Authors@R": "c(\n person(given = \"Toph\",\n family = \"Allen\",\n role = c(\"aut\", \"cre\"),\n email = \"toph@posit.co\"),\n person(given = \"Neal\",\n family = \"Richardson\",\n role = c(\"aut\")),\n person(given = \"Sean\",\n family = \"Lopp\",\n role = c(\"aut\")),\n person(given = \"Cole\",\n family = \"Arendt\",\n role = c(\"aut\")),\n person(given = \"Posit, PBC\",\n role = c(\"cph\", \"fnd\")))", + "Description": "Provides a helpful 'R6' class and methods for interacting with\n the 'Posit Connect' Server API along with some meaningful utility functions\n for regular tasks. API documentation varies by 'Posit Connect' installation\n and version, but the latest documentation is also hosted publicly at\n .", + "License": "MIT + file LICENSE", + "URL": "https://pkgs.rstudio.com/connectapi/,\nhttps://github.com/rstudio/connectapi", + "BugReports": "https://github.com/rstudio/connectapi/issues", + "Imports": "bit64, fs, glue, httr, mime, jsonlite, lifecycle, magrittr,\npurrr, R6, rlang (>= 0.4.2), tibble, uuid, vctrs (>= 0.3.0)", + "Suggests": "covr, dbplyr, dplyr, ggplot2, gridExtra, httptest, knitr,\nlubridate, progress, rmarkdown, rprojroot, rsconnect, spelling,\ntestthat, webshot2, withr", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.2", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Packaged": "2024-12-18 22:21:42 UTC; toph", + "Author": "Toph Allen [aut, cre],\n Neal Richardson [aut],\n Sean Lopp [aut],\n Cole Arendt [aut],\n Posit, PBC [cph, fnd]", + "Maintainer": "Toph Allen ", + "Repository": "CRAN", + "Date/Publication": "2024-12-18 22:40:06 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:52:53 UTC; unix" + } + }, + "corrplot": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "corrplot", + "Type": "Package", + "Title": "Visualization of a Correlation Matrix", + "Version": "0.95", + "Date": "2024-10-14", + "Authors@R": "c(\n person('Taiyun', 'Wei', email = 'weitaiyun@gmail.com', role = c('cre', 'aut')),\n person('Viliam', 'Simko', email = 'viliam.simko@gmail.com', role = 'aut'),\n person('Michael', 'Levy', email = 'michael.levy@healthcatalyst.com', role = 'ctb'),\n person('Yihui', 'Xie', email = 'xie@yihui.name', role = 'ctb'),\n person('Yan', 'Jin', email = 'jyfeather@gmail.com', role = 'ctb'),\n person('Jeff', 'Zemla', email = 'zemla@wisc.edu', role = 'ctb'),\n person('Moritz', 'Freidank', email = 'freidankm@googlemail.com', role = 'ctb'),\n person('Jun', 'Cai', email = 'cai-j12@mails.tsinghua.edu.cn', role = 'ctb'),\n person('Tomas', 'Protivinsky', email = 'tomas.protivinsky@gmail.com', role = 'ctb')\n )", + "Maintainer": "Taiyun Wei ", + "Suggests": "seriation, knitr, RColorBrewer, rmarkdown, magrittr,\nprettydoc, testthat", + "Description": "Provides a visual exploratory tool on correlation matrix that supports automatic variable reordering to help detect hidden patterns among variables.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/taiyun/corrplot", + "BugReports": "https://github.com/taiyun/corrplot/issues", + "VignetteBuilder": "knitr", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Packaged": "2024-10-14 05:38:35 UTC; weita", + "Author": "Taiyun Wei [cre, aut],\n Viliam Simko [aut],\n Michael Levy [ctb],\n Yihui Xie [ctb],\n Yan Jin [ctb],\n Jeff Zemla [ctb],\n Moritz Freidank [ctb],\n Jun Cai [ctb],\n Tomas Protivinsky [ctb]", + "Repository": "CRAN", + "Date/Publication": "2024-10-14 12:11:18 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:52:56 UTC; unix" + } + }, + "countrycode": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "countrycode", + "Title": "Convert Country Names and Country Codes", + "Version": "1.6.0", + "Authors@R": "\n c(person(given = \"Vincent\",\n family = \"Arel-Bundock\",\n role = c(\"aut\", \"cre\"),\n email = \"vincent.arel-bundock@umontreal.ca\",\n comment = c(ORCID = \"0000-0003-2042-7063\")),\n person(given = \"CJ\",\n family = \"Yetman\",\n role = \"ctb\",\n email = \"cj@cjyetman.com\",\n comment = c(ORCID = \"0000-0001-5099-9500\")),\n person(given = \"Nils\",\n family = \"Enevoldsen\",\n role = \"ctb\",\n email = \"nils@wlonk.com\",\n comment = c(ORCID = \"0000-0001-7195-4117\")),\n person(\"Etienne\", \"Bacher\",\n email = \"etienne.bacher@protonmail.com\",\n role = \"ctb\",\n comment = c(ORCID = \"0000-0002-9271-5075\")),\n person(given = \"Samuel\",\n family = \"Meichtry\",\n role = \"ctb\",\n email = \"samuel.meichtry@bj.admin.ch\",\n comment = c(ORCID = \"0000-0003-2165-791X\")))", + "Description": "Standardize country names, convert them into one of 40\n different coding schemes, convert between coding schemes, and assign\n region descriptors.", + "License": "GPL-3", + "URL": "https://vincentarelbundock.github.io/countrycode/", + "BugReports": "https://github.com/vincentarelbundock/countrycode/issues", + "Depends": "R (>= 2.10)", + "Suggests": "altdoc, eurostat, testthat, tibble, ISOcodes, utf8", + "Encoding": "UTF-8", + "LazyData": "yes", + "LazyLoad": "yes", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "no", + "Packaged": "2024-03-22 15:18:14 UTC; vincent", + "Author": "Vincent Arel-Bundock [aut, cre]\n (),\n CJ Yetman [ctb] (),\n Nils Enevoldsen [ctb] (),\n Etienne Bacher [ctb] (),\n Samuel Meichtry [ctb] ()", + "Maintainer": "Vincent Arel-Bundock ", + "Repository": "CRAN", + "Date/Publication": "2024-03-22 16:10:19 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:52:57 UTC; unix" + } + }, + "cpp11": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "cpp11", + "Title": "A C++11 Interface for R's C Interface", + "Version": "0.5.1", + "Authors@R": "\n c(\n person(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")),\n person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Benjamin\", \"Kietzman\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Provides a header only, C++11 interface to R's C\n interface. Compared to other approaches 'cpp11' strives to be safe\n against long jumps from the C API as well as C++ exceptions, conform\n to normal R function semantics and supports interaction with 'ALTREP'\n vectors.", + "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 (>= 4.0.0)", + "Suggests": "bench, brio, callr, cli, covr, decor, desc, ggplot2, glue,\nknitr, lobstr, mockery, progress, rmarkdown, scales, Rcpp,\ntestthat (>= 3.2.0), 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.3.2", + "NeedsCompilation": "no", + "Packaged": "2024-12-04 14:25:58 UTC; davis", + "Author": "Davis Vaughan [aut, cre] (),\n Jim Hester [aut] (),\n Romain François [aut] (),\n Benjamin Kietzman [ctb],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN", + "Date/Publication": "2024-12-04 15:40:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:50:12 UTC; unix" + } + }, + "crayon": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "crayon", + "Title": "Colored Terminal Output", + "Version": "1.5.3", + "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Brodie\", \"Gaslam\", , \"brodie.gaslam@yahoo.com\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "The crayon package is now superseded. Please use the 'cli'\n package for new projects. Colored terminal output on terminals that\n support 'ANSI' color and highlight codes. It also works in 'Emacs'\n 'ESS'. 'ANSI' color support is automatically detected. Colors and\n highlighting can be combined and nested. New styles can also be\n created easily. This package was inspired by the 'chalk' 'JavaScript'\n project.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.github.io/crayon/, https://github.com/r-lib/crayon", + "BugReports": "https://github.com/r-lib/crayon/issues", + "Imports": "grDevices, methods, utils", + "Suggests": "mockery, rstudioapi, testthat, withr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "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'", + "NeedsCompilation": "no", + "Packaged": "2024-06-20 11:49:08 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre],\n Brodie Gaslam [ctb],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN", + "Date/Publication": "2024-06-20 13:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:48:42 UTC; unix" + } + }, + "crosstalk": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "crosstalk", + "Type": "Package", + "Title": "Inter-Widget Interactivity for HTML Widgets", + "Version": "1.2.1", + "Authors@R": "c(\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"),\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"),\n email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(family = \"jQuery Foundation\", role = \"cph\",\n comment = \"jQuery library and jQuery UI library\"),\n person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\n person(\"Mark\", \"Otto\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(\"Jacob\", \"Thornton\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize.js library\"),\n person(\"Kristopher Michael\", \"Kowal\", role = c(\"ctb\", \"cph\"),\n comment = \"es5-shim library\"),\n person(family = \"es5-shim contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"es5-shim library\"),\n person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\n comment = \"ion.rangeSlider library\"),\n person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\n comment = \"Javascript strftime library\")\n )", + "Description": "Provides building blocks for allowing HTML widgets to communicate\n with each other, with Shiny or without (i.e. static .html files). Currently\n supports 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/,\nhttps://github.com/rstudio/crosstalk", + "BugReports": "https://github.com/rstudio/crosstalk/issues", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2023-11-22 16:29:50 UTC; cpsievert", + "Author": "Joe Cheng [aut],\n Carson Sievert [aut, cre] (),\n Posit Software, PBC [cph, fnd],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/www/shared/jquery-AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Brian Reavis [ctb, cph] (selectize.js library),\n Kristopher Michael Kowal [ctb, cph] (es5-shim library),\n es5-shim contributors [ctb, cph] (es5-shim library),\n Denis Ineshin [ctb, cph] (ion.rangeSlider library),\n Sami Samhuri [ctb, cph] (Javascript strftime library)", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN", + "Date/Publication": "2023-11-23 08:50:07 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:52:58 UTC; unix" + } + }, + "curl": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "curl", + "Type": "Package", + "Title": "A Modern and Flexible Web Client for R", + "Version": "6.2.0", + "Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = \"cph\"))", + "Description": "Bindings to 'libcurl' for performing fully\n configurable HTTP/FTP requests where responses can be processed in memory, on\n disk, or streaming via the callback or connection interfaces. Some knowledge\n of 'libcurl' is recommended; for a more-user-friendly web client see the \n 'httr2' package which builds on this package with http specific tools and logic.", + "License": "MIT + file LICENSE", + "SystemRequirements": "libcurl (>= 7.62): libcurl-devel (rpm) or\nlibcurl4-openssl-dev (deb)", + "URL": "https://jeroen.r-universe.dev/curl", + "BugReports": "https://github.com/jeroen/curl/issues", + "Suggests": "spelling, testthat (>= 1.0.0), knitr, jsonlite, later,\nrmarkdown, httpuv (>= 1.4.4), webutils", + "VignetteBuilder": "knitr", + "Depends": "R (>= 3.0.0)", + "RoxygenNote": "7.3.2.9000", + "Encoding": "UTF-8", + "Language": "en-US", + "NeedsCompilation": "yes", + "Packaged": "2025-01-23 12:31:51 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (),\n Hadley Wickham [ctb],\n Posit Software, PBC [cph]", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN", + "Date/Publication": "2025-01-23 18:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:56 UTC; unix" + } + }, + "cyclocomp": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "cyclocomp", + "Title": "Cyclomatic Complexity of R Code", + "Version": "1.1.1", + "Author": "Gabor Csardi", + "Maintainer": "Gabor Csardi ", + "Description": "Cyclomatic complexity is a software metric (measurement),\n used to indicate the complexity of a program. It is a quantitative\n measure of the number of linearly independent paths through a program's\n source code. It was developed by Thomas J. McCabe, Sr. in 1976.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/gaborcsardi/cyclocomp", + "BugReports": "https://github.com/gaborcsardi/cyclocomp/issues", + "Imports": "callr, crayon, desc, remotes, withr", + "Suggests": "testthat", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2023-08-30 12:49:50 UTC; gaborcsardi", + "Repository": "CRAN", + "Date/Publication": "2023-08-30 17:00:22 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:48:46 UTC; unix" + } + }, + "data.table": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "data.table", + "Version": "1.16.4", + "Title": "Extension of `data.frame`", + "Depends": "R (>= 3.3.0)", + "Imports": "methods", + "Suggests": "bit64 (>= 4.0.0), bit (>= 4.0.4), R.utils, xts, zoo (>=\n1.8-1), yaml, knitr, markdown", + "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", + "Encoding": "UTF-8", + "ByteCompile": "TRUE", + "Authors@R": "c(\n person(\"Tyson\",\"Barrett\", role=c(\"aut\",\"cre\"), email=\"t.barrett88@gmail.com\", comment = c(ORCID=\"0000-0002-2137-1391\")),\n person(\"Matt\",\"Dowle\", role=\"aut\", email=\"mattjdowle@gmail.com\"),\n person(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"asrini@pm.me\"),\n person(\"Jan\",\"Gorecki\", role=\"aut\"),\n person(\"Michael\",\"Chirico\", role=\"aut\", comment = c(ORCID=\"0000-0003-0787-087X\")),\n person(\"Toby\",\"Hocking\", role=\"aut\", comment = c(ORCID=\"0000-0002-3146-0865\")),\n person(\"Benjamin\",\"Schwendinger\",role=\"aut\", comment = c(ORCID=\"0000-0003-3315-8114\")),\n person(\"Pasha\",\"Stetsenko\", role=\"ctb\"),\n person(\"Tom\",\"Short\", role=\"ctb\"),\n person(\"Steve\",\"Lianoglou\", role=\"ctb\"),\n person(\"Eduard\",\"Antonyan\", role=\"ctb\"),\n person(\"Markus\",\"Bonsch\", role=\"ctb\"),\n person(\"Hugh\",\"Parsonage\", role=\"ctb\"),\n person(\"Scott\",\"Ritchie\", role=\"ctb\"),\n person(\"Kun\",\"Ren\", role=\"ctb\"),\n person(\"Xianying\",\"Tan\", role=\"ctb\"),\n person(\"Rick\",\"Saporta\", role=\"ctb\"),\n person(\"Otto\",\"Seiskari\", role=\"ctb\"),\n person(\"Xianghui\",\"Dong\", role=\"ctb\"),\n person(\"Michel\",\"Lang\", role=\"ctb\"),\n person(\"Watal\",\"Iwasaki\", role=\"ctb\"),\n person(\"Seth\",\"Wenchel\", role=\"ctb\"),\n person(\"Karl\",\"Broman\", role=\"ctb\"),\n person(\"Tobias\",\"Schmidt\", role=\"ctb\"),\n person(\"David\",\"Arenburg\", role=\"ctb\"),\n person(\"Ethan\",\"Smith\", role=\"ctb\"),\n person(\"Francois\",\"Cocquemas\", role=\"ctb\"),\n person(\"Matthieu\",\"Gomez\", role=\"ctb\"),\n person(\"Philippe\",\"Chataignon\", role=\"ctb\"),\n person(\"Nello\",\"Blaser\", role=\"ctb\"),\n person(\"Dmitry\",\"Selivanov\", role=\"ctb\"),\n person(\"Andrey\",\"Riabushenko\", role=\"ctb\"),\n person(\"Cheng\",\"Lee\", role=\"ctb\"),\n person(\"Declan\",\"Groves\", role=\"ctb\"),\n person(\"Daniel\",\"Possenriede\", role=\"ctb\"),\n person(\"Felipe\",\"Parages\", role=\"ctb\"),\n person(\"Denes\",\"Toth\", role=\"ctb\"),\n person(\"Mus\",\"Yaramaz-David\", role=\"ctb\"),\n person(\"Ayappan\",\"Perumal\", role=\"ctb\"),\n person(\"James\",\"Sams\", role=\"ctb\"),\n person(\"Martin\",\"Morgan\", role=\"ctb\"),\n person(\"Michael\",\"Quinn\", role=\"ctb\"),\n person(\"@javrucebo\",\"\", role=\"ctb\"),\n person(\"@marc-outins\",\"\", role=\"ctb\"),\n person(\"Roy\",\"Storey\", role=\"ctb\"),\n person(\"Manish\",\"Saraswat\", role=\"ctb\"),\n person(\"Morgan\",\"Jacob\", role=\"ctb\"),\n person(\"Michael\",\"Schubmehl\", role=\"ctb\"),\n person(\"Davis\",\"Vaughan\", role=\"ctb\"),\n person(\"Leonardo\",\"Silvestri\", role=\"ctb\"),\n person(\"Jim\",\"Hester\", role=\"ctb\"),\n person(\"Anthony\",\"Damico\", role=\"ctb\"),\n person(\"Sebastian\",\"Freundt\", role=\"ctb\"),\n person(\"David\",\"Simons\", role=\"ctb\"),\n person(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"),\n person(\"Cole\",\"Miller\", role=\"ctb\"),\n person(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"),\n person(\"Vaclav\",\"Tlapak\", role=\"ctb\"),\n person(\"Kevin\",\"Ushey\", role=\"ctb\"),\n person(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"),\n person(\"Tony\",\"Fischetti\", role=\"ctb\"),\n person(\"Ofek\",\"Shilon\", role=\"ctb\"),\n person(\"Vadim\",\"Khotilovich\", role=\"ctb\"),\n person(\"Hadley\",\"Wickham\", role=\"ctb\"),\n person(\"Bennet\",\"Becker\", role=\"ctb\"),\n person(\"Kyle\",\"Haynes\", role=\"ctb\"),\n person(\"Boniface Christian\",\"Kamgang\", role=\"ctb\"),\n person(\"Olivier\",\"Delmarcell\", role=\"ctb\"),\n person(\"Josh\",\"O'Brien\", role=\"ctb\"),\n person(\"Dereck\",\"de Mezquita\", role=\"ctb\"),\n person(\"Michael\",\"Czekanski\", role=\"ctb\"),\n person(\"Dmitry\", \"Shemetov\", role=\"ctb\"),\n person(\"Nitish\", \"Jha\", role=\"ctb\"),\n person(\"Joshua\", \"Wu\", role=\"ctb\"),\n person(\"Iago\", \"Giné-Vázquez\", role=\"ctb\"),\n person(\"Anirban\", \"Chetia\", role=\"ctb\"),\n person(\"Doris\", \"Amoakohene\", role=\"ctb\"),\n person(\"Ivan\", \"Krylov\", role=\"ctb\")\n )", + "NeedsCompilation": "yes", + "Packaged": "2024-12-04 23:18:02 UTC; tysonbarrett", + "Author": "Tyson Barrett [aut, cre] (),\n Matt Dowle [aut],\n Arun Srinivasan [aut],\n Jan Gorecki [aut],\n Michael Chirico [aut] (),\n Toby Hocking [aut] (),\n Benjamin Schwendinger [aut] (),\n Pasha Stetsenko [ctb],\n Tom Short [ctb],\n Steve Lianoglou [ctb],\n Eduard Antonyan [ctb],\n Markus Bonsch [ctb],\n Hugh Parsonage [ctb],\n Scott Ritchie [ctb],\n Kun Ren [ctb],\n Xianying Tan [ctb],\n Rick Saporta [ctb],\n Otto Seiskari [ctb],\n Xianghui Dong [ctb],\n Michel Lang [ctb],\n Watal Iwasaki [ctb],\n Seth Wenchel [ctb],\n Karl Broman [ctb],\n Tobias Schmidt [ctb],\n David Arenburg [ctb],\n Ethan Smith [ctb],\n Francois Cocquemas [ctb],\n Matthieu Gomez [ctb],\n Philippe Chataignon [ctb],\n Nello Blaser [ctb],\n Dmitry Selivanov [ctb],\n Andrey Riabushenko [ctb],\n Cheng Lee [ctb],\n Declan Groves [ctb],\n Daniel Possenriede [ctb],\n Felipe Parages [ctb],\n Denes Toth [ctb],\n Mus Yaramaz-David [ctb],\n Ayappan Perumal [ctb],\n James Sams [ctb],\n Martin Morgan [ctb],\n Michael Quinn [ctb],\n @javrucebo [ctb],\n @marc-outins [ctb],\n Roy Storey [ctb],\n Manish Saraswat [ctb],\n Morgan Jacob [ctb],\n Michael Schubmehl [ctb],\n Davis Vaughan [ctb],\n Leonardo Silvestri [ctb],\n Jim Hester [ctb],\n Anthony Damico [ctb],\n Sebastian Freundt [ctb],\n David Simons [ctb],\n Elliott Sales de Andrade [ctb],\n Cole Miller [ctb],\n Jens Peder Meldgaard [ctb],\n Vaclav Tlapak [ctb],\n Kevin Ushey [ctb],\n Dirk Eddelbuettel [ctb],\n Tony Fischetti [ctb],\n Ofek Shilon [ctb],\n Vadim Khotilovich [ctb],\n Hadley Wickham [ctb],\n Bennet Becker [ctb],\n Kyle Haynes [ctb],\n Boniface Christian Kamgang [ctb],\n Olivier Delmarcell [ctb],\n Josh O'Brien [ctb],\n Dereck de Mezquita [ctb],\n Michael Czekanski [ctb],\n Dmitry Shemetov [ctb],\n Nitish Jha [ctb],\n Joshua Wu [ctb],\n Iago Giné-Vázquez [ctb],\n Anirban Chetia [ctb],\n Doris Amoakohene [ctb],\n Ivan Krylov [ctb]", + "Maintainer": "Tyson Barrett ", + "Repository": "CRAN", + "Date/Publication": "2024-12-06 15:10:10 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:53:00 UTC; unix" + } + }, + "desc": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "desc", + "Title": "Manipulate DESCRIPTION Files", + "Version": "1.4.3", + "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Kirill\", \"Müller\", role = \"aut\"),\n person(\"Jim\", \"Hester\", , \"james.f.hester@gmail.com\", role = \"aut\"),\n person(\"Maëlle\", \"Salmon\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-2815-0399\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Maintainer": "Gábor Csárdi ", + "Description": "Tools to read, write, create, and manipulate DESCRIPTION\n files. It is intended for packages that create or manipulate other\n packages.", + "License": "MIT + file LICENSE", + "URL": "https://desc.r-lib.org/, https://github.com/r-lib/desc", + "BugReports": "https://github.com/r-lib/desc/issues", + "Depends": "R (>= 3.4)", + "Imports": "cli, R6, 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.3", + "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' 'find-package-root.R' 'latex.R'\n'non-oo-api.R' 'package-archives.R' 'read.R' 'remotes.R'\n'str.R' 'syntax_checks.R' 'urls.R' 'utils.R' 'validate.R'\n'version.R'", + "NeedsCompilation": "no", + "Packaged": "2023-12-10 11:07:50 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre],\n Kirill Müller [aut],\n Jim Hester [aut],\n Maëlle Salmon [ctb] (),\n Posit Software, PBC [cph, fnd]", + "Repository": "CRAN", + "Date/Publication": "2023-12-10 11:40:08 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:48:43 UTC; unix" + } + }, + "diagram": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "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, \n visualising webs, electrical networks, etc.\n Support for the book \"A practical guide to ecological modelling -\n using R as a simulation platform\"\n by Karline Soetaert and Peter M.J. Herman (2009), Springer.\n and the book \"Solving Differential Equations in R\"\n by Karline Soetaert, Jeff Cash and Francesca Mazzia (2012), Springer.\n Includes demo(flowchart), demo(plotmat), demo(plotweb).", + "License": "GPL (>= 2)", + "LazyData": "yes", + "NeedsCompilation": "no", + "Packaged": "2020-09-29 06:59:04 UTC; karlines", + "Repository": "CRAN", + "Date/Publication": "2020-09-30 07:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:53:11 UTC; unix" + } + }, + "diffobj": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "diffobj", + "Type": "Package", + "Title": "Diffs for R Objects", + "Description": "Generate a colorized diff of two R objects for an intuitive\n visualization of their differences.", + "Version": "0.3.5", + "Authors@R": "c(\n person(\n \"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\n role=c(\"aut\", \"cre\")),\n person(\n \"Michael B.\", \"Allen\", email=\"ioplex@gmail.com\",\n role=c(\"ctb\", \"cph\"),\n comment=\"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],\n Michael B. Allen [ctb, cph] (Original C implementation of Myers Diff\n Algorithm)", + "Maintainer": "Brodie Gaslam ", + "Repository": "CRAN", + "Date/Publication": "2021-10-05 07:10:17 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:53:11 UTC; unix" + } + }, + "digest": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "digest", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Antoine\", \"Lucas\", role=\"ctb\"),\n person(\"Jarek\", \"Tuszynski\", role=\"ctb\"),\n person(\"Henrik\", \"Bengtsson\", role=\"ctb\", comment = c(ORCID = \"0000-0002-7579-5165\")),\n person(\"Simon\", \"Urbanek\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2297-1732\")),\n person(\"Mario\", \"Frasca\", role=\"ctb\"),\n person(\"Bryan\", \"Lewis\", role=\"ctb\"),\n person(\"Murray\", \"Stokely\", role=\"ctb\"),\n person(\"Hannes\", \"Muehleisen\", role=\"ctb\"),\n person(\"Duncan\", \"Murdoch\", role=\"ctb\"),\n person(\"Jim\", \"Hester\", role=\"ctb\"),\n person(\"Wush\", \"Wu\", role=\"ctb\", comment = c(ORCID = \"0000-0001-5180-0567\")),\n person(\"Qiang\", \"Kou\", role=\"ctb\", comment = c(ORCID = \"0000-0001-6786-5453\")),\n person(\"Thierry\", \"Onkelinx\", role=\"ctb\", comment = c(ORCID = \"0000-0001-8804-4216\")),\n person(\"Michel\", \"Lang\", role=\"ctb\", comment = c(ORCID = \"0000-0001-9754-0393\")),\n person(\"Viliam\", \"Simko\", role=\"ctb\"),\n person(\"Kurt\", \"Hornik\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4198-9911\")),\n person(\"Radford\", \"Neal\", role=\"ctb\", comment = c(ORCID = \"0000-0002-2473-3407\")),\n person(\"Kendon\", \"Bell\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9093-8312\")),\n person(\"Matthew\", \"de Queljoe\", role=\"ctb\"),\n person(\"Dmitry\", \"Selivanov\", role=\"ctb\"),\n person(\"Ion\", \"Suruceanu\", role=\"ctb\"),\n person(\"Bill\", \"Denney\", role=\"ctb\"),\n person(\"Dirk\", \"Schumacher\", role=\"ctb\"),\n person(\"András\", \"Svraka\", role=\"ctb\"),\n person(\"Sergey\", \"Fedorov\", role=\"ctb\"),\n person(\"Will\", \"Landau\", role=\"ctb\", comment = c(ORCID = \"0000-0003-1878-3253\")),\n person(\"Floris\", \"Vanderhaeghe\", role=\"ctb\", comment = c(ORCID = \"0000-0002-6378-6229\")),\n person(\"Kevin\", \"Tappe\", role=\"ctb\"),\n person(\"Harris\", \"McGehee\", role=\"ctb\"),\n person(\"Tim\", \"Mastny\", role=\"ctb\"),\n person(\"Aaron\", \"Peikert\", role=\"ctb\", comment = c(ORCID = \"0000-0001-7813-818X\")),\n person(\"Mark\", \"van der Loo\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9807-4686\")),\n person(\"Chris\", \"Muir\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2555-3878\")),\n person(\"Moritz\", \"Beller\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4852-0526\")),\n person(\"Sebastian\", \"Campbell\", role=\"ctb\"),\n person(\"Winston\", \"Chang\", role=\"ctb\", comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Dean\", \"Attali\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5645-3493\")),\n person(\"Michael\", \"Chirico\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0787-087X\")),\n person(\"Kevin\", \"Ushey\", role=\"ctb\"))", + "Version": "0.6.37", + "Date": "2024-08-19", + "Title": "Create Compact Hash Digests of R Objects", + "Description": "Implementation of a function 'digest()' for the creation of hash\n digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32',\n 'xxhash', 'murmurhash', 'spookyhash', 'blake3', 'crc32c', 'xxh3_64', and 'xxh3_128'\n algorithms) permitting easy comparison of R language objects, as well as functions\n such as'hmac()' to create hash-based message authentication code. Please note that\n this package is not meant to be deployed for cryptographic purposes for which more\n comprehensive (and widely tested) libraries such as 'OpenSSL' should be used.", + "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", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2024-08-19 12:16:05 UTC; edd", + "Author": "Dirk Eddelbuettel [aut, cre] (),\n Antoine Lucas [ctb],\n Jarek Tuszynski [ctb],\n Henrik Bengtsson [ctb] (),\n Simon Urbanek [ctb] (),\n Mario Frasca [ctb],\n Bryan Lewis [ctb],\n Murray Stokely [ctb],\n Hannes Muehleisen [ctb],\n Duncan Murdoch [ctb],\n Jim Hester [ctb],\n Wush Wu [ctb] (),\n Qiang Kou [ctb] (),\n Thierry Onkelinx [ctb] (),\n Michel Lang [ctb] (),\n Viliam Simko [ctb],\n Kurt Hornik [ctb] (),\n Radford Neal [ctb] (),\n Kendon Bell [ctb] (),\n Matthew de Queljoe [ctb],\n Dmitry Selivanov [ctb],\n Ion Suruceanu [ctb],\n Bill Denney [ctb],\n Dirk Schumacher [ctb],\n András Svraka [ctb],\n Sergey Fedorov [ctb],\n Will Landau [ctb] (),\n Floris Vanderhaeghe [ctb] (),\n Kevin Tappe [ctb],\n Harris McGehee [ctb],\n Tim Mastny [ctb],\n Aaron Peikert [ctb] (),\n Mark van der Loo [ctb] (),\n Chris Muir [ctb] (),\n Moritz Beller [ctb] (),\n Sebastian Campbell [ctb],\n Winston Chang [ctb] (),\n Dean Attali [ctb] (),\n Michael Chirico [ctb] (),\n Kevin Ushey [ctb]", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN", + "Date/Publication": "2024-08-19 14:10:07 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:22 UTC; unix" + } + }, + "dplyr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "dplyr", + "Title": "A Grammar of Data Manipulation", + "Version": "1.1.4", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Romain\", \"François\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Lionel\", \"Henry\", role = \"aut\"),\n person(\"Kirill\", \"Müller\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-4777-038X\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "A fast, consistent tool for working with data frame like\n objects, 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.4)", + "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-11-16 21:48:56 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre] (),\n Romain François [aut] (),\n Lionel Henry [aut],\n Kirill Müller [aut] (),\n Davis Vaughan [aut] (),\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2023-11-17 16:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:07 UTC; unix" + } + }, + "echarts4r": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "echarts4r", + "Title": "Create Interactive Graphs with 'Echarts JavaScript' Version 5", + "Date": "2023-06-08", + "Version": "0.4.5", + "Authors@R": "c(\n person(\"John\", \"Coene\", email = \"jcoenep@gmail.com\", role = c(\"aut\", \"cph\")),\n person(\"David\", \"Munoz Tord\", email = \"david.munoztord@mailbox.org\", role = c(\"cre\", \"ctb\"), comment = c(ORCID = \"0000-0001-7954-8295\")),\n person(given = \"Wei\", family = \"Su\", email = \"swsoyee@gmail.com\", role = \"ctb\"),\n person(family = \"Helgasoft\", email = \"contact@helgasoft.com\", role = \"ctb\"),\n person(\"Xianying\", \"Tan\", email = \"shrektan@126.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-6072-3521\")),\n person(\"Robin\", \"Cura\", email = \"robin.cura@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0001-5926-1828\")),\n person(\"Mathida\", \"Chuk\", email = \"mathidachuk@gmail.com\", role = \"ctb\"),\n person(\"Robert\", \"Koetsier\", email = \"rk8roko@gmail.com \", role = \"ctb\", comment = c(ORCID = \"0000-0002-4477-5401\")),\n person(\"Jelle\", \"Geertsma\", email = \"rdatasculptor@gmail.com\", role = \"ctb\")\n )", + "Description": "Easily create interactive charts by leveraging the 'Echarts Javascript' library which includes\n 36 chart types, themes, 'Shiny' proxies and animations.", + "License": "Apache License (>= 2.0)", + "Encoding": "UTF-8", + "Imports": "htmlwidgets, dplyr (>= 0.7.0), purrr, countrycode, broom,\nshiny, scales, corrplot, htmltools, jsonlite, rstudioapi", + "Suggests": "tidyr, testthat, knitr, rmarkdown, covr, data.tree, leaflet,\ntibble", + "Depends": "R (>= 4.1.0)", + "RoxygenNote": "7.2.3", + "URL": "https://echarts4r.john-coene.com/,\nhttps://github.com/JohnCoene/echarts4r", + "BugReports": "https://github.com/JohnCoene/echarts4r/issues/", + "NeedsCompilation": "no", + "Packaged": "2023-06-16 14:02:03 UTC; david", + "Author": "John Coene [aut, cph],\n David Munoz Tord [cre, ctb] (),\n Wei Su [ctb],\n Helgasoft [ctb],\n Xianying Tan [ctb] (),\n Robin Cura [ctb] (),\n Mathida Chuk [ctb],\n Robert Koetsier [ctb] (),\n Jelle Geertsma [ctb]", + "Maintainer": "David Munoz Tord ", + "Repository": "CRAN", + "Date/Publication": "2023-06-16 23:30:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:54:20 UTC; unix" + } + }, + "evaluate": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "evaluate", + "Title": "Parsing and Evaluation Tools that Provide More Details than the\nDefault", + "Version": "1.0.3", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Yihui\", \"Xie\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Michael\", \"Lawrence\", role = \"ctb\"),\n person(\"Thomas\", \"Kluyver\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Barret\", \"Schloerke\", role = \"ctb\"),\n person(\"Adam\", \"Ryczkowski\", role = \"ctb\"),\n person(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\n person(\"Michel\", \"Lang\", role = \"ctb\"),\n person(\"Karolis\", \"Koncevičius\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Parsing and evaluation tools that make it easy to recreate\n the command line behaviour of R.", + "License": "MIT + file LICENSE", + "URL": "https://evaluate.r-lib.org/, https://github.com/r-lib/evaluate", + "BugReports": "https://github.com/r-lib/evaluate/issues", + "Depends": "R (>= 3.6.0)", + "Suggests": "callr, covr, ggplot2 (>= 3.3.6), lattice, methods, pkgload,\nrlang, knitr, testthat (>= 3.0.0), withr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2025-01-10 22:27:28 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\n Yihui Xie [aut] (),\n Michael Lawrence [ctb],\n Thomas Kluyver [ctb],\n Jeroen Ooms [ctb],\n Barret Schloerke [ctb],\n Adam Ryczkowski [ctb],\n Hiroaki Yutani [ctb],\n Michel Lang [ctb],\n Karolis Koncevičius [ctb],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2025-01-10 23:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:48:47 UTC; unix" + } + }, + "fansi": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "fansi", + "Title": "ANSI Control Sequence Aware String Functions", + "Description": "Counterparts to R string manipulation functions that account for\n the effects of ANSI text formatting control sequences.", + "Version": "1.0.6", + "Authors@R": "c(\n person(\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\n role=c(\"aut\", \"cre\")),\n person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"),\n person(family=\"R Core Team\",\n email=\"R-core@r-project.org\", role=\"cph\",\n comment=\"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-12-06 00:59:41 UTC; bg", + "Author": "Brodie Gaslam [aut, cre],\n Elliott Sales De Andrade [ctb],\n R Core Team [cph] (UTF8 byte length calcs from src/util.c)", + "Maintainer": "Brodie Gaslam ", + "Repository": "CRAN", + "Date/Publication": "2023-12-08 03:30:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:01 UTC; unix" + } + }, + "farver": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "farver", + "Title": "High Performance Colour Space Manipulation", + "Version": "2.1.2", + "Authors@R": "c(\n person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"),\n comment = c(ORCID = \"0000-0002-5147-4711\")),\n person(\"Berendea\", \"Nicolae\", role = \"aut\",\n comment = \"Author of the ColorSpace C++ library\"),\n person(\"Romain\", \"François\", , \"romain@purrple.cat\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "The encoding of colour can be handled in many different ways,\n using different colour spaces. As different colour spaces have\n different uses, efficient conversion between these representations are\n important. The 'farver' package provides a set of functions that gives\n access to very fast colour space conversion and comparisons\n implemented 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)", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "yes", + "Packaged": "2024-05-13 08:31:27 UTC; thomas", + "Author": "Thomas Lin Pedersen [cre, aut]\n (),\n Berendea Nicolae [aut] (Author of the ColorSpace C++ library),\n Romain François [aut] (),\n Posit, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN", + "Date/Publication": "2024-05-13 09:33:09 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:05 UTC; unix" + } + }, + "fastmap": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "fastmap", + "Title": "Fast Data Structures", + "Version": "1.2.0", + "Authors@R": "c(\n person(\"Winston\", \"Chang\", email = \"winston@posit.co\", role = c(\"aut\", \"cre\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(given = \"Tessil\", role = \"cph\", comment = \"hopscotch_map library\")\n )", + "Description": "Fast implementation of data structures, including a key-value\n store, stack, and queue. Environments are commonly used as key-value stores\n in R, but every time a new key is used, it is added to R's global symbol\n table, causing a small amount of memory leakage. This can be problematic in\n cases where many different keys are used. Fastmap avoids this memory leak\n issue 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": "2024-05-14 17:54:13 UTC; winston", + "Author": "Winston Chang [aut, cre],\n Posit Software, PBC [cph, fnd],\n Tessil [cph] (hopscotch_map library)", + "Maintainer": "Winston Chang ", + "Repository": "CRAN", + "Date/Publication": "2024-05-15 09:00:07 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:19 UTC; unix" + } + }, + "fontawesome": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "fontawesome", + "Version": "0.5.3", + "Title": "Easily Work with 'Font Awesome' Icons", + "Description": "Easily and flexibly insert 'Font Awesome' icons into 'R Markdown'\n documents and 'Shiny' apps. These icons can be inserted into HTML content\n through inline 'SVG' tags or 'i' tags. There is also a utility function for\n exporting 'Font Awesome' icons as 'PNG' images for those situations where\n raster graphics are needed.", + "Authors@R": "c(\n person(\"Richard\", \"Iannone\", , \"rich@posit.co\", c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-3925-190X\")),\n person(\"Christophe\", \"Dervieux\", , \"cderv@posit.co\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"ctb\"),\n person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"),\n comment = \"Font-Awesome font\"),\n person(\"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.3.2", + "Depends": "R (>= 3.3.0)", + "Imports": "rlang (>= 1.0.6), htmltools (>= 0.5.1.1)", + "Suggests": "covr, dplyr (>= 1.0.8), gt (>= 0.9.0), knitr (>= 1.31),\ntestthat (>= 3.0.0), rsvg", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Packaged": "2024-11-16 17:06:16 UTC; riannone", + "Author": "Richard Iannone [aut, cre] (),\n Christophe Dervieux [ctb] (),\n Winston Chang [ctb],\n Dave Gandy [ctb, cph] (Font-Awesome font),\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Richard Iannone ", + "Repository": "CRAN", + "Date/Publication": "2024-11-16 17:30:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:53:15 UTC; unix" + } + }, + "forcats": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "forcats", + "Title": "Tools for Working with Categorical Variables (Factors)", + "Version": "1.0.0", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Helpers for reordering factor levels (including moving\n specified levels to front, ordering by first appearance, reversing,\n and randomly shuffling), and tools for modifying factor levels\n (including collapsing rare levels into other, 'anonymising', and\n manually 'recoding').", + "License": "MIT + file LICENSE", + "URL": "https://forcats.tidyverse.org/,\nhttps://github.com/tidyverse/forcats", + "BugReports": "https://github.com/tidyverse/forcats/issues", + "Depends": "R (>= 3.4)", + "Imports": "cli (>= 3.4.0), glue, lifecycle, magrittr, rlang (>= 1.0.0),\ntibble", + "Suggests": "covr, dplyr, ggplot2, knitr, readr, rmarkdown, testthat (>=\n3.0.0), withr", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-01-27 14:11:11 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\n RStudio [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2023-01-29 22:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:54:23 UTC; unix" + } + }, + "forecast": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "forecast", + "Version": "8.23.0", + "Title": "Forecasting Functions for Time Series and Linear Models", + "Description": "Methods and tools for displaying and analysing\n univariate time series forecasts including exponential smoothing\n via state space models and automatic ARIMA modelling.", + "Depends": "R (>= 3.5.0),", + "Imports": "colorspace, fracdiff, generics (>= 0.1.2), ggplot2 (>= 2.2.1),\ngraphics, lmtest, magrittr, nnet, parallel, Rcpp (>= 0.11.0),\nstats, timeDate, tseries, urca, withr, zoo", + "Suggests": "forecTheta, knitr, methods, rmarkdown, rticles, scales,\nseasonal, testthat (>= 3.0.0), uroot", + "LinkingTo": "Rcpp (>= 0.11.0), RcppArmadillo (>= 0.2.35)", + "LazyData": "yes", + "ByteCompile": "TRUE", + "Authors@R": "c(\n person(\"Rob\", \"Hyndman\", email = \"Rob.Hyndman@monash.edu\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0002-2140-5352\")),\n person(\"George\", \"Athanasopoulos\", role = \"aut\", comment = c(ORCID = \"0000-0002-5389-2802\")),\n person(\"Christoph\", \"Bergmeir\", role = \"aut\", comment = c(ORCID = \"0000-0002-3665-9021\")),\n person(\"Gabriel\", \"Caceres\", role = \"aut\", comment = c(ORCID = \"0000-0002-2947-2023\")),\n person(\"Leanne\", \"Chhay\", role = \"aut\"),\n person(\"Kirill\", \"Kuroptev\", role = \"aut\"),\n person(\"Mitchell\", \"O'Hara-Wild\", role = \"aut\", comment = c(ORCID = \"0000-0001-6729-7695\")),\n person(\"Fotios\", \"Petropoulos\", role = \"aut\", comment = c(ORCID = \"0000-0003-3039-4955\")),\n person(\"Slava\", \"Razbash\", role = \"aut\"),\n person(\"Earo\", \"Wang\", role = \"aut\", comment = c(ORCID = \"0000-0001-6448-5260\")),\n person(\"Farah\", \"Yasmeen\", role = \"aut\", comment = c(ORCID = \"0000-0002-1479-5401\")),\n person(\"Federico\", \"Garza\", role = \"ctb\"),\n person(\"Daniele\", \"Girolimetto\", role = \"ctb\"),\n person(\"Ross\", \"Ihaka\", role = c(\"ctb\", \"cph\")),\n person(\"R Core Team\", role = c(\"ctb\", \"cph\")),\n person(\"Daniel\", \"Reid\", role = \"ctb\"),\n person(\"David\", \"Shaub\", role = \"ctb\"),\n person(\"Yuan\", \"Tang\", role = \"ctb\", comment = c(ORCID = \"0000-0001-5243-233X\")),\n person(\"Xiaoqian\", \"Wang\", role = \"ctb\"),\n person(\"Zhenyu\", \"Zhou\", role = \"ctb\")\n )", + "BugReports": "https://github.com/robjhyndman/forecast/issues", + "License": "GPL-3", + "URL": "https://pkg.robjhyndman.com/forecast/,\nhttps://github.com/robjhyndman/forecast", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Packaged": "2024-06-20 01:21:29 UTC; hyndman", + "Author": "Rob Hyndman [aut, cre, cph] (),\n George Athanasopoulos [aut] (),\n Christoph Bergmeir [aut] (),\n Gabriel Caceres [aut] (),\n Leanne Chhay [aut],\n Kirill Kuroptev [aut],\n Mitchell O'Hara-Wild [aut] (),\n Fotios Petropoulos [aut] (),\n Slava Razbash [aut],\n Earo Wang [aut] (),\n Farah Yasmeen [aut] (),\n Federico Garza [ctb],\n Daniele Girolimetto [ctb],\n Ross Ihaka [ctb, cph],\n R Core Team [ctb, cph],\n Daniel Reid [ctb],\n David Shaub [ctb],\n Yuan Tang [ctb] (),\n Xiaoqian Wang [ctb],\n Zhenyu Zhou [ctb]", + "Maintainer": "Rob Hyndman ", + "Repository": "CRAN", + "Date/Publication": "2024-06-20 03:10:06 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:49 UTC; unix" + } + }, + "fracdiff": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "fracdiff", + "Version": "1.5-3", + "VersionNote": "Released 1.5-0 on 2019-12-09, 1.5-1 on 2020-01-20, 1.5-2\non 2022-10-31", + "Date": "2024-02-01", + "Title": "Fractionally Differenced ARIMA aka ARFIMA(P,d,q) Models", + "Authors@R": "c(person(\"Martin\",\"Maechler\", role=c(\"aut\",\"cre\"), email=\"maechler@stat.math.ethz.ch\",\n\t \t\t\t\t comment = c(ORCID = \"0000-0002-8685-9910\"))\n , person(\"Chris\", \"Fraley\", role=c(\"ctb\",\"cph\"), comment = \"S original; Fortran code\")\n , person(\"Friedrich\", \"Leisch\", role = \"ctb\",\n comment = c(\"R port\", ORCID = \"0000-0001-7278-1983\"))\n , person(\"Valderio\", \"Reisen\", role=\"ctb\", comment = \"fdGPH() & fdSperio()\")\n , person(\"Artur\", \"Lemonte\", role=\"ctb\", comment = \"fdGPH() & fdSperio()\")\n , person(\"Rob\", \"Hyndman\", email=\"Rob.Hyndman@monash.edu\", role=\"ctb\",\n \t comment = c(\"residuals() & fitted()\", ORCID = \"0000-0002-2140-5352\"))\n )", + "Description": "Maximum likelihood estimation of the parameters of a fractionally\n differenced ARIMA(p,d,q) model (Haslett and Raftery, Appl.Statistics, 1989);\n including inference and basic methods. Some alternative algorithms to estimate \"H\".", + "Imports": "stats", + "Suggests": "longmemo, forecast, urca", + "License": "GPL (>= 2)", + "URL": "https://github.com/mmaechler/fracdiff", + "BugReports": "https://github.com/mmaechler/fracdiff/issues", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2024-02-01 08:45:38 UTC; maechler", + "Author": "Martin Maechler [aut, cre] (),\n Chris Fraley [ctb, cph] (S original; Fortran code),\n Friedrich Leisch [ctb] (R port,\n ),\n Valderio Reisen [ctb] (fdGPH() & fdSperio()),\n Artur Lemonte [ctb] (fdGPH() & fdSperio()),\n Rob Hyndman [ctb] (residuals() & fitted(),\n )", + "Maintainer": "Martin Maechler ", + "Repository": "CRAN", + "Date/Publication": "2024-02-01 10:00:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:24 UTC; unix" + } + }, + "fs": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "fs", + "Title": "Cross-Platform File System Operations Based on 'libuv'", + "Version": "1.6.5", + "Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"libuv project contributors\", role = \"cph\",\n comment = \"libuv library\"),\n person(\"Joyent, Inc. and other Node contributors\", role = \"cph\",\n comment = \"libuv library\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "A cross-platform interface to file system operations, built\n on 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.6)", + "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", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Copyright": "file COPYRIGHTS", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.2.3", + "SystemRequirements": "GNU make", + "NeedsCompilation": "yes", + "Packaged": "2024-10-28 22:30:40 UTC; gaborcsardi", + "Author": "Jim Hester [aut],\n Hadley Wickham [aut],\n Gábor Csárdi [aut, cre],\n libuv project contributors [cph] (libuv library),\n Joyent, Inc. and other Node contributors [cph] (libuv library),\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN", + "Date/Publication": "2024-10-30 08:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:21 UTC; unix" + } + }, + "furrr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "furrr", + "Title": "Apply Mapping Functions in Parallel using Futures", + "Version": "0.3.1", + "Authors@R": "c(\n person(\"Davis\", \"Vaughan\", , \"davis@rstudio.com\", role = c(\"aut\", \"cre\")),\n person(\"Matt\", \"Dancho\", , \"mdancho@business-science.io\", role = \"aut\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Implementations of the family of map() functions from 'purrr'\n that can be resolved using any 'future'-supported backend, e.g.\n parallel on the local machine or distributed on a compute cluster.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/DavisVaughan/furrr,\nhttps://furrr.futureverse.org/", + "BugReports": "https://github.com/DavisVaughan/furrr/issues", + "Depends": "future (>= 1.25.0), R (>= 3.4.0)", + "Imports": "globals (>= 0.14.0), lifecycle (>= 1.0.1), purrr (>= 0.3.4),\nrlang (>= 1.0.2), vctrs (>= 0.4.1)", + "Suggests": "carrier, covr, dplyr (>= 0.7.4), knitr, listenv (>= 0.6.0),\nmagrittr, rmarkdown, testthat (>= 3.0.0), tidyselect, withr", + "Config/Needs/website": "progressr", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Packaged": "2022-08-15 19:00:06 UTC; davis", + "Author": "Davis Vaughan [aut, cre],\n Matt Dancho [aut],\n RStudio [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN", + "Date/Publication": "2022-08-15 19:40:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:16 UTC; unix" + } + }, + "future": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "future", + "Version": "1.34.0", + "Title": "Unified Parallel and Distributed Processing in R for Everyone", + "Imports": "digest, globals (>= 0.16.1), listenv (>= 0.8.0), parallel,\nparallelly (>= 1.38.0), utils", + "Suggests": "methods, RhpcBLASctl, R.rsp, markdown", + "VignetteBuilder": "R.rsp", + "Authors@R": "c(person(\"Henrik\", \"Bengtsson\",\n role = c(\"aut\", \"cre\", \"cph\"),\n email = \"henrikb@braju.com\",\n comment = c(ORCID = \"0000-0002-7579-5165\")))", + "Description": "The purpose of this package is to provide a lightweight and\n unified Future API for sequential and parallel processing of R\n expression via futures. The simplest way to evaluate an expression\n in parallel is to use `x %<-% { expression }` with `plan(multisession)`.\n This package implements sequential, multicore, multisession, and\n cluster futures. With these, R expressions can be evaluated on the\n local machine, in parallel a set of local machines, or distributed\n on a mix of local and remote machines.\n Extensions to this package implement additional backends for\n processing futures via compute cluster schedulers, etc.\n Because of its unified API, there is no need to modify any code in order\n switch from sequential on the local machine to, say, distributed\n processing on a remote compute cluster.\n Another strength of this package is that global variables and functions\n are automatically identified and exported as needed, making it\n straightforward 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", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2024-07-29 15:02:12 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph]\n ()", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN", + "Date/Publication": "2024-07-29 16:50:05 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:14 UTC; unix" + } + }, + "future.apply": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "future.apply", + "Version": "1.11.3", + "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\",\n role = c(\"aut\", \"cre\", \"cph\"),\n email = \"henrikb@braju.com\",\n comment = c(ORCID = \"0000-0002-7579-5165\")),\n person(\"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/futureverse/future.apply", + "BugReports": "https://github.com/futureverse/future.apply/issues", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2024-10-27 17:30:11 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph]\n (),\n R Core Team [cph, ctb]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN", + "Date/Publication": "2024-10-27 18:50:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:17 UTC; unix" + } + }, + "generics": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "generics", + "Title": "Common S3 Generics not Provided by Base R Methods Related to\nModel Fitting", + "Version": "0.1.3", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")),\n person(\"Max\", \"Kuhn\", , \"max@rstudio.com\", role = \"aut\"),\n person(\"Davis\", \"Vaughan\", , \"davis@rstudio.com\", role = \"aut\"),\n person(\"RStudio\", role = \"cph\")\n )", + "Description": "In order to reduce potential package dependencies and\n conflicts, 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],\n Max Kuhn [aut],\n Davis Vaughan [aut],\n RStudio [cph]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2022-07-05 19:40:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:49:57 UTC; unix" + } + }, + "ggplot2": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "ggplot2", + "Version": "3.5.1", + "Title": "Create Elegant Data Visualisations Using the Grammar of Graphics", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Winston\", \"Chang\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Lionel\", \"Henry\", role = \"aut\"),\n person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-5147-4711\")),\n person(\"Kohske\", \"Takahashi\", role = \"aut\"),\n person(\"Claus\", \"Wilke\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-7470-9261\")),\n person(\"Kara\", \"Woo\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-5125-4188\")),\n person(\"Hiroaki\", \"Yutani\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-3385-7233\")),\n person(\"Dewey\", \"Dunnington\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-9415-4582\")),\n person(\"Teun\", \"van den Brand\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-9335-7468\")),\n person(\"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "A system for 'declaratively' creating graphics, based on \"The\n Grammar of Graphics\". You provide the data, tell 'ggplot2' how to map\n variables to aesthetics, what graphical primitives to use, and it\n takes 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.5)", + "Imports": "cli, glue, grDevices, grid, gtable (>= 0.1.1), isoband,\nlifecycle (> 1.0.1), MASS, mgcv, rlang (>= 1.1.0), scales (>=\n1.3.0), stats, tibble, vctrs (>= 0.6.0), withr (>= 2.5.0)", + "Suggests": "covr, dplyr, ggplot2movies, hexbin, Hmisc, knitr, mapproj,\nmaps, multcomp, munsell, nlme, profvis, quantreg, ragg (>=\n1.2.6), RColorBrewer, rmarkdown, rpart, sf (>= 0.7-3), svglite\n(>= 2.1.2), testthat (>= 3.1.2), vdiffr (>= 1.0.6), xml2", + "Enhances": "sp", + "VignetteBuilder": "knitr", + "Config/Needs/website": "ggtext, tidyr, forcats, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.1", + "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-radial.R' 'coord-sf.R'\n'coord-transform.R' 'data.R' 'docs_layer.R' 'facet-.R'\n'facet-grid-.R' 'facet-null.R' 'facet-wrap.R' 'fortify-lm.R'\n'fortify-map.R' 'fortify-multcomp.R' 'fortify-spatial.R'\n'fortify.R' 'stat-.R' 'geom-abline.R' 'geom-rect.R'\n'geom-bar.R' 'geom-bin2d.R' 'geom-blank.R' 'geom-boxplot.R'\n'geom-col.R' 'geom-path.R' 'geom-contour.R' 'geom-count.R'\n'geom-crossbar.R' 'geom-segment.R' 'geom-curve.R'\n'geom-defaults.R' 'geom-ribbon.R' 'geom-density.R'\n'geom-density2d.R' 'geom-dotplot.R' 'geom-errorbar.R'\n'geom-errorbarh.R' 'geom-freqpoly.R' 'geom-function.R'\n'geom-hex.R' 'geom-histogram.R' 'geom-hline.R' 'geom-jitter.R'\n'geom-label.R' 'geom-linerange.R' 'geom-point.R'\n'geom-pointrange.R' 'geom-quantile.R' 'geom-rug.R' 'geom-sf.R'\n'geom-smooth.R' 'geom-spoke.R' 'geom-text.R' 'geom-tile.R'\n'geom-violin.R' 'geom-vline.R' 'ggplot2-package.R'\n'grob-absolute.R' 'grob-dotstack.R' 'grob-null.R' 'grouping.R'\n'theme-elements.R' 'guide-.R' 'guide-axis.R'\n'guide-axis-logticks.R' 'guide-axis-stack.R'\n'guide-axis-theta.R' 'guide-legend.R' 'guide-bins.R'\n'guide-colorbar.R' 'guide-colorsteps.R' 'guide-custom.R'\n'layer.R' 'guide-none.R' 'guide-old.R' 'guides-.R'\n'guides-grid.R' 'hexbin.R' 'import-standalone-obj-type.R'\n'import-standalone-types-check.R' 'labeller.R' 'labels.R'\n'layer-sf.R' 'layout.R' 'limits.R' 'margins.R' 'performance.R'\n'plot-build.R' 'plot-construction.R' 'plot-last.R' 'plot.R'\n'position-.R' 'position-collide.R' 'position-dodge.R'\n'position-dodge2.R' 'position-identity.R' 'position-jitter.R'\n'position-jitterdodge.R' 'position-nudge.R' 'position-stack.R'\n'quick-plot.R' 'reshape-add-margins.R' 'save.R' 'scale-.R'\n'scale-alpha.R' 'scale-binned.R' 'scale-brewer.R'\n'scale-colour.R' 'scale-continuous.R' 'scale-date.R'\n'scale-discrete-.R' 'scale-expansion.R' 'scale-gradient.R'\n'scale-grey.R' 'scale-hue.R' 'scale-identity.R'\n'scale-linetype.R' 'scale-linewidth.R' 'scale-manual.R'\n'scale-shape.R' 'scale-size.R' 'scale-steps.R' 'scale-type.R'\n'scale-view.R' 'scale-viridis.R' 'scales-.R' 'stat-align.R'\n'stat-bin.R' 'stat-bin2d.R' 'stat-bindot.R' 'stat-binhex.R'\n'stat-boxplot.R' 'stat-contour.R' 'stat-count.R'\n'stat-density-2d.R' 'stat-density.R' 'stat-ecdf.R'\n'stat-ellipse.R' 'stat-function.R' 'stat-identity.R'\n'stat-qq-line.R' 'stat-qq.R' 'stat-quantilemethods.R'\n'stat-sf-coordinates.R' 'stat-sf.R' 'stat-smooth-methods.R'\n'stat-smooth.R' 'stat-sum.R' 'stat-summary-2d.R'\n'stat-summary-bin.R' 'stat-summary-hex.R' 'stat-summary.R'\n'stat-unique.R' 'stat-ydensity.R' 'summarise-plot.R'\n'summary.R' 'theme.R' 'theme-defaults.R' 'theme-current.R'\n'utilities-break.R' 'utilities-grid.R' 'utilities-help.R'\n'utilities-matrix.R' 'utilities-patterns.R'\n'utilities-resolution.R' 'utilities-tidy-eval.R' 'zxx.R'\n'zzz.R'", + "NeedsCompilation": "no", + "Packaged": "2024-04-22 10:39:16 UTC; thomas", + "Author": "Hadley Wickham [aut] (),\n Winston Chang [aut] (),\n Lionel Henry [aut],\n Thomas Lin Pedersen [aut, cre]\n (),\n Kohske Takahashi [aut],\n Claus Wilke [aut] (),\n Kara Woo [aut] (),\n Hiroaki Yutani [aut] (),\n Dewey Dunnington [aut] (),\n Teun van den Brand [aut] (),\n Posit, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN", + "Date/Publication": "2024-04-23 08:00:08 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:54:29 UTC; unix" + } + }, + "globals": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "globals", + "Version": "0.16.3", + "Depends": "R (>= 3.1.2)", + "Imports": "codetools", + "Title": "Identify Global Objects in R Expressions", + "Authors@R": "c(\n person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\n email=\"henrikb@braju.com\"),\n person(\"Davis\",\"Vaughan\", role=\"ctb\",\n email=\"davis@rstudio.com\"))", + "Description": "Identifies global (\"unknown\" or \"free\") objects in R expressions\n by code inspection using various strategies (ordered, liberal, or\n conservative). The objective of this package is to make it as simple as\n possible to identify global objects for the purpose of exporting them in\n parallel, 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.3.1", + "NeedsCompilation": "no", + "Packaged": "2024-03-07 23:38:30 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph],\n Davis Vaughan [ctb]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN", + "Date/Publication": "2024-03-08 00:00:03 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:11 UTC; unix" + } + }, + "glue": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "glue", + "Title": "Interpreted String Literals", + "Version": "1.8.0", + "Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-6983-2759\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "An implementation of interpreted string literals, inspired by\n Python's Literal String Interpolation\n and Docstrings\n and Julia's Triple-Quoted\n String Literals\n .", + "License": "MIT + file LICENSE", + "URL": "https://glue.tidyverse.org/, https://github.com/tidyverse/glue", + "BugReports": "https://github.com/tidyverse/glue/issues", + "Depends": "R (>= 3.6)", + "Imports": "methods", + "Suggests": "crayon, DBI (>= 1.2.0), dplyr, knitr, magrittr, rlang,\nrmarkdown, RSQLite, testthat (>= 3.2.0), vctrs (>= 0.3.0),\nwaldo (>= 0.5.3), withr", + "VignetteBuilder": "knitr", + "ByteCompile": "true", + "Config/Needs/website": "bench, forcats, ggbeeswarm, ggplot2, R.utils,\nrprintf, tidyr, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Packaged": "2024-09-27 16:00:45 UTC; jenny", + "Author": "Jim Hester [aut] (),\n Jennifer Bryan [aut, cre] (),\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN", + "Date/Publication": "2024-09-30 22:30:01 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:34 UTC; unix" + } + }, + "gower": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "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 \n the top-n matches between records. Core algorithms are executed in parallel on systems\n supporting OpenMP.", + "Version": "1.0.2", + "URL": "https://github.com/markvanderloo/gower", + "BugReports": "https://github.com/markvanderloo/gower/issues", + "Suggests": "tinytest (>= 0.9.3),", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Packaged": "2024-12-16 15:36:14 UTC; mark", + "Author": "Mark van der Loo [aut, cre],\n David Turner [ctb]", + "Repository": "CRAN", + "Date/Publication": "2024-12-17 08:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:18 UTC; unix" + } + }, + "gtable": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "gtable", + "Title": "Arrange 'Grobs' in Tables", + "Version": "0.3.6", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Tools to make it easier to work with \"tables\" of 'grobs'. The\n 'gtable' package defines a 'gtable' grob class that specifies a grid\n along with a list of grobs and their placement in the grid. Further\n the package makes it easy to manipulate and combine 'gtable' objects\n so that complex compositions can be built up sequentially.", + "License": "MIT + file LICENSE", + "URL": "https://gtable.r-lib.org, https://github.com/r-lib/gtable", + "BugReports": "https://github.com/r-lib/gtable/issues", + "Depends": "R (>= 4.0)", + "Imports": "cli, glue, grid, lifecycle, rlang (>= 1.1.0), stats", + "Suggests": "covr, ggplot2, knitr, profvis, rmarkdown, testthat (>= 3.0.0)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2024-10-25", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2024-10-25 12:42:05 UTC; thomas", + "Author": "Hadley Wickham [aut],\n Thomas Lin Pedersen [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN", + "Date/Publication": "2024-10-25 13:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:54:26 UTC; unix" + } + }, + "hardhat": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "hardhat", + "Title": "Construct Modeling Packages", + "Version": "1.4.1", + "Authors@R": "c(\n person(\"Hannah\", \"Frick\", , \"hannah@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-6049-5258\")),\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"),\n person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Building modeling packages is hard. A large amount of effort\n generally goes into providing an implementation for a new method that\n is efficient, fast, and correct, but often less emphasis is put on the\n user interface. A good interface requires specialized knowledge about\n S3 methods and formulas, which the average package developer might not\n have. The goal of 'hardhat' is to reduce the burden around building\n new modeling packages by providing functionality for preprocessing,\n predicting, 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), sparsevctrs\n(>= 0.2.0), tibble (>= 3.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), withr (>= 3.0.0)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2025-01-29 15:09:25 UTC; hannah", + "Author": "Hannah Frick [aut, cre] (),\n Davis Vaughan [aut],\n Max Kuhn [aut],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Hannah Frick ", + "Repository": "CRAN", + "Date/Publication": "2025-01-31 15:20:05 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:20 UTC; unix" + } + }, + "here": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "here", + "Title": "A Simpler Way to Find Your Files", + "Version": "1.0.1", + "Date": "2020-12-13", + "Authors@R": "\n c(person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = c(\"aut\", \"cre\"),\n email = \"krlmlr+r@mailbox.org\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"Jennifer\",\n family = \"Bryan\",\n role = \"ctb\",\n email = \"jenny@rstudio.com\",\n comment = c(ORCID = \"0000-0002-6983-2759\")))", + "Description": "Constructs paths to your project's files.\n Declare the relative path of a file within your project with 'i_am()'.\n Use the 'here()' function as a drop-in replacement for 'file.path()',\n it 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] (),\n Jennifer Bryan [ctb] ()", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN", + "Date/Publication": "2020-12-13 07:30:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:22 UTC; unix" + } + }, + "highr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "highr", + "Type": "Package", + "Title": "Syntax Highlighting for R Source Code", + "Version": "0.11", + "Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Yixuan\", \"Qiu\", role = \"aut\"),\n person(\"Christopher\", \"Gandrud\", role = \"ctb\"),\n person(\"Qiang\", \"Li\", role = \"ctb\")\n )", + "Description": "Provides syntax highlighting for R source code. Currently it\n supports LaTeX and HTML output. Source code of other languages is supported\n via 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.3.1", + "NeedsCompilation": "no", + "Packaged": "2024-05-26 19:27:21 UTC; yihui", + "Author": "Yihui Xie [aut, cre] (),\n Yixuan Qiu [aut],\n Christopher Gandrud [ctb],\n Qiang Li [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN", + "Date/Publication": "2024-05-26 20:00:03 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:48:49 UTC; unix" + } + }, + "hms": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "hms", + "Title": "Pretty Time of Day", + "Date": "2023-03-21", + "Version": "1.1.3", + "Authors@R": "c(\n person(\"Kirill\", \"Müller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(\"R Consortium\", role = \"fnd\"),\n person(\"RStudio\", role = \"fnd\")\n )", + "Description": "Implements an S3 class for storing and formatting time-of-day\n values, 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] (),\n R Consortium [fnd],\n RStudio [fnd]", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN", + "Date/Publication": "2023-03-21 18:10:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:23 UTC; unix" + } + }, + "htmltools": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "htmltools", + "Title": "Tools for HTML", + "Version": "0.5.8.1", + "Authors@R": "c(\n person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"),\n person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Yihui\", \"Xie\", , \"yihui@posit.co\", role = \"aut\"),\n person(\"Jeff\", \"Allen\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Tools for HTML generation and output.", + "License": "GPL (>= 2)", + "URL": "https://github.com/rstudio/htmltools,\nhttps://rstudio.github.io/htmltools/", + "BugReports": "https://github.com/rstudio/htmltools/issues", + "Depends": "R (>= 2.14.1)", + "Imports": "base64enc, digest, fastmap (>= 1.1.0), grDevices, rlang (>=\n1.0.0), utils", + "Suggests": "Cairo, markdown, ragg, shiny, testthat, withr", + "Enhances": "knitr", + "Config/Needs/check": "knitr", + "Config/Needs/website": "rstudio/quillt, bench", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "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'", + "NeedsCompilation": "yes", + "Packaged": "2024-04-02 14:26:15 UTC; cpsievert", + "Author": "Joe Cheng [aut],\n Carson Sievert [aut, cre] (),\n Barret Schloerke [aut] (),\n Winston Chang [aut] (),\n Yihui Xie [aut],\n Jeff Allen [aut],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN", + "Date/Publication": "2024-04-04 05:03:00 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:21 UTC; unix" + } + }, + "htmlwidgets": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "htmlwidgets", + "Title": "HTML Widgets for R", + "Version": "1.6.4", + "Authors@R": "c(\n person(\"Ramnath\", \"Vaidyanathan\", role = c(\"aut\", \"cph\")),\n person(\"Yihui\", \"Xie\", role = \"aut\"),\n person(\"JJ\", \"Allaire\", role = \"aut\"),\n person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"),\n person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Kenton\", \"Russell\", role = c(\"aut\", \"cph\")),\n person(\"Ellis\", \"Hughes\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "A framework for creating HTML widgets that render in various\n contexts including the R console, 'R Markdown' documents, and 'Shiny'\n web applications.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/ramnathv/htmlwidgets", + "BugReports": "https://github.com/ramnathv/htmlwidgets/issues", + "Imports": "grDevices, htmltools (>= 0.5.7), jsonlite (>= 0.9.16), knitr\n(>= 1.8), rmarkdown, yaml", + "Suggests": "testthat", + "Enhances": "shiny (>= 1.1)", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-12-06 00:11:16 UTC; cpsievert", + "Author": "Ramnath Vaidyanathan [aut, cph],\n Yihui Xie [aut],\n JJ Allaire [aut],\n Joe Cheng [aut],\n Carson Sievert [aut, cre] (),\n Kenton Russell [aut, cph],\n Ellis Hughes [ctb],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN", + "Date/Publication": "2023-12-06 06:00:06 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:53:19 UTC; unix" + } + }, + "httpuv": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "httpuv", + "Title": "HTTP and WebSocket Server Library", + "Version": "1.6.15", + "Authors@R": "c(\n person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"),\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit, PBC\", \"fnd\", role = \"cph\"),\n person(\"Hector\", \"Corrada Bravo\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Andrzej\", \"Krzemienski\", role = \"cph\",\n comment = \"optional.hpp\"),\n person(\"libuv project contributors\", role = \"cph\",\n comment = \"libuv library, see src/libuv/AUTHORS file\"),\n person(\"Joyent, Inc. and other Node contributors\", role = \"cph\",\n comment = \"libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file\"),\n person(\"Niels\", \"Provos\", role = \"cph\",\n comment = \"libuv subcomponent: tree.h\"),\n person(\"Internet Systems Consortium, Inc.\", role = \"cph\",\n comment = \"libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c\"),\n person(\"Alexander\", \"Chemeris\", role = \"cph\",\n comment = \"libuv subcomponent: stdint-msvc2008.h (from msinttypes)\"),\n person(\"Google, Inc.\", role = \"cph\",\n comment = \"libuv subcomponent: pthread-fixes.c\"),\n person(\"Sony Mobile Communcations AB\", role = \"cph\",\n comment = \"libuv subcomponent: pthread-fixes.c\"),\n person(\"Berkeley Software Design Inc.\", role = \"cph\",\n comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"),\n person(\"Kenneth\", \"MacKay\", role = \"cph\",\n comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"),\n person(\"Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016)\", role = \"cph\",\n comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"),\n person(\"Steve\", \"Reid\", role = \"aut\",\n comment = \"SHA-1 implementation\"),\n person(\"James\", \"Brown\", role = \"aut\",\n comment = \"SHA-1 implementation\"),\n person(\"Bob\", \"Trower\", role = \"aut\",\n comment = \"base64 implementation\"),\n person(\"Alexander\", \"Peslyak\", role = \"aut\",\n comment = \"MD5 implementation\"),\n person(\"Trantor Standard Systems\", role = \"cph\",\n comment = \"base64 implementation\"),\n person(\"Igor\", \"Sysoev\", role = \"cph\",\n comment = \"http-parser\")\n )", + "Description": "Provides low-level socket and protocol support for handling\n HTTP and WebSocket requests directly from within R. It is primarily\n intended as a building block for other packages, rather than making it\n particularly easy to create complete web applications using httpuv\n alone. httpuv is built on top of the libuv and http-parser C\n libraries, both of which were developed by Joyent, Inc. (See LICENSE\n file for libuv and http-parser license information.)", + "License": "GPL (>= 2) | file LICENSE", + "URL": "https://github.com/rstudio/httpuv", + "BugReports": "https://github.com/rstudio/httpuv/issues", + "Depends": "R (>= 2.15.1)", + "Imports": "later (>= 0.8.0), promises, R6, Rcpp (>= 1.0.7), utils", + "Suggests": "callr, curl, testthat, websocket", + "LinkingTo": "later, Rcpp", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "SystemRequirements": "GNU make, zlib", + "Collate": "'RcppExports.R' 'httpuv.R' 'random_port.R' 'server.R'\n'staticServer.R' 'static_paths.R' 'utils.R'", + "NeedsCompilation": "yes", + "Packaged": "2024-03-25 21:06:08 UTC; cpsievert", + "Author": "Joe Cheng [aut],\n Winston Chang [aut, cre],\n Posit, PBC fnd [cph],\n Hector Corrada Bravo [ctb],\n Jeroen Ooms [ctb],\n Andrzej Krzemienski [cph] (optional.hpp),\n libuv project contributors [cph] (libuv library, see src/libuv/AUTHORS\n file),\n Joyent, Inc. and other Node contributors [cph] (libuv library, see\n src/libuv/AUTHORS file; and http-parser library, see\n src/http-parser/AUTHORS file),\n Niels Provos [cph] (libuv subcomponent: tree.h),\n Internet Systems Consortium, Inc. [cph] (libuv subcomponent: inet_pton\n and inet_ntop, contained in src/libuv/src/inet.c),\n Alexander Chemeris [cph] (libuv subcomponent: stdint-msvc2008.h (from\n msinttypes)),\n Google, Inc. [cph] (libuv subcomponent: pthread-fixes.c),\n Sony Mobile Communcations AB [cph] (libuv subcomponent:\n pthread-fixes.c),\n Berkeley Software Design Inc. [cph] (libuv subcomponent:\n android-ifaddrs.h, android-ifaddrs.c),\n Kenneth MacKay [cph] (libuv subcomponent: android-ifaddrs.h,\n android-ifaddrs.c),\n Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016) [cph]\n (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c),\n Steve Reid [aut] (SHA-1 implementation),\n James Brown [aut] (SHA-1 implementation),\n Bob Trower [aut] (base64 implementation),\n Alexander Peslyak [aut] (MD5 implementation),\n Trantor Standard Systems [cph] (base64 implementation),\n Igor Sysoev [cph] (http-parser)", + "Maintainer": "Winston Chang ", + "Repository": "CRAN", + "Date/Publication": "2024-03-26 05:50:06 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:53:20 UTC; unix" + } + }, + "httr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "httr", + "Title": "Tools for Working with URLs and HTTP", + "Version": "1.4.7", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"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\n additional request components (authenticate(), add_headers() and so\n on).", + "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],\n Posit, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2023-08-15 09:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:52:48 UTC; unix" + } + }, + "imola": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "imola", + "Type": "Package", + "Title": "CSS Layouts (Grid and Flexbox) Implementation for R/Shiny", + "Version": "0.5.0", + "Authors@R": "person(\"Pedro\", \"Silva\", email = \"pedrocoutinhosilva@gmail.com\",\n role = c(\"aut\", \"cre\"))", + "Description": "Allows easy creation of CSS layouts (grid and flexbox)\n directly from R without added CSS.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/pedrocoutinhosilva/imola", + "Encoding": "UTF-8", + "VignetteBuilder": "knitr", + "Imports": "shiny, htmltools, magrittr, stringi, glue, yaml", + "Suggests": "testthat (>= 3.0.0), rvest, devtools, covr, rmarkdown, knitr", + "RoxygenNote": "7.1.2", + "Config/testthat/edition": "3", + "Language": "en-US", + "NeedsCompilation": "no", + "Packaged": "2022-04-10 17:12:00 UTC; spark", + "Author": "Pedro Silva [aut, cre]", + "Maintainer": "Pedro Silva ", + "Repository": "CRAN", + "Date/Publication": "2022-04-19 09:32:30 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:24 UTC; unix" + } + }, + "ipred": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "ipred", + "Title": "Improved Predictors", + "Version": "0.9-15", + "Date": "2024-07-18", + "Authors@R": "c(person(\"Andrea\", \"Peters\", role = \"aut\"),\n person(\"Torsten\", \"Hothorn\", role = c(\"aut\", \"cre\"),\n email = \"Torsten.Hothorn@R-project.org\"),\n person(\"Brian D.\", \"Ripley\", role = \"ctb\"),\n person(\"Terry\", \"Therneau\", role = \"ctb\"), \n person(\"Beth\", \"Atkinson\", role = \"ctb\"))", + "Description": "Improved predictive models by indirect classification and\n bagging for classification, regression and survival problems \n as 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": "2024-07-18 11:48:25 UTC; hothorn", + "Author": "Andrea Peters [aut],\n Torsten Hothorn [aut, cre],\n Brian D. Ripley [ctb],\n Terry Therneau [ctb],\n Beth Atkinson [ctb]", + "Maintainer": "Torsten Hothorn ", + "Repository": "CRAN", + "Date/Publication": "2024-07-18 13:00:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:40 UTC; unix" + } + }, + "isoband": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "isoband", + "Title": "Generate Isolines and Isobands from Regularly Spaced Elevation\nGrids", + "Version": "0.2.7", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Claus O.\", \"Wilke\", , \"wilke@austin.utexas.edu\", role = \"aut\",\n comment = c(\"Original author\", ORCID = \"0000-0002-7470-9261\")),\n person(\"Thomas Lin\", \"Pedersen\", , \"thomasp85@gmail.com\", role = \"aut\",\n comment = 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\n containing 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] (),\n Claus O. Wilke [aut] (Original author,\n ),\n Thomas Lin Pedersen [aut] ()", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2022-12-20 10:00:13 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:27 UTC; unix" + } + }, + "jquerylib": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "jquerylib", + "Title": "Obtain 'jQuery' as an HTML Dependency Object", + "Version": "0.1.4", + "Authors@R": "c(\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"),\n person(family = \"RStudio\", role = \"cph\"),\n person(family = \"jQuery Foundation\", role = \"cph\",\n comment = \"jQuery library and jQuery UI library\"),\n person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"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').\n Most 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] (),\n Joe Cheng [aut],\n RStudio [cph],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/lib/jquery-AUTHORS.txt)", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN", + "Date/Publication": "2021-04-26 17:10:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:50:23 UTC; unix" + } + }, + "jsonlite": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "jsonlite", + "Version": "1.8.9", + "Title": "A Simple and Robust JSON Parser and Generator for R", + "License": "MIT + file LICENSE", + "Depends": "methods", + "Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Duncan\", \"Temple Lang\", role = \"ctb\"),\n person(\"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 \n data and the web. Offers simple, flexible tools for working with JSON in R, and\n is particularly powerful for building pipelines and interacting with a web API. \n The implementation is based on the mapping described in the vignette (Ooms, 2014).\n In addition to converting JSON data from/to R objects, 'jsonlite' contains \n functions to stream, validate, and prettify JSON data. The unit tests included \n with the package verify that all edge cases are encoded and decoded consistently \n for 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": "2024-09-19 15:41:06 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (),\n Duncan Temple Lang [ctb],\n Lloyd Hilaiel [cph] (author of bundled libyajl)", + "Repository": "CRAN", + "Date/Publication": "2024-09-20 08:40:14 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:24 UTC; unix" + } + }, + "knitr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "knitr", + "Type": "Package", + "Title": "A General-Purpose Package for Dynamic Report Generation in R", + "Version": "1.49", + "Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Abhraneel\", \"Sarma\", role = \"ctb\"),\n person(\"Adam\", \"Vogt\", role = \"ctb\"),\n person(\"Alastair\", \"Andrew\", role = \"ctb\"),\n person(\"Alex\", \"Zvoleff\", role = \"ctb\"),\n person(\"Amar\", \"Al-Zubaidi\", role = \"ctb\"),\n person(\"Andre\", \"Simon\", role = \"ctb\", comment = \"the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de\"),\n person(\"Aron\", \"Atkins\", role = \"ctb\"),\n person(\"Aaron\", \"Wolen\", role = \"ctb\"),\n person(\"Ashley\", \"Manton\", role = \"ctb\"),\n person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")),\n person(\"Ben\", \"Baumer\", role = \"ctb\"),\n person(\"Brian\", \"Diggs\", role = \"ctb\"),\n person(\"Brian\", \"Zhang\", role = \"ctb\"),\n person(\"Bulat\", \"Yapparov\", role = \"ctb\"),\n person(\"Cassio\", \"Pereira\", role = \"ctb\"),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\"),\n person(\"David\", \"Hall\", role = \"ctb\"),\n person(\"David\", \"Hugh-Jones\", role = \"ctb\"),\n person(\"David\", \"Robinson\", role = \"ctb\"),\n person(\"Doug\", \"Hemken\", role = \"ctb\"),\n person(\"Duncan\", \"Murdoch\", role = \"ctb\"),\n person(\"Elio\", \"Campitelli\", role = \"ctb\"),\n person(\"Ellis\", \"Hughes\", role = \"ctb\"),\n person(\"Emily\", \"Riederer\", role = \"ctb\"),\n person(\"Fabian\", \"Hirschmann\", role = \"ctb\"),\n person(\"Fitch\", \"Simeon\", role = \"ctb\"),\n person(\"Forest\", \"Fang\", role = \"ctb\"),\n person(c(\"Frank\", \"E\", \"Harrell\", \"Jr\"), role = \"ctb\", comment = \"the Sweavel package at inst/misc/Sweavel.sty\"),\n person(\"Garrick\", \"Aden-Buie\", role = \"ctb\"),\n person(\"Gregoire\", \"Detrez\", role = \"ctb\"),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Hao\", \"Zhu\", role = \"ctb\"),\n person(\"Heewon\", \"Jeon\", role = \"ctb\"),\n person(\"Henrik\", \"Bengtsson\", role = \"ctb\"),\n person(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\n person(\"Ian\", \"Lyttle\", role = \"ctb\"),\n person(\"Hodges\", \"Daniel\", role = \"ctb\"),\n person(\"Jacob\", \"Bien\", role = \"ctb\"),\n person(\"Jake\", \"Burkhead\", role = \"ctb\"),\n person(\"James\", \"Manton\", role = \"ctb\"),\n person(\"Jared\", \"Lander\", role = \"ctb\"),\n person(\"Jason\", \"Punyon\", role = \"ctb\"),\n person(\"Javier\", \"Luraschi\", role = \"ctb\"),\n person(\"Jeff\", \"Arnold\", role = \"ctb\"),\n person(\"Jenny\", \"Bryan\", role = \"ctb\"),\n person(\"Jeremy\", \"Ashkenas\", role = c(\"ctb\", \"cph\"), comment = \"the CSS file at inst/misc/docco-classic.css\"),\n person(\"Jeremy\", \"Stephens\", role = \"ctb\"),\n person(\"Jim\", \"Hester\", role = \"ctb\"),\n person(\"Joe\", \"Cheng\", role = \"ctb\"),\n person(\"Johannes\", \"Ranke\", role = \"ctb\"),\n person(\"John\", \"Honaker\", role = \"ctb\"),\n person(\"John\", \"Muschelli\", role = \"ctb\"),\n person(\"Jonathan\", \"Keane\", role = \"ctb\"),\n person(\"JJ\", \"Allaire\", role = \"ctb\"),\n person(\"Johan\", \"Toloe\", role = \"ctb\"),\n person(\"Jonathan\", \"Sidi\", role = \"ctb\"),\n person(\"Joseph\", \"Larmarange\", role = \"ctb\"),\n person(\"Julien\", \"Barnier\", role = \"ctb\"),\n person(\"Kaiyin\", \"Zhong\", role = \"ctb\"),\n person(\"Kamil\", \"Slowikowski\", role = \"ctb\"),\n person(\"Karl\", \"Forner\", role = \"ctb\"),\n person(c(\"Kevin\", \"K.\"), \"Smith\", role = \"ctb\"),\n person(\"Kirill\", \"Mueller\", role = \"ctb\"),\n person(\"Kohske\", \"Takahashi\", role = \"ctb\"),\n person(\"Lorenz\", \"Walthert\", role = \"ctb\"),\n person(\"Lucas\", \"Gallindo\", role = \"ctb\"),\n person(\"Marius\", \"Hofert\", role = \"ctb\"),\n person(\"Martin\", \"Modrák\", role = \"ctb\"),\n person(\"Michael\", \"Chirico\", role = \"ctb\"),\n person(\"Michael\", \"Friendly\", role = \"ctb\"),\n person(\"Michal\", \"Bojanowski\", role = \"ctb\"),\n person(\"Michel\", \"Kuhlmann\", role = \"ctb\"),\n person(\"Miller\", \"Patrick\", role = \"ctb\"),\n person(\"Nacho\", \"Caballero\", role = \"ctb\"),\n person(\"Nick\", \"Salkowski\", role = \"ctb\"),\n person(\"Niels Richard\", \"Hansen\", role = \"ctb\"),\n person(\"Noam\", \"Ross\", role = \"ctb\"),\n person(\"Obada\", \"Mahdi\", role = \"ctb\"),\n person(\"Pavel N.\", \"Krivitsky\", role = \"ctb\", comment=c(ORCID = \"0000-0002-9101-3362\")),\n person(\"Pedro\", \"Faria\", role = \"ctb\"),\n person(\"Qiang\", \"Li\", role = \"ctb\"),\n person(\"Ramnath\", \"Vaidyanathan\", role = \"ctb\"),\n person(\"Richard\", \"Cotton\", role = \"ctb\"),\n person(\"Robert\", \"Krzyzanowski\", role = \"ctb\"),\n person(\"Rodrigo\", \"Copetti\", role = \"ctb\"),\n person(\"Romain\", \"Francois\", role = \"ctb\"),\n person(\"Ruaridh\", \"Williamson\", role = \"ctb\"),\n person(\"Sagiru\", \"Mati\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1413-3974\")),\n person(\"Scott\", \"Kostyshak\", role = \"ctb\"),\n person(\"Sebastian\", \"Meyer\", role = \"ctb\"),\n person(\"Sietse\", \"Brouwer\", role = \"ctb\"),\n person(c(\"Simon\", \"de\"), \"Bernard\", role = \"ctb\"),\n person(\"Sylvain\", \"Rousseau\", role = \"ctb\"),\n person(\"Taiyun\", \"Wei\", role = \"ctb\"),\n person(\"Thibaut\", \"Assus\", role = \"ctb\"),\n person(\"Thibaut\", \"Lamadon\", role = \"ctb\"),\n person(\"Thomas\", \"Leeper\", role = \"ctb\"),\n person(\"Tim\", \"Mastny\", role = \"ctb\"),\n person(\"Tom\", \"Torsney-Weir\", role = \"ctb\"),\n person(\"Trevor\", \"Davis\", role = \"ctb\"),\n person(\"Viktoras\", \"Veitas\", role = \"ctb\"),\n person(\"Weicheng\", \"Zhu\", role = \"ctb\"),\n person(\"Wush\", \"Wu\", role = \"ctb\"),\n person(\"Zachary\", \"Foster\", role = \"ctb\"),\n person(\"Zhian N.\", \"Kamvar\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1458-7108\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Provides a general-purpose tool for dynamic report generation in R\n using Literate Programming techniques.", + "Depends": "R (>= 3.6.0)", + "Imports": "evaluate (>= 0.15), highr (>= 0.11), methods, tools, xfun (>=\n0.48), yaml (>= 2.1.19)", + "Suggests": "bslib, codetools, DBI (>= 0.4-1), digest, formatR, gifski,\ngridSVG, htmlwidgets (>= 0.7), jpeg, JuliaCall (>= 0.11.1),\nmagick, litedown, 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", + "License": "GPL", + "URL": "https://yihui.org/knitr/", + "BugReports": "https://github.com/yihui/knitr/issues", + "Encoding": "UTF-8", + "VignetteBuilder": "litedown, 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.3.2", + "NeedsCompilation": "no", + "Packaged": "2024-11-06 23:10:53 UTC; runner", + "Author": "Yihui Xie [aut, cre] (),\n Abhraneel Sarma [ctb],\n Adam Vogt [ctb],\n Alastair Andrew [ctb],\n Alex Zvoleff [ctb],\n Amar Al-Zubaidi [ctb],\n Andre Simon [ctb] (the CSS files under inst/themes/ were derived from\n the Highlight package http://www.andre-simon.de),\n Aron Atkins [ctb],\n Aaron Wolen [ctb],\n Ashley Manton [ctb],\n Atsushi Yasumoto [ctb] (),\n Ben Baumer [ctb],\n Brian Diggs [ctb],\n Brian Zhang [ctb],\n Bulat Yapparov [ctb],\n Cassio Pereira [ctb],\n Christophe Dervieux [ctb],\n David Hall [ctb],\n David Hugh-Jones [ctb],\n David Robinson [ctb],\n Doug Hemken [ctb],\n Duncan Murdoch [ctb],\n Elio Campitelli [ctb],\n Ellis Hughes [ctb],\n Emily Riederer [ctb],\n Fabian Hirschmann [ctb],\n Fitch Simeon [ctb],\n Forest Fang [ctb],\n Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty),\n Garrick Aden-Buie [ctb],\n Gregoire Detrez [ctb],\n Hadley Wickham [ctb],\n Hao Zhu [ctb],\n Heewon Jeon [ctb],\n Henrik Bengtsson [ctb],\n Hiroaki Yutani [ctb],\n Ian Lyttle [ctb],\n Hodges Daniel [ctb],\n Jacob Bien [ctb],\n Jake Burkhead [ctb],\n James Manton [ctb],\n Jared Lander [ctb],\n Jason Punyon [ctb],\n Javier Luraschi [ctb],\n Jeff Arnold [ctb],\n Jenny Bryan [ctb],\n Jeremy Ashkenas [ctb, cph] (the CSS file at\n inst/misc/docco-classic.css),\n Jeremy Stephens [ctb],\n Jim Hester [ctb],\n Joe Cheng [ctb],\n Johannes Ranke [ctb],\n John Honaker [ctb],\n John Muschelli [ctb],\n Jonathan Keane [ctb],\n JJ Allaire [ctb],\n Johan Toloe [ctb],\n Jonathan Sidi [ctb],\n Joseph Larmarange [ctb],\n Julien Barnier [ctb],\n Kaiyin Zhong [ctb],\n Kamil Slowikowski [ctb],\n Karl Forner [ctb],\n Kevin K. Smith [ctb],\n Kirill Mueller [ctb],\n Kohske Takahashi [ctb],\n Lorenz Walthert [ctb],\n Lucas Gallindo [ctb],\n Marius Hofert [ctb],\n Martin Modrák [ctb],\n Michael Chirico [ctb],\n Michael Friendly [ctb],\n Michal Bojanowski [ctb],\n Michel Kuhlmann [ctb],\n Miller Patrick [ctb],\n Nacho Caballero [ctb],\n Nick Salkowski [ctb],\n Niels Richard Hansen [ctb],\n Noam Ross [ctb],\n Obada Mahdi [ctb],\n Pavel N. Krivitsky [ctb] (),\n Pedro Faria [ctb],\n Qiang Li [ctb],\n Ramnath Vaidyanathan [ctb],\n Richard Cotton [ctb],\n Robert Krzyzanowski [ctb],\n Rodrigo Copetti [ctb],\n Romain Francois [ctb],\n Ruaridh Williamson [ctb],\n Sagiru Mati [ctb] (),\n Scott Kostyshak [ctb],\n Sebastian Meyer [ctb],\n Sietse Brouwer [ctb],\n Simon de Bernard [ctb],\n Sylvain Rousseau [ctb],\n Taiyun Wei [ctb],\n Thibaut Assus [ctb],\n Thibaut Lamadon [ctb],\n Thomas Leeper [ctb],\n Tim Mastny [ctb],\n Tom Torsney-Weir [ctb],\n Trevor Davis [ctb],\n Viktoras Veitas [ctb],\n Weicheng Zhu [ctb],\n Wush Wu [ctb],\n Zachary Foster [ctb],\n Zhian N. Kamvar [ctb] (),\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN", + "Date/Publication": "2024-11-08 09:30:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:48:52 UTC; unix" + } + }, + "labeling": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "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": "CRAN", + "Date/Publication": "2023-08-29 22:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:54:16 UTC; unix" + } + }, + "later": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "later", + "Type": "Package", + "Title": "Utilities for Scheduling Functions to Execute Later with Event\nLoops", + "Version": "1.4.1", + "Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\"),\n person(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"joe@posit.co\"),\n person(\"Charlie\", \"Gao\", role = c(\"aut\"), email = \"charlie.gao@shikokuchuo.net\", comment = c(ORCID = \"0000-0002-0750-061X\")),\n person(family = \"Posit Software, PBC\", role = \"cph\"),\n person(\"Marcus\", \"Geelnard\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\"),\n person(\"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\n time, after the R execution stack has emptied. The functions are scheduled\n in 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.3.2", + "Suggests": "knitr, nanonext, R6, rmarkdown, testthat (>= 2.1.0)", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2024-11-27 22:51:17 UTC; jcheng", + "Author": "Winston Chang [aut, cre],\n Joe Cheng [aut],\n Charlie Gao [aut] (),\n Posit Software, PBC [cph],\n Marcus Geelnard [ctb, cph] (TinyCThread library,\n https://tinycthread.github.io/),\n Evan Nemerson [ctb, cph] (TinyCThread library,\n https://tinycthread.github.io/)", + "Maintainer": "Winston Chang ", + "Repository": "CRAN", + "Date/Publication": "2024-11-27 23:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:51:19 UTC; unix" + } + }, + "lattice": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "lattice", + "Version": "0.22-6", + "Date": "2024-03-20", + "Priority": "recommended", + "Title": "Trellis Graphics for R", + "Authors@R": "c(person(\"Deepayan\", \"Sarkar\", role = c(\"aut\", \"cre\"),\n\t email = \"deepayan.sarkar@r-project.org\",\n\t\t comment = c(ORCID = \"0000-0003-4107-1553\")),\n person(\"Felix\", \"Andrews\", role = \"ctb\"),\n\t person(\"Kevin\", \"Wright\", role = \"ctb\", comment = \"documentation\"),\n\t person(\"Neil\", \"Klepeis\", role = \"ctb\"),\n\t person(\"Johan\", \"Larsson\", role = \"ctb\", comment = \"miscellaneous improvements\"),\n person(\"Zhijian (Jason)\", \"Wen\", role = \"cph\", comment = \"filled contour code\"),\n person(\"Paul\", \"Murrell\", role = \"ctb\", email = \"paul@stat.auckland.ac.nz\"),\n\t person(\"Stefan\", \"Eng\", role = \"ctb\", comment = \"violin plot improvements\"),\n\t person(\"Achim\", \"Zeileis\", role = \"ctb\", comment = \"modern colors\"),\n person(\"Alexandre\", \"Courtiol\", role = \"ctb\", comment = \"generics for larrows, lpolygon, lrect and lsegments\")\n\t )", + "Description": "A powerful and elegant high-level data visualization\n system inspired by Trellis graphics, with an emphasis on\n multivariate data. Lattice is sufficient for typical graphics needs,\n and is also flexible enough to handle most nonstandard requirements.\n See ?Lattice for an introduction.", + "Depends": "R (>= 4.0.0)", + "Suggests": "KernSmooth, MASS, latticeExtra, colorspace", + "Imports": "grid, grDevices, graphics, stats, utils", + "Enhances": "chron, zoo", + "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": "2024-03-20 03:08:45 UTC; deepayan", + "Author": "Deepayan Sarkar [aut, cre] (),\n Felix Andrews [ctb],\n Kevin Wright [ctb] (documentation),\n Neil Klepeis [ctb],\n Johan Larsson [ctb] (miscellaneous improvements),\n Zhijian (Jason) Wen [cph] (filled contour code),\n Paul Murrell [ctb],\n Stefan Eng [ctb] (violin plot improvements),\n Achim Zeileis [ctb] (modern colors),\n Alexandre Courtiol [ctb] (generics for larrows, lpolygon, lrect and\n lsegments)", + "Maintainer": "Deepayan Sarkar ", + "Repository": "CRAN", + "Date/Publication": "2024-03-20 06:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:45:43 UTC; unix" + } + }, + "lava": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "lava", + "Type": "Package", + "Title": "Latent Variable Models", + "Version": "1.8.1", + "Authors@R": "c(person(\"Klaus K.\", \"Holst\", email=\"klaus@holst.it\", role=c(\"aut\", \"cre\")),\n\t\t person(\"Brice\", \"Ozenne\", role = \"ctb\"),\n\t\t person(\"Thomas\", \"Gerds\", role = \"ctb\"))", + "Author": "Klaus K. Holst [aut, cre],\n Brice Ozenne [ctb],\n Thomas Gerds [ctb]", + "Maintainer": "Klaus K. Holst ", + "Description": "A general implementation of Structural Equation Models\n\twith latent variables (MLE, 2SLS, and composite likelihood\n\testimators) with both continuous, censored, and ordinal\n\toutcomes (Holst and Budtz-Joergensen (2013) ).\n\tMixture latent variable models and non-linear latent variable models\n\t(Holst and Budtz-Joergensen (2020) ).\n\tThe package also provides methods for graph exploration (d-separation,\n\tback-door criterion), simulation of general non-linear latent variable\n\tmodels, and estimation of influence functions for a broad range of\n\tstatistical models.", + "URL": "https://kkholst.github.io/lava/", + "BugReports": "https://github.com/kkholst/lava/issues", + "License": "GPL-3", + "LazyLoad": "yes", + "Depends": "R (>= 3.0)", + "Imports": "cli, future.apply, graphics, grDevices, methods, numDeriv,\nprogressr, stats, survival, SQUAREM, utils", + "Suggests": "KernSmooth, Rgraphviz, data.table, ellipse, fields, geepack,\ngraph, knitr, rmarkdown, igraph (>= 0.6), lavaSearch2, lme4 (>=\n1.1.35.1), MASS, Matrix (>= 1.6.3), mets (>= 1.1), nlme,\noptimx, polycor, quantreg, rgl, targeted (>= 0.4), testthat (>=\n0.11), visNetwork", + "VignetteBuilder": "knitr,rmarkdown", + "ByteCompile": "yes", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2025-01-11 22:47:53 UTC; klaus", + "Repository": "CRAN", + "Date/Publication": "2025-01-12 11:40:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:27 UTC; unix" + } + }, + "lazyeval": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "lazyeval", + "Version": "0.2.2", + "Title": "Lazy (Non-Standard) Evaluation", + "Description": "An alternative approach to non-standard evaluation using\n formulas. Provides a full implementation of LISP style 'quasiquotation',\n making it easier to generate code with other code.", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", ,\"hadley@rstudio.com\", c(\"aut\", \"cre\")),\n person(\"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],\n RStudio [cph]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2019-03-15 17:50:07 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:55 UTC; unix" + } + }, + "lifecycle": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "lifecycle", + "Title": "Manage the Life Cycle of your Package Functions", + "Version": "1.0.4", + "Authors@R": "c(\n person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Manage the life cycle of your exported functions with shared\n conventions, documentation badges, and user-friendly deprecation\n warnings.", + "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.6)", + "Imports": "cli (>= 3.4.0), glue, rlang (>= 1.1.0)", + "Suggests": "covr, crayon, knitr, lintr, rmarkdown, testthat (>= 3.0.1),\ntibble, tidyverse, tools, vctrs, withr", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate, usethis", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1", + "NeedsCompilation": "no", + "Packaged": "2023-11-06 16:07:36 UTC; lionel", + "Author": "Lionel Henry [aut, cre],\n Hadley Wickham [aut] (),\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN", + "Date/Publication": "2023-11-07 10:10:10 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:49:09 UTC; unix" + } + }, + "lintr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "lintr", + "Title": "A 'Linter' for R Code", + "Version": "3.1.2", + "Authors@R": "c(\n person(\"Jim\", \"Hester\", , role = \"aut\"),\n person(\"Florent\", \"Angly\", role = \"aut\",\n comment = \"fangly\"),\n person(\"Russ\", \"Hyde\", role = \"aut\"),\n person(\"Michael\", \"Chirico\", email = \"michaelchirico4@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Kun\", \"Ren\", role = \"aut\"),\n person(\"Alexander\", \"Rosenstock\", role = \"aut\",\n comment = \"AshesITR\"),\n person(\"Indrajeet\", \"Patil\", , \"patilindrajeet.science@gmail.com\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-1995-6531\", Twitter = \"@patilindrajeets\"))\n )", + "Description": "Checks adherence to a given style, syntax errors and possible\n semantic issues. Supports on the fly checking of R code edited with\n 'RStudio IDE', 'Emacs', 'Vim', 'Sublime Text', 'Atom' and 'Visual\n Studio Code'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/lintr, https://lintr.r-lib.org", + "BugReports": "https://github.com/r-lib/lintr/issues", + "Depends": "R (>= 3.5)", + "Imports": "backports (>= 1.1.7), codetools, cyclocomp, digest, glue,\nknitr, rex, stats, utils, xml2 (>= 1.0.0), xmlparsedata (>=\n1.0.5)", + "Suggests": "bookdown, crayon, httr (>= 1.2.1), jsonlite, mockery,\npatrick, rlang, rmarkdown, rstudioapi (>= 0.2), testthat (>=\n3.1.5), tibble, tufte, withr (>= 2.5.0)", + "Enhances": "data.table", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Collate": "'make_linter_from_xpath.R' 'xp_utils.R' 'utils.R' 'AAA.R'\n'T_and_F_symbol_linter.R' 'absolute_path_linter.R' 'actions.R'\n'addins.R' 'any_duplicated_linter.R' 'any_is_na_linter.R'\n'assignment_linter.R' 'backport_linter.R'\n'boolean_arithmetic_linter.R' 'brace_linter.R' 'cache.R'\n'class_equals_linter.R' 'commas_linter.R' 'comment_linters.R'\n'comments.R' 'condition_message_linter.R'\n'conjunct_test_linter.R' 'consecutive_assertion_linter.R'\n'cyclocomp_linter.R' 'declared_functions.R' 'deprecated.R'\n'duplicate_argument_linter.R' 'empty_assignment_linter.R'\n'equals_na_linter.R' 'exclude.R' 'expect_comparison_linter.R'\n'expect_identical_linter.R' 'expect_length_linter.R'\n'expect_lint.R' 'expect_named_linter.R' 'expect_not_linter.R'\n'expect_null_linter.R' 'expect_s3_class_linter.R'\n'expect_s4_class_linter.R' 'expect_true_false_linter.R'\n'expect_type_linter.R' 'extract.R'\n'extraction_operator_linter.R' 'fixed_regex_linter.R'\n'for_loop_index_linter.R' 'function_argument_linter.R'\n'function_left_parentheses_linter.R' 'function_return_linter.R'\n'get_source_expressions.R' 'ids_with_token.R'\n'if_not_else_linter.R' 'ifelse_censor_linter.R'\n'implicit_assignment_linter.R' 'implicit_integer_linter.R'\n'indentation_linter.R' 'infix_spaces_linter.R'\n'inner_combine_linter.R' 'is_lint_level.R'\n'is_numeric_linter.R' 'keyword_quote_linter.R'\n'length_levels_linter.R' 'length_test_linter.R'\n'lengths_linter.R' 'library_call_linter.R'\n'line_length_linter.R' 'lint.R' 'linter_tag_docs.R'\n'linter_tags.R' 'lintr-deprecated.R' 'lintr-package.R'\n'literal_coercion_linter.R' 'make_linter_from_regex.R'\n'matrix_apply_linter.R' 'methods.R' 'missing_argument_linter.R'\n'missing_package_linter.R' 'namespace.R' 'namespace_linter.R'\n'nested_ifelse_linter.R' 'nonportable_path_linter.R'\n'numeric_leading_zero_linter.R' 'object_length_linter.R'\n'object_name_linter.R' 'object_usage_linter.R'\n'outer_negation_linter.R' 'package_hooks_linter.R'\n'paren_body_linter.R' 'paste_linter.R' 'path_utils.R'\n'pipe_call_linter.R' 'pipe_consistency_linter.R'\n'pipe_continuation_linter.R' 'quotes_linter.R'\n'redundant_equals_linter.R' 'redundant_ifelse_linter.R'\n'regex_subset_linter.R' 'repeat_linter.R'\n'routine_registration_linter.R' 'scalar_in_linter.R'\n'semicolon_linter.R' 'seq_linter.R' 'settings.R'\n'settings_utils.R' 'shared_constants.R' 'sort_linter.R'\n'spaces_inside_linter.R' 'spaces_left_parentheses_linter.R'\n'sprintf_linter.R' 'string_boundary_linter.R'\n'strings_as_factors_linter.R' 'system_file_linter.R'\n'trailing_blank_lines_linter.R' 'trailing_whitespace_linter.R'\n'tree_utils.R' 'undesirable_function_linter.R'\n'undesirable_operator_linter.R'\n'unnecessary_concatenation_linter.R'\n'unnecessary_lambda_linter.R' 'unnecessary_nested_if_linter.R'\n'unnecessary_placeholder_linter.R' 'unreachable_code_linter.R'\n'unused_import_linter.R' 'use_lintr.R' 'vector_logic_linter.R'\n'whitespace_linter.R' 'with.R' 'with_id.R'\n'xml_nodes_to_lints.R' 'yoda_test_linter.R' 'zzz.R'", + "Language": "en-US", + "NeedsCompilation": "no", + "Packaged": "2024-03-24 22:09:44 UTC; michael", + "Author": "Jim Hester [aut],\n Florent Angly [aut] (fangly),\n Russ Hyde [aut],\n Michael Chirico [aut, cre],\n Kun Ren [aut],\n Alexander Rosenstock [aut] (AshesITR),\n Indrajeet Patil [aut] (,\n @patilindrajeets)", + "Maintainer": "Michael Chirico ", + "Repository": "CRAN", + "Date/Publication": "2024-03-25 06:10:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:49:06 UTC; unix" + } + }, + "listenv": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "listenv", + "Version": "0.9.1", + "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\"),\n email = \"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.3.1", + "NeedsCompilation": "no", + "Packaged": "2024-01-28 20:40:45 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN", + "Date/Publication": "2024-01-29 13:10:06 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:12 UTC; unix" + } + }, + "lmtest": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "lmtest", + "Title": "Testing Linear Regression Models", + "Version": "0.9-40", + "Date": "2022-03-21", + "Authors@R": "c(person(given = \"Torsten\", family = \"Hothorn\", role = \"aut\", email = \"Torsten.Hothorn@R-project.org\",\n comment = c(ORCID = \"0000-0001-8301-0471\")),\n person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\",\n comment = c(ORCID = \"0000-0003-0918-3766\")),\n person(given = c(\"Richard\", \"W.\"), family = \"Farebrother\", role = \"aut\", comment = \"pan.f\"),\n person(given = \"Clint\", family = \"Cummins\", role = \"aut\", comment = \"pan.f\"),\n person(given = \"Giovanni\", family = \"Millo\", role = \"ctb\"),\n person(given = \"David\", family = \"Mitchell\", role = \"ctb\"))", + "Description": "A collection of tests, data sets, and examples\n for diagnostic checking in linear regression models. Furthermore,\n some generic tools for inference in parametric models are provided.", + "LazyData": "yes", + "Depends": "R (>= 3.0.0), stats, zoo", + "Suggests": "car, strucchange, sandwich, dynlm, stats4, survival, AER", + "Imports": "graphics", + "License": "GPL-2 | GPL-3", + "NeedsCompilation": "yes", + "Packaged": "2022-03-21 20:25:17 UTC; zeileis", + "Author": "Torsten Hothorn [aut] (),\n Achim Zeileis [aut, cre] (),\n Richard W. Farebrother [aut] (pan.f),\n Clint Cummins [aut] (pan.f),\n Giovanni Millo [ctb],\n David Mitchell [ctb]", + "Maintainer": "Achim Zeileis ", + "Repository": "CRAN", + "Date/Publication": "2022-03-21 23:00:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:36 UTC; unix" + } + }, + "logger": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "logger", + "Title": "A Lightweight, Modern and Flexible Logging Utility", + "Version": "0.4.0", + "Date": "2024-10-19", + "Authors@R": "c(\n person(\"Gergely\", \"Daróczi\", , \"daroczig@rapporter.net\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-3149-8537\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"System1\", role = \"fnd\")\n )", + "Description": "Inspired by the the 'futile.logger' R package and 'logging'\n Python module, this utility provides a flexible and extensible way of\n formatting and delivering log messages with low overhead.", + "License": "MIT + file LICENSE", + "URL": "https://daroczig.github.io/logger/", + "BugReports": "https://github.com/daroczig/logger/issues", + "Depends": "R (>= 4.0.0)", + "Imports": "utils", + "Suggests": "botor, covr, crayon, devtools, glue, jsonlite, knitr, mirai\n(>= 1.3.0), pander, parallel, R.utils, rmarkdown, roxygen2,\nRPushbullet, rsyslog, shiny, slackr (>= 1.4.1), syslognet,\ntelegram, testthat (>= 3.0.0), withr", + "Enhances": "futile.logger, log4r, logging", + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "TRUE", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2024-10-20 22:07:23 UTC; daroczig", + "Author": "Gergely Daróczi [aut, cre] (),\n Hadley Wickham [aut] (),\n System1 [fnd]", + "Maintainer": "Gergely Daróczi ", + "Repository": "CRAN", + "Date/Publication": "2024-10-22 08:00:07 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:43 UTC; unix" + } + }, + "lubridate": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "lubridate", + "Title": "Make Dealing with Dates a Little Easier", + "Version": "1.9.4", + "Authors@R": "c(\n person(\"Vitalie\", \"Spinu\", , \"spinuvit@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Garrett\", \"Grolemund\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Davis\", \"Vaughan\", role = \"ctb\"),\n person(\"Ian\", \"Lyttle\", role = \"ctb\"),\n person(\"Imanuel\", \"Costigan\", role = \"ctb\"),\n person(\"Jason\", \"Law\", role = \"ctb\"),\n person(\"Doug\", \"Mitarotonda\", role = \"ctb\"),\n person(\"Joseph\", \"Larmarange\", role = \"ctb\"),\n person(\"Jonathan\", \"Boiser\", role = \"ctb\"),\n person(\"Chel Hee\", \"Lee\", role = \"ctb\")\n )", + "Maintainer": "Vitalie Spinu ", + "Description": "Functions to work with date-times and time-spans: fast and\n user friendly parsing of date-time data, extraction and updating of\n components of a date-time (years, months, days, hours, minutes, and\n seconds), algebraic manipulation on date-time and time-span objects.\n The 'lubridate' package has a consistent and memorable syntax that\n makes 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.3.0)", + "Suggests": "covr, knitr, rmarkdown, testthat (>= 2.1.0), vctrs (>= 0.6.5)", + "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": "2024-12-07 23:41:45 UTC; vitalie", + "Author": "Vitalie Spinu [aut, cre],\n Garrett Grolemund [aut],\n Hadley Wickham [aut],\n Davis Vaughan [ctb],\n Ian Lyttle [ctb],\n Imanuel Costigan [ctb],\n Jason Law [ctb],\n Doug Mitarotonda [ctb],\n Joseph Larmarange [ctb],\n Jonathan Boiser [ctb],\n Chel Hee Lee [ctb]", + "Repository": "CRAN", + "Date/Publication": "2024-12-08 12:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:52 UTC; unix" + } + }, + "magrittr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "magrittr", + "Title": "A Forward-Pipe Operator for R", + "Version": "2.0.3", + "Authors@R": "c(\n person(\"Stefan Milton\", \"Bache\", , \"stefan@stefanbache.dk\", role = c(\"aut\", \"cph\"),\n comment = \"Original author and creator of magrittr\"),\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = \"aut\"),\n person(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = \"cre\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Provides a mechanism for chaining commands with a new\n forward-pipe operator, %>%. This operator will forward a value, or the\n result of an expression, into the next function call/expression.\n There is flexible support for the type of right-hand side expressions.\n For 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\n magrittr),\n Hadley Wickham [aut],\n Lionel Henry [cre],\n RStudio [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN", + "Date/Publication": "2022-03-30 07:30:09 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:10 UTC; unix" + } + }, + "memoise": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "memoise", + "Title": "'Memoisation' of Functions", + "Version": "2.0.1", + "Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\",\n email = \"hadley@rstudio.com\"),\n person(given = \"Jim\",\n family = \"Hester\",\n role = \"aut\"),\n person(given = \"Winston\",\n family = \"Chang\",\n role = c(\"aut\", \"cre\"),\n email = \"winston@rstudio.com\"),\n person(given = \"Kirill\",\n family = \"Müller\",\n role = \"aut\",\n email = \"krlmlr+r@mailbox.org\"),\n person(given = \"Daniel\",\n family = \"Cook\",\n role = \"aut\",\n email = \"danielecook@gmail.com\"),\n person(given = \"Mark\",\n family = \"Edmondson\",\n role = \"ctb\",\n email = \"r@sunholo.com\"))", + "Description": "Cache the results of a function so that when you\n call it again with the same arguments it returns the previously computed\n value.", + "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],\n Jim Hester [aut],\n Winston Chang [aut, cre],\n Kirill Müller [aut],\n Daniel Cook [aut],\n Mark Edmondson [ctb]", + "Maintainer": "Winston Chang ", + "Repository": "CRAN", + "Date/Publication": "2021-11-26 16:11:10 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:50:26 UTC; unix" + } + }, + "mgcv": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "mgcv", + "Version": "1.9-1", + "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 \n other generalized ridge regression with multiple smoothing \n parameter estimation by (Restricted) Marginal Likelihood, \n Generalized Cross Validation and similar, or using iterated \n nested Laplace approximation for fully Bayesian inference. See \n Wood (2017) for an overview. \n Includes a gam() function, a wide variety of smoothers, 'JAGS' \n support 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-12-20 10:39:06 UTC; sw283", + "Repository": "CRAN", + "Date/Publication": "2023-12-21 00:30:02 UTC", + "Built": "R 4.3.2; x86_64-pc-linux-gnu; 'Thu, 21 Dec 2023 07:15:57 -0600'; unix" + } + }, + "mime": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "mime", + "Type": "Package", + "Title": "Map Filenames to MIME Types", + "Version": "0.12", + "Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Jeffrey\", \"Horner\", role = \"ctb\"),\n person(\"Beilei\", \"Bian\", role = \"ctb\")\n )", + "Description": "Guesses the MIME type from a filename extension using the data\n derived 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] (),\n Jeffrey Horner [ctb],\n Beilei Bian [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN", + "Date/Publication": "2021-09-28 05:00:05 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:27 UTC; unix" + } + }, + "mirai": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "mirai", + "Type": "Package", + "Title": "Minimalist Async Evaluation Framework for R", + "Version": "2.1.0", + "Description": "Designed for simplicity, a 'mirai' evaluates an R expression\n asynchronously in a parallel process, locally or distributed over the\n network. The result is automatically available upon completion. Modern\n networking and concurrency, built on 'nanonext' and 'NNG' (Nanomsg Next\n Gen), ensures reliable and efficient scheduling over fast inter-process\n communications or TCP/IP secured by TLS. Distributed computing can launch\n remote resources via SSH or cluster managers. An inherently queued\n architecture handles many more tasks than available processes, and requires\n no storage on the file system. Innovative features include support for\n otherwise non-exportable reference objects, event-driven promises, and\n asynchronous parallel map.", + "Authors@R": "\n c(person(given = \"Charlie\",\n family = \"Gao\",\n role = c(\"aut\", \"cre\"),\n email = \"charlie.gao@shikokuchuo.net\",\n comment = c(ORCID = \"0000-0002-0750-061X\")),\n person(given = \"Joe\",\n family = \"Cheng\",\n role = \"ctb\",\n email = \"joe@posit.co\"),\n person(given = \"Hibiki AI Limited\",\n role = \"cph\"),\n person(given = \"Posit Software, PBC\",\n role = \"cph\"))", + "License": "GPL (>= 3)", + "BugReports": "https://github.com/shikokuchuo/mirai/issues", + "URL": "https://shikokuchuo.net/mirai/,\nhttps://github.com/shikokuchuo/mirai/", + "Encoding": "UTF-8", + "Depends": "R (>= 3.6)", + "Imports": "nanonext (>= 1.5.0)", + "Enhances": "parallel, promises", + "Suggests": "cli, litedown", + "VignetteBuilder": "litedown", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2025-02-07 09:05:24 UTC; cg334", + "Author": "Charlie Gao [aut, cre] (),\n Joe Cheng [ctb],\n Hibiki AI Limited [cph],\n Posit Software, PBC [cph]", + "Maintainer": "Charlie Gao ", + "Repository": "CRAN", + "Date/Publication": "2025-02-07 09:30:03 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:56:05 UTC; unix" + } + }, + "munsell": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "munsell", + "Type": "Package", + "Title": "Utilities for Using Munsell Colours", + "Version": "0.5.1", + "Author": "Charlotte Wickham ", + "Maintainer": "Charlotte Wickham ", + "Description": "Provides easy access to, and manipulation of, the Munsell \n colours. Provides a mapping between Munsell's \n original notation (e.g. \"5R 5/10\") and hexadecimal strings suitable \n for use directly in R graphics. Also provides utilities \n to explore slices through the Munsell colour tree, to transform \n Munsell 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": "7.3.1", + "Encoding": "UTF-8", + "BugReports": "https://github.com/cwickham/munsell/issues", + "NeedsCompilation": "no", + "Packaged": "2024-04-01 20:42:09 UTC; charlottewickham", + "Repository": "CRAN", + "Date/Publication": "2024-04-01 23:40:10 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:54:16 UTC; unix" + } + }, + "nanonext": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "nanonext", + "Type": "Package", + "Title": "NNG (Nanomsg Next Gen) Lightweight Messaging Library", + "Version": "1.5.2", + "Description": "R binding for NNG (Nanomsg Next Gen), a successor to ZeroMQ. NNG is\n a socket library for reliable, high-performance messaging over in-process,\n IPC, TCP, WebSocket and secure TLS transports. Implements 'Scalability\n Protocols', a standard for common communications patterns including\n publish/subscribe, request/reply and service discovery. As its own threaded\n concurrency framework, provides a toolkit for asynchronous programming and\n distributed computing. Intuitive 'aio' objects resolve automatically when\n asynchronous operations complete, and synchronisation primitives allow R to\n wait upon events signalled by concurrent threads.", + "Authors@R": "\n c(person(given = \"Charlie\",\n family = \"Gao\",\n role = c(\"aut\", \"cre\"),\n email = \"charlie.gao@shikokuchuo.net\",\n comment = c(ORCID = \"0000-0002-0750-061X\")),\n person(given = \"Hibiki AI Limited\",\n role = \"cph\"),\n person(given = \"R Consortium\",\n role = \"fnd\"))", + "License": "GPL (>= 3)", + "BugReports": "https://github.com/shikokuchuo/nanonext/issues", + "URL": "https://shikokuchuo.net/nanonext/,\nhttps://github.com/shikokuchuo/nanonext/", + "Encoding": "UTF-8", + "SystemRequirements": "'libnng' >= 1.9 and 'libmbedtls' >= 2.5, or 'cmake'\nand 'xz' to compile NNG and/or Mbed TLS included in package\nsources", + "Depends": "R (>= 3.6)", + "Enhances": "promises", + "Suggests": "later, litedown", + "VignetteBuilder": "litedown", + "RoxygenNote": "7.3.2", + "Config/build/compilation-database": "true", + "NeedsCompilation": "yes", + "Packaged": "2025-03-18 15:43:55 UTC; cg334", + "Author": "Charlie Gao [aut, cre] (),\n Hibiki AI Limited [cph],\n R Consortium [fnd]", + "Maintainer": "Charlie Gao ", + "Repository": "CRAN", + "Date/Publication": "2025-03-18 16:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:56:03 UTC; unix" + } + }, + "nlme": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "nlme", + "Version": "3.1-167", + "Date": "2025-01-27", + "Priority": "recommended", + "Title": "Linear and Nonlinear Mixed Effects Models", + "Authors@R": "c(person(\"José\", \"Pinheiro\", role = \"aut\", comment = \"S version\"),\n person(\"Douglas\", \"Bates\", role = \"aut\", comment = \"up to 2007\"),\n person(\"Saikat\", \"DebRoy\", role = \"ctb\", comment = \"up to 2002\"),\n person(\"Deepayan\", \"Sarkar\", role = \"ctb\", comment = \"up to 2005\"),\n person(\"EISPACK authors\", role = \"ctb\", comment = \"src/rs.f\"),\n\t person(\"Siem\", \"Heisterkamp\", role = \"ctb\", comment = \"Author fixed sigma\"),\n person(\"Bert\", \"Van Willigen\",role = \"ctb\", comment = \"Programmer fixed sigma\"),\n person(\"Johannes\", \"Ranke\", role = \"ctb\", comment = \"varConstProp()\"),\n\t person(\"R Core Team\", email = \"R-core@R-project.org\",\n role = c(\"aut\", \"cre\"), comment = c(ROR = \"02zz1nj61\")))", + "Contact": "see 'MailingList'", + "Description": "Fit and compare Gaussian linear and nonlinear mixed-effects models.", + "Depends": "R (>= 3.6.0)", + "Imports": "graphics, stats, utils, lattice", + "Suggests": "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": "2025-01-27 14:18:44 UTC; hornik", + "Author": "José Pinheiro [aut] (S version),\n Douglas Bates [aut] (up to 2007),\n Saikat DebRoy [ctb] (up to 2002),\n Deepayan Sarkar [ctb] (up to 2005),\n EISPACK authors [ctb] (src/rs.f),\n Siem Heisterkamp [ctb] (Author fixed sigma),\n Bert Van Willigen [ctb] (Programmer fixed sigma),\n Johannes Ranke [ctb] (varConstProp()),\n R Core Team [aut, cre] (02zz1nj61)", + "Maintainer": "R Core Team ", + "Repository": "CRAN", + "Date/Publication": "2025-01-27 16:04:27 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:06 UTC; unix" + } + }, + "nnet": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "nnet", + "Priority": "recommended", + "Version": "7.3-20", + "Date": "2025-01-01", + "Depends": "R (>= 3.0.0), stats, utils", + "Suggests": "MASS", + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\n email = \"Brian.Ripley@R-project.org\"),\n person(\"William\", \"Venables\", role = \"cph\"))", + "Description": "Software for feed-forward neural networks with a single\n hidden 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": "2025-01-01 07:07:13 UTC; ripley", + "Author": "Brian Ripley [aut, cre, cph],\n William Venables [cph]", + "Maintainer": "Brian Ripley ", + "Repository": "CRAN", + "Date/Publication": "2025-01-01 10:25:43 UTC", + "Built": "R 4.4.2; x86_64-pc-linux-gnu; 'Mon, 06 Jan 2025 02:02:43 +0000'; unix" + } + }, + "numDeriv": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "numDeriv", + "Version": "2016.8-1.1", + "Title": "Accurate Numerical Derivatives", + "Description": "Methods for calculating (usually) accurate\n\tnumerical first and second order derivatives. Accurate calculations \n\tare done using 'Richardson''s' extrapolation or, when applicable, a\n\tcomplex step derivative is available. A simple difference \n\tmethod is also provided. Simple difference is (usually) less accurate\n\tbut is much quicker than 'Richardson''s' extrapolation and provides a \n\tuseful cross-check. \n\tMethods 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": "CRAN", + "Date/Publication": "2019-06-06 09:51:09 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:25 UTC; unix" + } + }, + "openssl": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "openssl", + "Type": "Package", + "Title": "Toolkit for Encryption, Signatures and Certificates Based on\nOpenSSL", + "Version": "2.3.2", + "Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Oliver\", \"Keyes\", role = \"ctb\"))", + "Description": "Bindings to OpenSSL libssl and libcrypto, plus custom SSH key parsers.\n Supports RSA, DSA and EC curves P-256, P-384, P-521, and curve25519. Cryptographic\n signatures can either be created and verified manually or via x509 certificates. \n AES 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 \n combine RSA and AES for encrypting arbitrary sized data. Other utilities include key\n generators, hash functions (md5, sha1, sha256, etc), base64 encoder, a secure random\n number generator, and 'bignum' math methods for manually performing crypto \n calculations 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.3.2", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2025-02-03 10:27:29 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (),\n Oliver Keyes [ctb]", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN", + "Date/Publication": "2025-02-03 14:20:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:52:46 UTC; unix" + } + }, + "padr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "padr", + "Type": "Package", + "Title": "Quickly Get Datetime Data Ready for Analysis", + "Version": "0.6.3", + "Authors@R": "person(given = \"Edwin\",\n family = \"Thoen\",\n role = c(\"aut\", \"cre\"),\n email = \"edwinthoen@gmail.com\")", + "Description": "Transforms datetime data into a format ready for analysis.\n It offers two core functionalities; aggregating data to a higher level interval\n (thicken) and imputing records where observations were absent (pad). ", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "LazyData": "true", + "Depends": "R (>= 3.0.0)", + "Imports": "Rcpp, dplyr (>= 1.0.0), lubridate, rlang", + "Suggests": "ggplot2, testthat, knitr, rmarkdown, lazyeval, tidyr,\ndata.table", + "RoxygenNote": "7.2.1", + "LinkingTo": "Rcpp", + "VignetteBuilder": "knitr", + "URL": "https://edwinth.github.io/padr/, https://github.com/EdwinTh/padr", + "BugReports": "https://github.com/EdwinTh/padr/issues", + "ByteCompile": "true", + "NeedsCompilation": "yes", + "Packaged": "2024-11-21 15:48:04 UTC; edwinthoen", + "Author": "Edwin Thoen [aut, cre]", + "Maintainer": "Edwin Thoen ", + "Repository": "CRAN", + "Date/Publication": "2024-11-21 18:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:56:06 UTC; unix" + } + }, + "parallelly": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "parallelly", + "Version": "1.42.0", + "Title": "Enhancing the 'parallel' Package", + "Imports": "parallel, tools, utils", + "Suggests": "commonmark, base64enc", + "VignetteBuilder": "parallelly", + "Authors@R": "c(\n person(\"Henrik\", \"Bengtsson\",\n role = c(\"aut\", \"cre\", \"cph\"),\n email = \"henrikb@braju.com\",\n comment = c(ORCID = \"0000-0002-7579-5165\")),\n person(\"Mike\", \"Cheng\",\n role = c(\"ctb\"),\n email = \"mikefc@coolbutuseless.com\")\n )", + "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/futureverse/parallelly", + "BugReports": "https://github.com/futureverse/parallelly/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Packaged": "2025-01-30 15:20:15 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph]\n (),\n Mike Cheng [ctb]", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN", + "Date/Publication": "2025-01-30 16:20:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:12 UTC; unix" + } + }, + "pillar": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "pillar", + "Title": "Coloured Formatting for Columns", + "Version": "1.10.1", + "Authors@R": "\n c(person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = c(\"aut\", \"cre\"),\n email = \"kirill@cynkra.com\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\"),\n person(given = \"RStudio\",\n role = \"cph\"))", + "Description": "Provides 'pillar' and 'colonnade' generics designed\n for formatting columns of data using the full range of colours\n provided 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), glue, lifecycle, rlang (>= 1.0.2), utf8 (>=\n1.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.3.2.9000", + "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": "2025-01-07 10:10:11 UTC; kirill", + "Author": "Kirill Müller [aut, cre] (),\n Hadley Wickham [aut],\n RStudio [cph]", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN", + "Date/Publication": "2025-01-07 11:10:06 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:49:59 UTC; unix" + } + }, + "pingr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "pingr", + "Title": "Check if a Remote Computer is Up", + "Version": "2.0.5", + "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Check if a remote computer is up. It can either just call the\n system ping command, or check a specified TCP port.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.github.io/pingr/, https://github.com/r-lib/pingr", + "BugReports": "https://github.com/r-lib/pingr/issues", + "Depends": "R (>= 3.6)", + "Imports": "processx, utils", + "Suggests": "covr, ps, testthat (>= 3.0.0)", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "Biarch": "true", + "NeedsCompilation": "yes", + "Packaged": "2024-12-12 09:19:43 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN", + "Date/Publication": "2024-12-12 10:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:56:11 UTC; unix" + } + }, + "pkgbuild": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "pkgbuild", + "Title": "Find Tools Needed to Build R Packages", + "Version": "1.4.6", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Provides functions used to build R packages. Locates\n compilers needed to build R packages on various platforms and ensures\n the 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.5)", + "Imports": "callr (>= 3.2.0), cli (>= 3.4.0), desc, processx, R6", + "Suggests": "covr, cpp11, knitr, Rcpp, rmarkdown, testthat (>= 3.2.0),\nwithr (>= 2.3.0)", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2025-01-16 17:45:57 UTC; gaborcsardi", + "Author": "Hadley Wickham [aut],\n Jim Hester [aut],\n Gábor Csárdi [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN", + "Date/Publication": "2025-01-16 19:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:56:12 UTC; unix" + } + }, + "pkgconfig": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "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.\n Options set by a given package only apply to that package,\n other 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": "CRAN", + "Date/Publication": "2019-09-22 09:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:50:03 UTC; unix" + } + }, + "pkgload": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "pkgload", + "Title": "Simulate Package Installation and Attach", + "Version": "1.4.0", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"R Core team\", role = \"ctb\",\n comment = \"Some namespace and vignette code extracted from base R\")\n )", + "Description": "Simulates the process of installing a package and then\n attaching it. This is a key part of the 'devtools' package as it\n allows 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), desc, fs, glue, lifecycle, methods, pkgbuild,\nprocessx, rlang (>= 1.1.1), rprojroot, utils, withr (>= 2.4.3)", + "Suggests": "bitops, jsonlite, mathjaxr, pak, Rcpp, remotes, rstudioapi,\ntestthat (>= 3.2.1.1), usethis", + "Config/Needs/website": "tidyverse/tidytemplate, ggplot2", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "TRUE", + "Config/testthat/start-first": "dll", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "no", + "Packaged": "2024-06-28 10:36:56 UTC; lionel", + "Author": "Hadley Wickham [aut],\n Winston Chang [aut],\n Jim Hester [aut],\n Lionel Henry [aut, cre],\n Posit Software, PBC [cph, fnd],\n R Core team [ctb] (Some namespace and vignette code extracted from base\n R)", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN", + "Date/Publication": "2024-06-28 11:30:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:56:13 UTC; unix" + } + }, + "plotly": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "plotly", + "Title": "Create Interactive Web Graphics via 'plotly.js'", + "Version": "4.10.4", + "Authors@R": "c(person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"),\n email = \"cpsievert1@gmail.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Chris\", \"Parmer\", role = \"aut\",\n email = \"chris@plot.ly\"),\n person(\"Toby\", \"Hocking\", role = \"aut\",\n email = \"tdhock5@gmail.com\"),\n person(\"Scott\", \"Chamberlain\", role = \"aut\",\n email = \"myrmecocystus@gmail.com\"),\n person(\"Karthik\", \"Ram\", role = \"aut\",\n email = \"karthik.ram@gmail.com\"),\n person(\"Marianne\", \"Corvellec\", role = \"aut\",\n email = \"marianne.corvellec@igdore.org\", comment = c(ORCID = \"0000-0002-1994-3581\")),\n person(\"Pedro\", \"Despouy\", role = \"aut\",\n email = \"pedro@plot.ly\"),\n person(\"Salim\", \"Brüggemann\", role = \"ctb\",\n email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")),\n person(\"Plotly Technologies Inc.\", role = \"cph\"))", + "License": "MIT + file LICENSE", + "Description": "Create interactive web graphics from 'ggplot2' graphs and/or a custom interface to the (MIT-licensed) JavaScript library 'plotly.js' inspired by the grammar of graphics.", + "URL": "https://plotly-r.com, https://github.com/plotly/plotly.R,\nhttps://plotly.com/r/", + "BugReports": "https://github.com/plotly/plotly.R/issues", + "Depends": "R (>= 3.2.0), ggplot2 (>= 3.0.0)", + "Imports": "tools, scales, httr (>= 1.3.0), jsonlite (>= 1.6), magrittr,\ndigest, viridisLite, base64enc, htmltools (>= 0.3.6),\nhtmlwidgets (>= 1.5.2.9001), tidyr (>= 1.0.0), RColorBrewer,\ndplyr, vctrs, tibble, lazyeval (>= 0.2.0), rlang (>= 0.4.10),\ncrosstalk, purrr, data.table, promises", + "Suggests": "MASS, maps, hexbin, ggthemes, GGally, ggalluvial, testthat,\nknitr, shiny (>= 1.1.0), shinytest (>= 1.3.0), curl, rmarkdown,\nCairo, broom, webshot, listviewer, dendextend, sf, png,\nIRdisplay, processx, plotlyGeoAssets, forcats, withr,\npalmerpenguins, rversions, reticulate, rsvg", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "Config/Needs/check": "tidyverse/ggplot2, rcmdcheck, devtools, reshape2", + "NeedsCompilation": "no", + "Packaged": "2024-01-13 20:51:33 UTC; cpsievert", + "Author": "Carson Sievert [aut, cre] (),\n Chris Parmer [aut],\n Toby Hocking [aut],\n Scott Chamberlain [aut],\n Karthik Ram [aut],\n Marianne Corvellec [aut] (),\n Pedro Despouy [aut],\n Salim Brüggemann [ctb] (),\n Plotly Technologies Inc. [cph]", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN", + "Date/Publication": "2024-01-13 22:40:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:56:15 UTC; unix" + } + }, + "praise": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "praise", + "Title": "Praise Users", + "Version": "1.0.0", + "Author": "Gabor Csardi, Sindre Sorhus", + "Maintainer": "Gabor Csardi ", + "Description": "Build friendly R packages that\n praise their users if they have done something\n good, 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": "CRAN", + "Date/Publication": "2015-08-11 08:22:28", + "Built": "R 4.5.0; ; 2025-04-16 13:56:18 UTC; unix" + } + }, + "prettyunits": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "prettyunits", + "Title": "Pretty, Human Readable Formatting of Quantities", + "Version": "1.2.0", + "Authors@R": "c(\n person(\"Gabor\", \"Csardi\", email=\"csardi.gabor@gmail.com\", role=c(\"aut\", \"cre\")),\n person(\"Bill\", \"Denney\", email=\"wdenney@humanpredictions.com\", role=c(\"ctb\"), comment=c(ORCID=\"0000-0002-5759-428X\")),\n person(\"Christophe\", \"Regouby\", email=\"christophe.regouby@free.fr\", role=c(\"ctb\"))\n )", + "Description": "Pretty, human readable formatting of quantities.\n Time intervals: '1337000' -> '15d 11h 23m 20s'.\n Vague time intervals: '2674000' -> 'about a month ago'.\n Bytes: '1337' -> '1.34 kB'.\n Rounding: '99' with 3 significant digits -> '99.0'\n p-values: '0.00001' -> '<0.0001'.\n Colors: '#FF0000' -> 'red'.\n Quantities: '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],\n Bill Denney [ctb] (),\n Christophe Regouby [ctb]", + "Maintainer": "Gabor Csardi ", + "Repository": "CRAN", + "Date/Publication": "2023-09-24 21:10:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:56:19 UTC; unix" + } + }, + "processx": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "processx", + "Title": "Execute and Control System Processes", + "Version": "3.8.5", + "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"),\n comment = c(ORCID = \"0000-0001-7098-9676\")),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Tools to run system processes in the background. It can\n check if a background process is running; wait on a background process\n to finish; get the exit status of finished processes; kill background\n processes. It can read the standard output and error of the processes,\n using non-blocking connections. 'processx' can poll a process for\n standard output or error, with a timeout. It can also poll several\n processes at once.", + "License": "MIT + file LICENSE", + "URL": "https://processx.r-lib.org, https://github.com/r-lib/processx", + "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", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1.9000", + "NeedsCompilation": "yes", + "Packaged": "2025-01-08 20:40:10 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre, cph] (),\n Winston Chang [aut],\n Posit Software, PBC [cph, fnd],\n Ascent Digital Services [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN", + "Date/Publication": "2025-01-08 21:30:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:37 UTC; unix" + } + }, + "prodlim": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "prodlim", + "Title": "Product-Limit Estimation for Censored Event History Analysis", + "Version": "2024.06.25", + "Author": "Thomas A. Gerds", + "Description": "Fast and user friendly implementation of nonparametric estimators\n for censored event history (survival) analysis. Kaplan-Meier and\n Aalen-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 ", + "BugReports": "https://github.com/tagteam/prodlim/issues", + "License": "GPL (>= 2)", + "Packaged": "2024-06-24 10:50:55 UTC; tag", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "yes", + "Repository": "CRAN", + "Date/Publication": "2024-06-24 13:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:36 UTC; unix" + } + }, + "progress": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "progress", + "Title": "Terminal Progress Bars", + "Version": "1.2.3", + "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Rich\", \"FitzJohn\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Configurable Progress bars, they may include percentage,\n elapsed time, and/or the estimated completion time. They work in\n terminals, in 'Emacs' 'ESS', 'RStudio', 'Windows' 'Rgui' and the\n 'macOS' 'R.app'. The package also provides a 'C++' 'API', that works\n with or without 'Rcpp'.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/progress#readme,\nhttp://r-lib.github.io/progress/", + "BugReports": "https://github.com/r-lib/progress/issues", + "Depends": "R (>= 3.6)", + "Imports": "crayon, hms, prettyunits, R6", + "Suggests": "Rcpp, testthat (>= 3.0.0), withr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-12-05 09:33:10 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre],\n Rich FitzJohn [aut],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN", + "Date/Publication": "2023-12-06 10:30:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:56:20 UTC; unix" + } + }, + "progressr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "progressr", + "Version": "0.15.1", + "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(person(\"Henrik\", \"Bengtsson\",\n role = c(\"aut\", \"cre\", \"cph\"),\n email = \"henrikb@braju.com\",\n comment = c(ORCID = \"0000-0002-7579-5165\")))", + "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,\nntfy, RPushbullet, rstudioapi, shiny, commonmark, base64enc,\ntools", + "VignetteBuilder": "progressr", + "URL": "https://progressr.futureverse.org,\nhttps://github.com/futureverse/progressr", + "BugReports": "https://github.com/futureverse/progressr/issues", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2024-11-21 06:18:27 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph]\n ()", + "Maintainer": "Henrik Bengtsson ", + "Repository": "CRAN", + "Date/Publication": "2024-11-22 14:20:06 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:26 UTC; unix" + } + }, + "promises": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "promises", + "Title": "Abstractions for Promise-Based Asynchronous Programming", + "Version": "1.3.2", + "Authors@R": "c(\n person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Provides fundamental abstractions for doing asynchronous\n programming in R using promises. Asynchronous programming is useful\n for allowing a single R process to orchestrate multiple tasks in the\n background while also attending to something else. Semantics are\n similar to 'JavaScript' promises, but with a syntax that is idiomatic\n R.", + "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.3.2", + "NeedsCompilation": "yes", + "Packaged": "2024-11-27 23:38:47 UTC; jcheng", + "Author": "Joe Cheng [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Joe Cheng ", + "Repository": "CRAN", + "Date/Publication": "2024-11-28 00:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:51:26 UTC; unix" + } + }, + "ps": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "ps", + "Title": "List, Query, Manipulate System Processes", + "Version": "1.8.1", + "Authors@R": "c(\n person(\"Jay\", \"Loden\", role = \"aut\"),\n person(\"Dave\", \"Daeschler\", role = \"aut\"),\n person(\"Giampaolo\", \"Rodola'\", role = \"aut\"),\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", 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, 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, withr", + "Biarch": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Packaged": "2024-10-28 21:43:41 UTC; gaborcsardi", + "Author": "Jay Loden [aut],\n Dave Daeschler [aut],\n Giampaolo Rodola' [aut],\n Gábor Csárdi [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN", + "Date/Publication": "2024-10-28 22:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:35 UTC; unix" + } + }, + "purrr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "purrr", + "Title": "Functional Programming Tools", + "Version": "1.0.2", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = \"aut\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "A complete and consistent functional programming toolkit for\n R.", + "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] (),\n Lionel Henry [aut],\n RStudio [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2023-08-10 08:20:07 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:20 UTC; unix" + } + }, + "quadprog": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "quadprog", + "Type": "Package", + "Title": "Functions to Solve Quadratic Programming Problems", + "Version": "1.5-8", + "Date": "2019-11-20", + "Author": "S original by Berwin A. Turlach \n R port by Andreas Weingessel \n Fortran contributions from Cleve Moler (dposl/LINPACK and\n (a modified version of) dpodi/LINPACK) ", + "Maintainer": "Berwin A. Turlach ", + "Description": "This package contains routines and documentation for\n solving quadratic programming problems.", + "Depends": "R (>= 3.1.0)", + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Packaged": "2019-11-20 06:04:34 UTC; berwin", + "Repository": "CRAN", + "Date/Publication": "2019-11-20 08:20:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:41 UTC; unix" + } + }, + "quantmod": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "quantmod", + "Type": "Package", + "Title": "Quantitative Financial Modelling Framework", + "Version": "0.4.26", + "Authors@R": "c(\n person(given=c(\"Jeffrey\",\"A.\"), family=\"Ryan\", role=c(\"aut\",\"cph\")),\n person(given=c(\"Joshua\",\"M.\"), family=\"Ulrich\", role=c(\"cre\",\"aut\"), email=\"josh.m.ulrich@gmail.com\"),\n person(given=c(\"Ethan\",\"B.\"), family=\"Smith\", role=\"ctb\"),\n person(given=\"Wouter\", family=\"Thielen\", role=\"ctb\"),\n person(given=\"Paul\", family=\"Teetor\", role=\"ctb\"),\n person(given=\"Steve\", family=\"Bronder\", role=\"ctb\")\n )", + "Depends": "R (>= 3.2.0), xts(>= 0.9-0), zoo, TTR(>= 0.2), methods", + "Imports": "curl, jsonlite(>= 1.1)", + "Suggests": "DBI,RMySQL,RSQLite,timeSeries,xml2,downloader", + "Description": "Specify, build, trade, and analyse quantitative financial trading strategies.", + "LazyLoad": "yes", + "License": "GPL-3", + "URL": "https://www.quantmod.com/,\nhttps://github.com/joshuaulrich/quantmod", + "BugReports": "https://github.com/joshuaulrich/quantmod/issues", + "NeedsCompilation": "no", + "Packaged": "2024-02-13 17:49:13 UTC; josh", + "Author": "Jeffrey A. Ryan [aut, cph],\n Joshua M. Ulrich [cre, aut],\n Ethan B. Smith [ctb],\n Wouter Thielen [ctb],\n Paul Teetor [ctb],\n Steve Bronder [ctb]", + "Maintainer": "Joshua M. Ulrich ", + "Repository": "CRAN", + "Date/Publication": "2024-02-14 08:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:54:42 UTC; unix" + } + }, + "rappdirs": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "rappdirs", + "Title": "Application Directories: Determine Where to Save Data, Caches,\nand Logs", + "Version": "0.3.3", + "Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"trl\", \"cre\", \"cph\"),\n email = \"hadley@rstudio.com\"),\n person(given = \"RStudio\",\n role = \"cph\"),\n person(given = \"Sridhar\",\n family = \"Ratnakumar\",\n role = \"aut\"),\n person(given = \"Trent\",\n family = \"Mick\",\n role = \"aut\"),\n person(given = \"ActiveState\",\n role = \"cph\",\n comment = \"R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs\"),\n person(given = \"Eddy\",\n family = \"Petrisor\",\n role = \"ctb\"),\n person(given = \"Trevor\",\n family = \"Davis\",\n role = c(\"trl\", \"aut\")),\n person(given = \"Gabor\",\n family = \"Csardi\",\n role = \"ctb\"),\n person(given = \"Gregory\",\n family = \"Jefferis\",\n role = \"ctb\"))", + "Description": "An easy way to determine which directories on the\n users computer you should use to save data, caches and logs. A port of\n Python's 'Appdirs' () to\n R.", + "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],\n RStudio [cph],\n Sridhar Ratnakumar [aut],\n Trent Mick [aut],\n ActiveState [cph] (R/appdir.r, R/cache.r, R/data.r, R/log.r translated\n from appdirs),\n Eddy Petrisor [ctb],\n Trevor Davis [trl, aut],\n Gabor Csardi [ctb],\n Gregory Jefferis [ctb]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2021-01-31 05:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:27 UTC; unix" + } + }, + "reactR": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "reactR", + "Type": "Package", + "Title": "React Helpers", + "Version": "0.6.1", + "Date": "2024-09-14", + "Authors@R": "c(\n person(\n \"Facebook\", \"Inc\"\n , role = c(\"aut\", \"cph\")\n , comment = \"React library in lib, https://reactjs.org/; see AUTHORS for full list of contributors\"\n ),\n person(\n \"Michel\",\"Weststrate\",\n , role = c(\"aut\", \"cph\")\n , comment = \"mobx library in lib, https://github.com/mobxjs\"\n ),\n person(\n \"Kent\", \"Russell\"\n , role = c(\"aut\", \"cre\")\n , comment = \"R interface\"\n , email = \"kent.russell@timelyportfolio.com\"\n ),\n person(\n \"Alan\", \"Dipert\"\n , role = c(\"aut\")\n , comment = \"R interface\"\n , email = \"alan@rstudio.com\"\n ),\n person(\n \"Greg\", \"Lin\"\n , role = c(\"aut\")\n , comment = \"R interface\"\n , email = \"glin@glin.io\"\n )\n )", + "Maintainer": "Kent Russell ", + "Description": "Make it easy to use 'React' in R with 'htmlwidget' scaffolds,\n helper dependency functions, an embedded 'Babel' 'transpiler',\n and examples.", + "URL": "https://github.com/react-R/reactR", + "BugReports": "https://github.com/react-R/reactR/issues", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Imports": "htmltools", + "Suggests": "htmlwidgets (>= 1.5.3), rmarkdown, shiny, V8, knitr, usethis,\njsonlite", + "RoxygenNote": "7.3.2", + "VignetteBuilder": "knitr", + "NeedsCompilation": "no", + "Packaged": "2024-09-14 13:24:57 UTC; kentr", + "Author": "Facebook Inc [aut, cph] (React library in lib, https://reactjs.org/;\n see AUTHORS for full list of contributors),\n Michel Weststrate [aut, cph] (mobx library in lib,\n https://github.com/mobxjs),\n Kent Russell [aut, cre] (R interface),\n Alan Dipert [aut] (R interface),\n Greg Lin [aut] (R interface)", + "Repository": "CRAN", + "Date/Publication": "2024-09-14 13:50:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:56:20 UTC; unix" + } + }, + "reactable": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "reactable", + "Type": "Package", + "Title": "Interactive Data Tables for R", + "Version": "0.4.4", + "Authors@R": "c(\n person(\"Greg\", \"Lin\", email = \"glin@glin.io\", role = c(\"aut\", \"cre\")),\n person(\"Tanner\", \"Linsley\", role = c(\"ctb\", \"cph\"), comment = \"React Table library\"),\n person(family = \"Emotion team and other contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"Emotion library\"),\n person(\"Kent\", \"Russell\", role = c(\"ctb\", \"cph\"), comment = \"reactR package\"),\n person(\"Ramnath\", \"Vaidyanathan\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"),\n person(\"Joe\", \"Cheng\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"),\n person(\"JJ\", \"Allaire\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"),\n person(\"Yihui\", \"Xie\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"),\n person(\"Kenton\", \"Russell\", role = c(\"ctb\", \"cph\"), comment = \"htmlwidgets package\"),\n person(family = \"Facebook, Inc. and its affiliates\", role = c(\"ctb\", \"cph\"), comment = \"React library\"),\n person(family = \"FormatJS\", role = c(\"ctb\", \"cph\"), comment = \"FormatJS libraries\"),\n person(family = \"Feross Aboukhadijeh, and other contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"buffer library\"),\n person(\"Roman\", \"Shtylman\", role = c(\"ctb\", \"cph\"), comment = \"process library\"),\n person(\"James\", \"Halliday\", role = c(\"ctb\", \"cph\"), comment = \"stream-browserify library\"),\n person(family = \"Posit Software, PBC\", role = c(\"fnd\", \"cph\"))\n )", + "Description": "Interactive data tables for R, based on the 'React Table'\n JavaScript library. Provides an HTML widget that can be used in 'R Markdown'\n or 'Quarto' documents, 'Shiny' applications, or viewed from an R console.", + "License": "MIT + file LICENSE", + "URL": "https://glin.github.io/reactable/,\nhttps://github.com/glin/reactable", + "BugReports": "https://github.com/glin/reactable/issues", + "Depends": "R (>= 3.1)", + "Imports": "digest, htmltools (>= 0.5.2), htmlwidgets (>= 1.5.3),\njsonlite, reactR", + "Suggests": "covr, crosstalk, dplyr, fontawesome, knitr, leaflet, MASS,\nrmarkdown, shiny, sparkline, testthat, tippy, V8", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.1", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Packaged": "2023-03-12 00:59:18 UTC; greg", + "Author": "Greg Lin [aut, cre],\n Tanner Linsley [ctb, cph] (React Table library),\n Emotion team and other contributors [ctb, cph] (Emotion library),\n Kent Russell [ctb, cph] (reactR package),\n Ramnath Vaidyanathan [ctb, cph] (htmlwidgets package),\n Joe Cheng [ctb, cph] (htmlwidgets package),\n JJ Allaire [ctb, cph] (htmlwidgets package),\n Yihui Xie [ctb, cph] (htmlwidgets package),\n Kenton Russell [ctb, cph] (htmlwidgets package),\n Facebook, Inc. and its affiliates [ctb, cph] (React library),\n FormatJS [ctb, cph] (FormatJS libraries),\n Feross Aboukhadijeh, and other contributors [ctb, cph] (buffer library),\n Roman Shtylman [ctb, cph] (process library),\n James Halliday [ctb, cph] (stream-browserify library),\n Posit Software, PBC [fnd, cph]", + "Maintainer": "Greg Lin ", + "Repository": "CRAN", + "Date/Publication": "2023-03-12 10:00:10 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:56:21 UTC; unix" + } + }, + "readr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "readr", + "Title": "Read Rectangular Text Data", + "Version": "2.1.5", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Romain\", \"Francois\", role = \"ctb\"),\n person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-6983-2759\")),\n person(\"Shelby\", \"Bearrows\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"https://github.com/mandreyel/\", role = \"cph\",\n comment = \"mio library\"),\n person(\"Jukka\", \"Jylänki\", role = c(\"ctb\", \"cph\"),\n comment = \"grisu3 implementation\"),\n person(\"Mikkel\", \"Jørgensen\", role = c(\"ctb\", \"cph\"),\n comment = \"grisu3 implementation\")\n )", + "Description": "The goal of 'readr' is to provide a fast and friendly way to\n read rectangular data (like 'csv', 'tsv', and 'fwf'). It is designed\n to flexibly parse many types of data found in the wild, while still\n cleanly 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.6)", + "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.2.0), 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": "2024-01-10 21:03:49 UTC; jenny", + "Author": "Hadley Wickham [aut],\n Jim Hester [aut],\n Romain Francois [ctb],\n Jennifer Bryan [aut, cre] (),\n Shelby Bearrows [ctb],\n Posit Software, PBC [cph, fnd],\n https://github.com/mandreyel/ [cph] (mio library),\n Jukka Jylänki [ctb, cph] (grisu3 implementation),\n Mikkel Jørgensen [ctb, cph] (grisu3 implementation)", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN", + "Date/Publication": "2024-01-10 23:20:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:56:53 UTC; unix" + } + }, + "recipes": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "recipes", + "Title": "Preprocessing and Feature Engineering Steps for Modeling", + "Version": "1.1.0", + "Authors@R": "c(\n person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = \"aut\"),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "A recipe prepares your data for modeling. We provide an\n extensible framework for pipeable sequences of feature engineering\n steps provides preprocessing tools to be applied to data. Statistical\n parameters for the steps can be estimated from an initial data set and\n then applied to other data sets. The resulting processed output can\n then 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), generics (>= 0.1.2), glue, gower,\nhardhat (>= 1.4.0), ipred (>= 0.9-12), lifecycle (>= 1.0.3),\nlubridate (>= 1.8.0), magrittr, Matrix, purrr (>= 1.0.0), rlang\n(>= 1.1.0), stats, tibble, tidyr (>= 1.0.0), tidyselect (>=\n1.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 (>= 1.2.0), 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.3.1", + "NeedsCompilation": "no", + "Packaged": "2024-07-03 11:51:03 UTC; max", + "Author": "Max Kuhn [aut, cre],\n Hadley Wickham [aut],\n Emil Hvitfeldt [aut],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Max Kuhn ", + "Repository": "CRAN", + "Date/Publication": "2024-07-04 05:10:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:57:09 UTC; unix" + } + }, + "remotes": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "remotes", + "Title": "R Package Installation from Remote Repositories, Including\n'GitHub'", + "Version": "2.5.0", + "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"Martin\", \"Morgan\", role = \"aut\"),\n person(\"Dan\", \"Tenenbaum\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Ascent Digital Services\", role = \"cph\")\n )", + "Description": "Download and install R packages stored in 'GitHub', 'GitLab',\n 'Bitbucket', 'Bioconductor', or plain 'subversion' or 'git'\n repositories. This package provides the 'install_*' functions in\n 'devtools'. Indeed most of the code was copied over from 'devtools'.", + "License": "MIT + file LICENSE", + "URL": "https://remotes.r-lib.org, https://github.com/r-lib/remotes#readme", + "BugReports": "https://github.com/r-lib/remotes/issues", + "Depends": "R (>= 3.0.0)", + "Imports": "methods, stats, tools, utils", + "Suggests": "brew, callr, codetools, covr, curl, git2r (>= 0.23.0), knitr,\nmockery, pingr, pkgbuild (>= 1.0.1), rmarkdown, rprojroot,\ntestthat (>= 3.0.0), webfakes, withr", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "SystemRequirements": "Subversion for install_svn, git for install_git", + "NeedsCompilation": "no", + "Packaged": "2024-03-17 12:41:55 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre],\n Jim Hester [aut],\n Hadley Wickham [aut],\n Winston Chang [aut],\n Martin Morgan [aut],\n Dan Tenenbaum [aut],\n Posit Software, PBC [cph, fnd],\n Ascent Digital Services [cph]", + "Maintainer": "Gábor Csárdi ", + "Repository": "CRAN", + "Date/Publication": "2024-03-17 13:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:48:44 UTC; unix" + } + }, + "renv": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "renv", + "Type": "Package", + "Title": "Project Environments", + "Version": "1.1.4", + "Authors@R": "c(\n person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"kevin@rstudio.com\",\n comment = c(ORCID = \"0000-0003-2880-7407\")),\n person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"hadley@rstudio.com\",\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "A dependency management toolkit for R. Using 'renv', you can create\n and manage project-local R libraries, save the state of these libraries to\n a 'lockfile', and later restore your library as required. Together, these\n tools can help make your projects more isolated, portable, and reproducible.", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/renv/, https://github.com/rstudio/renv", + "BugReports": "https://github.com/rstudio/renv/issues", + "Imports": "utils", + "Suggests": "BiocManager, cli, compiler, covr, cpp11, devtools, gitcreds,\njsonlite, jsonvalidate, knitr, miniUI, modules, packrat, pak,\nR6, remotes, reticulate, rmarkdown, rstudioapi, shiny,\ntestthat, uuid, waldo, yaml, webfakes", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Config/testthat/start-first": "bioconductor,python,install,restore,snapshot,retrieve,remotes", + "NeedsCompilation": "no", + "Packaged": "2025-03-20 16:43:40 UTC; kevin", + "Author": "Kevin Ushey [aut, cre] (),\n Hadley Wickham [aut] (),\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Kevin Ushey ", + "Repository": "CRAN", + "Date/Publication": "2025-03-20 18:10:01 UTC", + "Built": "R 4.5.0; ; 2025-04-15 21:02:41 UTC; unix", + "RemoteType": "standard", + "RemotePkgRef": "renv", + "RemoteRef": "renv", + "RemoteRepos": "https://cloud.r-project.org", + "RemotePkgPlatform": "source", + "RemoteSha": "1.1.4" + } + }, + "rex": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "rex", + "Title": "Friendly Regular Expressions", + "Version": "1.2.1", + "Authors@R": "c(\n person(\"Kevin\", \"Ushey\", , \"kevinushey@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Jim\", \"Hester\", , \"james.f.hester@gmail.com\", role = \"aut\"),\n person(\"Robert\", \"Krzyzanowski\", , \"rkrzyzanowski@gmail.com\", role = \"aut\")\n )", + "Description": "A friendly interface for the construction of regular\n expressions.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/kevinushey/rex", + "BugReports": "https://github.com/kevinushey/rex/issues", + "Imports": "lazyeval", + "Suggests": "covr, dplyr, ggplot2, Hmisc, knitr, magrittr, rmarkdown,\nroxygen2, rvest, stringr, testthat", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.1.2", + "Collate": "'aaa.R' 'utils.R' 'escape.R' 'capture.R' 'character_class.R'\n'counts.R' 'lookarounds.R' 'match.R' 'or.R' 'rex-mode.R'\n'rex.R' 'shortcuts.R' 'wildcards.R' 'zzz.R'", + "NeedsCompilation": "no", + "Packaged": "2021-11-24 20:51:05 UTC; jhester", + "Author": "Kevin Ushey [aut, cre],\n Jim Hester [aut],\n Robert Krzyzanowski [aut]", + "Maintainer": "Kevin Ushey ", + "Repository": "CRAN", + "Date/Publication": "2021-11-26 16:11:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:48:55 UTC; unix" + } + }, + "rhino": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "rhino", + "Title": "A Framework for Enterprise Shiny Applications", + "Version": "1.10.1", + "Authors@R": "\n c(\n person(\"Kamil\", \"Żyła\", role = c(\"aut\", \"cre\"), email = \"opensource+kamil@appsilon.com\"),\n person(\"Jakub\", \"Nowicki\", role = \"aut\", email = \"kuba@appsilon.com\"),\n person(\"Leszek\", \"Siemiński\", role = \"aut\", email = \"leszek.sieminski@appsilon.com\"),\n person(\"Marek\", \"Rogala\", role = \"aut\", email = \"marek@appsilon.com\"),\n person(\"Recle\", \"Vibal\", role = \"aut\", email = \"recle.vibal@appsilon.com\"),\n person(\"Tymoteusz\", \"Makowski\", role = \"aut\", email = \"tymoteusz@appsilon.com\"),\n person(\"Rodrigo\", \"Basa\", role = \"aut\", email = \"rodrigo@appsilon.com\"),\n person(\"Eduardo\", \"Almeida\", role = \"ctb\", email = \"eduardo@appsilon.com\"),\n person(\"Appsilon Sp. z o.o.\", role = \"cph\", email = \"opensource@appsilon.com\")\n )", + "Description": "A framework that supports creating and extending enterprise Shiny applications using best practices.", + "URL": "https://appsilon.github.io/rhino/,\nhttps://github.com/Appsilon/rhino", + "BugReports": "https://github.com/Appsilon/rhino/issues", + "License": "LGPL-3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Depends": "R (>= 2.10)", + "Imports": "box (>= 1.1.3), box.linters (>= 0.10.5), box.lsp, cli, config,\nfs, glue, lintr (>= 3.0.0), logger, purrr, renv, rstudioapi,\nsass, shiny, styler, testthat (>= 3.0.0), utils, withr, yaml", + "Suggests": "covr, knitr, mockery, rcmdcheck, rex, rlang, rmarkdown,\nshiny.react, spelling", + "LazyData": "true", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Language": "en-US", + "NeedsCompilation": "no", + "Packaged": "2024-09-19 07:05:37 UTC; kuba", + "Author": "Kamil Żyła [aut, cre],\n Jakub Nowicki [aut],\n Leszek Siemiński [aut],\n Marek Rogala [aut],\n Recle Vibal [aut],\n Tymoteusz Makowski [aut],\n Rodrigo Basa [aut],\n Eduardo Almeida [ctb],\n Appsilon Sp. z o.o. [cph]", + "Maintainer": "Kamil Żyła ", + "Repository": "CRAN", + "Date/Publication": "2024-09-20 11:50:06 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:57:31 UTC; unix" + } + }, + "rlang": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "rlang", + "Version": "1.1.5", + "Title": "Functions for Base Types and Core R and 'Tidyverse' Features", + "Description": "A toolbox for working with base types, core R features\n like the condition system, and core 'Tidyverse' features like tidy\n evaluation.", + "Authors@R": "c(\n person(\"Lionel\", \"Henry\", ,\"lionel@posit.co\", c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", ,\"hadley@posit.co\", \"aut\"),\n person(given = \"mikefc\",\n email = \"mikefc@coolbutuseless.com\", \n role = \"cph\", \n comment = \"Hash implementation based on Mike's xxhashlite\"),\n person(given = \"Yann\",\n family = \"Collet\",\n role = \"cph\", \n comment = \"Author of the embedded xxHash library\"),\n person(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.3.2", + "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": "2025-01-17 08:43:17 UTC; lionel", + "Author": "Lionel Henry [aut, cre],\n Hadley Wickham [aut],\n mikefc [cph] (Hash implementation based on Mike's xxhashlite),\n Yann Collet [cph] (Author of the embedded xxHash library),\n Posit, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN", + "Date/Publication": "2025-01-17 14:30:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:56 UTC; unix" + } + }, + "rmarkdown": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "rmarkdown", + "Title": "Dynamic Documents for R", + "Version": "2.29", + "Authors@R": "c(\n person(\"JJ\", \"Allaire\", , \"jj@posit.co\", role = \"aut\"),\n person(\"Yihui\", \"Xie\", , \"xie@yihui.name\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Christophe\", \"Dervieux\", , \"cderv@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(\"Jonathan\", \"McPherson\", , \"jonathan@posit.co\", role = \"aut\"),\n person(\"Javier\", \"Luraschi\", role = \"aut\"),\n person(\"Kevin\", \"Ushey\", , \"kevin@posit.co\", role = \"aut\"),\n person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"),\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\"),\n person(\"Richard\", \"Iannone\", , \"rich@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-3925-190X\")),\n person(\"Andrew\", \"Dunning\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0464-5036\")),\n person(\"Atsushi\", \"Yasumoto\", role = c(\"ctb\", \"cph\"), comment = c(ORCID = \"0000-0002-8335-495X\", cph = \"Number sections Lua filter\")),\n person(\"Barret\", \"Schloerke\", role = \"ctb\"),\n person(\"Carson\", \"Sievert\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4958-2844\")), \n person(\"Devon\", \"Ryan\", , \"dpryan79@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8549-0971\")),\n person(\"Frederik\", \"Aust\", , \"frederik.aust@uni-koeln.de\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4900-788X\")),\n person(\"Jeff\", \"Allen\", , \"jeff@posit.co\", role = \"ctb\"), \n person(\"JooYoung\", \"Seo\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4064-6012\")),\n person(\"Malcolm\", \"Barrett\", role = \"ctb\"),\n person(\"Rob\", \"Hyndman\", , \"Rob.Hyndman@monash.edu\", role = \"ctb\"),\n person(\"Romain\", \"Lesur\", role = \"ctb\"),\n person(\"Roy\", \"Storey\", role = \"ctb\"),\n person(\"Ruben\", \"Arslan\", , \"ruben.arslan@uni-goettingen.de\", role = \"ctb\"),\n person(\"Sergio\", \"Oller\", role = \"ctb\"),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(, \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery UI library; authors listed in inst/rmd/h/jqueryui/AUTHORS.txt\"),\n person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"),\n person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"),\n person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"),\n person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"),\n person(\"Alexander\", \"Farkas\", role = c(\"ctb\", \"cph\"), comment = \"html5shiv library\"),\n person(\"Scott\", \"Jehl\", role = c(\"ctb\", \"cph\"), comment = \"Respond.js library\"),\n person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\"),\n person(\"Greg\", \"Franko\", role = c(\"ctb\", \"cph\"), comment = \"tocify library\"),\n person(\"John\", \"MacFarlane\", role = c(\"ctb\", \"cph\"), comment = \"Pandoc templates\"),\n person(, \"Google, Inc.\", role = c(\"ctb\", \"cph\"), comment = \"ioslides library\"),\n person(\"Dave\", \"Raggett\", role = \"ctb\", comment = \"slidy library\"),\n person(, \"W3C\", role = \"cph\", comment = \"slidy library\"),\n person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"), comment = \"Font-Awesome\"),\n person(\"Ben\", \"Sperry\", role = \"ctb\", comment = \"Ionicons\"),\n person(, \"Drifty\", role = \"cph\", comment = \"Ionicons\"),\n person(\"Aidan\", \"Lister\", role = c(\"ctb\", \"cph\"), comment = \"jQuery StickyTabs\"),\n person(\"Benct Philip\", \"Jonsson\", role = c(\"ctb\", \"cph\"), comment = \"pagebreak Lua filter\"),\n person(\"Albert\", \"Krewinkel\", role = c(\"ctb\", \"cph\"), comment = \"pagebreak Lua filter\")\n )", + "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.43), methods, tinytex (>= 0.31), tools, utils, xfun (>=\n0.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), xml2", + "VignetteBuilder": "knitr", + "Config/Needs/website": "rstudio/quillt, pkgdown", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "SystemRequirements": "pandoc (>= 1.14) - http://pandoc.org", + "NeedsCompilation": "no", + "Packaged": "2024-11-01 19:32:48 UTC; runner", + "Author": "JJ Allaire [aut],\n Yihui Xie [aut, cre] (),\n Christophe Dervieux [aut] (),\n Jonathan McPherson [aut],\n Javier Luraschi [aut],\n Kevin Ushey [aut],\n Aron Atkins [aut],\n Hadley Wickham [aut],\n Joe Cheng [aut],\n Winston Chang [aut],\n Richard Iannone [aut] (),\n Andrew Dunning [ctb] (),\n Atsushi Yasumoto [ctb, cph] (,\n Number sections Lua filter),\n Barret Schloerke [ctb],\n Carson Sievert [ctb] (),\n Devon Ryan [ctb] (),\n Frederik Aust [ctb] (),\n Jeff Allen [ctb],\n JooYoung Seo [ctb] (),\n Malcolm Barrett [ctb],\n Rob Hyndman [ctb],\n Romain Lesur [ctb],\n Roy Storey [ctb],\n Ruben Arslan [ctb],\n Sergio Oller [ctb],\n Posit Software, PBC [cph, fnd],\n jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\n inst/rmd/h/jqueryui/AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Alexander Farkas [ctb, cph] (html5shiv library),\n Scott Jehl [ctb, cph] (Respond.js library),\n Ivan Sagalaev [ctb, cph] (highlight.js library),\n Greg Franko [ctb, cph] (tocify library),\n John MacFarlane [ctb, cph] (Pandoc templates),\n Google, Inc. [ctb, cph] (ioslides library),\n Dave Raggett [ctb] (slidy library),\n W3C [cph] (slidy library),\n Dave Gandy [ctb, cph] (Font-Awesome),\n Ben Sperry [ctb] (Ionicons),\n Drifty [cph] (Ionicons),\n Aidan Lister [ctb, cph] (jQuery StickyTabs),\n Benct Philip Jonsson [ctb, cph] (pagebreak Lua filter),\n Albert Krewinkel [ctb, cph] (pagebreak Lua filter)", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN", + "Date/Publication": "2024-11-04 12:30:09 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:53:17 UTC; unix" + } + }, + "rpart": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "rpart", + "Priority": "recommended", + "Version": "4.1.24", + "Date": "2025-01-06", + "Authors@R": "c(person(\"Terry\", \"Therneau\", role = \"aut\",\n\t email = \"therneau@mayo.edu\"),\n person(\"Beth\", \"Atkinson\", role = c(\"aut\", \"cre\"),\n\t email = \"atkinson@mayo.edu\"),\n person(\"Brian\", \"Ripley\", role = \"trl\",\n email = \"ripley@stats.ox.ac.uk\",\n\t\t comment = \"producer of the initial R port, maintainer 1999-2017\"))", + "Description": "Recursive partitioning for classification, \n regression and survival trees. An implementation of most of the \n functionality 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],\n Beth Atkinson [aut, cre],\n Brian Ripley [trl] (producer of the initial R port, maintainer\n 1999-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": "2025-01-06 13:26:22 UTC; ripley", + "Date/Publication": "2025-01-07 07:30:14 UTC", + "Built": "R 4.4.2; x86_64-pc-linux-gnu; 'Thu, 16 Jan 2025 02:11:15 +0000'; unix" + } + }, + "rprojroot": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "rprojroot", + "Title": "Finding Files in Project Subdirectories", + "Version": "2.0.4", + "Authors@R": "\n person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = c(\"aut\", \"cre\"),\n email = \"kirill@cynkra.com\",\n comment = c(ORCID = \"0000-0002-1416-3412\"))", + "Description": "Robust, reliable and flexible paths to files below\n a project root. The 'root' of a project is defined as a directory that\n matches 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, rlang, rmarkdown, testthat (>=\n3.0.0), withr", + "VignetteBuilder": "knitr", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-11-05 06:47:23 UTC; kirill", + "Author": "Kirill Müller [aut, cre] ()", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN", + "Date/Publication": "2023-11-05 10:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:55:22 UTC; unix" + } + }, + "rsample": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "rsample", + "Title": "General Resampling Infrastructure", + "Version": "1.2.1", + "Authors@R": "c(\n person(\"Hannah\", \"Frick\", , \"hannah@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-6049-5258\")),\n person(\"Fanny\", \"Chow\", , \"fannybchow@gmail.com\", role = \"aut\"),\n person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"),\n person(\"Michael\", \"Mahoney\", , \"mike.mahoney.218@gmail.com\", role = c(\"aut\"),\n comment = c(ORCID = \"0000-0003-2402-304X\")),\n person(\"Julia\", \"Silge\", , \"julia.silge@posit.co\", role = c(\"aut\"),\n comment = c(ORCID = \"0000-0002-3671-836X\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Classes and functions to create and summarize different types\n of resampling objects (e.g. bootstrap, cross-validation).", + "License": "MIT + file LICENSE", + "URL": "https://rsample.tidymodels.org,\nhttps://github.com/tidymodels/rsample", + "BugReports": "https://github.com/tidymodels/rsample/issues", + "Depends": "R (>= 3.6)", + "Imports": "cli, dplyr (>= 1.1.1), furrr, generics, glue, lifecycle,\nmethods, pillar, purrr (>= 1.0.0), rlang (>= 0.4.10), slider\n(>= 0.1.5), tibble, tidyr, tidyselect, vctrs (>= 0.5.0)", + "Suggests": "broom, covr, ggplot2, knitr, modeldata, recipes (>= 0.1.4),\nrmarkdown, stats, testthat (>= 3.0.0), utils, whisker, withr,\nxml2", + "VignetteBuilder": "knitr", + "Config/Needs/website": "GGally, nlstools, tidymodels,\ntidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Config/testthat/edition": "3", + "NeedsCompilation": "no", + "Packaged": "2024-03-25 09:20:45 UTC; hannah", + "Author": "Hannah Frick [aut, cre] (),\n Fanny Chow [aut],\n Max Kuhn [aut],\n Michael Mahoney [aut] (),\n Julia Silge [aut] (),\n Hadley Wickham [aut],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Hannah Frick ", + "Repository": "CRAN", + "Date/Publication": "2024-03-25 10:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:57:35 UTC; unix" + } + }, + "rstudioapi": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "rstudioapi", + "Title": "Safely Access the RStudio API", + "Description": "Access the RStudio API (if available) and provide informative error\n messages when it's not.", + "Version": "0.17.1", + "Authors@R": "c(\n person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"kevin@rstudio.com\"),\n person(\"JJ\", \"Allaire\", role = c(\"aut\"), email = \"jj@posit.co\"),\n person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"hadley@posit.co\"),\n person(\"Gary\", \"Ritchie\", role = c(\"aut\"), email = \"gary@posit.co\"),\n person(family = \"RStudio\", role = \"cph\")\n )", + "Maintainer": "Kevin Ushey ", + "License": "MIT + file LICENSE", + "URL": "https://rstudio.github.io/rstudioapi/,\nhttps://github.com/rstudio/rstudioapi", + "BugReports": "https://github.com/rstudio/rstudioapi/issues", + "RoxygenNote": "7.3.2", + "Suggests": "testthat, knitr, rmarkdown, clipr, covr", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2024-10-22 20:55:52 UTC; kevin", + "Author": "Kevin Ushey [aut, cre],\n JJ Allaire [aut],\n Hadley Wickham [aut],\n Gary Ritchie [aut],\n RStudio [cph]", + "Repository": "CRAN", + "Date/Publication": "2024-10-22 22:40:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:54:19 UTC; unix" + } + }, + "sass": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "sass", + "Version": "0.4.9", + "Title": "Syntactically Awesome Style Sheets ('Sass')", + "Description": "An 'SCSS' compiler, powered by the 'LibSass' library. With this,\n R developers can use variables, inheritance, and functions to generate\n dynamic style sheets. The package uses the 'Sass CSS' extension language,\n which is stable, powerful, and CSS compatible.", + "Authors@R": "c(\n person(\"Joe\", \"Cheng\", , \"joe@rstudio.com\", \"aut\"),\n person(\"Timothy\", \"Mastny\", , \"tim.mastny@gmail.com\", \"aut\"),\n person(\"Richard\", \"Iannone\", , \"rich@rstudio.com\", \"aut\",\n comment = c(ORCID = \"0000-0003-3925-190X\")),\n person(\"Barret\", \"Schloerke\", , \"barret@rstudio.com\", \"aut\",\n comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Carson\", \"Sievert\", , \"carson@rstudio.com\", c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Christophe\", \"Dervieux\", , \"cderv@rstudio.com\", c(\"ctb\"),\n comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(family = \"RStudio\", role = c(\"cph\", \"fnd\")),\n person(family = \"Sass Open Source Foundation\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Greter\", \"Marcel\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Mifsud\", \"Michael\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Hampton\", \"Catlin\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Natalie\", \"Weizenbaum\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Chris\", \"Eppstein\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Adams\", \"Joseph\", role = c(\"ctb\", \"cph\"),\n comment = \"json.cpp\"),\n person(\"Trifunovic\", \"Nemanja\", role = c(\"ctb\", \"cph\"),\n comment = \"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.3.1", + "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": "2024-03-15 21:58:01 UTC; cpsievert", + "Author": "Joe Cheng [aut],\n Timothy Mastny [aut],\n Richard Iannone [aut] (),\n Barret Schloerke [aut] (),\n Carson Sievert [aut, cre] (),\n Christophe Dervieux [ctb] (),\n RStudio [cph, fnd],\n Sass Open Source Foundation [ctb, cph] (LibSass library),\n Greter Marcel [ctb, cph] (LibSass library),\n Mifsud Michael [ctb, cph] (LibSass library),\n Hampton Catlin [ctb, cph] (LibSass library),\n Natalie Weizenbaum [ctb, cph] (LibSass library),\n Chris Eppstein [ctb, cph] (LibSass library),\n Adams Joseph [ctb, cph] (json.cpp),\n Trifunovic Nemanja [ctb, cph] (utf8.h)", + "Maintainer": "Carson Sievert ", + "Repository": "CRAN", + "Date/Publication": "2024-03-15 22:30:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:28 UTC; unix" + } + }, + "scales": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "scales", + "Title": "Scale Functions for Visualization", + "Version": "1.3.0", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\")),\n person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"),\n comment = c(ORCID = \"0000-0002-5147-4711\")),\n person(\"Dana\", \"Seidel\", role = \"aut\"),\n person(\"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Graphical scales map data to aesthetics, and provide methods\n for 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.6)", + "Imports": "cli, farver (>= 2.0.3), glue, labeling, lifecycle, munsell (>=\n0.5), R6, RColorBrewer, rlang (>= 1.0.0), viridisLite", + "Suggests": "bit64, covr, dichromat, ggplot2, hms (>= 0.5.0), stringi,\ntestthat (>= 3.0.0)", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyLoad": "yes", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-11-27 20:27:59 UTC; thomas", + "Author": "Hadley Wickham [aut],\n Thomas Lin Pedersen [cre, aut]\n (),\n Dana Seidel [aut],\n Posit, PBC [cph, fnd]", + "Maintainer": "Thomas Lin Pedersen ", + "Repository": "CRAN", + "Date/Publication": "2023-11-28 09:10:06 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:54:17 UTC; unix" + } + }, + "shape": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "shape", + "Version": "1.4.6.1", + "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\n such as ellipses, circles, cylinders, arrows, ...", + "License": "GPL (>= 3)", + "NeedsCompilation": "no", + "Packaged": "2024-02-18 12:52:04 UTC; karlines", + "Repository": "CRAN", + "Date/Publication": "2024-02-23 13:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:53:10 UTC; unix" + } + }, + "shiny": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "shiny", + "Type": "Package", + "Title": "Web Application Framework for R", + "Version": "1.10.0", + "Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\", comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"),\n person(\"JJ\", \"Allaire\", role = \"aut\", email = \"jj@posit.co\"),\n person(\"Carson\", \"Sievert\", role = \"aut\", email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Barret\", \"Schloerke\", role = \"aut\", email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Yihui\", \"Xie\", role = \"aut\", email = \"yihui@posit.co\"),\n person(\"Jeff\", \"Allen\", role = \"aut\"),\n person(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"jonathan@posit.co\"),\n person(\"Alan\", \"Dipert\", role = \"aut\"),\n person(\"Barbara\", \"Borges\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(family = \"jQuery Foundation\", role = \"cph\",\n comment = \"jQuery library and jQuery UI library\"),\n person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\n person(family = \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt\"),\n person(\"Mark\", \"Otto\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(\"Jacob\", \"Thornton\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Prem Nawaz\", \"Khan\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Victor\", \"Tsaran\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Dennis\", \"Lembree\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Srinivasu\", \"Chakravarthula\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Cathy\", \"O'Connor\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(family = \"PayPal, Inc\", role = \"cph\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap-datepicker library\"),\n person(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap-datepicker library\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize.js library\"),\n person(\"Salmen\", \"Bejaoui\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize-plugin-a11y library\"),\n person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\n comment = \"ion.rangeSlider library\"),\n person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\n comment = \"Javascript strftime library\"),\n person(family = \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"),\n comment = \"DataTables library\"),\n person(\"John\", \"Fraser\", role = c(\"ctb\", \"cph\"),\n comment = \"showdown.js library\"),\n person(\"John\", \"Gruber\", role = c(\"ctb\", \"cph\"),\n comment = \"showdown.js library\"),\n person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"),\n comment = \"highlight.js library\"),\n person(family = \"R Core Team\", role = c(\"ctb\", \"cph\"),\n comment = \"tar implementation from R\")\n )", + "Description": "Makes it incredibly easy to build interactive web\n applications with R. Automatic \"reactive\" binding between inputs and\n outputs and extensive prebuilt widgets make it possible to build\n beautiful, 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.3.2), tools, crayon, rlang (>= 0.4.10), fastmap (>=\n1.1.1), withr, commonmark (>= 1.7), glue (>= 1.3.2), bslib (>=\n0.6.0), cachem (>= 1.1.0), lifecycle (>= 0.2.0)", + "Suggests": "coro (>= 1.1.0), datasets, DT, Cairo (>= 1.5-5), testthat (>=\n3.0.0), knitr (>= 1.6), markdown, rmarkdown, ggplot2, reactlog\n(>= 1.0.0), magrittr, yaml, future, dygraphs, ragg, showtext,\nsass", + "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' 'busy-indicators-spinners.R'\n'busy-indicators.R' 'cache-utils.R' 'deprecated.R' 'devmode.R'\n'diagnose.R' 'extended-task.R' 'fileupload.R' 'graph.R'\n'reactives.R' 'reactive-domains.R' 'history.R' 'hooks.R'\n'html-deps.R' 'image-interact-opts.R' 'image-interact.R'\n'imageutils.R' 'input-action.R' 'input-checkbox.R'\n'input-checkboxgroup.R' 'input-date.R' 'input-daterange.R'\n'input-file.R' 'input-numeric.R' 'input-password.R'\n'input-radiobuttons.R' 'input-select.R' 'input-slider.R'\n'input-submit.R' 'input-text.R' 'input-textarea.R'\n'input-utils.R' 'insert-tab.R' 'insert-ui.R' 'jqueryui.R'\n'knitr.R' 'middleware-shiny.R' 'middleware.R' 'timer.R'\n'shiny.R' 'mock-session.R' 'modal.R' 'modules.R'\n'notifications.R' 'priorityqueue.R' 'progress.R' 'react.R'\n'reexports.R' 'render-cached-plot.R' 'render-plot.R'\n'render-table.R' '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.3.2", + "Encoding": "UTF-8", + "RdMacros": "lifecycle", + "Config/testthat/edition": "3", + "Config/Needs/check": "shinytest2", + "NeedsCompilation": "no", + "Packaged": "2024-12-13 21:47:15 UTC; cpsievert", + "Author": "Winston Chang [aut, cre] (),\n Joe Cheng [aut],\n JJ Allaire [aut],\n Carson Sievert [aut] (),\n Barret Schloerke [aut] (),\n Yihui Xie [aut],\n Jeff Allen [aut],\n Jonathan McPherson [aut],\n Alan Dipert [aut],\n Barbara Borges [aut],\n Posit Software, PBC [cph, fnd],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/www/shared/jquery-AUTHORS.txt),\n jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\n inst/www/shared/jqueryui/AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Prem Nawaz Khan [ctb] (Bootstrap accessibility plugin),\n Victor Tsaran [ctb] (Bootstrap accessibility plugin),\n Dennis Lembree [ctb] (Bootstrap accessibility plugin),\n Srinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin),\n Cathy O'Connor [ctb] (Bootstrap accessibility plugin),\n PayPal, Inc [cph] (Bootstrap accessibility plugin),\n Stefan Petre [ctb, cph] (Bootstrap-datepicker library),\n Andrew Rowls [ctb, cph] (Bootstrap-datepicker library),\n Brian Reavis [ctb, cph] (selectize.js library),\n Salmen Bejaoui [ctb, cph] (selectize-plugin-a11y library),\n Denis Ineshin [ctb, cph] (ion.rangeSlider library),\n Sami Samhuri [ctb, cph] (Javascript strftime library),\n SpryMedia Limited [ctb, cph] (DataTables library),\n John Fraser [ctb, cph] (showdown.js library),\n John Gruber [ctb, cph] (showdown.js library),\n Ivan Sagalaev [ctb, cph] (highlight.js library),\n R Core Team [ctb, cph] (tar implementation from R)", + "Maintainer": "Winston Chang ", + "Repository": "CRAN", + "Date/Publication": "2024-12-14 00:10:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:53:57 UTC; unix" + } + }, + "shinyTime": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "shinyTime", + "Type": "Package", + "Title": "A Time Input Widget for Shiny", + "Version": "1.0.3", + "Authors@R": "person(\"Gerhard\", \"Burger\", email = \"burger.ga@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-1062-5576\"))", + "Description": "Provides a time input widget for Shiny. This widget allows intuitive time input in the\n '[hh]:[mm]:[ss]' or '[hh]:[mm]' (24H) format by using a separate numeric input for each time\n component. The interface with R uses date-time objects. See the project page for more\n information and examples.", + "License": "GPL-3 | file LICENSE", + "Imports": "htmltools, shiny", + "URL": "https://burgerga.github.io/shinyTime/,\nhttps://github.com/burgerga/shinyTime", + "BugReports": "https://github.com/burgerga/shinyTime/issues", + "RoxygenNote": "7.2.1", + "Encoding": "UTF-8", + "Language": "en-US", + "Suggests": "testthat (>= 2.1.0), spelling, hms", + "NeedsCompilation": "no", + "Packaged": "2022-08-19 20:56:31 UTC; gerhard", + "Author": "Gerhard Burger [aut, cre] ()", + "Maintainer": "Gerhard Burger ", + "Repository": "CRAN", + "Date/Publication": "2022-08-19 21:30:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:57:37 UTC; unix" + } + }, + "shinyWidgets": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "shinyWidgets", + "Title": "Custom Inputs Widgets for Shiny", + "Version": "0.8.7", + "Authors@R": "c(\n person(\"Victor\", \"Perrier\", email = \"victor.perrier@dreamrs.fr\", role = c(\"aut\", \"cre\", \"cph\")),\n person(\"Fanny\", \"Meyer\", role = \"aut\"),\n person(\"David\", \"Granjon\", role = \"aut\"),\n person(\"Ian\", \"Fellows\", role = \"ctb\", comment = \"Methods for mutating vertical tabs & updateMultiInput\"),\n person(\"Wil\", \"Davis\", role = \"ctb\", comment = \"numericRangeInput function\"),\n person(\"Spencer\", \"Matthews\", role = \"ctb\", comment = \"autoNumeric methods\"),\n person(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. \n Give 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.3.2", + "Depends": "R (>= 3.1.0)", + "Imports": "bslib, sass, shiny (>= 1.6.0), htmltools (>= 0.5.1), jsonlite,\ngrDevices, rlang", + "Suggests": "testthat, covr, ggplot2, DT, scales, shinydashboard,\nshinydashboardPlus", + "NeedsCompilation": "no", + "Packaged": "2024-09-23 06:53:57 UTC; perri", + "Author": "Victor Perrier [aut, cre, cph],\n Fanny Meyer [aut],\n David Granjon [aut],\n Ian Fellows [ctb] (Methods for mutating vertical tabs &\n updateMultiInput),\n Wil Davis [ctb] (numericRangeInput function),\n Spencer Matthews [ctb] (autoNumeric methods),\n JavaScript and CSS libraries authors [ctb, cph] (All authors are listed\n in LICENSE.md)", + "Maintainer": "Victor Perrier ", + "Repository": "CRAN", + "Date/Publication": "2024-09-23 07:40:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:57:38 UTC; unix" + } + }, + "shinycssloaders": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "shinycssloaders", + "Title": "Add Loading Animations to a 'shiny' Output While It's\nRecalculating", + "Version": "1.1.0", + "Authors@R": "c(\n person(\"Dean\",\"Attali\",email=\"daattali@gmail.com\",role=c(\"aut\",\"cre\"),\n comment = c(\"Maintainer/developer of shinycssloaders since 2019\", ORCID=\"0000-0002-5645-3493\")),\n person(\"Andras\",\"Sali\",email=\"andras.sali@alphacruncher.hu\",role=c(\"aut\"),comment=\"Original creator of shinycssloaders package\"),\n person(\"Luke\",\"Hass\",role=c(\"ctb\",\"cph\"),comment=\"Author of included CSS loader code\")\n )", + "Description": "When a 'Shiny' output (such as a plot, table, map, etc.) is recalculating, it remains \n visible but gets greyed out. Using 'shinycssloaders', you can add a loading animation (\"spinner\")\n to outputs instead. By wrapping a 'Shiny' output in 'withSpinner()', a spinner will automatically\n appear while the output is recalculating. You can also manually show and hide the spinner, or add\n a full-page spinner to cover the entire page.\n See the demo online at .", + "License": "MIT + file LICENSE", + "URL": "https://github.com/daattali/shinycssloaders,\nhttps://daattali.com/shiny/shinycssloaders-demo/", + "BugReports": "https://github.com/daattali/shinycssloaders/issues", + "Depends": "R (>= 3.1)", + "Imports": "digest, glue, grDevices, htmltools (>= 0.3.5), shiny", + "Suggests": "knitr, shinydisconnect, shinyjs", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2024-07-30 18:52:48 UTC; Dean", + "Author": "Dean Attali [aut, cre] (Maintainer/developer of shinycssloaders since\n 2019, ),\n Andras Sali [aut] (Original creator of shinycssloaders package),\n Luke Hass [ctb, cph] (Author of included CSS loader code)", + "Maintainer": "Dean Attali ", + "Repository": "CRAN", + "Date/Publication": "2024-07-30 22:30:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:57:40 UTC; unix" + } + }, + "shinyjs": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "shinyjs", + "Title": "Easily Improve the User Experience of Your Shiny Apps in Seconds", + "Version": "2.1.0", + "Authors@R": "person(\"Dean\", \"Attali\", \n email = \"daattali@gmail.com\",\n role = c(\"aut\", \"cre\"),\n comment= c(ORCID=\"0000-0002-5645-3493\"))", + "Description": "Perform common useful JavaScript operations in Shiny apps that will\n greatly improve your apps without having to know any JavaScript. Examples\n include: hiding an element, disabling an input, resetting an input back to\n its original value, delaying code execution by a few seconds, and many more\n useful functions for both the end user and the developer. 'shinyjs' can also\n be 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": "CRAN", + "Date/Publication": "2021-12-23 10:10:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:57:41 UTC; unix" + } + }, + "shinytest2": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "shinytest2", + "Title": "Testing for Shiny Applications", + "Version": "0.3.2", + "Authors@R": "\n c(\n person(\"Barret\", \"Schloerke\", role = c(\"cre\", \"aut\"), email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(family = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Winston\", \"Chang\", role =\"ctb\", email = \"winston@posit.co\", comment = \"Original author to rstudio/shinytest\"),\n person(\"Gábor\", \"Csárdi\", role = \"ctb\", email = \"gabor@posit.co\", comment = \"Original author to rstudio/shinytest\"),\n person(\"Hadley\", \"Wickham\", role = \"ctb\", email = \"hadley@posit.co\", comment = \"Original author to rstudio/shinytest\"),\n person(family = \"Mango Solutions\", role = c(\"cph\", \"ccp\"), comment = \"Original author to rstudio/shinytest\")\n )", + "Description": "Automated unit testing of Shiny applications through a headless 'Chromium' browser.", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Language": "en-US", + "RoxygenNote": "7.3.1", + "URL": "https://rstudio.github.io/shinytest2/,\nhttps://github.com/rstudio/shinytest2", + "BugReports": "https://github.com/rstudio/shinytest2/issues", + "VignetteBuilder": "knitr", + "Depends": "testthat (>= 3.1.2)", + "Imports": "R6 (>= 2.4.0), callr, checkmate (>= 2.0.0), chromote (>=\n0.1.2), crayon, fs, globals (>= 0.14.0), httr, jsonlite, pingr,\nrlang (>= 1.0.0), rmarkdown, shiny, withr", + "Suggests": "deSolve, diffobj, ggplot2, knitr, plotly, png, rstudioapi,\nshinyWidgets, shinytest (>= 1.5.1), shinyvalidate (>= 0.1.2),\nshowimage, usethis, vdiffr (>= 1.0.0), spelling", + "Config/Needs/check": "rstudio/shiny", + "Config/Needs/website": "pkgdown, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Collate": "'R6-helper.R' 'app-driver-chromote.R' 'app-driver-dir.R'\n'app-driver-expect-download.R' 'app-driver-expect-js.R'\n'app-driver-expect-screenshot.R'\n'app-driver-expect-unique-names.R' 'app-driver-expect-values.R'\n'app-driver-get-log.R' 'app-driver-initialize.R'\n'app-driver-log-message.R' 'app-driver-message.R'\n'app-driver-node.R' 'app-driver-set-inputs.R'\n'app-driver-start.R' 'app-driver-stop.R' 'app-driver-timeout.R'\n'app-driver-upload-file.R' 'app-driver-variant.R'\n'app-driver-wait.R' 'app-driver-window.R' 'app-driver.R'\n'chromote-methods.R' 'compare-screenshot-threshold.R' 'cpp11.R'\n'expect-snapshot.R' 'expr-recurse.R' 'httr.R' 'migrate.R'\n'missing-value.R' 'utils.R' 'platform.R'\n'record-test-unique-name.R' 'record-test.R' 'rstudio.R'\n'save-app.R' 'shiny-browser.R' 'shinytest2-logs.R'\n'shinytest2-package.R' 'test-app.R' 'use.R'", + "LinkingTo": "cpp11", + "NeedsCompilation": "yes", + "Packaged": "2024-04-26 19:24:28 UTC; garrick", + "Author": "Barret Schloerke [cre, aut] (),\n Posit Software, PBC [cph, fnd],\n Winston Chang [ctb] (Original author to rstudio/shinytest),\n Gábor Csárdi [ctb] (Original author to rstudio/shinytest),\n Hadley Wickham [ctb] (Original author to rstudio/shinytest),\n Mango Solutions [cph, ccp] (Original author to rstudio/shinytest)", + "Maintainer": "Barret Schloerke ", + "Repository": "CRAN", + "Date/Publication": "2024-04-28 21:40:03 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:57:42 UTC; unix" + } + }, + "slider": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "slider", + "Title": "Sliding Window Functions", + "Version": "0.3.2", + "Authors@R": "c(\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Provides type-stable rolling window functions over any R data\n type. Cumulative and expanding windows are also supported. For more\n advanced usage, an index can be used as a secondary vector that\n defines how sliding windows are to be created.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/slider, https://slider.r-lib.org", + "BugReports": "https://github.com/r-lib/slider/issues", + "Depends": "R (>= 4.0.0)", + "Imports": "cli (>= 3.6.1), rlang (>= 1.1.1), vctrs (>= 0.6.3), warp", + "Suggests": "covr, dplyr (>= 1.0.0), knitr, lubridate, rmarkdown, testthat\n(>= 3.0.0)", + "LinkingTo": "vctrs (>= 0.6.3)", + "VignetteBuilder": "knitr", + "Config/build/compilation-database": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2024-10-25", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Collate": "'arithmetic.R' 'block.R' 'conditions.R' 'hop-common.R'\n'hop-index-common.R' 'hop-index.R' 'hop-index2.R' 'hop.R'\n'hop2.R' 'phop-index.R' 'phop.R' 'slide-index2.R'\n'pslide-index.R' 'slide-period2.R' 'pslide-period.R' 'slide2.R'\n'pslide.R' 'segment-tree.R' 'slide-common.R'\n'slide-index-common.R' 'slide-index.R' 'slide-period-common.R'\n'slide-period.R' 'slide.R' 'slider-package.R' 'summary-index.R'\n'summary-slide.R' 'utils.R' 'zzz.R'", + "NeedsCompilation": "yes", + "Packaged": "2024-10-25 17:10:37 UTC; davis", + "Author": "Davis Vaughan [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN", + "Date/Publication": "2024-10-25 17:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:57:33 UTC; unix" + } + }, + "sourcetools": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "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\n of R code, and helpers for interacting with the tokenized representation of R\n code.", + "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": "CRAN", + "Date/Publication": "2023-02-01 10:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:53:56 UTC; unix" + } + }, + "sparsevctrs": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "sparsevctrs", + "Title": "Sparse Vectors for Use in Data Frames", + "Version": "0.2.0", + "Authors@R": "c(\n person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-0679-1945\")),\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Provides sparse vectors powered by ALTREP (Alternative\n Representations for R Objects) that behave like regular vectors, and\n can thus be used in data frames. Also provides tools to convert\n between sparse matrices and data frames with sparse columns and\n functions to interact with sparse vectors.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/sparsevctrs,\nhttps://r-lib.github.io/sparsevctrs/", + "BugReports": "https://github.com/r-lib/sparsevctrs/issues", + "Depends": "R (>= 4.0.0)", + "Imports": "cli (>= 3.4.0), rlang (>= 1.1.0), vctrs", + "Suggests": "knitr, Matrix, methods, rmarkdown, testthat (>= 3.0.0),\ntibble, withr", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate, rmarkdown, lobstr,\nggplot2, bench, tidyr, ggbeeswarm", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Packaged": "2025-01-22 20:43:32 UTC; emilhvitfeldt", + "Author": "Emil Hvitfeldt [aut, cre] (),\n Davis Vaughan [ctb],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Emil Hvitfeldt ", + "Repository": "CRAN", + "Date/Publication": "2025-01-22 21:00:01 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:19 UTC; unix" + } + }, + "stringi": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "stringi", + "Version": "1.8.4", + "Date": "2024-05-06", + "Title": "Fast and Portable Character String Processing Facilities", + "Description": "A collection of character string/text/natural language\n processing tools for pattern searching (e.g., with 'Java'-like regular\n expressions or the 'Unicode' collation algorithm), random string generation,\n case mapping, string transliteration, concatenation, sorting, padding,\n wrapping, Unicode normalisation, date-time formatting and parsing,\n and many more. They are fast, consistent, convenient, and -\n thanks to 'ICU' (International Components for Unicode) -\n portable across all locales and platforms. Documentation about 'stringi' is\n provided via its website at and\n the 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": "ICU4C (>= 61, optional)", + "Type": "Package", + "Depends": "R (>= 3.4)", + "Imports": "tools, utils, stats", + "Biarch": "TRUE", + "License": "file LICENSE", + "Author": "Marek Gagolewski [aut, cre, cph] (),\n Bartek Tartanus [ctb], and others (stringi source code);\n Unicode, Inc. and others (ICU4C source code, Unicode Character Database)", + "Maintainer": "Marek Gagolewski ", + "RoxygenNote": "7.2.3", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2024-05-06 12:50:25 UTC; gagolews", + "License_is_FOSS": "yes", + "Repository": "CRAN", + "Date/Publication": "2024-05-06 15:00:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:24 UTC; unix" + } + }, + "stringr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "stringr", + "Title": "Simple, Consistent Wrappers for Common String Operations", + "Version": "1.5.1", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\", \"cph\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "A consistent, simple and easy to use set of wrappers around\n the fantastic 'stringi' package. All function and argument names (and\n positions) are consistent, all functions deal with \"NA\"'s and zero\n length vectors in the same way, and the output from one function is\n easy 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.6)", + "Imports": "cli, glue (>= 1.6.1), lifecycle (>= 1.0.3), magrittr, rlang\n(>= 1.0.0), stringi (>= 1.5.3), vctrs (>= 0.4.0)", + "Suggests": "covr, dplyr, gt, htmltools, htmlwidgets, knitr, rmarkdown,\ntestthat (>= 3.0.0), tibble", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "LazyData": "true", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-11-14 15:03:52 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre, cph],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2023-11-14 23:10:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:49:53 UTC; unix" + } + }, + "styler": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Type": "Package", + "Package": "styler", + "Title": "Non-Invasive Pretty Printing of R Code", + "Version": "1.10.3", + "Authors@R": "\n c(person(given = \"Kirill\",\n family = \"Müller\",\n role = \"aut\",\n email = \"kirill@cynkra.com\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"Lorenz\",\n family = \"Walthert\",\n role = c(\"cre\", \"aut\"),\n email = \"lorenz.walthert@icloud.com\"),\n person(given = \"Indrajeet\",\n family = \"Patil\",\n role = \"ctb\",\n email = \"patilindrajeet.science@gmail.com\",\n comment = c(ORCID = \"0000-0003-1995-6531\", Twitter = \"@patilindrajeets\")))", + "Description": "Pretty-prints R code without changing the user's formatting\n intent.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/styler, https://styler.r-lib.org", + "BugReports": "https://github.com/r-lib/styler/issues", + "Depends": "R (>= 3.6.0)", + "Imports": "cli (>= 3.1.1), magrittr (>= 2.0.0), purrr (>= 0.2.3), R.cache\n(>= 0.15.0), rlang (>= 1.0.0), rprojroot (>= 1.1), tools, vctrs\n(>= 0.4.1), withr (>= 2.3.0),", + "Suggests": "data.tree (>= 0.1.6), digest, here, knitr, prettycode,\nrmarkdown, roxygen2, rstudioapi (>= 0.7), tibble (>= 1.4.2),\ntestthat (>= 3.0.0)", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Collate": "'addins.R' 'communicate.R' 'compat-dplyr.R' 'compat-tidyr.R'\n'detect-alignment-utils.R' 'detect-alignment.R'\n'environments.R' 'expr-is.R' 'indent.R' 'initialize.R' 'io.R'\n'nest.R' 'nested-to-tree.R' 'parse.R' 'reindent.R'\n'token-define.R' 'relevel.R' 'roxygen-examples-add-remove.R'\n'roxygen-examples-find.R' 'roxygen-examples-parse.R'\n'roxygen-examples.R' 'rules-indention.R' 'rules-line-breaks.R'\n'rules-spaces.R' 'rules-tokens.R' 'serialize.R'\n'set-assert-args.R' 'style-guides.R' 'styler-package.R'\n'stylerignore.R' 'testing-mocks.R' 'testing-public-api.R'\n'ui-caching.R' 'testing.R' 'token-create.R' 'transform-block.R'\n'transform-code.R' 'transform-files.R' 'ui-styling.R'\n'unindent.R' 'utils-cache.R' 'utils-files.R'\n'utils-navigate-nest.R' 'utils-strings.R' 'utils.R'\n'vertical.R' 'visit.R' 'zzz.R'", + "NeedsCompilation": "no", + "Packaged": "2024-04-07 19:04:20 UTC; lorenz", + "Author": "Kirill Müller [aut] (),\n Lorenz Walthert [cre, aut],\n Indrajeet Patil [ctb] (,\n @patilindrajeets)", + "Maintainer": "Lorenz Walthert ", + "Repository": "CRAN", + "Date/Publication": "2024-04-07 23:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:57:16 UTC; unix" + } + }, + "survival": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Title": "Survival Analysis", + "Priority": "recommended", + "Package": "survival", + "Version": "3.8-3", + "Date": "2024-12-17", + "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\",\n email=\"therneau.terry@mayo.edu\",\n\t role=c(\"aut\", \"cre\")),\n person(\"Thomas\", \"Lumley\", role=c(\"ctb\", \"trl\"),\n\t comment=\"original S->R port and R maintainer until 2009\"),\n\t person(\"Atkinson\", \"Elizabeth\", role=\"ctb\"),\n\t person(\"Crowson\", \"Cynthia\", role=\"ctb\"))", + "Description": "Contains the core survival analysis routines, including\n\t definition of Surv objects, \n\t Kaplan-Meier and Aalen-Johansen (multi-state) curves, Cox models,\n\t and parametric accelerated failure time models.", + "License": "LGPL (>= 2)", + "URL": "https://github.com/therneau/survival", + "NeedsCompilation": "yes", + "Packaged": "2024-12-17 16:37:18 UTC; therneau", + "Author": "Terry M Therneau [aut, cre],\n Thomas Lumley [ctb, trl] (original S->R port and R maintainer until\n 2009),\n Atkinson Elizabeth [ctb],\n Crowson Cynthia [ctb]", + "Maintainer": "Terry M Therneau ", + "Repository": "CRAN", + "Date/Publication": "2024-12-17 20:20:02 UTC", + "Built": "R 4.4.2; x86_64-pc-linux-gnu; 'Tue, 07 Jan 2025 00:08:51 +0000'; unix" + } + }, + "sys": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "sys", + "Type": "Package", + "Title": "Powerful and Reliable Tools for Running System Commands in R", + "Version": "3.4.3", + "Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), \n email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = \"ctb\"))", + "Description": "Drop-in replacements for the base system2() function with fine control\n and consistent behavior across platforms. Supports clean interruption, timeout, \n background tasks, and streaming STDIN / STDOUT / STDERR over binary or text \n connections. Arguments on Windows automatically get encoded and quoted to work \n on 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": "2024-10-03 14:13:17 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (),\n Gábor Csárdi [ctb]", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN", + "Date/Publication": "2024-10-04 09:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:06 UTC; unix" + } + }, + "testthat": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "testthat", + "Title": "Unit Testing for R", + "Version": "3.2.3", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"R Core team\", role = \"ctb\",\n comment = \"Implementation of utils::recover()\")\n )", + "Description": "Software testing is important, but, in part because it is\n frustrating and boring, many of us avoid it. 'testthat' is a testing\n framework for R that is easy to learn and use, and integrates with\n your 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), evaluate (>= 1.0.1), jsonlite (>=\n1.8.7), lifecycle (>= 1.0.3), magrittr (>= 2.0.3), methods,\npkgload (>= 1.3.2.1), praise (>= 1.0.0), processx (>= 3.8.2),\nps (>= 1.7.5), R6 (>= 2.5.1), rlang (>= 1.1.1), utils, waldo\n(>= 0.6.0), withr (>= 3.0.2)", + "Suggests": "covr, curl (>= 0.9.5), diffviewer (>= 0.1.0), knitr,\nrmarkdown, rstudioapi, S7, shiny, usethis, vctrs (>= 0.1.0),\nxml2", + "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.3.2", + "NeedsCompilation": "yes", + "Packaged": "2025-01-11 00:11:30 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\n Posit Software, PBC [cph, fnd],\n R Core team [ctb] (Implementation of utils::recover())", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2025-01-13 11:20:03 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:57:19 UTC; unix" + } + }, + "tibble": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "tibble", + "Title": "Simple Data Frames", + "Version": "3.2.1", + "Authors@R": "\n c(person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = c(\"aut\", \"cre\"),\n email = \"kirill@cynkra.com\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\",\n email = \"hadley@rstudio.com\"),\n person(given = \"Romain\",\n family = \"Francois\",\n role = \"ctb\",\n email = \"romain@r-enthusiasts.com\"),\n person(given = \"Jennifer\",\n family = \"Bryan\",\n role = \"ctb\",\n email = \"jenny@rstudio.com\"),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))", + "Description": "Provides a 'tbl_df' class (the 'tibble') with stricter checking and better formatting than the traditional\n data 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] (),\n Hadley Wickham [aut],\n Romain Francois [ctb],\n Jennifer Bryan [ctb],\n RStudio [cph, fnd]", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN", + "Date/Publication": "2023-03-20 06:30:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:04 UTC; unix" + } + }, + "tidyr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "tidyr", + "Title": "Tidy Messy Data", + "Version": "1.3.1", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"),\n person(\"Maximilian\", \"Girlich\", role = \"aut\"),\n person(\"Kevin\", \"Ushey\", , \"kevin@posit.co\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Tools to help to create tidy data, where each column is a\n variable, each row is an observation, and each cell contains a single\n value. 'tidyr' contains tools for changing the shape (pivoting) and\n hierarchy (nesting and 'unnesting') of a dataset, turning deeply\n nested lists into rectangular data frames ('rectangling'), and\n extracting values out of string columns. It also includes tools for\n working 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.6)", + "Imports": "cli (>= 3.4.1), dplyr (>= 1.0.10), glue, lifecycle (>= 1.0.3),\nmagrittr, purrr (>= 1.0.1), rlang (>= 1.1.1), 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.3.0", + "NeedsCompilation": "yes", + "Packaged": "2024-01-23 14:27:23 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\n Davis Vaughan [aut],\n Maximilian Girlich [aut],\n Kevin Ushey [ctb],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2024-01-24 14:50:09 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:12 UTC; unix" + } + }, + "tidyselect": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "tidyselect", + "Title": "Select from a Set of Strings", + "Version": "1.2.1", + "Authors@R": "c(\n person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "A backend for the selecting functions of the 'tidyverse'. It\n makes it easy to implement select-like functions in your own packages\n in a way that is consistent with other 'tidyverse' interfaces for\n selection.", + "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.5.2), 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.3.0.9000", + "NeedsCompilation": "yes", + "Packaged": "2024-03-11 11:46:04 UTC; lionel", + "Author": "Lionel Henry [aut, cre],\n Hadley Wickham [aut],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN", + "Date/Publication": "2024-03-11 14:10:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:50:05 UTC; unix" + } + }, + "timeDate": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "timeDate", + "Title": "Rmetrics - Chronological and Calendar Objects", + "Version": "4041.110", + "Authors@R": "c(person(\"Diethelm\", \"Wuertz\", role=\"aut\", comment = \"original code\")\n\t , person(\"Tobias\", \"Setz\", role = c(\"aut\"), email = \"tobias.setz@live.com\")\n\t , person(\"Yohan\", \"Chalabi\", role = \"aut\")\n\t , person(\"Martin\",\"Maechler\", role = \"ctb\", email = \"maechler@stat.math.ethz.ch\", comment = c(ORCID = \"0000-0002-8685-9910\"))\n\t , person(given = c(\"Joe\", \"W.\"), family = \"Byers\", role = \"ctb\")\n\t , person(given = c(\"Georgi\", \"N.\"), family = \"Boshnakov\", \n role = c(\"cre\", \"aut\"), email = \"georgi.boshnakov@manchester.ac.uk\") )", + "Description": "The 'timeDate' class fulfils the conventions of the ISO 8601 \n\tstandard as well as of the ANSI C and POSIX standards. Beyond\n\tthese standards it provides the \"Financial Center\" concept\n\twhich allows to handle data records collected in different time \n\tzones and mix them up to have always the proper time stamps with \n\trespect to your personal financial center, or alternatively to the GMT\n\treference time. It can thus also handle time stamps from historical \n\tdata records from the same time zone, even if the financial \n\tcenters changed day light saving times at different calendar\n\tdates.", + "Depends": "R (>= 3.6.0), methods", + "Imports": "graphics, utils, stats", + "Suggests": "RUnit", + "License": "GPL (>= 2)", + "Encoding": "UTF-8", + "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": "2024-09-16 11:17:35 UTC; georgi", + "Author": "Diethelm Wuertz [aut] (original code),\n Tobias Setz [aut],\n Yohan Chalabi [aut],\n Martin Maechler [ctb] (),\n Joe W. Byers [ctb],\n Georgi N. Boshnakov [cre, aut]", + "Maintainer": "Georgi N. Boshnakov ", + "Repository": "CRAN", + "Date/Publication": "2024-09-22 10:10:17 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:54:38 UTC; unix" + } + }, + "timechange": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "timechange", + "Title": "Efficient Manipulation of Date-Times", + "Version": "0.3.0", + "Authors@R": "c(person(\"Vitalie\", \"Spinu\", email = \"spinuvit@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Google Inc.\", role = c(\"ctb\", \"cph\")))", + "Description": "Efficient routines for manipulation of date-time objects while\n accounting for time-zones and daylight saving times. The package includes\n utilities for updating of date-time components (year, month, day etc.),\n modification of time-zones, rounding of date-times, period addition and\n subtraction etc. Parts of the 'CCTZ' source code, released under the Apache\n 2.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": "2024-01-18 08:57:24 UTC; vspinu", + "Author": "Vitalie Spinu [aut, cre],\n Google Inc. [ctb, cph]", + "Maintainer": "Vitalie Spinu ", + "Repository": "CRAN", + "Date/Publication": "2024-01-18 09:20:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:44 UTC; unix" + } + }, + "timetk": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "timetk", + "Type": "Package", + "Title": "A Tool Kit for Working with Time Series", + "Version": "2.9.0", + "Authors@R": "c(\n person(\"Matt\", \"Dancho\", email = \"mdancho@business-science.io\", role = c(\"aut\", \"cre\")),\n person(\"Davis\", \"Vaughan\", email = \"dvaughan@business-science.io\", role = c(\"aut\"))\n )", + "Description": "\n Easy visualization, wrangling, and feature engineering of time series data for \n forecasting and machine learning prediction. Consolidates and extends time series functionality \n from packages including 'dplyr', 'stats', 'xts', 'forecast', 'slider', 'padr', 'recipes', and 'rsample'.", + "URL": "https://github.com/business-science/timetk,\nhttps://business-science.github.io/timetk/", + "BugReports": "https://github.com/business-science/timetk/issues", + "License": "GPL (>= 3)", + "Encoding": "UTF-8", + "LazyData": "true", + "Depends": "R (>= 3.3.0)", + "Imports": "recipes (>= 1.0.4), rsample, dplyr (>= 1.0.0), ggplot2 (>=\n3.4.0), forcats, stringr, plotly, lubridate (>= 1.6.0), padr\n(>= 0.5.2), purrr (>= 0.2.2), readr (>= 1.3.0), stringi (>=\n1.4.6), tibble (>= 3.0.3), tidyr (>= 1.1.0), xts (>= 0.9-7),\nzoo (>= 1.7-14), rlang (>= 1.1.1), tidyselect (>= 1.1.0),\nslider, anytime, timeDate, forecast, tsfeatures, hms, generics", + "Suggests": "modeltime, glmnet, workflows, parsnip, tune (>= 0.1.2),\nknitr, rmarkdown, broom, scales, testthat, fracdiff,\ntimeSeries, tseries, trelliscopejs", + "RoxygenNote": "7.2.3", + "VignetteBuilder": "knitr", + "NeedsCompilation": "no", + "Packaged": "2023-10-31 19:15:26 UTC; mdancho", + "Author": "Matt Dancho [aut, cre],\n Davis Vaughan [aut]", + "Maintainer": "Matt Dancho ", + "Repository": "CRAN", + "Date/Publication": "2023-10-31 22:30:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:57:46 UTC; unix" + } + }, + "tinytex": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "tinytex", + "Type": "Package", + "Title": "Helper Functions to Install and Maintain TeX Live, and Compile\nLaTeX Documents", + "Version": "0.54", + "Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(\"Devon\", \"Ryan\", role = \"ctb\", email = \"dpryan79@gmail.com\", comment = c(ORCID = \"0000-0002-8549-0971\")),\n person(\"Ethan\", \"Heinzen\", role = \"ctb\"),\n person(\"Fernando\", \"Cagua\", role = \"ctb\"),\n person()\n )", + "Description": "Helper functions to install and maintain the 'LaTeX' distribution\n named 'TinyTeX' (), a lightweight, cross-platform,\n portable, and easy-to-maintain version of 'TeX Live'. This package also\n contains helper functions to compile 'LaTeX' documents, and install missing\n 'LaTeX' packages automatically.", + "Imports": "xfun (>= 0.48)", + "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.3.2", + "NeedsCompilation": "no", + "Packaged": "2024-11-01 14:22:24 UTC; yihui", + "Author": "Yihui Xie [aut, cre, cph] (),\n Posit Software, PBC [cph, fnd],\n Christophe Dervieux [ctb] (),\n Devon Ryan [ctb] (),\n Ethan Heinzen [ctb],\n Fernando Cagua [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN", + "Date/Publication": "2024-11-01 15:10:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:53:16 UTC; unix" + } + }, + "treesitter": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "treesitter", + "Title": "Bindings to 'Tree-Sitter'", + "Version": "0.1.0", + "Authors@R": "c(\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Tree-sitter authors\", role = \"cph\",\n comment = \"Tree-sitter C library\")\n )", + "Description": "Provides bindings to 'Tree-sitter', an incremental parsing\n system for programming tools. 'Tree-sitter' builds concrete syntax\n trees for source files of any language, and can efficiently update\n those syntax trees as the source file is edited. It also includes a\n robust error recovery system that provides useful parse results even\n in the presence of syntax errors.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/DavisVaughan/r-tree-sitter", + "BugReports": "https://github.com/DavisVaughan/r-tree-sitter/issues", + "Depends": "R (>= 4.3.0)", + "Imports": "cli (>= 3.6.2), R6 (>= 2.5.1), rlang (>= 1.1.3), vctrs (>=\n0.6.5)", + "Suggests": "testthat (>= 3.0.0), treesitter.r", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.1", + "NeedsCompilation": "yes", + "Packaged": "2024-06-22 00:02:29 UTC; davis", + "Author": "Davis Vaughan [aut, cre],\n Posit Software, PBC [cph, fnd],\n Tree-sitter authors [cph] (Tree-sitter C library)", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN", + "Date/Publication": "2024-06-24 15:30:05 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:57:52 UTC; unix" + } + }, + "treesitter.r": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "treesitter.r", + "Title": "'R' Grammar for 'Tree-Sitter'", + "Version": "1.1.0", + "Authors@R": "c(\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Tree-sitter authors\", role = \"cph\",\n comment = \"Tree-sitter C headers and parser.c\")\n )", + "Description": "Provides bindings to an 'R' grammar for 'Tree-sitter', to be\n used alongside the 'treesitter' package. 'Tree-sitter' builds concrete\n syntax trees for source files of any language, and can efficiently\n update those syntax trees as the source file is edited.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/tree-sitter-r", + "BugReports": "https://github.com/r-lib/tree-sitter-r/issues", + "Depends": "R (>= 4.3.0)", + "Suggests": "testthat (>= 3.0.0), treesitter", + "Config/build/bootstrap": "TRUE", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "yes", + "Packaged": "2024-09-06 20:41:54 UTC; davis", + "Author": "Davis Vaughan [aut, cre],\n Posit Software, PBC [cph, fnd],\n Tree-sitter authors [cph] (Tree-sitter C headers and parser.c)", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN", + "Date/Publication": "2024-09-06 21:00:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:57:57 UTC; unix" + } + }, + "tseries": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "tseries", + "Version": "0.10-58", + "Title": "Time Series Analysis and Computational Finance", + "Authors@R": "c(person(\"Adrian\", \"Trapletti\", role = \"aut\",\n email = \"adrian@trapletti.org\"),\n person(\"Kurt\", \"Hornik\", role = c(\"aut\", \"cre\"),\n email = \"Kurt.Hornik@R-project.org\",\n\t\t comment = c(ORCID = \"0000-0003-4198-9911\")),\n person(\"Blake\", \"LeBaron\", role = \"ctb\",\n comment = \"BDS test code\"))", + "Description": "Time series analysis and computational finance.", + "Depends": "R (>= 3.4.0)", + "Imports": "graphics, stats, utils, quadprog, zoo, quantmod (>= 0.4-9),\njsonlite", + "License": "GPL-2 | GPL-3", + "NeedsCompilation": "yes", + "Packaged": "2024-09-23 09:27:59 UTC; hornik", + "Author": "Adrian Trapletti [aut],\n Kurt Hornik [aut, cre] (),\n Blake LeBaron [ctb] (BDS test code)", + "Maintainer": "Kurt Hornik ", + "Repository": "CRAN", + "Date/Publication": "2024-09-23 10:00:16 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:45 UTC; unix" + } + }, + "tsfeatures": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "tsfeatures", + "Title": "Time Series Feature Extraction", + "Version": "1.1.1", + "Authors@R": "c(\n person(\"Rob\", \"Hyndman\", email = \"Rob.Hyndman@monash.edu\", role = c(\"aut\",\"cre\"), comment = c(ORCID = \"0000-0002-2140-5352\")),\n person(\"Yanfei\", \"Kang\", role = \"aut\", comment = c(ORCID = \"0000-0001-8769-6650\")),\n person(\"Pablo\", \"Montero-Manso\", email=\"p.montero.manso@udc.es\", role=\"aut\"),\n person(\"Mitchell\", \"O'Hara-Wild\", role=\"aut\", comment=c(ORCID = \"0000-0001-6729-7695\")),\n person(\"Thiyanga\", \"Talagala\", role = \"aut\", comment=c(ORCID = \"0000-0002-0656-9789\")),\n person(\"Earo\", \"Wang\", role = \"aut\", comment=c(ORCID = \"0000-0001-6448-5260\")),\n person(\"Yangzhuoran\", \"Yang\", email = \"Fin.Yang@monash.edu\", role = \"aut\"),\n person(\"Souhaib\", \"Ben Taieb\", role = \"ctb\"),\n person(\"Cao\", \"Hanqing\", role=\"ctb\"),\n person(\"D K\", \"Lake\", role=\"ctb\"),\n person(\"Nikolay\", \"Laptev\", role=\"ctb\"),\n person(\"J R\", \"Moorman\", role=\"ctb\"),\n person(\"Bohan\", \"Zhang\", role = \"ctb\"))", + "Description": "Methods for extracting various features from time series data. The features provided are those from Hyndman, Wang and Laptev (2013) , Kang, Hyndman and Smith-Miles (2017) and from Fulcher, Little and Jones (2013) . Features include spectral entropy, autocorrelations, measures of the strength of seasonality and trend, and so on. Users can also define their own feature functions.", + "Depends": "R (>= 3.6.0)", + "Imports": "fracdiff, forecast (>= 8.3), purrr, RcppRoll (>= 0.2.2),\nstats, tibble, tseries, urca, future, furrr", + "Suggests": "testthat, knitr, rmarkdown, ggplot2, tidyr, dplyr, Mcomp,\nGGally", + "License": "GPL-3", + "ByteCompile": "true", + "URL": "https://pkg.robjhyndman.com/tsfeatures/,\nhttps://github.com/robjhyndman/tsfeatures", + "BugReports": "https://github.com/robjhyndman/tsfeatures/issues", + "RoxygenNote": "7.2.3", + "VignetteBuilder": "knitr", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2023-08-28 13:23:56 UTC; robjhyndman", + "Author": "Rob Hyndman [aut, cre] (),\n Yanfei Kang [aut] (),\n Pablo Montero-Manso [aut],\n Mitchell O'Hara-Wild [aut] (),\n Thiyanga Talagala [aut] (),\n Earo Wang [aut] (),\n Yangzhuoran Yang [aut],\n Souhaib Ben Taieb [ctb],\n Cao Hanqing [ctb],\n D K Lake [ctb],\n Nikolay Laptev [ctb],\n J R Moorman [ctb],\n Bohan Zhang [ctb]", + "Maintainer": "Rob Hyndman ", + "Repository": "CRAN", + "Date/Publication": "2023-08-28 14:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:57:44 UTC; unix" + } + }, + "tzdb": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "tzdb", + "Title": "Time Zone Database Information", + "Version": "0.4.0", + "Authors@R": "c(\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Howard\", \"Hinnant\", role = \"cph\",\n comment = \"Author of the included date library\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Provides an up-to-date copy of the Internet Assigned Numbers\n Authority (IANA) Time Zone Database. It is updated periodically to\n reflect changes made by political bodies to time zone boundaries, UTC\n offsets, and daylight saving time rules. Additionally, this package\n provides a C++ interface for working with the 'date' library. 'date'\n provides comprehensive support for working with dates and date-times,\n which this package exposes to make it easier for other R packages to\n utilize. Headers are provided for calendar specific calculations,\n along 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],\n Howard Hinnant [cph] (Author of the included date library),\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN", + "Date/Publication": "2023-05-12 23:00:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:51:52 UTC; unix" + } + }, + "urca": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "urca", + "Version": "1.3-4", + "Date": "2024-05-25", + "Title": "Unit Root and Cointegration Tests for Time Series Data", + "Authors@R": "c(person(\"Bernhard\", \"Pfaff\", email = \"bernhard@pfaffikus.de\", role = c(\"aut\", \"cre\")), person(\"Eric\", \"Zivot\",email = \"ezivot@u.washington.edu\", role = \"ctb\"), person(\"Matthieu\", \"Stigler\", role = \"ctb\"))", + "Depends": "R (>= 2.0.0), methods", + "Imports": "nlme, graphics, stats", + "LazyLoad": "yes", + "Description": "Unit root and cointegration tests encountered in applied \n econometric analysis are implemented.", + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Packaged": "2024-05-25 16:28:23 UTC; bp", + "Author": "Bernhard Pfaff [aut, cre],\n Eric Zivot [ctb],\n Matthieu Stigler [ctb]", + "Maintainer": "Bernhard Pfaff ", + "Repository": "CRAN", + "Date/Publication": "2024-05-27 12:20:03 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:47 UTC; unix" + } + }, + "utf8": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "utf8", + "Title": "Unicode Text Processing", + "Version": "1.2.4", + "Authors@R": "\n c(person(given = c(\"Patrick\", \"O.\"),\n family = \"Perry\",\n role = c(\"aut\", \"cph\")),\n person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = \"cre\",\n email = \"kirill@cynkra.com\"),\n person(given = \"Unicode, Inc.\",\n role = c(\"cph\", \"dtc\"),\n comment = \"Unicode Character Database\"))", + "Description": "Process and print 'UTF-8' encoded international\n text (Unicode). Input, validate, normalize, encode, format, and\n display.", + "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-10-22 13:43:19 UTC; kirill", + "Author": "Patrick O. Perry [aut, cph],\n Kirill Müller [cre],\n Unicode, Inc. [cph, dtc] (Unicode Character Database)", + "Maintainer": "Kirill Müller ", + "Repository": "CRAN", + "Date/Publication": "2023-10-22 21:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:57 UTC; unix" + } + }, + "uuid": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "uuid", + "Version": "1.2-1", + "Title": "Tools for Generating and Handling of UUIDs", + "Author": "Simon Urbanek [aut, cre, cph] (https://urbanek.org,\n ),\n Theodore Ts'o [aut, cph] (libuuid)", + "Maintainer": "Simon Urbanek ", + "Authors@R": "c(person(\"Simon\", \"Urbanek\", role=c(\"aut\",\"cre\",\"cph\"), email=\"Simon.Urbanek@r-project.org\", comment=c(\"https://urbanek.org\", ORCID=\"0000-0003-2297-1732\")), person(\"Theodore\",\"Ts'o\", email=\"tytso@thunk.org\", role=c(\"aut\",\"cph\"), comment=\"libuuid\"))", + "Depends": "R (>= 2.9.0)", + "Description": "Tools for generating and handling of UUIDs (Universally Unique Identifiers).", + "License": "MIT + file LICENSE", + "URL": "https://www.rforge.net/uuid", + "BugReports": "https://github.com/s-u/uuid/issues", + "NeedsCompilation": "yes", + "Packaged": "2024-07-29 03:16:54 UTC; rforge", + "Repository": "CRAN", + "Date/Publication": "2024-07-29 07:09:22 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:52:52 UTC; unix" + } + }, + "vctrs": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "vctrs", + "Title": "Vector Helpers", + "Version": "0.6.5", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"),\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"data.table team\", role = \"cph\",\n comment = \"Radix sort based on data.table's forder() and their contribution to R's order()\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Defines new notions of prototype and size that are used to\n provide tools for consistent and well-founded type-coercion and\n size-recycling, and are in turn connected to ideas of type- and\n size-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-12-01 16:27:12 UTC; davis", + "Author": "Hadley Wickham [aut],\n Lionel Henry [aut],\n Davis Vaughan [aut, cre],\n data.table team [cph] (Radix sort based on data.table's forder() and\n their contribution to R's order()),\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN", + "Date/Publication": "2023-12-01 23:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:10 UTC; unix" + } + }, + "viridisLite": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "viridisLite", + "Type": "Package", + "Title": "Colorblind-Friendly Color Maps (Lite Version)", + "Version": "0.4.2", + "Date": "2023-05-02", + "Authors@R": "c(\n person(\"Simon\", \"Garnier\", email = \"garnier@njit.edu\", role = c(\"aut\", \"cre\")),\n person(\"Noam\", \"Ross\", email = \"noam.ross@gmail.com\", role = c(\"ctb\", \"cph\")),\n person(\"Bob\", \"Rudis\", email = \"bob@rud.is\", role = c(\"ctb\", \"cph\")),\n person(\"Marco\", \"Sciaini\", email = \"sciaini.marco@gmail.com\", role = c(\"ctb\", \"cph\")),\n person(\"Antônio Pedro\", \"Camargo\", role = c(\"ctb\", \"cph\")),\n person(\"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 \n common forms of color blindness and/or color vision deficiency. The color \n maps are also perceptually-uniform, both in regular form and also when \n converted to black-and-white for printing. This is the 'lite' version of the \n 'viridis' package that also contains 'ggplot2' bindings for discrete and \n continuous 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],\n Noam Ross [ctb, cph],\n Bob Rudis [ctb, cph],\n Marco Sciaini [ctb, cph],\n Antônio Pedro Camargo [ctb, cph],\n Cédric Scherer [ctb, cph]", + "Repository": "CRAN", + "Date/Publication": "2023-05-02 23:50:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:54:17 UTC; unix" + } + }, + "vroom": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "vroom", + "Title": "Read and Write Rectangular Text Data Quickly", + "Version": "1.6.5", + "Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Jennifer\", \"Bryan\", , \"jenny@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-6983-2759\")),\n person(\"Shelby\", \"Bearrows\", role = \"ctb\"),\n person(\"https://github.com/mandreyel/\", role = \"cph\",\n comment = \"mio library\"),\n person(\"Jukka\", \"Jylänki\", role = \"cph\",\n comment = \"grisu3 implementation\"),\n person(\"Mikkel\", \"Jørgensen\", role = \"cph\",\n comment = \"grisu3 implementation\"),\n person(\"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\n indexing step, then reads the values lazily , so only the data you\n actually use needs to be read. The writer formats the data in\n parallel 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.9000", + "NeedsCompilation": "yes", + "Packaged": "2023-12-05 16:46:59 UTC; jenny", + "Author": "Jim Hester [aut] (),\n Hadley Wickham [aut] (),\n Jennifer Bryan [aut, cre] (),\n Shelby Bearrows [ctb],\n https://github.com/mandreyel/ [cph] (mio library),\n Jukka Jylänki [cph] (grisu3 implementation),\n Mikkel Jørgensen [cph] (grisu3 implementation),\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Jennifer Bryan ", + "Repository": "CRAN", + "Date/Publication": "2023-12-05 23:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:56:22 UTC; unix" + } + }, + "waldo": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "waldo", + "Title": "Find Differences Between R Objects", + "Version": "0.6.1", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Compare complex R objects and reveal the key differences.\n Designed particularly for use in testing packages where being able to\n quickly isolate key differences makes understanding test failures much\n easier.", + "License": "MIT + file LICENSE", + "URL": "https://waldo.r-lib.org, https://github.com/r-lib/waldo", + "BugReports": "https://github.com/r-lib/waldo/issues", + "Depends": "R (>= 4.0)", + "Imports": "cli, diffobj (>= 0.3.4), glue, methods, rlang (>= 1.1.0)", + "Suggests": "bit64, R6, S7, testthat (>= 3.0.0), withr, xml2", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2024-11-07 15:32:32 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2024-11-07 20:50:01 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:57:18 UTC; unix" + } + }, + "warp": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "warp", + "Title": "Group Dates", + "Version": "0.2.1", + "Authors@R": "c(\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Tooling to group dates by a variety of periods including:\n yearly, monthly, by second, by week of the month, and more. The\n groups are defined in such a way that they also represent the distance\n between dates in terms of the period. This extracts valuable\n information that can be used in further calculations that rely on a\n specific temporal spacing between observations.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/DavisVaughan/warp,\nhttps://davisvaughan.github.io/warp/", + "BugReports": "https://github.com/DavisVaughan/warp/issues", + "Depends": "R (>= 3.2)", + "Suggests": "covr, knitr, rmarkdown, testthat (>= 3.0.0)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "yes", + "Packaged": "2023-11-02 13:46:26 UTC; davis", + "Author": "Davis Vaughan [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Davis Vaughan ", + "Repository": "CRAN", + "Date/Publication": "2023-11-02 17:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:57:32 UTC; unix" + } + }, + "websocket": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "websocket", + "Version": "1.4.2", + "Title": "'WebSocket' Client Library", + "Description": "Provides a 'WebSocket' client interface for R.\n 'WebSocket' is a protocol for low-overhead real-time communication:\n .", + "Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\"),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"),\n person(\"Alan\", \"Dipert\", role = \"aut\"),\n person(\"Barbara\", \"Borges\", role = \"aut\"),\n person(family = \"Posit, PBC\", role = \"cph\"),\n person(\"Peter\", \"Thorson\", role = c(\"ctb\", \"cph\"), comment = \"WebSocket++ library\"),\n person(\"René\", \"Nyffenegger\", role = c(\"ctb\", \"cph\"), comment = \"Base 64 library\"),\n person(\"Micael\", \"Hildenborg\", role = c(\"ctb\", \"cph\"), comment = \"SHA1 library\"),\n person(family = \"Aladdin Enterprises\", role = \"cph\", comment = \"MD5 library\"),\n person(\"Bjoern\", \"Hoehrmann\", role = c(\"ctb\", \"cph\"), comment = \"UTF8 Validation library\"))", + "License": "GPL-2", + "Encoding": "UTF-8", + "ByteCompile": "true", + "Imports": "R6, later (>= 1.2.0)", + "LinkingTo": "cpp11, AsioHeaders, later", + "BugReports": "https://github.com/rstudio/websocket/issues", + "SystemRequirements": "GNU make, OpenSSL >= 1.0.2", + "RoxygenNote": "7.3.2", + "Suggests": "httpuv, testthat, knitr, rmarkdown", + "VignetteBuilder": "knitr", + "NeedsCompilation": "yes", + "Packaged": "2024-07-22 17:16:18 UTC; winston", + "Author": "Winston Chang [aut, cre],\n Joe Cheng [aut],\n Alan Dipert [aut],\n Barbara Borges [aut],\n Posit, PBC [cph],\n Peter Thorson [ctb, cph] (WebSocket++ library),\n René Nyffenegger [ctb, cph] (Base 64 library),\n Micael Hildenborg [ctb, cph] (SHA1 library),\n Aladdin Enterprises [cph] (MD5 library),\n Bjoern Hoehrmann [ctb, cph] (UTF8 Validation library)", + "Maintainer": "Winston Chang ", + "Repository": "CRAN", + "Date/Publication": "2024-07-22 22:20:01 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:51:30 UTC; unix" + } + }, + "withr": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "withr", + "Title": "Run Code 'With' Temporarily Modified Global State", + "Version": "3.0.2", + "Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Kirill\", \"Müller\", , \"krlmlr+r@mailbox.org\", role = \"aut\"),\n person(\"Kevin\", \"Ushey\", , \"kevinushey@gmail.com\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"Jennifer\", \"Bryan\", role = \"ctb\"),\n person(\"Richard\", \"Cotton\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "A set of functions to run code 'with' safely and temporarily\n modified global state. Many of these functions were originally a part\n of the 'devtools' package, this provides a simple package with limited\n dependencies to provide access to these functions.", + "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.6.0)", + "Imports": "graphics, grDevices", + "Suggests": "callr, DBI, knitr, methods, rlang, rmarkdown (>= 2.12),\nRSQLite, testthat (>= 3.0.0)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "Collate": "'aaa.R' 'collate.R' 'connection.R' 'db.R' 'defer-exit.R'\n'standalone-defer.R' 'defer.R' 'devices.R' 'local_.R' 'with_.R'\n'dir.R' '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' 'wrap.R' 'sink.R' 'tempfile.R' 'timezone.R'\n'torture.R' 'utils.R' 'with.R'", + "NeedsCompilation": "no", + "Packaged": "2024-10-28 10:58:18 UTC; lionel", + "Author": "Jim Hester [aut],\n Lionel Henry [aut, cre],\n Kirill Müller [aut],\n Kevin Ushey [aut],\n Hadley Wickham [aut],\n Winston Chang [aut],\n Jennifer Bryan [ctb],\n Richard Cotton [ctb],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Lionel Henry ", + "Repository": "CRAN", + "Date/Publication": "2024-10-28 13:30:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:48:45 UTC; unix" + } + }, + "xfun": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "xfun", + "Type": "Package", + "Title": "Supporting Functions for Packages Maintained by 'Yihui Xie'", + "Version": "0.50", + "Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Wush\", \"Wu\", role = \"ctb\"),\n person(\"Daijiang\", \"Li\", role = \"ctb\"),\n person(\"Xianying\", \"Tan\", role = \"ctb\"),\n person(\"Salim\", \"Brüggemann\", role = \"ctb\", email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\"),\n person()\n )", + "Description": "Miscellaneous functions commonly used in other packages maintained by 'Yihui Xie'.", + "Depends": "R (>= 3.2.0)", + "Imports": "grDevices, stats, tools", + "Suggests": "testit, parallel, codetools, methods, rstudioapi, tinytex (>=\n0.30), mime, litedown (>= 0.4), commonmark, knitr (>= 1.47),\nremotes, pak, rhub, renv, curl, xml2, jsonlite, magick, yaml,\nqs, rmarkdown", + "License": "MIT + file LICENSE", + "URL": "https://github.com/yihui/xfun", + "BugReports": "https://github.com/yihui/xfun/issues", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "VignetteBuilder": "litedown", + "NeedsCompilation": "yes", + "Packaged": "2025-01-07 14:01:22 UTC; runner", + "Author": "Yihui Xie [aut, cre, cph] (),\n Wush Wu [ctb],\n Daijiang Li [ctb],\n Xianying Tan [ctb],\n Salim Brüggemann [ctb] (),\n Christophe Dervieux [ctb]", + "Maintainer": "Yihui Xie ", + "Repository": "CRAN", + "Date/Publication": "2025-01-07 15:20:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:47 UTC; unix" + } + }, + "xml2": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "xml2", + "Title": "Parse XML", + "Version": "1.3.6", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Jeroen\", \"Ooms\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"R Foundation\", role = \"ctb\",\n comment = \"Copy of R-project homepage cached as example\")\n )", + "Description": "Work with XML files using a simple, consistent interface.\n Built 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.6.0)", + "Imports": "cli, methods, rlang (>= 1.1.0)", + "Suggests": "covr, curl, httr, knitr, magrittr, mockery, rmarkdown,\ntestthat (>= 3.0.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' 'format.R' 'import-standalone-obj-type.R'\n'import-standalone-purrr.R' 'import-standalone-types-check.R'\n'init.R' 'nodeset_apply.R' 'paths.R' 'utils.R' 'xml2-package.R'\n'xml_attr.R' 'xml_children.R' 'xml_document.R' 'xml_find.R'\n'xml_missing.R' 'xml_modify.R' 'xml_name.R' 'xml_namespaces.R'\n'xml_node.R' 'xml_nodeset.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'", + "Config/testthat/edition": "3", + "NeedsCompilation": "yes", + "Packaged": "2023-12-04 14:50:27 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\n Jim Hester [aut],\n Jeroen Ooms [aut],\n Posit Software, PBC [cph, fnd],\n R Foundation [ctb] (Copy of R-project homepage cached as example)", + "Maintainer": "Hadley Wickham ", + "Repository": "CRAN", + "Date/Publication": "2023-12-04 16:30:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:02 UTC; unix" + } + }, + "xmlparsedata": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "xmlparsedata", + "Title": "Parse Data of 'R' Code as an 'XML' Tree", + "Version": "1.0.5", + "Author": "Gábor Csárdi", + "Maintainer": "Gábor Csárdi ", + "Description": "Convert the output of 'utils::getParseData()' to an 'XML'\n tree, that one can search via 'XPath', and easier to manipulate in\n general.", + "License": "MIT + file LICENSE", + "LazyData": "true", + "URL": "https://github.com/r-lib/xmlparsedata#readme", + "BugReports": "https://github.com/r-lib/xmlparsedata/issues", + "RoxygenNote": "6.0.1", + "Suggests": "covr, testthat, xml2", + "Depends": "R (>= 3.0.0)", + "Encoding": "UTF-8", + "NeedsCompilation": "no", + "Packaged": "2021-03-06 10:52:40 UTC; gaborcsardi", + "Repository": "CRAN", + "Date/Publication": "2021-03-06 11:10:02 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:49:06 UTC; unix" + } + }, + "xtable": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "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\"),\n person(\"David\", \"Scott\", role=c(\"aut\",\"cre\"),\n email=\"d.scott@auckland.ac.nz\"),\n person(\"Charles\", \"Roosen\", role=\"aut\"),\n person(\"Arni\", \"Magnusson\", role=\"aut\"),\n person(\"Jonathan\", \"Swinton\", role=\"aut\"),\n person(\"Ajay\", \"Shah\", role=\"ctb\"),\n person(\"Arne\", \"Henningsen\", role=\"ctb\"),\n person(\"Benno\", \"Puetz\", role=\"ctb\"),\n person(\"Bernhard\", \"Pfaff\", role=\"ctb\"),\n person(\"Claudio\", \"Agostinelli\", role=\"ctb\"),\n person(\"Claudius\", \"Loehnert\", role=\"ctb\"),\n person(\"David\", \"Mitchell\", role=\"ctb\"),\n person(\"David\", \"Whiting\", role=\"ctb\"),\n person(\"Fernando da\", \"Rosa\", role=\"ctb\"),\n person(\"Guido\", \"Gay\", role=\"ctb\"),\n person(\"Guido\", \"Schulz\", role=\"ctb\"),\n person(\"Ian\", \"Fellows\", role=\"ctb\"),\n person(\"Jeff\", \"Laake\", role=\"ctb\"),\n person(\"John\", \"Walker\", role=\"ctb\"),\n person(\"Jun\", \"Yan\", role=\"ctb\"),\n person(\"Liviu\", \"Andronic\", role=\"ctb\"),\n person(\"Markus\", \"Loecher\", role=\"ctb\"),\n person(\"Martin\", \"Gubri\", role=\"ctb\"),\n person(\"Matthieu\", \"Stigler\", role=\"ctb\"),\n person(\"Robert\", \"Castelo\", role=\"ctb\"),\n person(\"Seth\", \"Falcon\", role=\"ctb\"),\n person(\"Stefan\", \"Edwards\", role=\"ctb\"),\n person(\"Sven\", \"Garbade\", role=\"ctb\"),\n person(\"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": "CRAN", + "NeedsCompilation": "no", + "Packaged": "2019-04-21 10:56:51 UTC; dsco036", + "Author": "David B. Dahl [aut],\n David Scott [aut, cre],\n Charles Roosen [aut],\n Arni Magnusson [aut],\n Jonathan Swinton [aut],\n Ajay Shah [ctb],\n Arne Henningsen [ctb],\n Benno Puetz [ctb],\n Bernhard Pfaff [ctb],\n Claudio Agostinelli [ctb],\n Claudius Loehnert [ctb],\n David Mitchell [ctb],\n David Whiting [ctb],\n Fernando da Rosa [ctb],\n Guido Gay [ctb],\n Guido Schulz [ctb],\n Ian Fellows [ctb],\n Jeff Laake [ctb],\n John Walker [ctb],\n Jun Yan [ctb],\n Liviu Andronic [ctb],\n Markus Loecher [ctb],\n Martin Gubri [ctb],\n Matthieu Stigler [ctb],\n Robert Castelo [ctb],\n Seth Falcon [ctb],\n Stefan Edwards [ctb],\n Sven Garbade [ctb],\n Uwe Ligges [ctb]", + "Date/Publication": "2019-04-21 12:20:03 UTC", + "Built": "R 4.5.0; ; 2025-04-16 13:53:55 UTC; unix" + } + }, + "xts": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "xts", + "Type": "Package", + "Title": "eXtensible Time Series", + "Version": "0.14.1", + "Authors@R": "c(\n person(given=c(\"Jeffrey\",\"A.\"), family=\"Ryan\", role=c(\"aut\",\"cph\")),\n person(given=c(\"Joshua\",\"M.\"), family=\"Ulrich\", role=c(\"cre\",\"aut\"), email=\"josh.m.ulrich@gmail.com\"),\n person(given=\"Ross\", family=\"Bennett\", role=\"ctb\"),\n person(given=\"Corwin\", family=\"Joy\", role=\"ctb\")\n )", + "Depends": "R (>= 3.6.0), zoo (>= 1.7-12)", + "Imports": "methods", + "LinkingTo": "zoo", + "Suggests": "timeSeries, timeDate, tseries, chron, tinytest", + "LazyLoad": "yes", + "Description": "Provide for uniform handling of R's different time-based data classes by extending zoo, maximizing native format information preservation and allowing for user level customization and extension, while simplifying cross-class interoperability.", + "License": "GPL (>= 2)", + "URL": "https://joshuaulrich.github.io/xts/,\nhttps://github.com/joshuaulrich/xts", + "BugReports": "https://github.com/joshuaulrich/xts/issues", + "Encoding": "UTF-8", + "NeedsCompilation": "yes", + "Packaged": "2024-10-15 15:25:09 UTC; josh", + "Author": "Jeffrey A. Ryan [aut, cph],\n Joshua M. Ulrich [cre, aut],\n Ross Bennett [ctb],\n Corwin Joy [ctb]", + "Maintainer": "Joshua M. Ulrich ", + "Repository": "CRAN", + "Date/Publication": "2024-10-15 17:30:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:52 UTC; unix" + } + }, + "yaml": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "yaml", + "Type": "Package", + "Title": "Methods to Convert R Data to YAML and Back", + "Date": "2024-07-22", + "Version": "2.3.10", + "Suggests": "RUnit", + "Author": "Shawn P Garbett [aut], Jeremy Stephens [aut, cre], Kirill Simonov [aut], Yihui Xie [ctb],\n Zhuoer Dong [ctb], Hadley Wickham [ctb], Jeffrey Horner [ctb], reikoch [ctb],\n Will Beasley [ctb], Brendan O'Connor [ctb], Gregory R. Warnes [ctb],\n Michael Quinn [ctb], Zhian N. Kamvar [ctb], Charlie Gao [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": "2024-07-22 15:44:18 UTC; garbetsp", + "Repository": "CRAN", + "Date/Publication": "2024-07-26 15:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:50 UTC; unix" + } + }, + "zoo": { + "Source": "CRAN", + "Repository": "https://cloud.r-project.org", + "description": { + "Package": "zoo", + "Version": "1.8-12", + "Date": "2023-04-11", + "Title": "S3 Infrastructure for Regular and Irregular Time Series (Z's\nOrdered Observations)", + "Authors@R": "c(person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\",\n comment = c(ORCID = \"0000-0003-0918-3766\")),\n person(given = \"Gabor\", family = \"Grothendieck\", role = \"aut\", email = \"ggrothendieck@gmail.com\"),\n person(given = c(\"Jeffrey\", \"A.\"), family = \"Ryan\", role = \"aut\", email = \"jeff.a.ryan@gmail.com\"),\n person(given = c(\"Joshua\", \"M.\"), family = \"Ulrich\", role = \"ctb\", email = \"josh.m.ulrich@gmail.com\"),\n person(given = \"Felix\", family = \"Andrews\", role = \"ctb\", email = \"felix@nfrac.org\"))", + "Description": "An S3 class with methods for totally ordered indexed\n observations. It is particularly aimed at irregular time series\n of numeric vectors/matrices and factors. zoo's key design goals\n are independence of a particular index/date/time class and\n consistency with ts and base R by providing methods to extend\n standard generics.", + "Depends": "R (>= 3.1.0), stats", + "Suggests": "AER, coda, chron, ggplot2 (>= 3.0.0), mondate, scales,\nstinepack, strucchange, timeDate, timeSeries, tis, tseries, xts", + "Imports": "utils, graphics, grDevices, lattice (>= 0.20-27)", + "License": "GPL-2 | GPL-3", + "URL": "https://zoo.R-Forge.R-project.org/", + "NeedsCompilation": "yes", + "Packaged": "2023-04-11 21:24:32 UTC; zeileis", + "Author": "Achim Zeileis [aut, cre] (),\n Gabor Grothendieck [aut],\n Jeffrey A. Ryan [aut],\n Joshua M. Ulrich [ctb],\n Felix Andrews [ctb]", + "Maintainer": "Achim Zeileis ", + "Repository": "CRAN", + "Date/Publication": "2023-04-13 12:13:20 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:50 UTC; unix" + } + } + }, + "files": { + "_brand.yml": { + "checksum": "8146f7b0121fb6f39b9e5188b47bcaf2" + }, + ".Rprofile": { + "checksum": "19abc03c8bd88c56d520928513d5793f" + }, + "app.R": { + "checksum": "d4103b4dcc8bebfefd99294ba6125f11" + }, + "app/constants/filter_users.yml": { + "checksum": "72bb5d2d41510ad5b64bb2e3782958bd" + }, + "app/js/index.js": { + "checksum": "d41d8cd98f00b204e9800998ecf8427e" + }, + "app/logic/__init__.R": { + "checksum": "fc31f56f5159ebec4d48b75df266087e" + }, + "app/logic/aggregation.R": { + "checksum": "ef6c065f0a0d0d317f83214d8ea4b6dd" + }, + "app/logic/charts.R": { + "checksum": "20453c65c0d1d3a2128743ec0388c8f0" + }, + "app/logic/config_settings.R": { + "checksum": "944421d95f64ebb2fe3d5915f8043782" + }, + "app/logic/connect-extension.R": { + "checksum": "b7f3429e9c3f348b92cdee1e9fed2eab" + }, + "app/logic/data_utils.R": { + "checksum": "635bbc125bca53c54f68a434b03a327b" + }, + "app/logic/duration_utils.R": { + "checksum": "9f37b410baf89a47497678574bb9bfe4" + }, + "app/logic/ui_utils.R": { + "checksum": "e73947f75ea65817f4f0eb14b0be4d99" + }, + "app/logic/utils.R": { + "checksum": "ac4acd8bf14d0c1a9c62b63bb63e3249" + }, + "app/main.R": { + "checksum": "0b20a3134e20392907c1b98d66885065" + }, + "app/metrics_theme_template.json": { + "checksum": "739a6abf73b5bae26e415f0713215c78" + }, + "app/metrics_theme.json": { + "checksum": "8d5e45f80668c8426c9a225e1b7b69f3" + }, + "app/static/css/app.min.css": { + "checksum": "a4b4f1514983e6c6f5a56401135c60c2" + }, + "app/static/favicon.ico": { + "checksum": "e72bfa8bd3d984fc2828c1303e165766" + }, + "app/static/images/appsilon-logo.png": { + "checksum": "60839e4d81e577cb2dafb647f410dd8e" + }, + "app/static/images/rhino.png": { + "checksum": "fab8acd0eeb2e68c3509a0ddee752b23" + }, + "app/static/js/app.min.js": { + "checksum": "41f146dae174df1670e407e3eb18becc" + }, + "app/styles/components/_about.scss": { + "checksum": "ea65928d2f7343d3f6f040ab154d2a64" + }, + "app/styles/components/_content.scss": { + "checksum": "8dea0a7c7c3434f50cfdbacad50804b1" + }, + "app/styles/components/_footer.scss": { + "checksum": "59eb14c77c03a5e2fcf515cb66d91df5" + }, + "app/styles/components/_navbar.scss": { + "checksum": "bd85f1c4fc6f29aedd1b679bf90b8662" + }, + "app/styles/components/_session_duration.scss": { + "checksum": "38efc6886ad03044d96d73a6be52e931" + }, + "app/styles/components/_sidebar.scss": { + "checksum": "091b480049d6e27629e17e6410a22f2c" + }, + "app/styles/components/_table.scss": { + "checksum": "f539c0ceb1a8365b4f47ee0c7e5caab2" + }, + "app/styles/main.scss": { + "checksum": "316612905a5a0304b530fc15fe3b2401" + }, + "app/styles/utilities/_base.scss": { + "checksum": "dc18e1ebd2e5439531c0d6b21db8d74b" + }, + "app/styles/utilities/_variables.scss": { + "checksum": "218ca669e7f0cd2f44c34511cf4e5523" + }, + "app/view/__init__.R": { + "checksum": "540e8404d0bf10a8237595023d99f5bb" + }, + "app/view/about_section.R": { + "checksum": "7d3cd435ac5cd35a659a64cd53e36bf6" + }, + "app/view/footer.R": { + "checksum": "18353d22eca20424352f6629b48898e2" + }, + "app/view/navbar_section.R": { + "checksum": "604ec8ca52135a42ce72eda2ee808509" + }, + "app/view/session_duration.R": { + "checksum": "708105a984d06c6a46d0ed773d663622" + }, + "app/view/table.R": { + "checksum": "6bea8aa7e6a3dd7c422da0b5d9ae6d54" + }, + "app/view/ui_components.R": { + "checksum": "7ccb25b8f68f17063cca258d0686fce8" + }, + "config.yml": { + "checksum": "d663fedad3a918575e6d85adb5667989" + }, + "dependencies.R": { + "checksum": "3586ff13a526a9f85988f127d732ca7e" + }, + "README.md": { + "checksum": "a1c38b2f8341e6b735d07600e0401027" + }, + "renv.lock": { + "checksum": "7c221a5963eb200f6a7fbf12ac5ed1c8" + }, + "rhino.yml": { + "checksum": "4f8295c6437069d07ae84698aca26c76" + }, + "tests/cypress.config.js": { + "checksum": "e5f72cdc7c9b762ade4b756931fc662b" + }, + "tests/cypress/e2e/app.cy.js": { + "checksum": "d4e8bf197084578914e3f18104e20a24" + }, + "tests/testthat.R": { + "checksum": "935f216b013d0914cf23ab906e88f3a8" + }, + "tests/testthat/setup.R": { + "checksum": "5a6a6f477185bba9147fcdc903091117" + }, + "tests/testthat/test-aggregation.R": { + "checksum": "10d9febaa645e16682a1971df35c484f" + }, + "tests/testthat/test-charts.R": { + "checksum": "1801edfe5f9461ecc5733f91973901c4" + }, + "tests/testthat/test-config.R": { + "checksum": "cefa8abc4dff895a1aa1325b5c3e8281" + }, + "tests/testthat/test-data_utils.R": { + "checksum": "c61291995281fbbdeedeb46853a46447" + }, + "tests/testthat/test-duration_utils.R": { + "checksum": "af0469a315b52a4ebbe6989927a0cee3" + }, + "tests/testthat/test-session_duration.R": { + "checksum": "bced27a7506b6365c1ab6dcc6ce89373" + }, + "tests/testthat/test-ui_utils.R": { + "checksum": "9d19858494d98c14c05f736b00f76d84" + }, + "tests/testthat/test-utils.R": { + "checksum": "ec242ce7b9fceb8293f337774b399718" + } + }, + "users": null, + "extension": { + "name": "connect-user-metrics", + "title": "Connect User Metrics Insights", + "description": "A dashboard to explore the usage of Shiny applications deployed on Connect", + "homepage": "https://github.com/posit-dev/connect-extensions/tree/main/extensions/my-content-name", + "category": "extension", + "tags": ["r", "shiny"], + "minimumConnectVersion": "2025.04.0", + "version": "0.0.0" + } +} + From 6820cb0e8f7f43129c6d27e52d9745524da9ed5b Mon Sep 17 00:00:00 2001 From: vituri Date: Fri, 6 Jun 2025 15:44:20 -0300 Subject: [PATCH 03/31] add connect-user-metrics to enxtensions.yml --- .github/workflows/extensions.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/extensions.yml b/.github/workflows/extensions.yml index 295a7e84..65e2be5a 100644 --- a/.github/workflows/extensions.yml +++ b/.github/workflows/extensions.yml @@ -55,6 +55,7 @@ jobs: usage-metrics-dashboard: extensions/usage-metrics-dashboard/** voila-example: extensions/voila-example/** stock-report: extensions/stock-report/** + connect-user-metrics: extensions/connect-user-metrics/** # Runs for each extension that has changed from `simple-extension-changes` # Lints and packages in preparation for tests and and release. From 627dabf262d9f3da01e2fac05b5009998f83536f Mon Sep 17 00:00:00 2001 From: vituri Date: Mon, 9 Jun 2025 02:21:54 -0300 Subject: [PATCH 04/31] shorter readme --- extensions/connect-user-metrics/README.md | 226 ++-------------------- 1 file changed, 16 insertions(+), 210 deletions(-) diff --git a/extensions/connect-user-metrics/README.md b/extensions/connect-user-metrics/README.md index b1f0b7ab..4d308282 100644 --- a/extensions/connect-user-metrics/README.md +++ b/extensions/connect-user-metrics/README.md @@ -1,241 +1,47 @@ # Connect Insights Dashboard -Expected output: repository with ready-to-use tool. Deploy, set env vars, and enjoy! -Repository for a reproducible tool to share user metrics for Posit Connect deployed applications. - -Expected deployment time: only 5 minutes! - -## Quickstart -To get insights about applications deployed by you, simply deploy the application to Posit Connect. - -If you wish to run the application locally, set the required [Environment Variables](#environment-variables), -and run `shiny::runApp()` from the root of this repository. ## Environment Variables + This application requires the following environment variables to be set: - - `CONNECT_API_KEY` - - `CONNECT_SERVER` + +- `CONNECT_API_KEY` +- `CONNECT_SERVER` By default, Posit Connect provides values for these variables, as outlined in the [Vars (Environment Variables) Section][User Guide Vars]. However, there are cases where you might want to set these variables manually: - - If you want to retrieve data for applications deployed by a different Publisher than the one + +- If you want to retrieve data for applications deployed by a different Publisher than the one deploying the User Metrics application, set `CONNECT_API_KEY` with that Publisher's API key. - - If you want to retrieve data from a different Posit Connect instance than the one where the User +- If you want to retrieve data from a different Posit Connect instance than the one where the User Metrics application is deployed, set `CONNECT_SERVER` with the URL of that instance. - Additionally, `CONNECT_API_KEY` must be set to authenticate on the instance specified in - `CONNECT_SERVER`. - -Additionally, if only selected applications should be included, use the `GUIDS` environment variable and provide the GUIDs of all the apps to be measured, separated by a single comma (no spaces): -```r -GUIDS=4203ee4b-16c5-452d-9509-712e29a0d3fb,d358a2e9-e166-4239-978c-d26e9ba82f71 -``` - -### Deployment with an API Key -To deploy an app using the RSConnect API Key, use the following code: - -```r -rsconnect::connectApiUser(server = "connect.appsilon.com", apiKey = "", account = "support") -rsconnect::accounts() # list accounts -rsconnect::deployApp(account = "support", appName = "appName") -``` - -## Default inputs configuration [with optional parameters] -By default, this application selects all users and all applications to be displayed in the summary charts and tables when launched. -The applications and users to include, as well as the aggregation level, can be configured without the need to manually set these options through the UI. -To do this, specify the parameters in a `config.yml` file located in the root directory, using the following structure: - -```yaml -default: - apps: "app1, app2" - users: "user1, user2, user3" - agg_levels: "user_guid, start_date" - agg_time: "day" - min_time: "00:02:00" - unique_users_goal: "10" - sessions_goal: "50" -``` - -* **apps***: The app title as shown in Posit Connect. -* **users***: The publisher's username. -* **agg_levels**: The aggregation level — can be: content_guid, user_guid, and/or start_date. -* **agg_time**: The aggregation frequency — can be: day, week, or month. -* **min_time**: The minimum session duration to filter data and plots. Use format "hh:mm:ss". -* **unique_users_goal***: Y-axis value for the goal line in the Unique Users plot. -* **sessions_goal***: Y-axis value for the goal line in the Total Sessions plot. -* **week_start**: The day to be used as the start of the week. - -_* Optional YAML parameters._ - -Multiple parameters can be listed and separated by commas. For example, the `config.yml` above specifies two apps (*app1*, *app2*), three users (*user1*, *user2*, *user3*), and two aggregation levels (*user_guid* and *start_date*). - -### Specifying goals -You can specify the goal in three different ways for both `unique_users_goal` and `sessions_goal`. - -1. Not specified — no goal is displayed: -```yaml -default: - apps: "" - users: "" - agg_levels: "start_date" # can be one of content_guid,user_guid,start_date - agg_time: "day" # can be one of day,week,month - min_time: "00:02:00" - week_start: "monday" -``` - -2. Single value for all aggregation levels (e.g., date and combinations like app, user, date): -```yaml -default: - apps: "" - users: "" - agg_levels: "start_date" # can be one of content_guid,user_guid,start_date - agg_time: "day" # can be one of day,week,month - min_time: "00:02:00" - unique_users_goal: "20" - sessions_goal: "10" - week_start: "monday" -``` - -3. Individual goals as a YAML list: -```yaml -default: - apps: "" - users: "" - agg_levels: "start_date" - agg_time: "day" - min_time: "00:02:00" - unique_users_goal: - - freq: "day" - per: "start_date" - goal: "7" - - freq: "day" - per: "start_date,content_guid" - goal: "14" - - freq: "week" - per: "start_date" - goal: "10" - sessions_goal: - - freq: "day" - per: "start_date" - goal: "27" - - freq: "day" - per: "start_date,content_guid" - goal: "84" - - freq: "week" - per: "start_date" - goal: "30" - week_start: "monday" -``` - -Note: You can mix and match — for example, define `unique_users_goal` and leave `sessions_goal` unspecified: -```yaml -default: - apps: "" - users: "" - agg_levels: "start_date" # can be one of content_guid,user_guid,start_date - agg_time: "day" # can be one of day,week,month - min_time: "00:02:00" - unique_users_goal: "20" - week_start: "monday" -``` - -## Features - -### Filtering users -You can exclude specific users from appearing in any part of the application by listing them in the `constants/filter_users.yml` file: - -```yaml -users: - - user_1 # will not appear in the app - - user_2 # will not appear in the app -``` - -### Branding -You can use the default branding provided by Appsilon or customize your own by modifying `_brand.yml` in the root directory. -This file controls the application's metadata, logo, colors, and typography. -Note: `_brand.yml` cannot be empty. All sections below must be defined for the app to work correctly. - -#### Metadata -Controls the application's title and credits. You can disable credits by setting `enabled` to `FALSE`: - -```yaml -meta: - app_title: "Posit Connect User Metrics" - credits: - enabled: FALSE -``` - -_* While disabling credits is possible, we encourage you to keep them as a token of appreciation for the developers and contributors. Supporting open-source helps sustain these efforts._ - -#### Logo -Add your logo to `app/static/images` and set the file name: - -```yaml -logo: "your_file.png" -``` - -#### Colors -Customize the color palette inside the `palette` section. Hex colors are recommended: - -```yaml -color: - palette: - white: "#FFFFFF" - mint: "#00CDA3" - blue: "#0099F9" - yellow: "#E8C329" - purple: "#994B9D" - black: "#000000" - gray: "#15354A" - foreground: gray - background: white - primary: blue -``` - -#### Typography -Define fonts used in the app under the `typography` section. The required keys are `base` and `headings`: - -```yaml -typography: - fonts: - - family: Maven Pro - source: google - weight: [400, 500, 600, 700] - style: normal - - family: Roboto - source: google - weight: [400, 500, 600] - style: normal - base: - Roboto - headings: - Maven Pro -``` - -Refer to the detailed [guide](https://posit-dev.github.io/brand-yml/) for advanced UI customization. + Additionally, `CONNECT_API_KEY` must be set to authenticate on the instance specified in `CONNECT_SERVER`. ## Disclaimer -Posit Connect usage data is most accurate for applications accessed by authenticated users. -Unauthenticated users cannot be distinguished, so user-level aggregation is not possible in such cases. + +Posit Connect usage data is most accurate for applications accessed by authenticated users. +Unauthenticated users cannot be distinguished, and will be seen in the app as "Unknown user". Read more: [_Why You Should Use Posit Connect Authentication And How to Set It Up_][rsconnect-auth]. ## Troubleshooting ### Posit Connect does not appear to have `CONNECT_SERVER` and `CONNECT_API_KEY` set + Per the [Configuration appendix] in the Posit Connect Admin Guide, these variables are set by default. However, this behavior can be overridden via [DefaultServerEnv] and [DefaultAPIKeyEnv]. Check with your Posit Connect administrator if that's the case. ### The API connection fails due to a timeout after deploying the User Metrics application + If the connection times out using the default environment variables, the issue may be that the server cannot resolve its own fully qualified domain name. -To fix this, go to the User Metrics [application Vars][User Guide Vars] and set `CONNECT_SERVER` to a local address, e.g.: -``` -http://localhost:3939 -``` +To fix this, go to the User Metrics [application Vars][User Guide Vars] and set `CONNECT_SERVER` to a local address, e.g. `http://localhost:3939`. + (Note: the scheme in the URL is required by `connectapi::connect()`.) ### There is no usage data for my application + As with environment variables, the [Instrumentation] feature is also configurable. Confirm with your Posit Connect admin that instrumentation is enabled. From 93a2a8a3038723601dd216187e6855d2765c628f Mon Sep 17 00:00:00 2001 From: vituri Date: Mon, 9 Jun 2025 10:51:57 -0300 Subject: [PATCH 05/31] use Posit package manager --- extensions/connect-user-metrics/renv.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/connect-user-metrics/renv.lock b/extensions/connect-user-metrics/renv.lock index 86b46961..40c61717 100644 --- a/extensions/connect-user-metrics/renv.lock +++ b/extensions/connect-user-metrics/renv.lock @@ -4,7 +4,7 @@ "Repositories": [ { "Name": "CRAN", - "URL": "https://cloud.r-project.org" + "URL": "https://packagemanager.posit.co/cran/latest" } ] }, From 94e6b438d41915908c91f4699b2f05d7a4a59e4a Mon Sep 17 00:00:00 2001 From: vituri Date: Tue, 10 Jun 2025 11:06:29 -0300 Subject: [PATCH 06/31] add dot-files --- extensions/connect-user-metrics/.Rprofile | 17 ++ extensions/connect-user-metrics/.gitignore | 4 + extensions/connect-user-metrics/.lintr | 5 + extensions/connect-user-metrics/.renvignore | 3 + extensions/connect-user-metrics/.rscignore | 7 + extensions/connect-user-metrics/config.yml | 20 ++ extensions/connect-user-metrics/renv.lock | 180 +----------------- .../connect-user-metrics/renv/activate.R | 101 ++++------ 8 files changed, 98 insertions(+), 239 deletions(-) create mode 100644 extensions/connect-user-metrics/.Rprofile create mode 100644 extensions/connect-user-metrics/.gitignore create mode 100644 extensions/connect-user-metrics/.lintr create mode 100644 extensions/connect-user-metrics/.renvignore create mode 100644 extensions/connect-user-metrics/.rscignore diff --git a/extensions/connect-user-metrics/.Rprofile b/extensions/connect-user-metrics/.Rprofile new file mode 100644 index 00000000..3796acdb --- /dev/null +++ b/extensions/connect-user-metrics/.Rprofile @@ -0,0 +1,17 @@ +if (file.exists("renv")) { + source("renv/activate.R") +} else { + # The `renv` directory is automatically skipped when deploying with rsconnect. + message("No 'renv' directory found; renv won't be activated.") +} + +# Allow absolute module imports (relative to the app root). +options(box.path = getwd()) + +if (nzchar(system.file(package = "box.lsp"))) { + options( + languageserver.parser_hooks = list( + "box::use" = box.lsp::box_use_parser + ) + ) +} diff --git a/extensions/connect-user-metrics/.gitignore b/extensions/connect-user-metrics/.gitignore new file mode 100644 index 00000000..071c9733 --- /dev/null +++ b/extensions/connect-user-metrics/.gitignore @@ -0,0 +1,4 @@ +.Renviron +.Rproj.user +.Rhistory +.DS_Store \ No newline at end of file diff --git a/extensions/connect-user-metrics/.lintr b/extensions/connect-user-metrics/.lintr new file mode 100644 index 00000000..da7cb04e --- /dev/null +++ b/extensions/connect-user-metrics/.lintr @@ -0,0 +1,5 @@ +linters: + linters_with_defaults( + defaults = box.linters::rhino_default_linters, + line_length_linter = line_length_linter(100) + ) diff --git a/extensions/connect-user-metrics/.renvignore b/extensions/connect-user-metrics/.renvignore new file mode 100644 index 00000000..4f16dc6d --- /dev/null +++ b/extensions/connect-user-metrics/.renvignore @@ -0,0 +1,3 @@ +# Only use `dependencies.R` to infer project dependencies. +* +!dependencies.R diff --git a/extensions/connect-user-metrics/.rscignore b/extensions/connect-user-metrics/.rscignore new file mode 100644 index 00000000..fdd749b5 --- /dev/null +++ b/extensions/connect-user-metrics/.rscignore @@ -0,0 +1,7 @@ +.github +.lintr +.renvignore +.Renviron +.rhino +.rscignore +tests diff --git a/extensions/connect-user-metrics/config.yml b/extensions/connect-user-metrics/config.yml index eda4ca71..1dee21f7 100644 --- a/extensions/connect-user-metrics/config.yml +++ b/extensions/connect-user-metrics/config.yml @@ -6,4 +6,24 @@ default: agg_levels: "start_date" # can be a combination of content_guid,user_guid,start_date agg_time: "day" # can be one of day,week,month min_time: "00:00:00" + unique_users_goal: # optional. can be unspecified or a single value for all instances + - freq: "day" + per: "start_date" + goal: "7" + - freq: "day" + per: "start_date,content_guid" + goal: "14" + - freq: "week" + per: "start_date" + goal: "10" + sessions_goal: # optional. can be unspecified or a single value for all instances + - freq: "day" + per: "start_date" + goal: "27" + - freq: "day" + per: "start_date,content_guid" + goal: "84" + - freq: "week" + per: "start_date" + goal: "30" week_start: "monday" diff --git a/extensions/connect-user-metrics/renv.lock b/extensions/connect-user-metrics/renv.lock index 86b46961..078fdada 100644 --- a/extensions/connect-user-metrics/renv.lock +++ b/extensions/connect-user-metrics/renv.lock @@ -1,6 +1,6 @@ { "R": { - "Version": "4.5.0", + "Version": "4.4.3", "Repositories": [ { "Name": "CRAN", @@ -149,27 +149,6 @@ "Maintainer": "Martin Maechler ", "Repository": "CRAN" }, - "PKI": { - "Package": "PKI", - "Version": "0.1-14", - "Source": "Repository", - "Title": "Public Key Infrastucture for R Based on the X.509 Standard", - "Author": "Simon Urbanek ", - "Maintainer": "Simon Urbanek ", - "Depends": [ - "R (>= 2.9.0)", - "base64enc" - ], - "Enhances": [ - "gmp" - ], - "Description": "Public Key Infrastucture functions such as verifying certificates, RSA encription and signing which can be used to build PKI infrastructure and perform cryptographic tasks.", - "License": "GPL-2 | GPL-3 | file LICENSE", - "URL": "http://www.rforge.net/PKI", - "SystemRequirements": "OpenSSL library and headers (openssl-dev or similar)", - "NeedsCompilation": "yes", - "Repository": "CRAN" - }, "R.cache": { "Package": "R.cache", "Version": "0.16.0", @@ -413,36 +392,6 @@ "NeedsCompilation": "yes", "Repository": "CRAN" }, - "RcppTOML": { - "Package": "RcppTOML", - "Version": "0.2.3", - "Source": "Repository", - "Type": "Package", - "Title": "'Rcpp' Bindings to Parser for \"Tom's Obvious Markup Language\"", - "Date": "2025-03-08", - "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Mark\", \"Gillard\", role = \"aut\", comment = \"Author of 'toml++' header library\"))", - "Description": "The configuration format defined by 'TOML' (which expands to \"Tom's Obvious Markup Language\") specifies an excellent format (described at ) suitable for both human editing as well as the common uses of a machine-readable format. This package uses 'Rcpp' to connect to the 'toml++' parser written by Mark Gillard to R.", - "SystemRequirements": "A C++17 compiler", - "BugReports": "https://github.com/eddelbuettel/rcpptoml/issues", - "URL": "http://dirk.eddelbuettel.com/code/rcpp.toml.html", - "Imports": [ - "Rcpp (>= 1.0.8)" - ], - "Depends": [ - "R (>= 3.3.0)" - ], - "LinkingTo": [ - "Rcpp" - ], - "Suggests": [ - "tinytest" - ], - "License": "GPL (>= 2)", - "NeedsCompilation": "yes", - "Author": "Dirk Eddelbuettel [aut, cre] (), Mark Gillard [aut] (Author of 'toml++' header library)", - "Maintainer": "Dirk Eddelbuettel ", - "Repository": "CRAN" - }, "SQUAREM": { "Package": "SQUAREM", "Version": "2021.1", @@ -3016,38 +2965,6 @@ "Maintainer": "Hadley Wickham ", "Repository": "CRAN" }, - "jose": { - "Package": "jose", - "Version": "1.2.1", - "Source": "Repository", - "Type": "Package", - "Title": "JavaScript Object Signing and Encryption", - "Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\"))", - "Description": "Read and write JSON Web Keys (JWK, rfc7517), generate and verify JSON Web Signatures (JWS, rfc7515) and encode/decode JSON Web Tokens (JWT, rfc7519) . These standards provide modern signing and encryption formats that are natively supported by browsers via the JavaScript WebCryptoAPI , and used by services like OAuth 2.0, LetsEncrypt, and Github Apps.", - "License": "MIT + file LICENSE", - "URL": "https://r-lib.r-universe.dev/jose", - "BugReports": "https://github.com/r-lib/jose/issues", - "Depends": [ - "openssl (>= 1.2.1)" - ], - "Imports": [ - "jsonlite" - ], - "RoxygenNote": "7.1.2", - "VignetteBuilder": "knitr", - "Suggests": [ - "spelling", - "testthat", - "knitr", - "rmarkdown" - ], - "Encoding": "UTF-8", - "Language": "en-US", - "NeedsCompilation": "no", - "Author": "Jeroen Ooms [aut, cre] ()", - "Maintainer": "Jeroen Ooms ", - "Repository": "CRAN" - }, "jquerylib": { "Package": "jquerylib", "Version": "0.1.4", @@ -3913,40 +3830,6 @@ "Maintainer": "Jeroen Ooms ", "Repository": "CRAN" }, - "packrat": { - "Package": "packrat", - "Version": "0.9.2", - "Source": "Repository", - "Type": "Package", - "Title": "A Dependency Management System for Projects and their R Package Dependencies", - "Authors@R": "c( person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")), person(\"Toph\", \"Allen\", role = \"aut\"), person(\"Kevin\", \"Ushey\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\"), person(\"Joe\", \"Cheng\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", - "Description": "Manage the R packages your project depends on in an isolated, portable, and reproducible way.", - "License": "GPL-2", - "URL": "https://github.com/rstudio/packrat", - "BugReports": "https://github.com/rstudio/packrat/issues", - "Depends": [ - "R (>= 3.0.0)" - ], - "Imports": [ - "tools", - "utils" - ], - "Suggests": [ - "devtools", - "httr", - "knitr", - "mockery", - "rmarkdown", - "testthat (>= 3.0.0)" - ], - "Config/testthat/edition": "3", - "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", - "NeedsCompilation": "no", - "Author": "Aron Atkins [aut, cre], Toph Allen [aut], Kevin Ushey [aut], Jonathan McPherson [aut], Joe Cheng [aut], JJ Allaire [aut], Posit Software, PBC [cph, fnd]", - "Maintainer": "Aron Atkins ", - "Repository": "CRAN" - }, "padr": { "Package": "padr", "Version": "0.6.3", @@ -4948,7 +4831,7 @@ }, "renv": { "Package": "renv", - "Version": "1.1.4", + "Version": "1.1.0", "Source": "Repository", "Type": "Package", "Title": "Project Environments", @@ -5310,65 +5193,6 @@ "Maintainer": "Hannah Frick ", "Repository": "CRAN" }, - "rsconnect": { - "Package": "rsconnect", - "Version": "1.4.1", - "Source": "Repository", - "Type": "Package", - "Title": "Deploy Docs, Apps, and APIs to 'Posit Connect', 'shinyapps.io', and 'RPubs'", - "Authors@R": "c( person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")), person(\"Toph\", \"Allen\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", - "Description": "Programmatic deployment interface for 'RPubs', 'shinyapps.io', and 'Posit Connect'. Supported content types include R Markdown documents, Shiny applications, Plumber APIs, plots, and static web content.", - "License": "GPL-2", - "URL": "https://rstudio.github.io/rsconnect/, https://github.com/rstudio/rsconnect", - "BugReports": "https://github.com/rstudio/rsconnect/issues", - "Depends": [ - "R (>= 3.5.0)" - ], - "Imports": [ - "cli", - "curl", - "digest", - "jsonlite", - "lifecycle", - "openssl (>= 2.0.0)", - "PKI", - "packrat (>= 0.6)", - "renv (>= 1.0.0)", - "rlang (>= 1.0.0)", - "rstudioapi (>= 0.5)", - "tools", - "yaml (>= 2.1.5)", - "RcppTOML", - "jose", - "utils" - ], - "Suggests": [ - "Biobase", - "BiocManager", - "foreign", - "knitr", - "MASS", - "plumber (>= 0.3.2)", - "quarto", - "RCurl", - "reticulate", - "rmarkdown (>= 1.1)", - "shiny", - "testthat (>= 3.1.9)", - "webfakes", - "withr" - ], - "VignetteBuilder": "knitr, rmarkdown", - "Config/Needs/website": "tidyverse/tidytemplate", - "Config/testthat/edition": "3", - "Config/testthat/parallel": "true", - "Encoding": "UTF-8", - "RoxygenNote": "7.3.2", - "NeedsCompilation": "no", - "Author": "Aron Atkins [aut, cre], Toph Allen [aut], Hadley Wickham [aut], Jonathan McPherson [aut], JJ Allaire [aut], Posit Software, PBC [cph, fnd]", - "Maintainer": "Aron Atkins ", - "Repository": "CRAN" - }, "rstudioapi": { "Package": "rstudioapi", "Version": "0.17.1", diff --git a/extensions/connect-user-metrics/renv/activate.R b/extensions/connect-user-metrics/renv/activate.R index 90b251ca..ebbe3030 100644 --- a/extensions/connect-user-metrics/renv/activate.R +++ b/extensions/connect-user-metrics/renv/activate.R @@ -2,7 +2,7 @@ local({ # the requested version of renv - version <- "1.1.4" + version <- "1.1.0" attr(version, "sha") <- NULL # the project directory @@ -135,12 +135,12 @@ local({ # R help links pattern <- "`\\?(renv::(?:[^`])+)`" - replacement <- "`\033]8;;x-r-help:\\1\a?\\1\033]8;;\a`" + replacement <- "`\033]8;;ide:help:\\1\a?\\1\033]8;;\a`" text <- gsub(pattern, replacement, text, perl = TRUE) # runnable code pattern <- "`(renv::(?:[^`])+)`" - replacement <- "`\033]8;;x-r-run:\\1\a\\1\033]8;;\a`" + replacement <- "`\033]8;;ide:run:\\1\a\\1\033]8;;\a`" text <- gsub(pattern, replacement, text, perl = TRUE) # return ansified text @@ -695,19 +695,11 @@ local({ } - renv_bootstrap_platform_prefix_default <- function() { - - # read version component - version <- Sys.getenv("RENV_PATHS_VERSION", unset = "R-%v") - - # expand placeholders - placeholders <- list( - list("%v", format(getRversion()[1, 1:2])), - list("%V", format(getRversion()[1, 1:3])) - ) + renv_bootstrap_platform_prefix <- function() { - for (placeholder in placeholders) - version <- gsub(placeholder[[1L]], placeholder[[2L]], version, fixed = TRUE) + # construct version prefix + version <- paste(R.version$major, R.version$minor, sep = ".") + prefix <- paste("R", numeric_version(version)[1, 1:2], sep = "-") # include SVN revision for development versions of R # (to avoid sharing platform-specific artefacts with released versions of R) @@ -716,19 +708,10 @@ local({ identical(R.version[["nickname"]], "Unsuffered Consequences") if (devel) - version <- paste(version, R.version[["svn rev"]], sep = "-r") - - version - - } - - renv_bootstrap_platform_prefix <- function() { - - # construct version prefix - version <- renv_bootstrap_platform_prefix_default() + prefix <- paste(prefix, R.version[["svn rev"]], sep = "-r") # build list of path components - components <- c(version, R.version$platform) + components <- c(prefix, R.version$platform) # include prefix if provided by user prefix <- renv_bootstrap_platform_prefix_impl() @@ -967,14 +950,14 @@ local({ } renv_bootstrap_validate_version_dev <- function(version, description) { - + expected <- description[["RemoteSha"]] if (!is.character(expected)) return(FALSE) - + pattern <- sprintf("^\\Q%s\\E", version) grepl(pattern, expected, perl = TRUE) - + } renv_bootstrap_validate_version_release <- function(version, description) { @@ -1215,89 +1198,86 @@ local({ } renv_json_read_patterns <- function() { - + list( - + # objects - list("{", "\t\n\tobject(\t\n\t", TRUE), - list("}", "\t\n\t)\t\n\t", TRUE), - + list("{", "\t\n\tobject(\t\n\t"), + list("}", "\t\n\t)\t\n\t"), + # arrays - list("[", "\t\n\tarray(\t\n\t", TRUE), - list("]", "\n\t\n)\n\t\n", TRUE), - + list("[", "\t\n\tarray(\t\n\t"), + list("]", "\n\t\n)\n\t\n"), + # maps - list(":", "\t\n\t=\t\n\t", TRUE), - - # newlines - list("\\u000a", "\n", FALSE) - + list(":", "\t\n\t=\t\n\t") + ) - + } renv_json_read_envir <- function() { envir <- new.env(parent = emptyenv()) - + envir[["+"]] <- `+` envir[["-"]] <- `-` - + envir[["object"]] <- function(...) { result <- list(...) names(result) <- as.character(names(result)) result } - + envir[["array"]] <- list - + envir[["true"]] <- TRUE envir[["false"]] <- FALSE envir[["null"]] <- NULL - + envir - + } renv_json_read_remap <- function(object, patterns) { - + # repair names if necessary if (!is.null(names(object))) { - + nms <- names(object) for (pattern in patterns) nms <- gsub(pattern[[2L]], pattern[[1L]], nms, fixed = TRUE) names(object) <- nms - + } - + # repair strings if necessary if (is.character(object)) { for (pattern in patterns) object <- gsub(pattern[[2L]], pattern[[1L]], object, fixed = TRUE) } - + # recurse for other objects if (is.recursive(object)) for (i in seq_along(object)) object[i] <- list(renv_json_read_remap(object[[i]], patterns)) - + # return remapped object object - + } renv_json_read_default <- function(file = NULL, text = NULL) { # read json text text <- paste(text %||% readLines(file, warn = FALSE), collapse = "\n") - + # convert into something the R parser will understand patterns <- renv_json_read_patterns() transformed <- text for (pattern in patterns) transformed <- gsub(pattern[[1L]], pattern[[2L]], transformed, fixed = TRUE) - + # parse it rfile <- tempfile("renv-json-", fileext = ".R") on.exit(unlink(rfile), add = TRUE) @@ -1307,10 +1287,9 @@ local({ # evaluate in safe environment result <- eval(json, envir = renv_json_read_envir()) - # fix up strings if necessary -- do so only with reversible patterns - patterns <- Filter(function(pattern) pattern[[3L]], patterns) + # fix up strings if necessary renv_json_read_remap(result, patterns) - + } From 6ac0883c9fb7dfe1aa409359e8296421193dc3d5 Mon Sep 17 00:00:00 2001 From: vituri Date: Tue, 10 Jun 2025 11:29:31 -0300 Subject: [PATCH 07/31] use posit package manager --- extensions/connect-user-metrics/.Rprofile | 2 + extensions/connect-user-metrics/manifest.json | 611 +++++++++++------- extensions/connect-user-metrics/renv.lock | 180 +++++- .../connect-user-metrics/renv/activate.R | 101 +-- 4 files changed, 611 insertions(+), 283 deletions(-) diff --git a/extensions/connect-user-metrics/.Rprofile b/extensions/connect-user-metrics/.Rprofile index 3796acdb..fc7b0944 100644 --- a/extensions/connect-user-metrics/.Rprofile +++ b/extensions/connect-user-metrics/.Rprofile @@ -15,3 +15,5 @@ if (nzchar(system.file(package = "box.lsp"))) { ) ) } + +options(repos = c(CRAN = "https://packagemanager.posit.co/cran/latest")) diff --git a/extensions/connect-user-metrics/manifest.json b/extensions/connect-user-metrics/manifest.json index 1b0e1958..fbf77ba0 100644 --- a/extensions/connect-user-metrics/manifest.json +++ b/extensions/connect-user-metrics/manifest.json @@ -17,7 +17,7 @@ "packages": { "AsioHeaders": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "AsioHeaders", "Type": "Package", @@ -40,7 +40,7 @@ }, "BH": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "BH", "Type": "Package", @@ -63,7 +63,7 @@ }, "KernSmooth": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "KernSmooth", "Priority": "recommended", @@ -88,7 +88,7 @@ }, "MASS": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "MASS", "Priority": "recommended", @@ -117,7 +117,7 @@ }, "Matrix": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "Matrix", "Version": "1.7-2", @@ -148,9 +148,38 @@ "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:45:47 UTC; unix" } }, + "PKI": { + "Source": "CRAN", + "Repository": "https://packagemanager.posit.co/cran/latest", + "description": { + "Package": "PKI", + "Version": "0.1-14", + "Title": "Public Key Infrastucture for R Based on the X.509 Standard", + "Author": "Simon Urbanek ", + "Maintainer": "Simon Urbanek ", + "Depends": "R (>= 2.9.0), base64enc", + "Enhances": "gmp", + "Description": "Public Key Infrastucture functions such as verifying certificates, RSA encription and signing which can be used to build PKI infrastructure and perform cryptographic tasks.", + "License": "GPL-2 | GPL-3 | file LICENSE", + "URL": "http://www.rforge.net/PKI", + "SystemRequirements": "OpenSSL library and headers (openssl-dev or\nsimilar)", + "NeedsCompilation": "yes", + "Packaged": "2024-06-15 19:22:05 UTC; rforge", + "Repository": "CRAN", + "Date/Publication": "2024-06-15 19:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-17 13:47:26 UTC; unix", + "RemoteType": "standard", + "RemoteRef": "PKI", + "RemotePkgRef": "PKI", + "RemoteRepos": "https://cloud.r-project.org", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "source", + "RemoteSha": "0.1-14" + } + }, "R.cache": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "R.cache", "Version": "0.16.0", @@ -175,7 +204,7 @@ }, "R.methodsS3": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "R.methodsS3", "Version": "1.8.2", @@ -200,7 +229,7 @@ }, "R.oo": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "R.oo", "Version": "1.27.0", @@ -225,7 +254,7 @@ }, "R.utils": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "R.utils", "Version": "2.12.3", @@ -250,7 +279,7 @@ }, "R6": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "R6", "Title": "Encapsulated Classes with Reference Semantics", @@ -274,7 +303,7 @@ }, "RColorBrewer": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "RColorBrewer", "Version": "1.1-3", @@ -295,7 +324,7 @@ }, "Rcpp": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "Rcpp", "Title": "Seamless R and C++ Integration", @@ -322,7 +351,7 @@ }, "RcppArmadillo": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "RcppArmadillo", "Type": "Package", @@ -351,7 +380,7 @@ }, "RcppRoll": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "RcppRoll", "Type": "Package", @@ -373,9 +402,44 @@ "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:45 UTC; unix" } }, + "RcppTOML": { + "Source": "CRAN", + "Repository": "https://packagemanager.posit.co/cran/latest", + "description": { + "Package": "RcppTOML", + "Type": "Package", + "Title": "'Rcpp' Bindings to Parser for \"Tom's Obvious Markup Language\"", + "Version": "0.2.3", + "Date": "2025-03-08", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Mark\", \"Gillard\", role = \"aut\",\n comment = \"Author of 'toml++' header library\"))", + "Description": "The configuration format defined by 'TOML' (which expands to\n \"Tom's Obvious Markup Language\") specifies an excellent format\n (described at ) suitable for both human editing\n as well as the common uses of a machine-readable format. This package\n uses 'Rcpp' to connect to the 'toml++' parser written by Mark Gillard\n to R.", + "SystemRequirements": "A C++17 compiler", + "BugReports": "https://github.com/eddelbuettel/rcpptoml/issues", + "URL": "http://dirk.eddelbuettel.com/code/rcpp.toml.html", + "Imports": "Rcpp (>= 1.0.8)", + "Depends": "R (>= 3.3.0)", + "LinkingTo": "Rcpp", + "Suggests": "tinytest", + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Packaged": "2025-03-08 13:54:57 UTC; edd", + "Author": "Dirk Eddelbuettel [aut, cre] (),\n Mark Gillard [aut] (Author of 'toml++' header library)", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN", + "Date/Publication": "2025-03-08 14:30:06 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-05-21 18:57:20 UTC; unix", + "RemoteType": "standard", + "RemoteRef": "RcppTOML", + "RemotePkgRef": "RcppTOML", + "RemoteRepos": "https://cran.rstudio.com", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "source", + "RemoteSha": "0.2.3" + } + }, "SQUAREM": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "SQUAREM", "Version": "2021.1", @@ -398,7 +462,7 @@ }, "TTR": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "TTR", "Type": "Package", @@ -424,7 +488,7 @@ }, "anytime": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "anytime", "Type": "Package", @@ -453,7 +517,7 @@ }, "askpass": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "askpass", "Type": "Package", @@ -480,7 +544,7 @@ }, "backports": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "backports", "Type": "Package", @@ -506,7 +570,7 @@ }, "base64enc": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "base64enc", "Version": "0.1-3", @@ -527,7 +591,7 @@ }, "bit": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "bit", "Type": "Package", @@ -556,7 +620,7 @@ }, "bit64": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "bit64", "Title": "A S3 Class for Vectors of 64bit Integers", @@ -585,7 +649,7 @@ }, "box": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "box", "Title": "Write Reusable, Composable and Modular R Code", @@ -613,7 +677,7 @@ }, "box.linters": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "box.linters", "Title": "Linters for 'box' Modules", @@ -641,7 +705,7 @@ }, "box.lsp": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "box.lsp", "Title": "Provides 'box' Compatibility for 'languageserver'", @@ -667,7 +731,7 @@ }, "brio": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "brio", "Title": "Basic R Input Output", @@ -694,7 +758,7 @@ }, "broom": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "broom", @@ -725,7 +789,7 @@ }, "bslib": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "bslib", "Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'", @@ -758,7 +822,7 @@ }, "cachem": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "cachem", "Version": "1.1.0", @@ -785,7 +849,7 @@ }, "callr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "callr", "Title": "Call R from R", @@ -814,7 +878,7 @@ }, "checkmate": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "checkmate", "Type": "Package", @@ -845,7 +909,7 @@ }, "chromote": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "chromote", "Title": "Headless Chrome Web Browser Interface", @@ -874,7 +938,7 @@ }, "class": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "class", "Priority": "recommended", @@ -899,7 +963,7 @@ }, "cli": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "cli", "Title": "Helpers for Developing Command Line Interfaces", @@ -927,7 +991,7 @@ }, "clipr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "clipr", @@ -956,7 +1020,7 @@ }, "clock": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "clock", "Title": "Date-Time Types and Tools", @@ -988,7 +1052,7 @@ }, "codetools": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "codetools", "Version": "0.2-20", @@ -1009,7 +1073,7 @@ }, "colorspace": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "colorspace", "Version": "2.1-1", @@ -1038,7 +1102,7 @@ }, "commonmark": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "commonmark", "Type": "Package", @@ -1064,7 +1128,7 @@ }, "config": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "config", "Type": "Package", @@ -1093,7 +1157,7 @@ }, "connectapi": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "connectapi", @@ -1122,7 +1186,7 @@ }, "corrplot": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "corrplot", "Type": "Package", @@ -1148,7 +1212,7 @@ }, "countrycode": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "countrycode", @@ -1176,7 +1240,7 @@ }, "cpp11": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "cpp11", "Title": "A C++11 Interface for R's C Interface", @@ -1205,7 +1269,7 @@ }, "crayon": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "crayon", "Title": "Colored Terminal Output", @@ -1232,7 +1296,7 @@ }, "crosstalk": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "crosstalk", "Type": "Package", @@ -1258,7 +1322,7 @@ }, "curl": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "curl", "Type": "Package", @@ -1287,7 +1351,7 @@ }, "cyclocomp": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "cyclocomp", "Title": "Cyclomatic Complexity of R Code", @@ -1311,7 +1375,7 @@ }, "data.table": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "data.table", "Version": "1.16.4", @@ -1338,7 +1402,7 @@ }, "desc": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "desc", "Title": "Manipulate DESCRIPTION Files", @@ -1368,7 +1432,7 @@ }, "diagram": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "diagram", "Version": "1.6.5", @@ -1389,7 +1453,7 @@ }, "diffobj": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "diffobj", "Type": "Package", @@ -1418,7 +1482,7 @@ }, "digest": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "digest", "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Antoine\", \"Lucas\", role=\"ctb\"),\n person(\"Jarek\", \"Tuszynski\", role=\"ctb\"),\n person(\"Henrik\", \"Bengtsson\", role=\"ctb\", comment = c(ORCID = \"0000-0002-7579-5165\")),\n person(\"Simon\", \"Urbanek\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2297-1732\")),\n person(\"Mario\", \"Frasca\", role=\"ctb\"),\n person(\"Bryan\", \"Lewis\", role=\"ctb\"),\n person(\"Murray\", \"Stokely\", role=\"ctb\"),\n person(\"Hannes\", \"Muehleisen\", role=\"ctb\"),\n person(\"Duncan\", \"Murdoch\", role=\"ctb\"),\n person(\"Jim\", \"Hester\", role=\"ctb\"),\n person(\"Wush\", \"Wu\", role=\"ctb\", comment = c(ORCID = \"0000-0001-5180-0567\")),\n person(\"Qiang\", \"Kou\", role=\"ctb\", comment = c(ORCID = \"0000-0001-6786-5453\")),\n person(\"Thierry\", \"Onkelinx\", role=\"ctb\", comment = c(ORCID = \"0000-0001-8804-4216\")),\n person(\"Michel\", \"Lang\", role=\"ctb\", comment = c(ORCID = \"0000-0001-9754-0393\")),\n person(\"Viliam\", \"Simko\", role=\"ctb\"),\n person(\"Kurt\", \"Hornik\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4198-9911\")),\n person(\"Radford\", \"Neal\", role=\"ctb\", comment = c(ORCID = \"0000-0002-2473-3407\")),\n person(\"Kendon\", \"Bell\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9093-8312\")),\n person(\"Matthew\", \"de Queljoe\", role=\"ctb\"),\n person(\"Dmitry\", \"Selivanov\", role=\"ctb\"),\n person(\"Ion\", \"Suruceanu\", role=\"ctb\"),\n person(\"Bill\", \"Denney\", role=\"ctb\"),\n person(\"Dirk\", \"Schumacher\", role=\"ctb\"),\n person(\"András\", \"Svraka\", role=\"ctb\"),\n person(\"Sergey\", \"Fedorov\", role=\"ctb\"),\n person(\"Will\", \"Landau\", role=\"ctb\", comment = c(ORCID = \"0000-0003-1878-3253\")),\n person(\"Floris\", \"Vanderhaeghe\", role=\"ctb\", comment = c(ORCID = \"0000-0002-6378-6229\")),\n person(\"Kevin\", \"Tappe\", role=\"ctb\"),\n person(\"Harris\", \"McGehee\", role=\"ctb\"),\n person(\"Tim\", \"Mastny\", role=\"ctb\"),\n person(\"Aaron\", \"Peikert\", role=\"ctb\", comment = c(ORCID = \"0000-0001-7813-818X\")),\n person(\"Mark\", \"van der Loo\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9807-4686\")),\n person(\"Chris\", \"Muir\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2555-3878\")),\n person(\"Moritz\", \"Beller\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4852-0526\")),\n person(\"Sebastian\", \"Campbell\", role=\"ctb\"),\n person(\"Winston\", \"Chang\", role=\"ctb\", comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Dean\", \"Attali\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5645-3493\")),\n person(\"Michael\", \"Chirico\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0787-087X\")),\n person(\"Kevin\", \"Ushey\", role=\"ctb\"))", @@ -1445,7 +1509,7 @@ }, "dplyr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "dplyr", @@ -1476,7 +1540,7 @@ }, "echarts4r": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "echarts4r", "Title": "Create Interactive Graphs with 'Echarts JavaScript' Version 5", @@ -1503,7 +1567,7 @@ }, "evaluate": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "evaluate", @@ -1531,7 +1595,7 @@ }, "fansi": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "fansi", "Title": "ANSI Control Sequence Aware String Functions", @@ -1559,7 +1623,7 @@ }, "farver": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "farver", @@ -1585,7 +1649,7 @@ }, "fastmap": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "fastmap", "Title": "Fast Data Structures", @@ -1609,7 +1673,7 @@ }, "fontawesome": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "fontawesome", @@ -1638,7 +1702,7 @@ }, "forcats": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "forcats", "Title": "Tools for Working with Categorical Variables (Factors)", @@ -1668,7 +1732,7 @@ }, "forecast": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "forecast", "Version": "8.23.0", @@ -1699,7 +1763,7 @@ }, "fracdiff": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "fracdiff", "Version": "1.5-3", @@ -1725,7 +1789,7 @@ }, "fs": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "fs", "Title": "Cross-Platform File System Operations Based on 'libuv'", @@ -1758,7 +1822,7 @@ }, "furrr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "furrr", "Title": "Apply Mapping Functions in Parallel using Futures", @@ -1786,7 +1850,7 @@ }, "future": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "future", "Version": "1.34.0", @@ -1814,7 +1878,7 @@ }, "future.apply": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "future.apply", "Version": "1.11.3", @@ -1841,7 +1905,7 @@ }, "generics": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "generics", "Title": "Common S3 Generics not Provided by Base R Methods Related to\nModel Fitting", @@ -1869,7 +1933,7 @@ }, "ggplot2": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "ggplot2", "Version": "3.5.1", @@ -1901,7 +1965,7 @@ }, "globals": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "globals", "Version": "0.16.3", @@ -1927,7 +1991,7 @@ }, "glue": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "glue", "Title": "Interpreted String Literals", @@ -1957,7 +2021,7 @@ }, "gower": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "gower", "Maintainer": "Mark van der Loo ", @@ -1982,7 +2046,7 @@ }, "gtable": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "gtable", "Title": "Arrange 'Grobs' in Tables", @@ -2012,7 +2076,7 @@ }, "hardhat": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "hardhat", "Title": "Construct Modeling Packages", @@ -2042,7 +2106,7 @@ }, "here": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "here", "Title": "A Simpler Way to Find Your Files", @@ -2071,7 +2135,7 @@ }, "highr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "highr", "Type": "Package", @@ -2099,7 +2163,7 @@ }, "hms": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "hms", "Title": "Pretty Time of Day", @@ -2129,7 +2193,7 @@ }, "htmltools": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "htmltools", @@ -2160,7 +2224,7 @@ }, "htmlwidgets": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "htmlwidgets", @@ -2188,7 +2252,7 @@ }, "httpuv": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "httpuv", @@ -2218,7 +2282,7 @@ }, "httr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "httr", "Title": "Tools for Working with URLs and HTTP", @@ -2246,7 +2310,7 @@ }, "imola": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "imola", "Type": "Package", @@ -2274,7 +2338,7 @@ }, "ipred": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "ipred", "Title": "Improved Predictors", @@ -2297,7 +2361,7 @@ }, "isoband": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "isoband", "Title": "Generate Isolines and Isobands from Regularly Spaced Elevation\nGrids", @@ -2324,9 +2388,45 @@ "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:27 UTC; unix" } }, + "jose": { + "Source": "CRAN", + "Repository": "https://packagemanager.posit.co/cran/latest", + "description": { + "Package": "jose", + "Type": "Package", + "Title": "JavaScript Object Signing and Encryption", + "Version": "1.2.1", + "Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), \n email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\"))", + "Description": "Read and write JSON Web Keys (JWK, rfc7517), generate and verify JSON\n Web Signatures (JWS, rfc7515) and encode/decode JSON Web Tokens (JWT, rfc7519)\n . These standards provide \n modern signing and encryption formats that are natively supported by browsers\n via the JavaScript WebCryptoAPI , \n and used by services like OAuth 2.0, LetsEncrypt, and Github Apps.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.r-universe.dev/jose", + "BugReports": "https://github.com/r-lib/jose/issues", + "Depends": "openssl (>= 1.2.1)", + "Imports": "jsonlite", + "RoxygenNote": "7.1.2", + "VignetteBuilder": "knitr", + "Suggests": "spelling, testthat, knitr, rmarkdown", + "Encoding": "UTF-8", + "Language": "en-US", + "NeedsCompilation": "no", + "Packaged": "2024-10-03 14:12:53 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] ()", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN", + "Date/Publication": "2024-10-04 12:20:01 UTC", + "Built": "R 4.5.0; ; 2025-05-21 18:57:26 UTC; unix", + "RemoteType": "standard", + "RemoteRef": "jose", + "RemotePkgRef": "jose", + "RemoteRepos": "https://cran.rstudio.com", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "source", + "RemoteSha": "1.2.1" + } + }, "jquerylib": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "jquerylib", "Title": "Obtain 'jQuery' as an HTML Dependency Object", @@ -2350,7 +2450,7 @@ }, "jsonlite": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "jsonlite", "Version": "1.8.9", @@ -2376,7 +2476,7 @@ }, "knitr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "knitr", "Type": "Package", @@ -2406,7 +2506,7 @@ }, "labeling": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "labeling", "Type": "Package", @@ -2428,7 +2528,7 @@ }, "later": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "later", "Type": "Package", @@ -2456,7 +2556,7 @@ }, "lattice": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "lattice", "Version": "0.22-6", @@ -2485,7 +2585,7 @@ }, "lava": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "lava", "Type": "Package", @@ -2515,7 +2615,7 @@ }, "lazyeval": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "lazyeval", "Version": "0.2.2", @@ -2539,7 +2639,7 @@ }, "lifecycle": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "lifecycle", "Title": "Manage the Life Cycle of your Package Functions", @@ -2568,7 +2668,7 @@ }, "lintr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "lintr", "Title": "A 'Linter' for R Code", @@ -2600,7 +2700,7 @@ }, "listenv": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "listenv", "Version": "0.9.1", @@ -2626,7 +2726,7 @@ }, "lmtest": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "lmtest", "Title": "Testing Linear Regression Models", @@ -2650,7 +2750,7 @@ }, "logger": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "logger", @@ -2682,7 +2782,7 @@ }, "lubridate": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "lubridate", @@ -2716,7 +2816,7 @@ }, "magrittr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "magrittr", @@ -2745,7 +2845,7 @@ }, "memoise": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "memoise", "Title": "'Memoisation' of Functions", @@ -2770,7 +2870,7 @@ }, "mgcv": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "mgcv", "Version": "1.9-1", @@ -2794,7 +2894,7 @@ }, "mime": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "mime", "Type": "Package", @@ -2819,7 +2919,7 @@ }, "mirai": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "mirai", "Type": "Package", @@ -2848,7 +2948,7 @@ }, "munsell": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "munsell", "Type": "Package", @@ -2873,7 +2973,7 @@ }, "nanonext": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "nanonext", "Type": "Package", @@ -2903,7 +3003,7 @@ }, "nlme": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "nlme", "Version": "3.1-167", @@ -2933,7 +3033,7 @@ }, "nnet": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "nnet", "Priority": "recommended", @@ -2958,7 +3058,7 @@ }, "numDeriv": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "numDeriv", "Version": "2016.8-1.1", @@ -2981,7 +3081,7 @@ }, "openssl": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "openssl", "Type": "Package", @@ -3007,9 +3107,44 @@ "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:52:46 UTC; unix" } }, + "packrat": { + "Source": "CRAN", + "Repository": "https://packagemanager.posit.co/cran/latest", + "description": { + "Type": "Package", + "Package": "packrat", + "Title": "A Dependency Management System for Projects and their R Package\nDependencies", + "Version": "0.9.2", + "Authors@R": "c(\n person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Toph\", \"Allen\", role = \"aut\"),\n person(\"Kevin\", \"Ushey\", role = \"aut\"),\n person(\"Jonathan\", \"McPherson\", role = \"aut\"),\n person(\"Joe\", \"Cheng\", role = \"aut\"),\n person(\"JJ\", \"Allaire\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Manage the R packages your project depends on in an isolated,\n portable, and reproducible way.", + "License": "GPL-2", + "URL": "https://github.com/rstudio/packrat", + "BugReports": "https://github.com/rstudio/packrat/issues", + "Depends": "R (>= 3.0.0)", + "Imports": "tools, utils", + "Suggests": "devtools, httr, knitr, mockery, rmarkdown, testthat (>=\n3.0.0)", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Packaged": "2023-09-05 11:45:33 UTC; aron", + "Author": "Aron Atkins [aut, cre],\n Toph Allen [aut],\n Kevin Ushey [aut],\n Jonathan McPherson [aut],\n Joe Cheng [aut],\n JJ Allaire [aut],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Aron Atkins ", + "Repository": "CRAN", + "Date/Publication": "2023-09-05 13:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-17 13:47:27 UTC; unix", + "RemoteType": "standard", + "RemoteRef": "packrat", + "RemotePkgRef": "packrat", + "RemoteRepos": "https://cloud.r-project.org", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "source", + "RemoteSha": "0.9.2" + } + }, "padr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "padr", "Type": "Package", @@ -3040,7 +3175,7 @@ }, "parallelly": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "parallelly", "Version": "1.42.0", @@ -3068,7 +3203,7 @@ }, "pillar": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "pillar", "Title": "Coloured Formatting for Columns", @@ -3101,7 +3236,7 @@ }, "pingr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "pingr", "Title": "Check if a Remote Computer is Up", @@ -3130,7 +3265,7 @@ }, "pkgbuild": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "pkgbuild", "Title": "Find Tools Needed to Build R Packages", @@ -3158,7 +3293,7 @@ }, "pkgconfig": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "pkgconfig", "Title": "Private Configuration for 'R' Packages", @@ -3182,7 +3317,7 @@ }, "pkgload": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "pkgload", "Title": "Simulate Package Installation and Attach", @@ -3212,7 +3347,7 @@ }, "plotly": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "plotly", "Title": "Create Interactive Web Graphics via 'plotly.js'", @@ -3240,7 +3375,7 @@ }, "praise": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "praise", "Title": "Praise Users", @@ -3263,7 +3398,7 @@ }, "prettyunits": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "prettyunits", "Title": "Pretty, Human Readable Formatting of Quantities", @@ -3288,7 +3423,7 @@ }, "processx": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "processx", "Title": "Execute and Control System Processes", @@ -3316,7 +3451,7 @@ }, "prodlim": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "prodlim", "Title": "Product-Limit Estimation for Censored Event History Analysis", @@ -3339,7 +3474,7 @@ }, "progress": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "progress", "Title": "Terminal Progress Bars", @@ -3367,7 +3502,7 @@ }, "progressr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "progressr", "Version": "0.15.1", @@ -3393,7 +3528,7 @@ }, "promises": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "promises", @@ -3423,7 +3558,7 @@ }, "ps": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "ps", "Title": "List, Query, Manipulate System Processes", @@ -3452,7 +3587,7 @@ }, "purrr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "purrr", "Title": "Functional Programming Tools", @@ -3483,7 +3618,7 @@ }, "quadprog": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "quadprog", "Type": "Package", @@ -3504,7 +3639,7 @@ }, "quantmod": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "quantmod", "Type": "Package", @@ -3530,7 +3665,7 @@ }, "rappdirs": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "rappdirs", @@ -3558,7 +3693,7 @@ }, "reactR": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "reactR", "Type": "Package", @@ -3586,7 +3721,7 @@ }, "reactable": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "reactable", "Type": "Package", @@ -3614,7 +3749,7 @@ }, "readr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "readr", "Title": "Read Rectangular Text Data", @@ -3646,7 +3781,7 @@ }, "recipes": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "recipes", "Title": "Preprocessing and Feature Engineering Steps for Modeling", @@ -3676,7 +3811,7 @@ }, "remotes": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "remotes", "Title": "R Package Installation from Remote Repositories, Including\n'GitHub'", @@ -3706,7 +3841,7 @@ }, "renv": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "renv", "Type": "Package", @@ -3743,7 +3878,7 @@ }, "rex": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "rex", @@ -3771,7 +3906,7 @@ }, "rhino": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "rhino", "Title": "A Framework for Enterprise Shiny Applications", @@ -3801,7 +3936,7 @@ }, "rlang": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "rlang", "Version": "1.1.5", @@ -3832,7 +3967,7 @@ }, "rmarkdown": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "rmarkdown", @@ -3863,7 +3998,7 @@ }, "rpart": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "rpart", "Priority": "recommended", @@ -3890,7 +4025,7 @@ }, "rprojroot": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "rprojroot", "Title": "Finding Files in Project Subdirectories", @@ -3917,7 +4052,7 @@ }, "rsample": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "rsample", "Title": "General Resampling Infrastructure", @@ -3944,9 +4079,40 @@ "Built": "R 4.5.0; ; 2025-04-16 13:57:35 UTC; unix" } }, + "rsconnect": { + "Source": "CRAN", + "Repository": "https://packagemanager.posit.co/cran/latest", + "description": { + "Type": "Package", + "Package": "rsconnect", + "Title": "Deploy Docs, Apps, and APIs to 'Posit Connect', 'shinyapps.io',\nand 'RPubs'", + "Version": "1.4.1", + "Authors@R": "c(\n person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Toph\", \"Allen\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Jonathan\", \"McPherson\", role = \"aut\"),\n person(\"JJ\", \"Allaire\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Programmatic deployment interface for 'RPubs',\n 'shinyapps.io', and 'Posit Connect'. Supported content types include R\n Markdown documents, Shiny applications, Plumber APIs, plots, and\n static web content.", + "License": "GPL-2", + "URL": "https://rstudio.github.io/rsconnect/,\nhttps://github.com/rstudio/rsconnect", + "BugReports": "https://github.com/rstudio/rsconnect/issues", + "Depends": "R (>= 3.5.0)", + "Imports": "cli, curl, digest, jsonlite, lifecycle, openssl (>= 2.0.0),\nPKI, packrat (>= 0.6), renv (>= 1.0.0), rlang (>= 1.0.0),\nrstudioapi (>= 0.5), tools, yaml (>= 2.1.5), RcppTOML, jose,\nutils", + "Suggests": "Biobase, BiocManager, foreign, knitr, MASS, plumber (>=\n0.3.2), quarto, RCurl, reticulate, rmarkdown (>= 1.1), shiny,\ntestthat (>= 3.1.9), webfakes, withr", + "VignetteBuilder": "knitr, rmarkdown", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2025-05-21 17:58:06 UTC; aron", + "Author": "Aron Atkins [aut, cre],\n Toph Allen [aut],\n Hadley Wickham [aut],\n Jonathan McPherson [aut],\n JJ Allaire [aut],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Aron Atkins ", + "Repository": "CRAN", + "Date/Publication": "2025-05-22 04:50:01 UTC", + "Built": "R 4.5.0; ; 2025-06-02 13:10:06 UTC; unix" + } + }, "rstudioapi": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "rstudioapi", "Title": "Safely Access the RStudio API", @@ -3971,7 +4137,7 @@ }, "sass": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "sass", @@ -4000,7 +4166,7 @@ }, "scales": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "scales", "Title": "Scale Functions for Visualization", @@ -4029,7 +4195,7 @@ }, "shape": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "shape", "Version": "1.4.6.1", @@ -4049,7 +4215,7 @@ }, "shiny": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "shiny", "Type": "Package", @@ -4080,7 +4246,7 @@ }, "shinyTime": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "shinyTime", "Type": "Package", @@ -4107,7 +4273,7 @@ }, "shinyWidgets": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "shinyWidgets", "Title": "Custom Inputs Widgets for Shiny", @@ -4134,7 +4300,7 @@ }, "shinycssloaders": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "shinycssloaders", "Title": "Add Loading Animations to a 'shiny' Output While It's\nRecalculating", @@ -4160,7 +4326,7 @@ }, "shinyjs": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "shinyjs", "Title": "Easily Improve the User Experience of Your Shiny Apps in Seconds", @@ -4187,7 +4353,7 @@ }, "shinytest2": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "shinytest2", "Title": "Testing for Shiny Applications", @@ -4220,7 +4386,7 @@ }, "slider": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "slider", "Title": "Sliding Window Functions", @@ -4253,7 +4419,7 @@ }, "sourcetools": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "sourcetools", "Type": "Package", @@ -4277,7 +4443,7 @@ }, "sparsevctrs": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "sparsevctrs", "Title": "Sparse Vectors for Use in Data Frames", @@ -4306,7 +4472,7 @@ }, "stringi": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "stringi", "Version": "1.8.4", @@ -4335,7 +4501,7 @@ }, "stringr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "stringr", "Title": "Simple, Consistent Wrappers for Common String Operations", @@ -4365,7 +4531,7 @@ }, "styler": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Type": "Package", "Package": "styler", @@ -4396,7 +4562,7 @@ }, "survival": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Title": "Survival Analysis", "Priority": "recommended", @@ -4423,7 +4589,7 @@ }, "sys": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "sys", "Type": "Package", @@ -4449,7 +4615,7 @@ }, "testthat": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "testthat", "Title": "Unit Testing for R", @@ -4480,7 +4646,7 @@ }, "tibble": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "tibble", "Title": "Simple Data Frames", @@ -4514,7 +4680,7 @@ }, "tidyr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "tidyr", "Title": "Tidy Messy Data", @@ -4545,7 +4711,7 @@ }, "tidyselect": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "tidyselect", "Title": "Select from a Set of Strings", @@ -4575,7 +4741,7 @@ }, "timeDate": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "timeDate", "Title": "Rmetrics - Chronological and Calendar Objects", @@ -4600,7 +4766,7 @@ }, "timechange": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "timechange", "Title": "Efficient Manipulation of Date-Times", @@ -4627,7 +4793,7 @@ }, "timetk": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "timetk", "Type": "Package", @@ -4656,7 +4822,7 @@ }, "tinytex": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "tinytex", "Type": "Package", @@ -4682,7 +4848,7 @@ }, "treesitter": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "treesitter", "Title": "Bindings to 'Tree-Sitter'", @@ -4710,7 +4876,7 @@ }, "treesitter.r": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "treesitter.r", "Title": "'R' Grammar for 'Tree-Sitter'", @@ -4738,7 +4904,7 @@ }, "tseries": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "tseries", "Version": "0.10-58", @@ -4759,7 +4925,7 @@ }, "tsfeatures": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "tsfeatures", "Title": "Time Series Feature Extraction", @@ -4787,7 +4953,7 @@ }, "tzdb": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "tzdb", "Title": "Time Zone Database Information", @@ -4816,7 +4982,7 @@ }, "urca": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "urca", "Version": "1.3-4", @@ -4839,7 +5005,7 @@ }, "utf8": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "utf8", "Title": "Unicode Text Processing", @@ -4866,7 +5032,7 @@ }, "uuid": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "uuid", "Version": "1.2-1", @@ -4888,7 +5054,7 @@ }, "vctrs": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "vctrs", "Title": "Vector Helpers", @@ -4918,7 +5084,7 @@ }, "viridisLite": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "viridisLite", "Type": "Package", @@ -4945,7 +5111,7 @@ }, "vroom": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "vroom", "Title": "Read and Write Rectangular Text Data Quickly", @@ -4978,7 +5144,7 @@ }, "waldo": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "waldo", "Title": "Find Differences Between R Objects", @@ -5006,7 +5172,7 @@ }, "warp": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "warp", "Title": "Group Dates", @@ -5033,7 +5199,7 @@ }, "websocket": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "websocket", "Version": "1.4.2", @@ -5061,7 +5227,7 @@ }, "withr": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "withr", "Title": "Run Code 'With' Temporarily Modified Global State", @@ -5091,7 +5257,7 @@ }, "xfun": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "xfun", "Type": "Package", @@ -5119,7 +5285,7 @@ }, "xml2": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "xml2", "Title": "Parse XML", @@ -5150,7 +5316,7 @@ }, "xmlparsedata": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "xmlparsedata", "Title": "Parse Data of 'R' Code as an 'XML' Tree", @@ -5175,7 +5341,7 @@ }, "xtable": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "xtable", "Version": "1.8-4", @@ -5200,7 +5366,7 @@ }, "xts": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "xts", "Type": "Package", @@ -5228,7 +5394,7 @@ }, "yaml": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "yaml", "Type": "Package", @@ -5251,7 +5417,7 @@ }, "zoo": { "Source": "CRAN", - "Repository": "https://cloud.r-project.org", + "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "zoo", "Version": "1.8-12", @@ -5279,7 +5445,7 @@ "checksum": "8146f7b0121fb6f39b9e5188b47bcaf2" }, ".Rprofile": { - "checksum": "19abc03c8bd88c56d520928513d5793f" + "checksum": "3fc0a77e56693fc392e5158cc2e3ddf2" }, "app.R": { "checksum": "d4103b4dcc8bebfefd99294ba6125f11" @@ -5303,7 +5469,7 @@ "checksum": "944421d95f64ebb2fe3d5915f8043782" }, "app/logic/connect-extension.R": { - "checksum": "b7f3429e9c3f348b92cdee1e9fed2eab" + "checksum": "dcc5badede2ee350af2b68fc724db6ef" }, "app/logic/data_utils.R": { "checksum": "635bbc125bca53c54f68a434b03a327b" @@ -5393,67 +5559,30 @@ "checksum": "7ccb25b8f68f17063cca258d0686fce8" }, "config.yml": { - "checksum": "d663fedad3a918575e6d85adb5667989" + "checksum": "7d6d59a6622045a60df01881177ea207" }, "dependencies.R": { "checksum": "3586ff13a526a9f85988f127d732ca7e" }, "README.md": { - "checksum": "a1c38b2f8341e6b735d07600e0401027" + "checksum": "6663a206dc811bffc400c108e4af941b" }, "renv.lock": { - "checksum": "7c221a5963eb200f6a7fbf12ac5ed1c8" + "checksum": "cbe91363e312d61a07c7c98f055fab11" }, "rhino.yml": { "checksum": "4f8295c6437069d07ae84698aca26c76" - }, - "tests/cypress.config.js": { - "checksum": "e5f72cdc7c9b762ade4b756931fc662b" - }, - "tests/cypress/e2e/app.cy.js": { - "checksum": "d4e8bf197084578914e3f18104e20a24" - }, - "tests/testthat.R": { - "checksum": "935f216b013d0914cf23ab906e88f3a8" - }, - "tests/testthat/setup.R": { - "checksum": "5a6a6f477185bba9147fcdc903091117" - }, - "tests/testthat/test-aggregation.R": { - "checksum": "10d9febaa645e16682a1971df35c484f" - }, - "tests/testthat/test-charts.R": { - "checksum": "1801edfe5f9461ecc5733f91973901c4" - }, - "tests/testthat/test-config.R": { - "checksum": "cefa8abc4dff895a1aa1325b5c3e8281" - }, - "tests/testthat/test-data_utils.R": { - "checksum": "c61291995281fbbdeedeb46853a46447" - }, - "tests/testthat/test-duration_utils.R": { - "checksum": "af0469a315b52a4ebbe6989927a0cee3" - }, - "tests/testthat/test-session_duration.R": { - "checksum": "bced27a7506b6365c1ab6dcc6ce89373" - }, - "tests/testthat/test-ui_utils.R": { - "checksum": "9d19858494d98c14c05f736b00f76d84" - }, - "tests/testthat/test-utils.R": { - "checksum": "ec242ce7b9fceb8293f337774b399718" } }, "users": null, "extension": { - "name": "connect-user-metrics", - "title": "Connect User Metrics Insights", - "description": "A dashboard to explore the usage of Shiny applications deployed on Connect", - "homepage": "https://github.com/posit-dev/connect-extensions/tree/main/extensions/my-content-name", - "category": "extension", - "tags": ["r", "shiny"], - "minimumConnectVersion": "2025.04.0", - "version": "0.0.0" - } + "name": "connect-user-metrics", + "title": "Connect User Metrics Insights", + "description": "A dashboard to explore the usage of Shiny applications deployed on Connect", + "homepage": "https://github.com/posit-dev/connect-extensions/tree/main/extensions/my-content-name", + "category": "extension", + "tags": ["r", "shiny"], + "minimumConnectVersion": "2025.04.0", + "version": "0.0.0" +} } - diff --git a/extensions/connect-user-metrics/renv.lock b/extensions/connect-user-metrics/renv.lock index caf0369f..40c61717 100644 --- a/extensions/connect-user-metrics/renv.lock +++ b/extensions/connect-user-metrics/renv.lock @@ -1,6 +1,6 @@ { "R": { - "Version": "4.4.3", + "Version": "4.5.0", "Repositories": [ { "Name": "CRAN", @@ -149,6 +149,27 @@ "Maintainer": "Martin Maechler ", "Repository": "CRAN" }, + "PKI": { + "Package": "PKI", + "Version": "0.1-14", + "Source": "Repository", + "Title": "Public Key Infrastucture for R Based on the X.509 Standard", + "Author": "Simon Urbanek ", + "Maintainer": "Simon Urbanek ", + "Depends": [ + "R (>= 2.9.0)", + "base64enc" + ], + "Enhances": [ + "gmp" + ], + "Description": "Public Key Infrastucture functions such as verifying certificates, RSA encription and signing which can be used to build PKI infrastructure and perform cryptographic tasks.", + "License": "GPL-2 | GPL-3 | file LICENSE", + "URL": "http://www.rforge.net/PKI", + "SystemRequirements": "OpenSSL library and headers (openssl-dev or similar)", + "NeedsCompilation": "yes", + "Repository": "CRAN" + }, "R.cache": { "Package": "R.cache", "Version": "0.16.0", @@ -392,6 +413,36 @@ "NeedsCompilation": "yes", "Repository": "CRAN" }, + "RcppTOML": { + "Package": "RcppTOML", + "Version": "0.2.3", + "Source": "Repository", + "Type": "Package", + "Title": "'Rcpp' Bindings to Parser for \"Tom's Obvious Markup Language\"", + "Date": "2025-03-08", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Mark\", \"Gillard\", role = \"aut\", comment = \"Author of 'toml++' header library\"))", + "Description": "The configuration format defined by 'TOML' (which expands to \"Tom's Obvious Markup Language\") specifies an excellent format (described at ) suitable for both human editing as well as the common uses of a machine-readable format. This package uses 'Rcpp' to connect to the 'toml++' parser written by Mark Gillard to R.", + "SystemRequirements": "A C++17 compiler", + "BugReports": "https://github.com/eddelbuettel/rcpptoml/issues", + "URL": "http://dirk.eddelbuettel.com/code/rcpp.toml.html", + "Imports": [ + "Rcpp (>= 1.0.8)" + ], + "Depends": [ + "R (>= 3.3.0)" + ], + "LinkingTo": [ + "Rcpp" + ], + "Suggests": [ + "tinytest" + ], + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Author": "Dirk Eddelbuettel [aut, cre] (), Mark Gillard [aut] (Author of 'toml++' header library)", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN" + }, "SQUAREM": { "Package": "SQUAREM", "Version": "2021.1", @@ -2965,6 +3016,38 @@ "Maintainer": "Hadley Wickham ", "Repository": "CRAN" }, + "jose": { + "Package": "jose", + "Version": "1.2.1", + "Source": "Repository", + "Type": "Package", + "Title": "JavaScript Object Signing and Encryption", + "Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\"))", + "Description": "Read and write JSON Web Keys (JWK, rfc7517), generate and verify JSON Web Signatures (JWS, rfc7515) and encode/decode JSON Web Tokens (JWT, rfc7519) . These standards provide modern signing and encryption formats that are natively supported by browsers via the JavaScript WebCryptoAPI , and used by services like OAuth 2.0, LetsEncrypt, and Github Apps.", + "License": "MIT + file LICENSE", + "URL": "https://r-lib.r-universe.dev/jose", + "BugReports": "https://github.com/r-lib/jose/issues", + "Depends": [ + "openssl (>= 1.2.1)" + ], + "Imports": [ + "jsonlite" + ], + "RoxygenNote": "7.1.2", + "VignetteBuilder": "knitr", + "Suggests": [ + "spelling", + "testthat", + "knitr", + "rmarkdown" + ], + "Encoding": "UTF-8", + "Language": "en-US", + "NeedsCompilation": "no", + "Author": "Jeroen Ooms [aut, cre] ()", + "Maintainer": "Jeroen Ooms ", + "Repository": "CRAN" + }, "jquerylib": { "Package": "jquerylib", "Version": "0.1.4", @@ -3830,6 +3913,40 @@ "Maintainer": "Jeroen Ooms ", "Repository": "CRAN" }, + "packrat": { + "Package": "packrat", + "Version": "0.9.2", + "Source": "Repository", + "Type": "Package", + "Title": "A Dependency Management System for Projects and their R Package Dependencies", + "Authors@R": "c( person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")), person(\"Toph\", \"Allen\", role = \"aut\"), person(\"Kevin\", \"Ushey\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\"), person(\"Joe\", \"Cheng\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Manage the R packages your project depends on in an isolated, portable, and reproducible way.", + "License": "GPL-2", + "URL": "https://github.com/rstudio/packrat", + "BugReports": "https://github.com/rstudio/packrat/issues", + "Depends": [ + "R (>= 3.0.0)" + ], + "Imports": [ + "tools", + "utils" + ], + "Suggests": [ + "devtools", + "httr", + "knitr", + "mockery", + "rmarkdown", + "testthat (>= 3.0.0)" + ], + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.2.3", + "NeedsCompilation": "no", + "Author": "Aron Atkins [aut, cre], Toph Allen [aut], Kevin Ushey [aut], Jonathan McPherson [aut], Joe Cheng [aut], JJ Allaire [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Aron Atkins ", + "Repository": "CRAN" + }, "padr": { "Package": "padr", "Version": "0.6.3", @@ -4831,7 +4948,7 @@ }, "renv": { "Package": "renv", - "Version": "1.1.0", + "Version": "1.1.4", "Source": "Repository", "Type": "Package", "Title": "Project Environments", @@ -5193,6 +5310,65 @@ "Maintainer": "Hannah Frick ", "Repository": "CRAN" }, + "rsconnect": { + "Package": "rsconnect", + "Version": "1.4.1", + "Source": "Repository", + "Type": "Package", + "Title": "Deploy Docs, Apps, and APIs to 'Posit Connect', 'shinyapps.io', and 'RPubs'", + "Authors@R": "c( person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")), person(\"Toph\", \"Allen\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Programmatic deployment interface for 'RPubs', 'shinyapps.io', and 'Posit Connect'. Supported content types include R Markdown documents, Shiny applications, Plumber APIs, plots, and static web content.", + "License": "GPL-2", + "URL": "https://rstudio.github.io/rsconnect/, https://github.com/rstudio/rsconnect", + "BugReports": "https://github.com/rstudio/rsconnect/issues", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "cli", + "curl", + "digest", + "jsonlite", + "lifecycle", + "openssl (>= 2.0.0)", + "PKI", + "packrat (>= 0.6)", + "renv (>= 1.0.0)", + "rlang (>= 1.0.0)", + "rstudioapi (>= 0.5)", + "tools", + "yaml (>= 2.1.5)", + "RcppTOML", + "jose", + "utils" + ], + "Suggests": [ + "Biobase", + "BiocManager", + "foreign", + "knitr", + "MASS", + "plumber (>= 0.3.2)", + "quarto", + "RCurl", + "reticulate", + "rmarkdown (>= 1.1)", + "shiny", + "testthat (>= 3.1.9)", + "webfakes", + "withr" + ], + "VignetteBuilder": "knitr, rmarkdown", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Aron Atkins [aut, cre], Toph Allen [aut], Hadley Wickham [aut], Jonathan McPherson [aut], JJ Allaire [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Aron Atkins ", + "Repository": "CRAN" + }, "rstudioapi": { "Package": "rstudioapi", "Version": "0.17.1", diff --git a/extensions/connect-user-metrics/renv/activate.R b/extensions/connect-user-metrics/renv/activate.R index ebbe3030..90b251ca 100644 --- a/extensions/connect-user-metrics/renv/activate.R +++ b/extensions/connect-user-metrics/renv/activate.R @@ -2,7 +2,7 @@ local({ # the requested version of renv - version <- "1.1.0" + version <- "1.1.4" attr(version, "sha") <- NULL # the project directory @@ -135,12 +135,12 @@ local({ # R help links pattern <- "`\\?(renv::(?:[^`])+)`" - replacement <- "`\033]8;;ide:help:\\1\a?\\1\033]8;;\a`" + replacement <- "`\033]8;;x-r-help:\\1\a?\\1\033]8;;\a`" text <- gsub(pattern, replacement, text, perl = TRUE) # runnable code pattern <- "`(renv::(?:[^`])+)`" - replacement <- "`\033]8;;ide:run:\\1\a\\1\033]8;;\a`" + replacement <- "`\033]8;;x-r-run:\\1\a\\1\033]8;;\a`" text <- gsub(pattern, replacement, text, perl = TRUE) # return ansified text @@ -695,11 +695,19 @@ local({ } - renv_bootstrap_platform_prefix <- function() { + renv_bootstrap_platform_prefix_default <- function() { - # construct version prefix - version <- paste(R.version$major, R.version$minor, sep = ".") - prefix <- paste("R", numeric_version(version)[1, 1:2], sep = "-") + # read version component + version <- Sys.getenv("RENV_PATHS_VERSION", unset = "R-%v") + + # expand placeholders + placeholders <- list( + list("%v", format(getRversion()[1, 1:2])), + list("%V", format(getRversion()[1, 1:3])) + ) + + for (placeholder in placeholders) + version <- gsub(placeholder[[1L]], placeholder[[2L]], version, fixed = TRUE) # include SVN revision for development versions of R # (to avoid sharing platform-specific artefacts with released versions of R) @@ -708,10 +716,19 @@ local({ identical(R.version[["nickname"]], "Unsuffered Consequences") if (devel) - prefix <- paste(prefix, R.version[["svn rev"]], sep = "-r") + version <- paste(version, R.version[["svn rev"]], sep = "-r") + + version + + } + + renv_bootstrap_platform_prefix <- function() { + + # construct version prefix + version <- renv_bootstrap_platform_prefix_default() # build list of path components - components <- c(prefix, R.version$platform) + components <- c(version, R.version$platform) # include prefix if provided by user prefix <- renv_bootstrap_platform_prefix_impl() @@ -950,14 +967,14 @@ local({ } renv_bootstrap_validate_version_dev <- function(version, description) { - + expected <- description[["RemoteSha"]] if (!is.character(expected)) return(FALSE) - + pattern <- sprintf("^\\Q%s\\E", version) grepl(pattern, expected, perl = TRUE) - + } renv_bootstrap_validate_version_release <- function(version, description) { @@ -1198,86 +1215,89 @@ local({ } renv_json_read_patterns <- function() { - + list( - + # objects - list("{", "\t\n\tobject(\t\n\t"), - list("}", "\t\n\t)\t\n\t"), - + list("{", "\t\n\tobject(\t\n\t", TRUE), + list("}", "\t\n\t)\t\n\t", TRUE), + # arrays - list("[", "\t\n\tarray(\t\n\t"), - list("]", "\n\t\n)\n\t\n"), - + list("[", "\t\n\tarray(\t\n\t", TRUE), + list("]", "\n\t\n)\n\t\n", TRUE), + # maps - list(":", "\t\n\t=\t\n\t") - + list(":", "\t\n\t=\t\n\t", TRUE), + + # newlines + list("\\u000a", "\n", FALSE) + ) - + } renv_json_read_envir <- function() { envir <- new.env(parent = emptyenv()) - + envir[["+"]] <- `+` envir[["-"]] <- `-` - + envir[["object"]] <- function(...) { result <- list(...) names(result) <- as.character(names(result)) result } - + envir[["array"]] <- list - + envir[["true"]] <- TRUE envir[["false"]] <- FALSE envir[["null"]] <- NULL - + envir - + } renv_json_read_remap <- function(object, patterns) { - + # repair names if necessary if (!is.null(names(object))) { - + nms <- names(object) for (pattern in patterns) nms <- gsub(pattern[[2L]], pattern[[1L]], nms, fixed = TRUE) names(object) <- nms - + } - + # repair strings if necessary if (is.character(object)) { for (pattern in patterns) object <- gsub(pattern[[2L]], pattern[[1L]], object, fixed = TRUE) } - + # recurse for other objects if (is.recursive(object)) for (i in seq_along(object)) object[i] <- list(renv_json_read_remap(object[[i]], patterns)) - + # return remapped object object - + } renv_json_read_default <- function(file = NULL, text = NULL) { # read json text text <- paste(text %||% readLines(file, warn = FALSE), collapse = "\n") - + # convert into something the R parser will understand patterns <- renv_json_read_patterns() transformed <- text for (pattern in patterns) transformed <- gsub(pattern[[1L]], pattern[[2L]], transformed, fixed = TRUE) - + # parse it rfile <- tempfile("renv-json-", fileext = ".R") on.exit(unlink(rfile), add = TRUE) @@ -1287,9 +1307,10 @@ local({ # evaluate in safe environment result <- eval(json, envir = renv_json_read_envir()) - # fix up strings if necessary + # fix up strings if necessary -- do so only with reversible patterns + patterns <- Filter(function(pattern) pattern[[3L]], patterns) renv_json_read_remap(result, patterns) - + } From 7107381db6c6eecf8a9a91106168f2dac41b94d2 Mon Sep 17 00:00:00 2001 From: vituri Date: Tue, 10 Jun 2025 11:29:43 -0300 Subject: [PATCH 08/31] remove goal lines from config.yml --- extensions/connect-user-metrics/config.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/extensions/connect-user-metrics/config.yml b/extensions/connect-user-metrics/config.yml index 1dee21f7..eda4ca71 100644 --- a/extensions/connect-user-metrics/config.yml +++ b/extensions/connect-user-metrics/config.yml @@ -6,24 +6,4 @@ default: agg_levels: "start_date" # can be a combination of content_guid,user_guid,start_date agg_time: "day" # can be one of day,week,month min_time: "00:00:00" - unique_users_goal: # optional. can be unspecified or a single value for all instances - - freq: "day" - per: "start_date" - goal: "7" - - freq: "day" - per: "start_date,content_guid" - goal: "14" - - freq: "week" - per: "start_date" - goal: "10" - sessions_goal: # optional. can be unspecified or a single value for all instances - - freq: "day" - per: "start_date" - goal: "27" - - freq: "day" - per: "start_date,content_guid" - goal: "84" - - freq: "week" - per: "start_date" - goal: "30" week_start: "monday" From 42436cfd1cb6de4d3615fe1ed4e02ffc650b909c Mon Sep 17 00:00:00 2001 From: vituri Date: Tue, 10 Jun 2025 11:33:31 -0300 Subject: [PATCH 09/31] indent manifest.json --- extensions/connect-user-metrics/manifest.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/extensions/connect-user-metrics/manifest.json b/extensions/connect-user-metrics/manifest.json index fbf77ba0..56b85087 100644 --- a/extensions/connect-user-metrics/manifest.json +++ b/extensions/connect-user-metrics/manifest.json @@ -5576,13 +5576,13 @@ }, "users": null, "extension": { - "name": "connect-user-metrics", - "title": "Connect User Metrics Insights", - "description": "A dashboard to explore the usage of Shiny applications deployed on Connect", - "homepage": "https://github.com/posit-dev/connect-extensions/tree/main/extensions/my-content-name", - "category": "extension", - "tags": ["r", "shiny"], - "minimumConnectVersion": "2025.04.0", - "version": "0.0.0" -} + "name": "connect-user-metrics", + "title": "Connect User Metrics Insights", + "description": "A dashboard to explore the usage of Shiny applications deployed on Connect", + "homepage": "https://github.com/posit-dev/connect-extensions/tree/main/extensions/my-content-name", + "category": "extension", + "tags": ["r", "shiny"], + "minimumConnectVersion": "2025.04.0", + "version": "0.0.0" + } } From 8ba014105c6766ffe5a0418312d6cf01558d7ba3 Mon Sep 17 00:00:00 2001 From: vituri Date: Tue, 10 Jun 2025 16:49:04 -0300 Subject: [PATCH 10/31] fix homepage link --- extensions/connect-user-metrics/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/connect-user-metrics/manifest.json b/extensions/connect-user-metrics/manifest.json index 56b85087..81d52aad 100644 --- a/extensions/connect-user-metrics/manifest.json +++ b/extensions/connect-user-metrics/manifest.json @@ -5579,7 +5579,7 @@ "name": "connect-user-metrics", "title": "Connect User Metrics Insights", "description": "A dashboard to explore the usage of Shiny applications deployed on Connect", - "homepage": "https://github.com/posit-dev/connect-extensions/tree/main/extensions/my-content-name", + "homepage": "https://github.com/posit-dev/connect-extensions/tree/main/extensions/connect-user-metrics", "category": "extension", "tags": ["r", "shiny"], "minimumConnectVersion": "2025.04.0", From 4d0401a66b9e16474ac3b149d8e239f8c52e81c0 Mon Sep 17 00:00:00 2001 From: vituri Date: Wed, 11 Jun 2025 08:52:34 -0300 Subject: [PATCH 11/31] remove tags; update description --- extensions/connect-user-metrics/manifest.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/extensions/connect-user-metrics/manifest.json b/extensions/connect-user-metrics/manifest.json index 81d52aad..d08a1da3 100644 --- a/extensions/connect-user-metrics/manifest.json +++ b/extensions/connect-user-metrics/manifest.json @@ -5578,10 +5578,9 @@ "extension": { "name": "connect-user-metrics", "title": "Connect User Metrics Insights", - "description": "A dashboard to explore the usage of Shiny applications deployed on Connect", + "description": "Dashboard for presenting the adoption data for the content deployed on Posit Connect.", "homepage": "https://github.com/posit-dev/connect-extensions/tree/main/extensions/connect-user-metrics", "category": "extension", - "tags": ["r", "shiny"], "minimumConnectVersion": "2025.04.0", "version": "0.0.0" } From a1861d1c5923dd0ae06b2c23ee442a0d528156a8 Mon Sep 17 00:00:00 2001 From: vituri Date: Thu, 12 Jun 2025 10:51:11 -0300 Subject: [PATCH 12/31] update links --- extensions/connect-user-metrics/README.md | 2 +- extensions/connect-user-metrics/_brand.yml | 6 +++--- extensions/connect-user-metrics/app/view/ui_components.R | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/extensions/connect-user-metrics/README.md b/extensions/connect-user-metrics/README.md index 4d308282..712ff71c 100644 --- a/extensions/connect-user-metrics/README.md +++ b/extensions/connect-user-metrics/README.md @@ -48,7 +48,7 @@ Confirm with your Posit Connect admin that instrumentation is enabled. [User Guide Vars]: https://docs.posit.com/connect/user/content-settings/#content-vars -[rsconnect-auth]: https://appsilon.com/why-use-rstudio-connect-authentication/ +[rsconnect-auth]: https://go.appsilon.com/why-use-rstudio-connect-authentication-user-metrics-app [Configuration appendix]: https://docs.posit.co/connect/admin/appendix/configuration/ [DefaultServerEnv]: https://docs.posit.co/connect/admin/appendix/configuration/#Applications.DefaultServerEnv [DefaultAPIKeyEnv]: https://docs.posit.co/connect/admin/appendix/configuration/#Applications.DefaultAPIKeyEnv diff --git a/extensions/connect-user-metrics/_brand.yml b/extensions/connect-user-metrics/_brand.yml index 31531a2e..a25fc7d1 100644 --- a/extensions/connect-user-metrics/_brand.yml +++ b/extensions/connect-user-metrics/_brand.yml @@ -6,11 +6,11 @@ meta: references: homepage: name: "Link to Appsilon" - link: "https://www.appsilon.com" + link: "https://go.appsilon.com/appsilon-user-metrics-app" powered_by: rhino: name: "Rhino" - link: "https://appsilon.github.io/rhino/" + link: "https://go.appsilon.com/github-rhino-user-metrics-app" img_name: "rhino.png" desc: "Rhino is an Open-Source Package developed by Appsilon to help the R community make more professional Shiny Apps. Rhino allows you to @@ -30,7 +30,7 @@ meta: text: "Designed and developed with 💙 by" link: label: "Appsilon" - url: "https://www.appsilon.com" + url: "https://go.appsilon.com/appsilon-user-metrics-app" logo: "appsilon-logo.png" diff --git a/extensions/connect-user-metrics/app/view/ui_components.R b/extensions/connect-user-metrics/app/view/ui_components.R index 5a36f37e..bec90627 100644 --- a/extensions/connect-user-metrics/app/view/ui_components.R +++ b/extensions/connect-user-metrics/app/view/ui_components.R @@ -100,7 +100,7 @@ card <- function(href_link, img_link, card_header, card_text) { ), a( class = "card-link technologies", - href = "https://www.appsilon.com/rhinoverse/rhino", + href = "https://go.appsilon.com/rhino-user-metrics-app", target = "_blank", rel = "noopener noreferrer", "More Appsilon Technologies" From 18e8d9338cfe884f3af4843a767642e76751f358 Mon Sep 17 00:00:00 2001 From: Jakub Nowicki Date: Tue, 17 Jun 2025 12:27:13 +0200 Subject: [PATCH 13/31] Add About the app section --- .../app/static/css/app.min.css | 2 +- .../app/styles/components/_about.scss | 12 +++++++ .../app/view/about_section.R | 32 +++++++++++++++---- 3 files changed, 39 insertions(+), 7 deletions(-) diff --git a/extensions/connect-user-metrics/app/static/css/app.min.css b/extensions/connect-user-metrics/app/static/css/app.min.css index 0eb3e95a..12ba9592 100644 --- a/extensions/connect-user-metrics/app/static/css/app.min.css +++ b/extensions/connect-user-metrics/app/static/css/app.min.css @@ -1 +1 @@ -h1,h2,h3,h4,h5{margin-bottom:0;color:var(--bs-gray-700)}.btn{--bs-btn-padding-x: 15px;--bs-btn-padding-y: 5px}.btn-default,.btn:disabled,.btn.disabled,fieldset:disabled .btn{border:none;border-radius:4px;background-color:var(--bs-primary);color:var(--bs-white);cursor:pointer;padding:6px 16px;min-width:100px;max-height:36px;opacity:unset}.btn-default:hover,.btn-default:focus,:not(.btn-check)+.btn:active{background-color:color-mix(in srgb, var(--bs-primary), black 10%);color:var(--bs-white);background-image:none;opacity:unset}.btn-group-toggle{margin-left:5px !important}details.collapsible-section{margin-top:20px}details.collapsible-section>summary{align-items:center;cursor:pointer;display:flex;margin-bottom:10px;width:fit-content}details.collapsible-section>summary::before{content:"▶";font-size:80%;margin-right:5px}details.collapsible-section[open]>summary::before{content:"▼"}details.collapsible-section>summary>h3{margin:0}hr{margin:0;color:#dde1e6;opacity:1}.no-busy-indicator .recalculating::after{display:none !important;content:none !important}div.app-header{height:50px;padding:20px 20px 20px 0;z-index:1}div.app-header .logo-link{border-right:1px solid #c5c8ca;flex:0;padding:0 10px 0 0;width:auto;z-index:1}div.app-header .logo-link .logo{width:100px}div.app-header .title{color:var(--bs-gray-700);flex:1;font-size:1.15em;font-weight:600;margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;z-index:1}div.app-header .navigation{flex:0}div.app-header .navigation .btn-nav-menu{background:rgba(0,0,0,0);border:none;border-radius:20px;color:#15354a;font-weight:normal;font-size:1em;height:auto;outline:none !important;transition:color .2s,background-color .2s}div.app-header .navigation .btn-nav-menu.selected{background-color:rgba(0,153,249,.1);border-bottom:none;color:#0099f9;outline:0}div.app-header .navigation .btn-nav-menu:hover,div.app-header .navigation .btn-nav-menu:active{background-color:rgba(21,53,74,.05)}div.app-header .btn-cta{border-radius:4px;background-color:#0099f9;color:var(--bs-white);cursor:pointer;flex:0;padding:8px 16px;text-decoration:none;transition:color .2s,background-color .2s;white-space:nowrap;width:auto;z-index:1}div.app-header .btn-cta:hover{background-color:#008de7;color:var(--bs-white);background-image:none}div.app-header .burger-btn{background:none;border:none;display:none;flex:0;font-size:1.5em;transition:color .2s;min-width:30px;z-index:1}div.app-header .burger-btn:hover{color:#0099f9}@media screen and (max-width: 1024px){div.app-header{padding:0}div.app-header .burger-btn{display:flex}div.app-header .navigation{background-color:var(--bs-white);height:auto;left:0;padding:80px 20px 40px;position:fixed;top:0;transform:translateY(-100%);transition:transform .2s,visibility 0s .2s;visibility:hidden;width:100%;z-index:0}div.app-header .navigation.visible{transition:transform .2s,visibility 0s;transform:translateY(0);visibility:visible}div.app-header .navigation .btn-nav-menu{background:rgba(0,0,0,0);border:none;border-radius:20px;color:#15354a;font-weight:normal;font-size:1em;height:auto;outline:none !important;transition:color .2s,background-color .2s}}.info-btns{display:contents}.info-btns .btn.action-button.info-btn{border:none;background-color:var(--bs-body-bg);color:#0099f9;cursor:pointer;font-size:1.2em;flex:0;min-width:24px;padding:0;transition:background-color .2s,color .2s;z-index:1}.info-btns .btn.action-button.info-btn:hover,.info-btns .btn.action-button.info-btn:focus{background:none;box-shadow:none;color:#008de7;outline:none}.info-btns .btn.action-button.info-btn i{padding-top:5px;font-size:1.3em}.modal-header .modal-title{color:#15354a;font-size:1.2em;font-weight:600}.modal-content .about-section{display:flex;flex-direction:column;gap:1.6em}.modal-content .about-section .about-links{display:flex;gap:.5em;padding-bottom:1em}.modal-content .about-section .about-links .link{align-items:center;background-color:#ccebff;border-radius:4em;color:#15354a;cursor:pointer;display:flex;gap:.5em;padding:.5em 1em;text-decoration:none}.modal-content .about-section .about-links .link:hover{background-color:#0099f9;color:#15354a;text-decoration:none}.modal-content .brand-section{align-items:center;border:1px solid #15354a;border-radius:10px;display:flex;gap:10px;padding:20px}.modal-content .brand-section .brand-logo{width:150px}.modal-content .brand-section .brand-logo img{width:100%}.modal-content .brand-section .brand-summary{color:#15354a;font-size:.9em;line-height:1.4;width:100%}.modal-content .tech-section{display:flex;flex-direction:column;gap:10px;padding:10px 0}.modal-content .tech-section .tech-heading{font-weight:bold;font-size:1.2em;color:#15354a}.modal-content .tech-section .card-package{align-items:center;background-color:#15354a;border-radius:1em;display:grid;gap:20px;grid-template-columns:130px auto 1fr;grid-template-rows:repeat(3, auto);justify-items:start;padding:20px}.modal-content .tech-section .card-package .card-logo{grid-row:1/4}.modal-content .tech-section .card-package .card-logo img{width:100%}.modal-content .tech-section .card-package .card-heading{color:var(--bs-white);font-size:1.1em;font-weight:600;grid-column:2/4;margin:0}.modal-content .tech-section .card-package .card-content{color:var(--bs-white);font-size:.9em;grid-column:2/4;line-height:1.4}.modal-content .tech-section .card-package .card-link{border-radius:10px;font-weight:bold;padding:10px 20px;text-decoration:none;transition:background-color .2s,color .2s}.modal-content .tech-section .card-package .card-link.rhino,.modal-content .tech-section .card-package .card-link.blog-link{background-color:#4747b1;color:var(--bs-white);grid-column:2/3}.modal-content .tech-section .card-package .card-link.technologies,.modal-content .tech-section .card-package .card-link.marketing-link{background-color:var(--bs-white);color:#15354a;grid-column:3/4}.modal-content .tech-section .card-package .card-link:hover{background-color:#0099f9;color:var(--bs-white)}.modal-content .btn-default,.modal-content .btn:disabled,.modal-content .btn.disabled,.modal-content fieldset:disabled .btn{background-color:#0099f9}.modal-content .btn-default:hover,.modal-content .btn-default:focus,.modal-content :not(.btn-check)+.btn:active{background-color:#008de7}.rt-pagination .rt-page-button{font-weight:400}.rt-pagination .rt-page-button-current{background-color:var(--brand-gray);color:var(--bs-white)}.rt-table .rt-tbody .rt-tr:hover{background-color:color-mix(in srgb, var(--bs-primary), white 80%);transition:background-color .3s ease 0s,color .3s ease 0s}.rt-table .rt-sort-header{font-weight:500}.rt-table .rt-page-button:disabled:hover{color:var(--bs-gray-700)}.sidebar label,.sidebar .control-label{font-weight:500}.sidebar div.input-daterange.input-group.input-group-sm *{border-color:color-mix(in srgb, var(--brand-gray), white 75%)}.sidebar .input-group:not(.has-validation)>:not(:last-child,.dropdown-toggle,.dropdown-menu,.form-floating){border-right:none}.sidebar .input-group>:not(:first-child,.dropdown-menu,.valid-tooltip,.valid-feedback,.invalid-tooltip,.invalid-feedback){border-left:none}.sidebar span.input-group-text{color:color-mix(in srgb, var(--brand-gray), white 75%) !important}.sidebar .selectize-dropdown .active{background-color:color-mix(in srgb, var(--bs-primary), white 80%)}.sidebar .selectize-dropdown .selected{background-color:color-mix(in srgb, var(--bs-primary), white 20%);color:var(--bs-white)}.sidebar .selectize-dropdown,.sidebar .selectize-input{border-color:color-mix(in srgb, var(--brand-gray), white 75%);color:var(--bs-body-color)}.sidebar .form-control{border:1px solid color-mix(in srgb, var(--brand-gray), white 75%)}.datepicker th{font-weight:500}.datepicker .datepicker-switch:hover,.datepicker .prev:hover,.datepicker .next:hover,.datepicker tfoot tr th:hover{background-color:color-mix(in srgb, var(--bs-primary), white 80%)}.datepicker table tr td.active:active,.datepicker table tr td.active.active,.datepicker table tr td.active.active:hover,.datepicker table tr td.active.highlighted:active,.datepicker table tr td.active.highlighted.active{background-color:color-mix(in srgb, var(--bs-primary), white 20%) !important;color:var(--bs-white);text-shadow:none}.datepicker table tr td.day:hover,.datepicker table tr td.focused{background-color:color-mix(in srgb, var(--bs-primary), white 80%)}.datepicker table tr td span.active:active,.datepicker table tr td span.active.active,.datepicker table tr td span.active.active:hover,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover.active:hover,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.disabled:hover.active{background-color:color-mix(in srgb, var(--bs-primary), white 20%) !important;color:var(--bs-white);text-shadow:none}.datepicker table tr td span:hover,.datepicker table tr td span.focused{background-color:color-mix(in srgb, var(--bs-primary), white 80%)}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover,.datepicker table tbody tr td span.disabled{background-color:var(--bs-white)}.vscomp-wrapper,.pop-comp-wrapper{color:var(--bs-body-color)}.vscomp-toggle-button{border-radius:var(--bs-border-radius) !important}.vscomp-wrapper.show-value-as-tags .vscomp-toggle-button{border-color:color-mix(in srgb, var(--brand-gray), white 75%)}.vscomp-wrapper.show-value-as-tags .vscomp-value-tag{background-color:color-mix(in srgb, var(--bs-primary), white 80%);border-color:color-mix(in srgb, var(--bs-primary), white 60%);border-radius:2px;padding:2px 6px;font-size:14px}.vscomp-wrapper .checkbox-icon.checked::after,.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after{border-color:color-mix(in srgb, var(--bs-primary), white 20%);border-left-color:rgba(0,0,0,0);border-top-color:rgba(0,0,0,0)}.vscomp-option.selected,.vscomp-option.focused{background-color:var(--bs-white)}.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after{border-color:color-mix(in srgb, var(--bs-primary), white 20%);border-left-color:rgba(0,0,0,0);border-top-color:rgba(0,0,0,0)}.vscomp-option:hover{background-color:color-mix(in srgb, var(--bs-primary), white 20%);color:var(--bs-white)}.vscomp-wrapper.multiple .vscomp-option.selected:hover .checkbox-icon::after{border-color:var(--bs-white);border-left-color:rgba(0,0,0,0);border-top-color:rgba(0,0,0,0)}.input-group-text{padding:0;background-color:var(--bs-white);height:100%}.bslib-sidebar-layout>.main{padding:0}.bslib-sidebar-layout>.main .bslib-card{box-shadow:none;border-bottom-width:1px;border-bottom-style:solid;margin-bottom:0;padding:26px 24px 24px}.bslib-sidebar-layout>.main .bslib-card .card-header{align-content:center;display:inline-block !important;background-color:#f2f4f8;justify-content:space-between;align-items:center;padding:10px 16px;min-height:60px;color:var(--bs-gray-700);border-bottom-color:var(--bs-white);border-radius:7px}.bslib-sidebar-layout>.main .bslib-card .card-header h5{font-size:20px}.bslib-sidebar-layout>.main .bslib-card .card-header div.card-header-with-content{display:flex;justify-content:space-between;align-items:center}.bslib-sidebar-layout>.main .bslib-card .card-header div.card-header-with-content div.card-header-content{display:flex;align-items:center}.bslib-sidebar-layout>.main .bslib-card .card-header div.card-header-with-content div.card-header-content div.inline-info-wrapper{display:flex;gap:4px;font-weight:500}.bslib-sidebar-layout>.main .bslib-card .card-body{padding:16px 0 0}.bslib-sidebar-layout>.main hr{margin-bottom:0}footer{font-size:12px;line-height:18px;color:#517287}footer a.link{color:#0099f9}.session-duration-input-controls{display:flex;gap:16px}.session-duration-input-controls :first-child{flex:1}.session-duration-input-controls :nth-child(2){flex:2} +h1,h2,h3,h4,h5{margin-bottom:0;color:var(--bs-gray-700)}.btn{--bs-btn-padding-x: 15px;--bs-btn-padding-y: 5px}.btn-default,.btn:disabled,.btn.disabled,fieldset:disabled .btn{border:none;border-radius:4px;background-color:var(--bs-primary);color:var(--bs-white);cursor:pointer;padding:6px 16px;min-width:100px;max-height:36px;opacity:unset}.btn-default:hover,.btn-default:focus,:not(.btn-check)+.btn:active{background-color:color-mix(in srgb, var(--bs-primary), black 10%);color:var(--bs-white);background-image:none;opacity:unset}.btn-group-toggle{margin-left:5px !important}details.collapsible-section{margin-top:20px}details.collapsible-section>summary{align-items:center;cursor:pointer;display:flex;margin-bottom:10px;width:fit-content}details.collapsible-section>summary::before{content:"▶";font-size:80%;margin-right:5px}details.collapsible-section[open]>summary::before{content:"▼"}details.collapsible-section>summary>h3{margin:0}hr{margin:0;color:#dde1e6;opacity:1}.no-busy-indicator .recalculating::after{display:none !important;content:none !important}div.app-header{height:50px;padding:20px 20px 20px 0;z-index:1}div.app-header .logo-link{border-right:1px solid #c5c8ca;flex:0;padding:0 10px 0 0;width:auto;z-index:1}div.app-header .logo-link .logo{width:100px}div.app-header .title{color:var(--bs-gray-700);flex:1;font-size:1.15em;font-weight:600;margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;z-index:1}div.app-header .navigation{flex:0}div.app-header .navigation .btn-nav-menu{background:rgba(0,0,0,0);border:none;border-radius:20px;color:#15354a;font-weight:normal;font-size:1em;height:auto;outline:none !important;transition:color .2s,background-color .2s}div.app-header .navigation .btn-nav-menu.selected{background-color:rgba(0,153,249,.1);border-bottom:none;color:#0099f9;outline:0}div.app-header .navigation .btn-nav-menu:hover,div.app-header .navigation .btn-nav-menu:active{background-color:rgba(21,53,74,.05)}div.app-header .btn-cta{border-radius:4px;background-color:#0099f9;color:var(--bs-white);cursor:pointer;flex:0;padding:8px 16px;text-decoration:none;transition:color .2s,background-color .2s;white-space:nowrap;width:auto;z-index:1}div.app-header .btn-cta:hover{background-color:#008de7;color:var(--bs-white);background-image:none}div.app-header .burger-btn{background:none;border:none;display:none;flex:0;font-size:1.5em;transition:color .2s;min-width:30px;z-index:1}div.app-header .burger-btn:hover{color:#0099f9}@media screen and (max-width: 1024px){div.app-header{padding:0}div.app-header .burger-btn{display:flex}div.app-header .navigation{background-color:var(--bs-white);height:auto;left:0;padding:80px 20px 40px;position:fixed;top:0;transform:translateY(-100%);transition:transform .2s,visibility 0s .2s;visibility:hidden;width:100%;z-index:0}div.app-header .navigation.visible{transition:transform .2s,visibility 0s;transform:translateY(0);visibility:visible}div.app-header .navigation .btn-nav-menu{background:rgba(0,0,0,0);border:none;border-radius:20px;color:#15354a;font-weight:normal;font-size:1em;height:auto;outline:none !important;transition:color .2s,background-color .2s}}.info-btns{display:contents}.info-btns .btn.action-button.info-btn{border:none;background-color:var(--bs-body-bg);color:#0099f9;cursor:pointer;font-size:1.2em;flex:0;min-width:24px;padding:0;transition:background-color .2s,color .2s;z-index:1}.info-btns .btn.action-button.info-btn:hover,.info-btns .btn.action-button.info-btn:focus{background:none;box-shadow:none;color:#008de7;outline:none}.info-btns .btn.action-button.info-btn i{padding-top:5px;font-size:1.3em}.modal-header .modal-title{color:#15354a;font-size:1.2em;font-weight:600}.modal-content .about-section{display:flex;flex-direction:column;gap:1.6em}.modal-content .about-section .about-links{display:flex;gap:.5em;padding-bottom:1em}.modal-content .about-section .about-links .link{align-items:center;background-color:#ccebff;border-radius:4em;color:#15354a;cursor:pointer;display:flex;gap:.5em;padding:.5em 1em;text-decoration:none}.modal-content .about-section .about-links .link:hover{background-color:#0099f9;color:#15354a;text-decoration:none}.modal-content .brand-heading{font-weight:bold;font-size:1.2em;margin-bottom:10px}.modal-content .brand-section{align-items:center;border:1px solid #15354a;border-radius:10px;display:flex;gap:10px;padding:20px;margin-bottom:20px}.modal-content .brand-section .brand-logo{width:150px}.modal-content .brand-section .brand-logo img{width:100%}.modal-content .brand-section .brand-summary{color:#15354a;font-size:.9em;line-height:1.4;width:100%;margin-bottom:0}.modal-content .tech-section{display:flex;flex-direction:column;gap:10px;padding:10px 0}.modal-content .tech-section .tech-heading{font-weight:bold;font-size:1.2em;color:#15354a}.modal-content .tech-section .card-package{align-items:center;background-color:#15354a;border-radius:1em;display:grid;gap:20px;grid-template-columns:130px auto 1fr;grid-template-rows:repeat(3, auto);justify-items:start;padding:20px}.modal-content .tech-section .card-package .card-logo{grid-row:1/4}.modal-content .tech-section .card-package .card-logo img{width:100%}.modal-content .tech-section .card-package .card-heading{color:var(--bs-white);font-size:1.1em;font-weight:600;grid-column:2/4;margin:0}.modal-content .tech-section .card-package .card-content{color:var(--bs-white);font-size:.9em;grid-column:2/4;line-height:1.4}.modal-content .tech-section .card-package .card-link{border-radius:10px;font-weight:bold;padding:10px 20px;text-decoration:none;transition:background-color .2s,color .2s}.modal-content .tech-section .card-package .card-link.rhino,.modal-content .tech-section .card-package .card-link.blog-link{background-color:#4747b1;color:var(--bs-white);grid-column:2/3}.modal-content .tech-section .card-package .card-link.technologies,.modal-content .tech-section .card-package .card-link.marketing-link{background-color:var(--bs-white);color:#15354a;grid-column:3/4}.modal-content .tech-section .card-package .card-link:hover{background-color:#0099f9;color:var(--bs-white)}.modal-content .btn-default,.modal-content .btn:disabled,.modal-content .btn.disabled,.modal-content fieldset:disabled .btn{background-color:#0099f9}.modal-content .btn-default:hover,.modal-content .btn-default:focus,.modal-content :not(.btn-check)+.btn:active{background-color:#008de7}.modal-dialog.modal-xl{margin-top:12vh}.rt-pagination .rt-page-button{font-weight:400}.rt-pagination .rt-page-button-current{background-color:var(--brand-gray);color:var(--bs-white)}.rt-table .rt-tbody .rt-tr:hover{background-color:color-mix(in srgb, var(--bs-primary), white 80%);transition:background-color .3s ease 0s,color .3s ease 0s}.rt-table .rt-sort-header{font-weight:500}.rt-table .rt-page-button:disabled:hover{color:var(--bs-gray-700)}.sidebar label,.sidebar .control-label{font-weight:500}.sidebar div.input-daterange.input-group.input-group-sm *{border-color:color-mix(in srgb, var(--brand-gray), white 75%)}.sidebar .input-group:not(.has-validation)>:not(:last-child,.dropdown-toggle,.dropdown-menu,.form-floating){border-right:none}.sidebar .input-group>:not(:first-child,.dropdown-menu,.valid-tooltip,.valid-feedback,.invalid-tooltip,.invalid-feedback){border-left:none}.sidebar span.input-group-text{color:color-mix(in srgb, var(--brand-gray), white 75%) !important}.sidebar .selectize-dropdown .active{background-color:color-mix(in srgb, var(--bs-primary), white 80%)}.sidebar .selectize-dropdown .selected{background-color:color-mix(in srgb, var(--bs-primary), white 20%);color:var(--bs-white)}.sidebar .selectize-dropdown,.sidebar .selectize-input{border-color:color-mix(in srgb, var(--brand-gray), white 75%);color:var(--bs-body-color)}.sidebar .form-control{border:1px solid color-mix(in srgb, var(--brand-gray), white 75%)}.datepicker th{font-weight:500}.datepicker .datepicker-switch:hover,.datepicker .prev:hover,.datepicker .next:hover,.datepicker tfoot tr th:hover{background-color:color-mix(in srgb, var(--bs-primary), white 80%)}.datepicker table tr td.active:active,.datepicker table tr td.active.active,.datepicker table tr td.active.active:hover,.datepicker table tr td.active.highlighted:active,.datepicker table tr td.active.highlighted.active{background-color:color-mix(in srgb, var(--bs-primary), white 20%) !important;color:var(--bs-white);text-shadow:none}.datepicker table tr td.day:hover,.datepicker table tr td.focused{background-color:color-mix(in srgb, var(--bs-primary), white 80%)}.datepicker table tr td span.active:active,.datepicker table tr td span.active.active,.datepicker table tr td span.active.active:hover,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover.active:hover,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.disabled:hover.active{background-color:color-mix(in srgb, var(--bs-primary), white 20%) !important;color:var(--bs-white);text-shadow:none}.datepicker table tr td span:hover,.datepicker table tr td span.focused{background-color:color-mix(in srgb, var(--bs-primary), white 80%)}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover,.datepicker table tbody tr td span.disabled{background-color:var(--bs-white)}.vscomp-wrapper,.pop-comp-wrapper{color:var(--bs-body-color)}.vscomp-toggle-button{border-radius:var(--bs-border-radius) !important}.vscomp-wrapper.show-value-as-tags .vscomp-toggle-button{border-color:color-mix(in srgb, var(--brand-gray), white 75%)}.vscomp-wrapper.show-value-as-tags .vscomp-value-tag{background-color:color-mix(in srgb, var(--bs-primary), white 80%);border-color:color-mix(in srgb, var(--bs-primary), white 60%);border-radius:2px;padding:2px 6px;font-size:14px}.vscomp-wrapper .checkbox-icon.checked::after,.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after{border-color:color-mix(in srgb, var(--bs-primary), white 20%);border-left-color:rgba(0,0,0,0);border-top-color:rgba(0,0,0,0)}.vscomp-option.selected,.vscomp-option.focused{background-color:var(--bs-white)}.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after{border-color:color-mix(in srgb, var(--bs-primary), white 20%);border-left-color:rgba(0,0,0,0);border-top-color:rgba(0,0,0,0)}.vscomp-option:hover{background-color:color-mix(in srgb, var(--bs-primary), white 20%);color:var(--bs-white)}.vscomp-wrapper.multiple .vscomp-option.selected:hover .checkbox-icon::after{border-color:var(--bs-white);border-left-color:rgba(0,0,0,0);border-top-color:rgba(0,0,0,0)}.input-group-text{padding:0;background-color:var(--bs-white);height:100%}.bslib-sidebar-layout>.main{padding:0}.bslib-sidebar-layout>.main .bslib-card{box-shadow:none;border-bottom-width:1px;border-bottom-style:solid;margin-bottom:0;padding:26px 24px 24px}.bslib-sidebar-layout>.main .bslib-card .card-header{align-content:center;display:inline-block !important;background-color:#f2f4f8;justify-content:space-between;align-items:center;padding:10px 16px;min-height:60px;color:var(--bs-gray-700);border-bottom-color:var(--bs-white);border-radius:7px}.bslib-sidebar-layout>.main .bslib-card .card-header h5{font-size:20px}.bslib-sidebar-layout>.main .bslib-card .card-header div.card-header-with-content{display:flex;justify-content:space-between;align-items:center}.bslib-sidebar-layout>.main .bslib-card .card-header div.card-header-with-content div.card-header-content{display:flex;align-items:center}.bslib-sidebar-layout>.main .bslib-card .card-header div.card-header-with-content div.card-header-content div.inline-info-wrapper{display:flex;gap:4px;font-weight:500}.bslib-sidebar-layout>.main .bslib-card .card-body{padding:16px 0 0}.bslib-sidebar-layout>.main hr{margin-bottom:0}footer{font-size:12px;line-height:18px;color:#517287}footer a.link{color:#0099f9}.session-duration-input-controls{display:flex;gap:16px}.session-duration-input-controls :first-child{flex:1}.session-duration-input-controls :nth-child(2){flex:2} diff --git a/extensions/connect-user-metrics/app/styles/components/_about.scss b/extensions/connect-user-metrics/app/styles/components/_about.scss index f13fae0d..8e044c32 100644 --- a/extensions/connect-user-metrics/app/styles/components/_about.scss +++ b/extensions/connect-user-metrics/app/styles/components/_about.scss @@ -69,6 +69,12 @@ } } + .brand-heading { + font-weight: bold; + font-size: 1.2em; + margin-bottom: 10px; + } + .brand-section { align-items: center; border: 1px solid map.get($credit-colors, blue-gray-dark); @@ -76,6 +82,7 @@ display: flex; gap: 10px; padding: 20px; + margin-bottom: 20px; .brand-logo { width: 150px; @@ -90,6 +97,7 @@ font-size: 0.9em; line-height: 1.4; width: 100%; + margin-bottom: 0; } } @@ -181,3 +189,7 @@ background-color: map.get($credit-colors, blue-dark); } } + +.modal-dialog.modal-xl { + margin-top: 12vh; +} diff --git a/extensions/connect-user-metrics/app/view/about_section.R b/extensions/connect-user-metrics/app/view/about_section.R index 97959659..73aa0c82 100644 --- a/extensions/connect-user-metrics/app/view/about_section.R +++ b/extensions/connect-user-metrics/app/view/about_section.R @@ -14,17 +14,27 @@ box::use( ], app/view/ui_components[ card, - link ], ) about_credits <- brand$meta$credits$about about_section <- shiny$div( - class = "about-section", + class = "brand-section", shiny$div( - class = "about-links", - lapply(about_credits$references, \(x) link(x$name, x$link)) + class = "brand-summary", + shiny$markdown(" +Posit Connect User Metrics makes it easy to monitor **application adoption**, +track **user engagement** and access detailed **usage analytics** +for all your Shiny applications deployed on Posit Connect. +Some key features: + +- **Time-based analysis**: View data by day, week, or month across custom time periods +- **Flexible grouping**: Combine metrics by application, user, and date for different perspectives +- **Interactive charts**: Visualize session counts and unique users with dynamic filtering +- **Smart filtering**: Set minimum session duration and filter by specific apps or users +- **Data export**: Download raw and aggregated data as CSV files for further analysis +") ) ) @@ -58,7 +68,16 @@ brand_section <- shiny$div( ), shiny$p( class = "brand-summary", - about_credits$summary + shiny$span( + about_credits$summary, + shiny$a( + "Learn more about Appsilon", + href = about_credits$references$homepage$link, + target = "_blank", + rel = "noopener noreferrer", + class = "brand-link" + ) + ) ) ) @@ -89,7 +108,8 @@ server <- function(id) { shiny$modalDialog( easyClose = TRUE, title = brand$meta$app_title, - size = "l", + size = "xl", + h4(class = "brand-heading", "About this app"), about_section, tech_section, brand_section From 6133051f9b09c76a103c9c0407a64044ba8fc0b7 Mon Sep 17 00:00:00 2001 From: Jakub Nowicki Date: Tue, 17 Jun 2025 13:53:11 +0200 Subject: [PATCH 14/31] Pre-release manifest.json update. --- extensions/connect-user-metrics/manifest.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/extensions/connect-user-metrics/manifest.json b/extensions/connect-user-metrics/manifest.json index d08a1da3..14d8efdb 100644 --- a/extensions/connect-user-metrics/manifest.json +++ b/extensions/connect-user-metrics/manifest.json @@ -5577,11 +5577,12 @@ "users": null, "extension": { "name": "connect-user-metrics", - "title": "Connect User Metrics Insights", - "description": "Dashboard for presenting the adoption data for the content deployed on Posit Connect.", + "title": "Connect User Metrics", + "description": "Dashboard for presenting the adoption data for the content deployed on Posit Connect, created by Appsilon.", "homepage": "https://github.com/posit-dev/connect-extensions/tree/main/extensions/connect-user-metrics", "category": "extension", + "tags": [], "minimumConnectVersion": "2025.04.0", - "version": "0.0.0" + "version": "1.0.0" } } From 499ba467b6b68f5718fee6bc12ac1ea19b390ad0 Mon Sep 17 00:00:00 2001 From: vituri Date: Mon, 23 Jun 2025 21:01:32 -0300 Subject: [PATCH 15/31] copy changes from main-connect-extension --- extensions/connect-user-metrics/CONTRIBUTE.md | 5 +++++ extensions/connect-user-metrics/README.md | 15 +++++++++++++-- .../connect-user-metrics/tests/cypress.config.js | 7 ------- .../connect-user-metrics/tests/cypress/.gitignore | 2 -- .../tests/cypress/e2e/app.cy.js | 7 ------- 5 files changed, 18 insertions(+), 18 deletions(-) create mode 100644 extensions/connect-user-metrics/CONTRIBUTE.md delete mode 100644 extensions/connect-user-metrics/tests/cypress.config.js delete mode 100644 extensions/connect-user-metrics/tests/cypress/.gitignore delete mode 100644 extensions/connect-user-metrics/tests/cypress/e2e/app.cy.js diff --git a/extensions/connect-user-metrics/CONTRIBUTE.md b/extensions/connect-user-metrics/CONTRIBUTE.md new file mode 100644 index 00000000..071f0e6f --- /dev/null +++ b/extensions/connect-user-metrics/CONTRIBUTE.md @@ -0,0 +1,5 @@ +# How to contribute + +This branch is a *simplified* version of Connect User Metrics, tailored to be deployed on Posit Connect Gallery. + +For the full version of the app, please refer to [the main branch of Connect User Metrics](https://github.com/Appsilon/ConnectUserMetrics). diff --git a/extensions/connect-user-metrics/README.md b/extensions/connect-user-metrics/README.md index 712ff71c..90803323 100644 --- a/extensions/connect-user-metrics/README.md +++ b/extensions/connect-user-metrics/README.md @@ -1,4 +1,15 @@ -# Connect Insights Dashboard +# Connect User Metrics Dashboard + +Connect User Metrics makes it easy to monitor **application adoption**, +track **user engagement** and access detailed **usage analytics** +for all your Shiny applications deployed on Posit Connect. +Some key features: + +- **Time-based analysis**: View data by day, week, or month across custom time periods +- **Flexible grouping**: Combine metrics by application, user, and date for different perspectives +- **Interactive charts**: Visualize session counts and unique users with dynamic filtering +- **Smart filtering**: Set minimum session duration and filter by specific apps or users +- **Data export**: Download raw and aggregated data as CSV files for further analysis ## Environment Variables @@ -47,7 +58,7 @@ As with environment variables, the [Instrumentation] feature is also configurabl Confirm with your Posit Connect admin that instrumentation is enabled. -[User Guide Vars]: https://docs.posit.com/connect/user/content-settings/#content-vars +[User Guide Vars]: https://docs.posit.co/connect/user/content-settings/#content-vars [rsconnect-auth]: https://go.appsilon.com/why-use-rstudio-connect-authentication-user-metrics-app [Configuration appendix]: https://docs.posit.co/connect/admin/appendix/configuration/ [DefaultServerEnv]: https://docs.posit.co/connect/admin/appendix/configuration/#Applications.DefaultServerEnv diff --git a/extensions/connect-user-metrics/tests/cypress.config.js b/extensions/connect-user-metrics/tests/cypress.config.js deleted file mode 100644 index 5c23de01..00000000 --- a/extensions/connect-user-metrics/tests/cypress.config.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = { - e2e: { - setupNodeEvents(on, config) {}, - baseUrl: 'http://localhost:3333', - supportFile: false, - }, -} diff --git a/extensions/connect-user-metrics/tests/cypress/.gitignore b/extensions/connect-user-metrics/tests/cypress/.gitignore deleted file mode 100644 index e0cd7dc8..00000000 --- a/extensions/connect-user-metrics/tests/cypress/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/screenshots/ -/videos/ diff --git a/extensions/connect-user-metrics/tests/cypress/e2e/app.cy.js b/extensions/connect-user-metrics/tests/cypress/e2e/app.cy.js deleted file mode 100644 index b9a58df5..00000000 --- a/extensions/connect-user-metrics/tests/cypress/e2e/app.cy.js +++ /dev/null @@ -1,7 +0,0 @@ -describe('app', () => { - beforeEach(() => { - cy.visit('/') - }) - - it('starts', () => {}) -}) From be094232d073e5fe42ad76c05b039fe447cb8175 Mon Sep 17 00:00:00 2001 From: vituri Date: Mon, 23 Jun 2025 21:01:32 -0300 Subject: [PATCH 16/31] copy changes from main-connect-extension --- extensions/connect-user-metrics/CONTRIBUTE.md | 5 +++++ extensions/connect-user-metrics/README.md | 15 +++++++++++++-- extensions/connect-user-metrics/app/js/index.js | 0 .../connect-user-metrics/tests/cypress.config.js | 7 ------- .../connect-user-metrics/tests/cypress/.gitignore | 2 -- .../tests/cypress/e2e/app.cy.js | 7 ------- 6 files changed, 18 insertions(+), 18 deletions(-) create mode 100644 extensions/connect-user-metrics/CONTRIBUTE.md delete mode 100644 extensions/connect-user-metrics/app/js/index.js delete mode 100644 extensions/connect-user-metrics/tests/cypress.config.js delete mode 100644 extensions/connect-user-metrics/tests/cypress/.gitignore delete mode 100644 extensions/connect-user-metrics/tests/cypress/e2e/app.cy.js diff --git a/extensions/connect-user-metrics/CONTRIBUTE.md b/extensions/connect-user-metrics/CONTRIBUTE.md new file mode 100644 index 00000000..071f0e6f --- /dev/null +++ b/extensions/connect-user-metrics/CONTRIBUTE.md @@ -0,0 +1,5 @@ +# How to contribute + +This branch is a *simplified* version of Connect User Metrics, tailored to be deployed on Posit Connect Gallery. + +For the full version of the app, please refer to [the main branch of Connect User Metrics](https://github.com/Appsilon/ConnectUserMetrics). diff --git a/extensions/connect-user-metrics/README.md b/extensions/connect-user-metrics/README.md index 712ff71c..90803323 100644 --- a/extensions/connect-user-metrics/README.md +++ b/extensions/connect-user-metrics/README.md @@ -1,4 +1,15 @@ -# Connect Insights Dashboard +# Connect User Metrics Dashboard + +Connect User Metrics makes it easy to monitor **application adoption**, +track **user engagement** and access detailed **usage analytics** +for all your Shiny applications deployed on Posit Connect. +Some key features: + +- **Time-based analysis**: View data by day, week, or month across custom time periods +- **Flexible grouping**: Combine metrics by application, user, and date for different perspectives +- **Interactive charts**: Visualize session counts and unique users with dynamic filtering +- **Smart filtering**: Set minimum session duration and filter by specific apps or users +- **Data export**: Download raw and aggregated data as CSV files for further analysis ## Environment Variables @@ -47,7 +58,7 @@ As with environment variables, the [Instrumentation] feature is also configurabl Confirm with your Posit Connect admin that instrumentation is enabled. -[User Guide Vars]: https://docs.posit.com/connect/user/content-settings/#content-vars +[User Guide Vars]: https://docs.posit.co/connect/user/content-settings/#content-vars [rsconnect-auth]: https://go.appsilon.com/why-use-rstudio-connect-authentication-user-metrics-app [Configuration appendix]: https://docs.posit.co/connect/admin/appendix/configuration/ [DefaultServerEnv]: https://docs.posit.co/connect/admin/appendix/configuration/#Applications.DefaultServerEnv diff --git a/extensions/connect-user-metrics/app/js/index.js b/extensions/connect-user-metrics/app/js/index.js deleted file mode 100644 index e69de29b..00000000 diff --git a/extensions/connect-user-metrics/tests/cypress.config.js b/extensions/connect-user-metrics/tests/cypress.config.js deleted file mode 100644 index 5c23de01..00000000 --- a/extensions/connect-user-metrics/tests/cypress.config.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = { - e2e: { - setupNodeEvents(on, config) {}, - baseUrl: 'http://localhost:3333', - supportFile: false, - }, -} diff --git a/extensions/connect-user-metrics/tests/cypress/.gitignore b/extensions/connect-user-metrics/tests/cypress/.gitignore deleted file mode 100644 index e0cd7dc8..00000000 --- a/extensions/connect-user-metrics/tests/cypress/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/screenshots/ -/videos/ diff --git a/extensions/connect-user-metrics/tests/cypress/e2e/app.cy.js b/extensions/connect-user-metrics/tests/cypress/e2e/app.cy.js deleted file mode 100644 index b9a58df5..00000000 --- a/extensions/connect-user-metrics/tests/cypress/e2e/app.cy.js +++ /dev/null @@ -1,7 +0,0 @@ -describe('app', () => { - beforeEach(() => { - cy.visit('/') - }) - - it('starts', () => {}) -}) From 3601137a1ae9a09eaad4ab82a30db2fc3cd5d3a2 Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 31 Jul 2025 12:42:01 +0200 Subject: [PATCH 17/31] build: upgrade dependencies --- extensions/connect-user-metrics/renv.lock | 1146 +++++++++------------ 1 file changed, 480 insertions(+), 666 deletions(-) diff --git a/extensions/connect-user-metrics/renv.lock b/extensions/connect-user-metrics/renv.lock index 40c61717..20b50c6c 100644 --- a/extensions/connect-user-metrics/renv.lock +++ b/extensions/connect-user-metrics/renv.lock @@ -1,6 +1,6 @@ { "R": { - "Version": "4.5.0", + "Version": "4.5.1", "Repositories": [ { "Name": "CRAN", @@ -11,20 +11,22 @@ "Packages": { "AsioHeaders": { "Package": "AsioHeaders", - "Version": "1.22.1-2", + "Version": "1.30.2-1", "Source": "Repository", "Type": "Package", "Title": "'Asio' C++ Header Files", - "Date": "2022-12-07", - "Author": "Dirk Eddelbuettel", - "Maintainer": "Dirk Eddelbuettel ", + "Date": "2025-04-15", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Christopher M.\", \"Kohlhoff\", role = \"aut\", comment = \"Author of Asio\"))", "Description": "'Asio' is a cross-platform C++ library for network and low-level I/O programming that provides developers with a consistent asynchronous model using a modern C++ approach. It is also included in Boost but requires linking when used with Boost. Standalone it can be used header-only (provided a recent compiler). 'Asio' is written and maintained by Christopher M. Kohlhoff, and released under the 'Boost Software License', Version 1.0.", "Copyright": "file inst/COPYRIGHTS", "License": "BSL-1.0", "URL": "https://github.com/eddelbuettel/asioheaders, https://dirk.eddelbuettel.com/code/asioheaders.html", "BugReports": "https://github.com/eddelbuettel/asioheaders/issues", "NeedsCompilation": "no", - "Repository": "CRAN" + "Author": "Dirk Eddelbuettel [aut, cre] (), Christopher M. Kohlhoff [aut] (Author of Asio)", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "CRAN", + "Encoding": "UTF-8" }, "BH": { "Package": "BH", @@ -41,7 +43,8 @@ "NeedsCompilation": "no", "Author": "Dirk Eddelbuettel [aut, cre] (), John W. Emerson [aut], Michael J. Kane [aut] ()", "Maintainer": "Dirk Eddelbuettel ", - "Repository": "CRAN" + "Repository": "RSPM", + "Encoding": "UTF-8" }, "KernSmooth": { "Package": "KernSmooth", @@ -106,10 +109,10 @@ }, "Matrix": { "Package": "Matrix", - "Version": "1.7-2", + "Version": "1.7-3", "Source": "Repository", "VersionNote": "do also bump src/version.h, inst/include/Matrix/version.h", - "Date": "2025-01-20", + "Date": "2025-03-05", "Priority": "recommended", "Title": "Sparse and Dense Matrix Classes and Methods", "Description": "A rich hierarchy of sparse and dense matrix classes, including general, symmetric, triangular, and diagonal matrices with numeric, logical, or pattern entries. Efficient methods for operating on such matrices, often wrapping the 'BLAS', 'LAPACK', and 'SuiteSparse' libraries.", @@ -149,30 +152,9 @@ "Maintainer": "Martin Maechler ", "Repository": "CRAN" }, - "PKI": { - "Package": "PKI", - "Version": "0.1-14", - "Source": "Repository", - "Title": "Public Key Infrastucture for R Based on the X.509 Standard", - "Author": "Simon Urbanek ", - "Maintainer": "Simon Urbanek ", - "Depends": [ - "R (>= 2.9.0)", - "base64enc" - ], - "Enhances": [ - "gmp" - ], - "Description": "Public Key Infrastucture functions such as verifying certificates, RSA encription and signing which can be used to build PKI infrastructure and perform cryptographic tasks.", - "License": "GPL-2 | GPL-3 | file LICENSE", - "URL": "http://www.rforge.net/PKI", - "SystemRequirements": "OpenSSL library and headers (openssl-dev or similar)", - "NeedsCompilation": "yes", - "Repository": "CRAN" - }, "R.cache": { "Package": "R.cache", - "Version": "0.16.0", + "Version": "0.17.0", "Source": "Repository", "Depends": [ "R (>= 2.14.0)" @@ -193,7 +175,7 @@ "LazyLoad": "TRUE", "URL": "https://github.com/HenrikBengtsson/R.cache", "BugReports": "https://github.com/HenrikBengtsson/R.cache/issues", - "RoxygenNote": "7.2.1", + "Encoding": "UTF-8", "NeedsCompilation": "no", "Repository": "CRAN" }, @@ -220,11 +202,12 @@ "URL": "https://github.com/HenrikBengtsson/R.methodsS3", "BugReports": "https://github.com/HenrikBengtsson/R.methodsS3/issues", "NeedsCompilation": "no", - "Repository": "CRAN" + "Repository": "RSPM", + "Encoding": "UTF-8" }, "R.oo": { "Package": "R.oo", - "Version": "1.27.0", + "Version": "1.27.1", "Source": "Repository", "Depends": [ "R (>= 2.13.0)", @@ -244,14 +227,15 @@ "Description": "Methods and classes for object-oriented programming in R with or without references. Large effort has been made on making definition of methods as simple as possible with a minimum of maintenance for package developers. The package has been developed since 2001 and is now considered very stable. This is a cross-platform package implemented in pure R that defines standard S3 classes without any tricks.", "License": "LGPL (>= 2.1)", "LazyLoad": "TRUE", - "URL": "https://github.com/HenrikBengtsson/R.oo", + "URL": "https://henrikbengtsson.github.io/R.oo/, https://github.com/HenrikBengtsson/R.oo", "BugReports": "https://github.com/HenrikBengtsson/R.oo/issues", "NeedsCompilation": "no", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "R.utils": { "Package": "R.utils", - "Version": "2.12.3", + "Version": "2.13.0", "Source": "Repository", "Depends": [ "R (>= 2.14.0)", @@ -277,29 +261,33 @@ "URL": "https://henrikbengtsson.github.io/R.utils/, https://github.com/HenrikBengtsson/R.utils", "BugReports": "https://github.com/HenrikBengtsson/R.utils/issues", "NeedsCompilation": "no", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "R6": { "Package": "R6", - "Version": "2.5.1", + "Version": "2.6.1", "Source": "Repository", "Title": "Encapsulated Classes with Reference Semantics", - "Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@stdout.org\")", + "Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", "Description": "Creates classes with reference semantics, similar to R's built-in reference classes. Compared to reference classes, R6 classes are simpler and lighter-weight, and they are not built on S4 classes so they do not require the methods package. These classes allow public and private members, and they support inheritance, even when the classes are defined in different packages.", + "License": "MIT + file LICENSE", + "URL": "https://r6.r-lib.org, https://github.com/r-lib/R6", + "BugReports": "https://github.com/r-lib/R6/issues", "Depends": [ - "R (>= 3.0)" + "R (>= 3.6)" ], "Suggests": [ - "testthat", - "pryr" + "lobstr", + "testthat (>= 3.0.0)" ], - "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", + "Config/Needs/website": "tidyverse/tidytemplate, ggplot2, microbenchmark, scales", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Author": "Winston Chang [aut, cre]", - "Maintainer": "Winston Chang ", + "Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "Winston Chang ", "Repository": "CRAN" }, "RColorBrewer": { @@ -317,14 +305,15 @@ "Description": "Provides color schemes for maps (and other graphics) designed by Cynthia Brewer as described at http://colorbrewer2.org.", "License": "Apache License 2.0", "NeedsCompilation": "no", - "Repository": "CRAN" + "Repository": "RSPM", + "Encoding": "UTF-8" }, "Rcpp": { "Package": "Rcpp", - "Version": "1.0.14", + "Version": "1.1.0", "Source": "Repository", "Title": "Seamless R and C++ Integration", - "Date": "2025-01-11", + "Date": "2025-07-01", "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"JJ\", \"Allaire\", role = \"aut\", comment = c(ORCID = \"0000-0003-0174-9868\")), person(\"Kevin\", \"Ushey\", role = \"aut\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Qiang\", \"Kou\", role = \"aut\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Nathan\", \"Russell\", role = \"aut\"), person(\"Iñaki\", \"Ucar\", role = \"aut\", comment = c(ORCID = \"0000-0001-6403-5550\")), person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"John\", \"Chambers\", role = \"aut\"))", "Description": "The 'Rcpp' package provides R functions as well as C++ classes which offer a seamless integration of R and C++. Many R data types and objects can be mapped back and forth to C++ equivalents which facilitates both writing of new code as well as easier integration of third-party libraries. Documentation about 'Rcpp' is provided by several vignettes included in this package, via the 'Rcpp Gallery' site at , the paper by Eddelbuettel and Francois (2011, ), the book by Eddelbuettel (2013, ) and the paper by Eddelbuettel and Balamuta (2018, ); see 'citation(\"Rcpp\")' for details.", "Imports": [ @@ -344,17 +333,17 @@ "RoxygenNote": "6.1.1", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Author": "Dirk Eddelbuettel [aut, cre] (), Romain Francois [aut] (), JJ Allaire [aut] (), Kevin Ushey [aut] (), Qiang Kou [aut] (), Nathan Russell [aut], Iñaki Ucar [aut] (), Doug Bates [aut] (), John Chambers [aut]", + "Author": "Dirk Eddelbuettel [aut, cre] (ORCID: ), Romain Francois [aut] (ORCID: ), JJ Allaire [aut] (ORCID: ), Kevin Ushey [aut] (ORCID: ), Qiang Kou [aut] (ORCID: ), Nathan Russell [aut], Iñaki Ucar [aut] (ORCID: ), Doug Bates [aut] (ORCID: ), John Chambers [aut]", "Maintainer": "Dirk Eddelbuettel ", "Repository": "CRAN" }, "RcppArmadillo": { "Package": "RcppArmadillo", - "Version": "14.2.3-1", + "Version": "14.6.0-1", "Source": "Repository", "Type": "Package", "Title": "'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra Library", - "Date": "2025-02-05", + "Date": "2025-07-02", "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Binxiang\", \"Ni\", role = \"aut\"), person(\"Conrad\", \"Sanderson\", role = \"aut\", comment = c(ORCID = \"0000-0002-0049-4501\")))", "Description": "'Armadillo' is a templated C++ linear algebra library (by Conrad Sanderson) that aims towards a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, as well as a subset of trigonometric and statistics functions. Various matrix decompositions are provided through optional integration with LAPACK and ATLAS libraries. The 'RcppArmadillo' package includes the header files from the templated 'Armadillo' library. Thus users do not need to install 'Armadillo' itself in order to use 'RcppArmadillo'. From release 7.800.0 on, 'Armadillo' is licensed under Apache License 2; previous releases were under licensed as MPL 2.0 from version 3.800.0 onwards and LGPL-3 prior to that; 'RcppArmadillo' (the 'Rcpp' bindings/bridge to Armadillo) is licensed under the GNU GPL version 2 or later, as is the rest of 'Rcpp'.", "License": "GPL (>= 2)", @@ -382,9 +371,10 @@ "BugReports": "https://github.com/RcppCore/RcppArmadillo/issues", "RoxygenNote": "6.0.1", "NeedsCompilation": "yes", - "Author": "Dirk Eddelbuettel [aut, cre] (), Romain Francois [aut] (), Doug Bates [aut] (), Binxiang Ni [aut], Conrad Sanderson [aut] ()", + "Author": "Dirk Eddelbuettel [aut, cre] (ORCID: ), Romain Francois [aut] (ORCID: ), Doug Bates [aut] (ORCID: ), Binxiang Ni [aut], Conrad Sanderson [aut] (ORCID: )", "Maintainer": "Dirk Eddelbuettel ", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "RcppRoll": { "Package": "RcppRoll", @@ -411,37 +401,8 @@ ], "RoxygenNote": "6.0.1", "NeedsCompilation": "yes", - "Repository": "CRAN" - }, - "RcppTOML": { - "Package": "RcppTOML", - "Version": "0.2.3", - "Source": "Repository", - "Type": "Package", - "Title": "'Rcpp' Bindings to Parser for \"Tom's Obvious Markup Language\"", - "Date": "2025-03-08", - "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Mark\", \"Gillard\", role = \"aut\", comment = \"Author of 'toml++' header library\"))", - "Description": "The configuration format defined by 'TOML' (which expands to \"Tom's Obvious Markup Language\") specifies an excellent format (described at ) suitable for both human editing as well as the common uses of a machine-readable format. This package uses 'Rcpp' to connect to the 'toml++' parser written by Mark Gillard to R.", - "SystemRequirements": "A C++17 compiler", - "BugReports": "https://github.com/eddelbuettel/rcpptoml/issues", - "URL": "http://dirk.eddelbuettel.com/code/rcpp.toml.html", - "Imports": [ - "Rcpp (>= 1.0.8)" - ], - "Depends": [ - "R (>= 3.3.0)" - ], - "LinkingTo": [ - "Rcpp" - ], - "Suggests": [ - "tinytest" - ], - "License": "GPL (>= 2)", - "NeedsCompilation": "yes", - "Author": "Dirk Eddelbuettel [aut, cre] (), Mark Gillard [aut] (Author of 'toml++' header library)", - "Maintainer": "Dirk Eddelbuettel ", - "Repository": "CRAN" + "Repository": "RSPM", + "Encoding": "UTF-8" }, "SQUAREM": { "Package": "SQUAREM", @@ -461,8 +422,9 @@ "Author": "Ravi Varadhan", "Maintainer": "Ravi Varadhan ", "URL": "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html", - "Repository": "CRAN", - "NeedsCompilation": "no" + "Repository": "RSPM", + "NeedsCompilation": "no", + "Encoding": "UTF-8" }, "TTR": { "Package": "TTR", @@ -492,15 +454,16 @@ "NeedsCompilation": "yes", "Author": "Joshua Ulrich [cre, aut], Ethan B. Smith [ctb]", "Maintainer": "Joshua Ulrich ", - "Repository": "CRAN" + "Repository": "RSPM", + "Encoding": "UTF-8" }, "anytime": { "Package": "anytime", - "Version": "0.3.11", + "Version": "0.3.12", "Source": "Repository", "Type": "Package", "Title": "Anything to 'POSIXct' or 'Date' Converter", - "Date": "2024-12-18", + "Date": "2025-07-14", "Authors@R": "person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\"))", "Description": "Convert input in any one of character, integer, numeric, factor, or ordered type into 'POSIXct' (or 'Date') objects, using one of a number of predefined formats, and relying on Boost facilities for date and time parsing.", "URL": "https://github.com/eddelbuettel/anytime, https://dirk.eddelbuettel.com/code/anytime.html", @@ -511,10 +474,10 @@ "R (>= 3.2.0)" ], "Imports": [ - "Rcpp (>= 0.12.9)" + "Rcpp (>= 1.0.8)" ], "LinkingTo": [ - "Rcpp (>= 0.12.9)", + "Rcpp (>= 1.0.8)", "BH" ], "Suggests": [ @@ -523,7 +486,7 @@ ], "RoxygenNote": "6.0.1", "NeedsCompilation": "yes", - "Author": "Dirk Eddelbuettel [aut, cre] ()", + "Author": "Dirk Eddelbuettel [aut, cre] (ORCID: )", "Maintainer": "Dirk Eddelbuettel ", "Repository": "CRAN" }, @@ -591,23 +554,20 @@ "License": "GPL-2 | GPL-3", "URL": "http://www.rforge.net/base64enc", "NeedsCompilation": "yes", - "Repository": "CRAN" + "Repository": "RSPM", + "Encoding": "UTF-8" }, "bit": { "Package": "bit", - "Version": "4.5.0.1", + "Version": "4.6.0", "Source": "Repository", - "Type": "Package", "Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections", - "Date": "2024-09-17", - "Authors@R": "c(person(given = \"Jens\", family = \"Oehlschlägel\", role = c(\"aut\", \"cre\"), email = \"Jens.Oehlschlaegel@truecluster.com\"), person(given = \"Brian\", family = \"Ripley\", role = \"ctb\"))", - "Author": "Jens Oehlschlägel [aut, cre], Brian Ripley [ctb]", - "Maintainer": "Jens Oehlschlägel ", + "Authors@R": "c( person(\"Michael\", \"Chirico\", email = \"MichaelChirico4@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jens\", \"Oehlschlägel\", role = \"aut\"), person(\"Brian\", \"Ripley\", role = \"ctb\") )", "Depends": [ "R (>= 3.4.0)" ], "Suggests": [ - "testthat (>= 0.11.0)", + "testthat (>= 3.0.0)", "roxygen2", "knitr", "markdown", @@ -621,10 +581,13 @@ "LazyLoad": "yes", "ByteCompile": "yes", "Encoding": "UTF-8", - "URL": "https://github.com/truecluster/bit", + "URL": "https://github.com/r-lib/bit", "VignetteBuilder": "knitr, rmarkdown", "RoxygenNote": "7.3.2", + "Config/testthat/edition": "3", "NeedsCompilation": "yes", + "Author": "Michael Chirico [aut, cre], Jens Oehlschlägel [aut], Brian Ripley [ctb]", + "Maintainer": "Michael Chirico ", "Repository": "CRAN" }, "bit64": { @@ -701,10 +664,10 @@ }, "box.linters": { "Package": "box.linters", - "Version": "0.10.5", + "Version": "0.10.6", "Source": "Repository", "Title": "Linters for 'box' Modules", - "Authors@R": "c( person(\"Ricardo Rodrigo\", \"Basa\", role = c(\"aut\", \"cre\"), email = \"opensource+rodrigo@appsilon.com\"), person(\"Jakub\", \"Nowicki\", role = \"aut\", email = \"kuba@appsilon.com\"), person(\"Mateusz\", \"Kołomański\", role = \"ctb\", email = \"mateusz.kolomanski@appsilon.com\"), person(\"Appsilon Sp. z o.o.\", role = \"cph\", email = \"opensource@appsilon.com\") )", + "Authors@R": "c( person(\"Ricardo Rodrigo\", \"Basa\", role = c(\"aut\", \"cre\"), email = \"opensource+rodrigo@appsilon.com\"), person(\"Jakub\", \"Nowicki\", role = \"aut\", email = \"kuba@appsilon.com\"), person(\"Mateusz\", \"Kołomański\", role = \"ctb\", email = \"mateusz.kolomanski@appsilon.com\"), person(\"Guilherme\", \"Vituri\", role = \"ctb\", email = \"vituri@appsilon.com\"), person(\"Appsilon Sp. z o.o.\", role = \"cph\", email = \"opensource@appsilon.com\") )", "Description": "Static code analysis of 'box' modules. The package enhances code quality by providing linters that check for common issues, enforce best practices, and ensure consistent coding standards.", "URL": "https://appsilon.github.io/box.linters/, https://github.com/Appsilon/box.linters", "License": "LGPL-3", @@ -747,7 +710,7 @@ "Config/testthat/parallel": "true", "Language": "en-US", "NeedsCompilation": "no", - "Author": "Ricardo Rodrigo Basa [aut, cre], Jakub Nowicki [aut], Mateusz Kołomański [ctb], Appsilon Sp. z o.o. [cph]", + "Author": "Ricardo Rodrigo Basa [aut, cre], Jakub Nowicki [aut], Mateusz Kołomański [ctb], Guilherme Vituri [ctb], Appsilon Sp. z o.o. [cph]", "Maintainer": "Ricardo Rodrigo Basa ", "Repository": "CRAN" }, @@ -815,26 +778,27 @@ }, "broom": { "Package": "broom", - "Version": "1.0.7", + "Version": "1.0.9", "Source": "Repository", "Type": "Package", "Title": "Convert Statistical Objects into Tidy Tibbles", - "Authors@R": "c(person(given = \"David\", family = \"Robinson\", role = \"aut\", email = \"admiral.david@gmail.com\"), person(given = \"Alex\", family = \"Hayes\", role = \"aut\", email = \"alexpghayes@gmail.com\", comment = c(ORCID = \"0000-0002-4985-5160\")), person(given = \"Simon\", family = \"Couch\", role = c(\"aut\", \"cre\"), email = \"simon.couch@posit.co\", comment = c(ORCID = \"0000-0001-5676-5107\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(given = \"Indrajeet\", family = \"Patil\", role = \"ctb\", email = \"patilindrajeet.science@gmail.com\", comment = c(ORCID = \"0000-0003-1995-6531\")), person(given = \"Derek\", family = \"Chiu\", role = \"ctb\", email = \"dchiu@bccrc.ca\"), person(given = \"Matthieu\", family = \"Gomez\", role = \"ctb\", email = \"mattg@princeton.edu\"), person(given = \"Boris\", family = \"Demeshev\", role = \"ctb\", email = \"boris.demeshev@gmail.com\"), person(given = \"Dieter\", family = \"Menne\", role = \"ctb\", email = \"dieter.menne@menne-biomed.de\"), person(given = \"Benjamin\", family = \"Nutter\", role = \"ctb\", email = \"nutter@battelle.org\"), person(given = \"Luke\", family = \"Johnston\", role = \"ctb\", email = \"luke.johnston@mail.utoronto.ca\"), person(given = \"Ben\", family = \"Bolker\", role = \"ctb\", email = \"bolker@mcmaster.ca\"), person(given = \"Francois\", family = \"Briatte\", role = \"ctb\", email = \"f.briatte@gmail.com\"), person(given = \"Jeffrey\", family = \"Arnold\", role = \"ctb\", email = \"jeffrey.arnold@gmail.com\"), person(given = \"Jonah\", family = \"Gabry\", role = \"ctb\", email = \"jsg2201@columbia.edu\"), person(given = \"Luciano\", family = \"Selzer\", role = \"ctb\", email = \"luciano.selzer@gmail.com\"), person(given = \"Gavin\", family = \"Simpson\", role = \"ctb\", email = \"ucfagls@gmail.com\"), person(given = \"Jens\", family = \"Preussner\", role = \"ctb\", email = \" jens.preussner@mpi-bn.mpg.de\"), person(given = \"Jay\", family = \"Hesselberth\", role = \"ctb\", email = \"jay.hesselberth@gmail.com\"), person(given = \"Hadley\", family = \"Wickham\", role = \"ctb\", email = \"hadley@posit.co\"), person(given = \"Matthew\", family = \"Lincoln\", role = \"ctb\", email = \"matthew.d.lincoln@gmail.com\"), person(given = \"Alessandro\", family = \"Gasparini\", role = \"ctb\", email = \"ag475@leicester.ac.uk\"), person(given = \"Lukasz\", family = \"Komsta\", role = \"ctb\", email = \"lukasz.komsta@umlub.pl\"), person(given = \"Frederick\", family = \"Novometsky\", role = \"ctb\"), person(given = \"Wilson\", family = \"Freitas\", role = \"ctb\"), person(given = \"Michelle\", family = \"Evans\", role = \"ctb\"), person(given = \"Jason Cory\", family = \"Brunson\", role = \"ctb\", email = \"cornelioid@gmail.com\"), person(given = \"Simon\", family = \"Jackson\", role = \"ctb\", email = \"drsimonjackson@gmail.com\"), person(given = \"Ben\", family = \"Whalley\", role = \"ctb\", email = \"ben.whalley@plymouth.ac.uk\"), person(given = \"Karissa\", family = \"Whiting\", role = \"ctb\", email = \"karissa.whiting@gmail.com\"), person(given = \"Yves\", family = \"Rosseel\", role = \"ctb\", email = \"yrosseel@gmail.com\"), person(given = \"Michael\", family = \"Kuehn\", role = \"ctb\", email = \"mkuehn10@gmail.com\"), person(given = \"Jorge\", family = \"Cimentada\", role = \"ctb\", email = \"cimentadaj@gmail.com\"), person(given = \"Erle\", family = \"Holgersen\", role = \"ctb\", email = \"erle.holgersen@gmail.com\"), person(given = \"Karl\", family = \"Dunkle Werner\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0523-7309\")), person(given = \"Ethan\", family = \"Christensen\", role = \"ctb\", email = \"christensen.ej@gmail.com\"), person(given = \"Steven\", family = \"Pav\", role = \"ctb\", email = \"shabbychef@gmail.com\"), person(given = \"Paul\", family = \"PJ\", role = \"ctb\", email = \"pjpaul.stephens@gmail.com\"), person(given = \"Ben\", family = \"Schneider\", role = \"ctb\", email = \"benjamin.julius.schneider@gmail.com\"), person(given = \"Patrick\", family = \"Kennedy\", role = \"ctb\", email = \"pkqstr@protonmail.com\"), person(given = \"Lily\", family = \"Medina\", role = \"ctb\", email = \"lilymiru@gmail.com\"), person(given = \"Brian\", family = \"Fannin\", role = \"ctb\", email = \"captain@pirategrunt.com\"), person(given = \"Jason\", family = \"Muhlenkamp\", role = \"ctb\", email = \"jason.muhlenkamp@gmail.com\"), person(given = \"Matt\", family = \"Lehman\", role = \"ctb\"), person(given = \"Bill\", family = \"Denney\", role = \"ctb\", email = \"wdenney@humanpredictions.com\", comment = c(ORCID = \"0000-0002-5759-428X\")), person(given = \"Nic\", family = \"Crane\", role = \"ctb\"), person(given = \"Andrew\", family = \"Bates\", role = \"ctb\"), person(given = \"Vincent\", family = \"Arel-Bundock\", role = \"ctb\", email = \"vincent.arel-bundock@umontreal.ca\", comment = c(ORCID = \"0000-0003-2042-7063\")), person(given = \"Hideaki\", family = \"Hayashi\", role = \"ctb\"), person(given = \"Luis\", family = \"Tobalina\", role = \"ctb\"), person(given = \"Annie\", family = \"Wang\", role = \"ctb\", email = \"anniewang.uc@gmail.com\"), person(given = \"Wei Yang\", family = \"Tham\", role = \"ctb\", email = \"weiyang.tham@gmail.com\"), person(given = \"Clara\", family = \"Wang\", role = \"ctb\", email = \"clara.wang.94@gmail.com\"), person(given = \"Abby\", family = \"Smith\", role = \"ctb\", email = \"als1@u.northwestern.edu\", comment = c(ORCID = \"0000-0002-3207-0375\")), person(given = \"Jasper\", family = \"Cooper\", role = \"ctb\", email = \"jaspercooper@gmail.com\", comment = c(ORCID = \"0000-0002-8639-3188\")), person(given = \"E Auden\", family = \"Krauska\", role = \"ctb\", email = \"krauskae@gmail.com\", comment = c(ORCID = \"0000-0002-1466-5850\")), person(given = \"Alex\", family = \"Wang\", role = \"ctb\", email = \"x249wang@uwaterloo.ca\"), person(given = \"Malcolm\", family = \"Barrett\", role = \"ctb\", email = \"malcolmbarrett@gmail.com\", comment = c(ORCID = \"0000-0003-0299-5825\")), person(given = \"Charles\", family = \"Gray\", role = \"ctb\", email = \"charlestigray@gmail.com\", comment = c(ORCID = \"0000-0002-9978-011X\")), person(given = \"Jared\", family = \"Wilber\", role = \"ctb\"), person(given = \"Vilmantas\", family = \"Gegzna\", role = \"ctb\", email = \"GegznaV@gmail.com\", comment = c(ORCID = \"0000-0002-9500-5167\")), person(given = \"Eduard\", family = \"Szoecs\", role = \"ctb\", email = \"eduardszoecs@gmail.com\"), person(given = \"Frederik\", family = \"Aust\", role = \"ctb\", email = \"frederik.aust@uni-koeln.de\", comment = c(ORCID = \"0000-0003-4900-788X\")), person(given = \"Angus\", family = \"Moore\", role = \"ctb\", email = \"angusmoore9@gmail.com\"), person(given = \"Nick\", family = \"Williams\", role = \"ctb\", email = \"ntwilliams.personal@gmail.com\"), person(given = \"Marius\", family = \"Barth\", role = \"ctb\", email = \"marius.barth.uni.koeln@gmail.com\", comment = c(ORCID = \"0000-0002-3421-6665\")), person(given = \"Bruna\", family = \"Wundervald\", role = \"ctb\", email = \"brunadaviesw@gmail.com\", comment = c(ORCID = \"0000-0001-8163-220X\")), person(given = \"Joyce\", family = \"Cahoon\", role = \"ctb\", email = \"joyceyu48@gmail.com\", comment = c(ORCID = \"0000-0001-7217-4702\")), person(given = \"Grant\", family = \"McDermott\", role = \"ctb\", email = \"grantmcd@uoregon.edu\", comment = c(ORCID = \"0000-0001-7883-8573\")), person(given = \"Kevin\", family = \"Zarca\", role = \"ctb\", email = \"kevin.zarca@gmail.com\"), person(given = \"Shiro\", family = \"Kuriwaki\", role = \"ctb\", email = \"shirokuriwaki@gmail.com\", comment = c(ORCID = \"0000-0002-5687-2647\")), person(given = \"Lukas\", family = \"Wallrich\", role = \"ctb\", email = \"lukas.wallrich@gmail.com\", comment = c(ORCID = \"0000-0003-2121-5177\")), person(given = \"James\", family = \"Martherus\", role = \"ctb\", email = \"james@martherus.com\", comment = c(ORCID = \"0000-0002-8285-3300\")), person(given = \"Chuliang\", family = \"Xiao\", role = \"ctb\", email = \"cxiao@umich.edu\", comment = c(ORCID = \"0000-0002-8466-9398\")), person(given = \"Joseph\", family = \"Larmarange\", role = \"ctb\", email = \"joseph@larmarange.net\"), person(given = \"Max\", family = \"Kuhn\", role = \"ctb\", email = \"max@posit.co\"), person(given = \"Michal\", family = \"Bojanowski\", role = \"ctb\", email = \"michal2992@gmail.com\"), person(given = \"Hakon\", family = \"Malmedal\", role = \"ctb\", email = \"hmalmedal@gmail.com\"), person(given = \"Clara\", family = \"Wang\", role = \"ctb\"), person(given = \"Sergio\", family = \"Oller\", role = \"ctb\", email = \"sergioller@gmail.com\"), person(given = \"Luke\", family = \"Sonnet\", role = \"ctb\", email = \"luke.sonnet@gmail.com\"), person(given = \"Jim\", family = \"Hester\", role = \"ctb\", email = \"jim.hester@posit.co\"), person(given = \"Ben\", family = \"Schneider\", role = \"ctb\", email = \"benjamin.julius.schneider@gmail.com\"), person(given = \"Bernie\", family = \"Gray\", role = \"ctb\", email = \"bfgray3@gmail.com\", comment = c(ORCID = \"0000-0001-9190-6032\")), person(given = \"Mara\", family = \"Averick\", role = \"ctb\", email = \"mara@posit.co\"), person(given = \"Aaron\", family = \"Jacobs\", role = \"ctb\", email = \"atheriel@gmail.com\"), person(given = \"Andreas\", family = \"Bender\", role = \"ctb\", email = \"bender.at.R@gmail.com\"), person(given = \"Sven\", family = \"Templer\", role = \"ctb\", email = \"sven.templer@gmail.com\"), person(given = \"Paul-Christian\", family = \"Buerkner\", role = \"ctb\", email = \"paul.buerkner@gmail.com\"), person(given = \"Matthew\", family = \"Kay\", role = \"ctb\", email = \"mjskay@umich.edu\"), person(given = \"Erwan\", family = \"Le Pennec\", role = \"ctb\", email = \"lepennec@gmail.com\"), person(given = \"Johan\", family = \"Junkka\", role = \"ctb\", email = \"johan.junkka@umu.se\"), person(given = \"Hao\", family = \"Zhu\", role = \"ctb\", email = \"haozhu233@gmail.com\"), person(given = \"Benjamin\", family = \"Soltoff\", role = \"ctb\", email = \"soltoffbc@uchicago.edu\"), person(given = \"Zoe\", family = \"Wilkinson Saldana\", role = \"ctb\", email = \"zoewsaldana@gmail.com\"), person(given = \"Tyler\", family = \"Littlefield\", role = \"ctb\", email = \"tylurp1@gmail.com\"), person(given = \"Charles T.\", family = \"Gray\", role = \"ctb\", email = \"charlestigray@gmail.com\"), person(given = \"Shabbh E.\", family = \"Banks\", role = \"ctb\"), person(given = \"Serina\", family = \"Robinson\", role = \"ctb\", email = \"robi0916@umn.edu\"), person(given = \"Roger\", family = \"Bivand\", role = \"ctb\", email = \"Roger.Bivand@nhh.no\"), person(given = \"Riinu\", family = \"Ots\", role = \"ctb\", email = \"riinuots@gmail.com\"), person(given = \"Nicholas\", family = \"Williams\", role = \"ctb\", email = \"ntwilliams.personal@gmail.com\"), person(given = \"Nina\", family = \"Jakobsen\", role = \"ctb\"), person(given = \"Michael\", family = \"Weylandt\", role = \"ctb\", email = \"michael.weylandt@gmail.com\"), person(given = \"Lisa\", family = \"Lendway\", role = \"ctb\", email = \"llendway@macalester.edu\"), person(given = \"Karl\", family = \"Hailperin\", role = \"ctb\", email = \"khailper@gmail.com\"), person(given = \"Josue\", family = \"Rodriguez\", role = \"ctb\", email = \"jerrodriguez@ucdavis.edu\"), person(given = \"Jenny\", family = \"Bryan\", role = \"ctb\", email = \"jenny@posit.co\"), person(given = \"Chris\", family = \"Jarvis\", role = \"ctb\", email = \"Christopher1.jarvis@gmail.com\"), person(given = \"Greg\", family = \"Macfarlane\", role = \"ctb\", email = \"gregmacfarlane@gmail.com\"), person(given = \"Brian\", family = \"Mannakee\", role = \"ctb\", email = \"bmannakee@gmail.com\"), person(given = \"Drew\", family = \"Tyre\", role = \"ctb\", email = \"atyre2@unl.edu\"), person(given = \"Shreyas\", family = \"Singh\", role = \"ctb\", email = \"shreyas.singh.298@gmail.com\"), person(given = \"Laurens\", family = \"Geffert\", role = \"ctb\", email = \"laurensgeffert@gmail.com\"), person(given = \"Hong\", family = \"Ooi\", role = \"ctb\", email = \"hongooi@microsoft.com\"), person(given = \"Henrik\", family = \"Bengtsson\", role = \"ctb\", email = \"henrikb@braju.com\"), person(given = \"Eduard\", family = \"Szocs\", role = \"ctb\", email = \"eduardszoecs@gmail.com\"), person(given = \"David\", family = \"Hugh-Jones\", role = \"ctb\", email = \"davidhughjones@gmail.com\"), person(given = \"Matthieu\", family = \"Stigler\", role = \"ctb\", email = \"Matthieu.Stigler@gmail.com\"), person(given = \"Hugo\", family = \"Tavares\", role = \"ctb\", email = \"hm533@cam.ac.uk\", comment = c(ORCID = \"0000-0001-9373-2726\")), person(given = \"R. Willem\", family = \"Vervoort\", role = \"ctb\", email = \"Willemvervoort@gmail.com\"), person(given = \"Brenton M.\", family = \"Wiernik\", role = \"ctb\", email = \"brenton@wiernik.org\"), person(given = \"Josh\", family = \"Yamamoto\", role = \"ctb\", email = \"joshuayamamoto5@gmail.com\"), person(given = \"Jasme\", family = \"Lee\", role = \"ctb\"), person(given = \"Taren\", family = \"Sanders\", role = \"ctb\", email = \"taren.sanders@acu.edu.au\", comment = c(ORCID = \"0000-0002-4504-6008\")), person(given = \"Ilaria\", family = \"Prosdocimi\", role = \"ctb\", email = \"prosdocimi.ilaria@gmail.com\", comment = c(ORCID = \"0000-0001-8565-094X\")), person(given = \"Daniel D.\", family = \"Sjoberg\", role = \"ctb\", email = \"danield.sjoberg@gmail.com\", comment = c(ORCID = \"0000-0003-0862-2018\")), person(given = \"Alex\", family = \"Reinhart\", role = \"ctb\", email = \"areinhar@stat.cmu.edu\", comment = c(ORCID = \"0000-0002-6658-514X\")))", - "Description": "Summarizes key information about statistical objects in tidy tibbles. This makes it easy to report results, create plots and consistently work with large numbers of models at once. Broom provides three verbs that each provide different types of information about a model. tidy() summarizes information about model components such as coefficients of a regression. glance() reports information about an entire model, such as goodness of fit measures like AIC and BIC. augment() adds information about individual observations to a dataset, such as fitted values or influence measures.", + "Authors@R": "c( person(\"David\", \"Robinson\", , \"admiral.david@gmail.com\", role = \"aut\"), person(\"Alex\", \"Hayes\", , \"alexpghayes@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0002-4985-5160\")), person(\"Simon\", \"Couch\", , \"simon.couch@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0001-5676-5107\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(\"Indrajeet\", \"Patil\", , \"patilindrajeet.science@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1995-6531\")), person(\"Derek\", \"Chiu\", , \"dchiu@bccrc.ca\", role = \"ctb\"), person(\"Matthieu\", \"Gomez\", , \"mattg@princeton.edu\", role = \"ctb\"), person(\"Boris\", \"Demeshev\", , \"boris.demeshev@gmail.com\", role = \"ctb\"), person(\"Dieter\", \"Menne\", , \"dieter.menne@menne-biomed.de\", role = \"ctb\"), person(\"Benjamin\", \"Nutter\", , \"nutter@battelle.org\", role = \"ctb\"), person(\"Luke\", \"Johnston\", , \"luke.johnston@mail.utoronto.ca\", role = \"ctb\"), person(\"Ben\", \"Bolker\", , \"bolker@mcmaster.ca\", role = \"ctb\"), person(\"Francois\", \"Briatte\", , \"f.briatte@gmail.com\", role = \"ctb\"), person(\"Jeffrey\", \"Arnold\", , \"jeffrey.arnold@gmail.com\", role = \"ctb\"), person(\"Jonah\", \"Gabry\", , \"jsg2201@columbia.edu\", role = \"ctb\"), person(\"Luciano\", \"Selzer\", , \"luciano.selzer@gmail.com\", role = \"ctb\"), person(\"Gavin\", \"Simpson\", , \"ucfagls@gmail.com\", role = \"ctb\"), person(\"Jens\", \"Preussner\", , \"jens.preussner@mpi-bn.mpg.de\", role = \"ctb\"), person(\"Jay\", \"Hesselberth\", , \"jay.hesselberth@gmail.com\", role = \"ctb\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"ctb\"), person(\"Matthew\", \"Lincoln\", , \"matthew.d.lincoln@gmail.com\", role = \"ctb\"), person(\"Alessandro\", \"Gasparini\", , \"ag475@leicester.ac.uk\", role = \"ctb\"), person(\"Lukasz\", \"Komsta\", , \"lukasz.komsta@umlub.pl\", role = \"ctb\"), person(\"Frederick\", \"Novometsky\", role = \"ctb\"), person(\"Wilson\", \"Freitas\", role = \"ctb\"), person(\"Michelle\", \"Evans\", role = \"ctb\"), person(\"Jason Cory\", \"Brunson\", , \"cornelioid@gmail.com\", role = \"ctb\"), person(\"Simon\", \"Jackson\", , \"drsimonjackson@gmail.com\", role = \"ctb\"), person(\"Ben\", \"Whalley\", , \"ben.whalley@plymouth.ac.uk\", role = \"ctb\"), person(\"Karissa\", \"Whiting\", , \"karissa.whiting@gmail.com\", role = \"ctb\"), person(\"Yves\", \"Rosseel\", , \"yrosseel@gmail.com\", role = \"ctb\"), person(\"Michael\", \"Kuehn\", , \"mkuehn10@gmail.com\", role = \"ctb\"), person(\"Jorge\", \"Cimentada\", , \"cimentadaj@gmail.com\", role = \"ctb\"), person(\"Erle\", \"Holgersen\", , \"erle.holgersen@gmail.com\", role = \"ctb\"), person(\"Karl\", \"Dunkle Werner\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0523-7309\")), person(\"Ethan\", \"Christensen\", , \"christensen.ej@gmail.com\", role = \"ctb\"), person(\"Steven\", \"Pav\", , \"shabbychef@gmail.com\", role = \"ctb\"), person(\"Paul\", \"PJ\", , \"pjpaul.stephens@gmail.com\", role = \"ctb\"), person(\"Ben\", \"Schneider\", , \"benjamin.julius.schneider@gmail.com\", role = \"ctb\"), person(\"Patrick\", \"Kennedy\", , \"pkqstr@protonmail.com\", role = \"ctb\"), person(\"Lily\", \"Medina\", , \"lilymiru@gmail.com\", role = \"ctb\"), person(\"Brian\", \"Fannin\", , \"captain@pirategrunt.com\", role = \"ctb\"), person(\"Jason\", \"Muhlenkamp\", , \"jason.muhlenkamp@gmail.com\", role = \"ctb\"), person(\"Matt\", \"Lehman\", role = \"ctb\"), person(\"Bill\", \"Denney\", , \"wdenney@humanpredictions.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5759-428X\")), person(\"Nic\", \"Crane\", role = \"ctb\"), person(\"Andrew\", \"Bates\", role = \"ctb\"), person(\"Vincent\", \"Arel-Bundock\", , \"vincent.arel-bundock@umontreal.ca\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2042-7063\")), person(\"Hideaki\", \"Hayashi\", role = \"ctb\"), person(\"Luis\", \"Tobalina\", role = \"ctb\"), person(\"Annie\", \"Wang\", , \"anniewang.uc@gmail.com\", role = \"ctb\"), person(\"Wei Yang\", \"Tham\", , \"weiyang.tham@gmail.com\", role = \"ctb\"), person(\"Clara\", \"Wang\", , \"clara.wang.94@gmail.com\", role = \"ctb\"), person(\"Abby\", \"Smith\", , \"als1@u.northwestern.edu\", role = \"ctb\", comment = c(ORCID = \"0000-0002-3207-0375\")), person(\"Jasper\", \"Cooper\", , \"jaspercooper@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8639-3188\")), person(\"E Auden\", \"Krauska\", , \"krauskae@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-1466-5850\")), person(\"Alex\", \"Wang\", , \"x249wang@uwaterloo.ca\", role = \"ctb\"), person(\"Malcolm\", \"Barrett\", , \"malcolmbarrett@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0299-5825\")), person(\"Charles\", \"Gray\", , \"charlestigray@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-9978-011X\")), person(\"Jared\", \"Wilber\", role = \"ctb\"), person(\"Vilmantas\", \"Gegzna\", , \"GegznaV@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-9500-5167\")), person(\"Eduard\", \"Szoecs\", , \"eduardszoecs@gmail.com\", role = \"ctb\"), person(\"Frederik\", \"Aust\", , \"frederik.aust@uni-koeln.de\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4900-788X\")), person(\"Angus\", \"Moore\", , \"angusmoore9@gmail.com\", role = \"ctb\"), person(\"Nick\", \"Williams\", , \"ntwilliams.personal@gmail.com\", role = \"ctb\"), person(\"Marius\", \"Barth\", , \"marius.barth.uni.koeln@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-3421-6665\")), person(\"Bruna\", \"Wundervald\", , \"brunadaviesw@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0001-8163-220X\")), person(\"Joyce\", \"Cahoon\", , \"joyceyu48@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0001-7217-4702\")), person(\"Grant\", \"McDermott\", , \"grantmcd@uoregon.edu\", role = \"ctb\", comment = c(ORCID = \"0000-0001-7883-8573\")), person(\"Kevin\", \"Zarca\", , \"kevin.zarca@gmail.com\", role = \"ctb\"), person(\"Shiro\", \"Kuriwaki\", , \"shirokuriwaki@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5687-2647\")), person(\"Lukas\", \"Wallrich\", , \"lukas.wallrich@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2121-5177\")), person(\"James\", \"Martherus\", , \"james@martherus.com\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8285-3300\")), person(\"Chuliang\", \"Xiao\", , \"cxiao@umich.edu\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8466-9398\")), person(\"Joseph\", \"Larmarange\", , \"joseph@larmarange.net\", role = \"ctb\"), person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"ctb\"), person(\"Michal\", \"Bojanowski\", , \"michal2992@gmail.com\", role = \"ctb\"), person(\"Hakon\", \"Malmedal\", , \"hmalmedal@gmail.com\", role = \"ctb\"), person(\"Clara\", \"Wang\", role = \"ctb\"), person(\"Sergio\", \"Oller\", , \"sergioller@gmail.com\", role = \"ctb\"), person(\"Luke\", \"Sonnet\", , \"luke.sonnet@gmail.com\", role = \"ctb\"), person(\"Jim\", \"Hester\", , \"jim.hester@posit.co\", role = \"ctb\"), person(\"Ben\", \"Schneider\", , \"benjamin.julius.schneider@gmail.com\", role = \"ctb\"), person(\"Bernie\", \"Gray\", , \"bfgray3@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0001-9190-6032\")), person(\"Mara\", \"Averick\", , \"mara@posit.co\", role = \"ctb\"), person(\"Aaron\", \"Jacobs\", , \"atheriel@gmail.com\", role = \"ctb\"), person(\"Andreas\", \"Bender\", , \"bender.at.R@gmail.com\", role = \"ctb\"), person(\"Sven\", \"Templer\", , \"sven.templer@gmail.com\", role = \"ctb\"), person(\"Paul-Christian\", \"Buerkner\", , \"paul.buerkner@gmail.com\", role = \"ctb\"), person(\"Matthew\", \"Kay\", , \"mjskay@umich.edu\", role = \"ctb\"), person(\"Erwan\", \"Le Pennec\", , \"lepennec@gmail.com\", role = \"ctb\"), person(\"Johan\", \"Junkka\", , \"johan.junkka@umu.se\", role = \"ctb\"), person(\"Hao\", \"Zhu\", , \"haozhu233@gmail.com\", role = \"ctb\"), person(\"Benjamin\", \"Soltoff\", , \"soltoffbc@uchicago.edu\", role = \"ctb\"), person(\"Zoe\", \"Wilkinson Saldana\", , \"zoewsaldana@gmail.com\", role = \"ctb\"), person(\"Tyler\", \"Littlefield\", , \"tylurp1@gmail.com\", role = \"ctb\"), person(\"Charles T.\", \"Gray\", , \"charlestigray@gmail.com\", role = \"ctb\"), person(\"Shabbh E.\", \"Banks\", role = \"ctb\"), person(\"Serina\", \"Robinson\", , \"robi0916@umn.edu\", role = \"ctb\"), person(\"Roger\", \"Bivand\", , \"Roger.Bivand@nhh.no\", role = \"ctb\"), person(\"Riinu\", \"Ots\", , \"riinuots@gmail.com\", role = \"ctb\"), person(\"Nicholas\", \"Williams\", , \"ntwilliams.personal@gmail.com\", role = \"ctb\"), person(\"Nina\", \"Jakobsen\", role = \"ctb\"), person(\"Michael\", \"Weylandt\", , \"michael.weylandt@gmail.com\", role = \"ctb\"), person(\"Lisa\", \"Lendway\", , \"llendway@macalester.edu\", role = \"ctb\"), person(\"Karl\", \"Hailperin\", , \"khailper@gmail.com\", role = \"ctb\"), person(\"Josue\", \"Rodriguez\", , \"jerrodriguez@ucdavis.edu\", role = \"ctb\"), person(\"Jenny\", \"Bryan\", , \"jenny@posit.co\", role = \"ctb\"), person(\"Chris\", \"Jarvis\", , \"Christopher1.jarvis@gmail.com\", role = \"ctb\"), person(\"Greg\", \"Macfarlane\", , \"gregmacfarlane@gmail.com\", role = \"ctb\"), person(\"Brian\", \"Mannakee\", , \"bmannakee@gmail.com\", role = \"ctb\"), person(\"Drew\", \"Tyre\", , \"atyre2@unl.edu\", role = \"ctb\"), person(\"Shreyas\", \"Singh\", , \"shreyas.singh.298@gmail.com\", role = \"ctb\"), person(\"Laurens\", \"Geffert\", , \"laurensgeffert@gmail.com\", role = \"ctb\"), person(\"Hong\", \"Ooi\", , \"hongooi@microsoft.com\", role = \"ctb\"), person(\"Henrik\", \"Bengtsson\", , \"henrikb@braju.com\", role = \"ctb\"), person(\"Eduard\", \"Szocs\", , \"eduardszoecs@gmail.com\", role = \"ctb\"), person(\"David\", \"Hugh-Jones\", , \"davidhughjones@gmail.com\", role = \"ctb\"), person(\"Matthieu\", \"Stigler\", , \"Matthieu.Stigler@gmail.com\", role = \"ctb\"), person(\"Hugo\", \"Tavares\", , \"hm533@cam.ac.uk\", role = \"ctb\", comment = c(ORCID = \"0000-0001-9373-2726\")), person(\"R. Willem\", \"Vervoort\", , \"Willemvervoort@gmail.com\", role = \"ctb\"), person(\"Brenton M.\", \"Wiernik\", , \"brenton@wiernik.org\", role = \"ctb\"), person(\"Josh\", \"Yamamoto\", , \"joshuayamamoto5@gmail.com\", role = \"ctb\"), person(\"Jasme\", \"Lee\", role = \"ctb\"), person(\"Taren\", \"Sanders\", , \"taren.sanders@acu.edu.au\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4504-6008\")), person(\"Ilaria\", \"Prosdocimi\", , \"prosdocimi.ilaria@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0001-8565-094X\")), person(\"Daniel D.\", \"Sjoberg\", , \"danield.sjoberg@gmail.com\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0862-2018\")), person(\"Alex\", \"Reinhart\", , \"areinhar@stat.cmu.edu\", role = \"ctb\", comment = c(ORCID = \"0000-0002-6658-514X\")) )", + "Description": "Summarizes key information about statistical objects in tidy tibbles. This makes it easy to report results, create plots and consistently work with large numbers of models at once. Broom provides three verbs that each provide different types of information about a model. tidy() summarizes information about model components such as coefficients of a regression. glance() reports information about an entire model, such as goodness of fit measures like AIC and BIC. augment() adds information about individual observations to a dataset, such as fitted values or influence measures.", "License": "MIT + file LICENSE", "URL": "https://broom.tidymodels.org/, https://github.com/tidymodels/broom", "BugReports": "https://github.com/tidymodels/broom/issues", "Depends": [ - "R (>= 3.5)" + "R (>= 4.1)" ], "Imports": [ "backports", + "cli", "dplyr (>= 1.0.0)", "generics (>= 0.0.2)", "glue", "lifecycle", "purrr", - "rlang", + "rlang (>= 1.1.0)", "stringr", "tibble (>= 3.0.0)", "tidyr (>= 1.0.0)" @@ -858,7 +822,7 @@ "drc", "e1071", "emmeans", - "epiR", + "epiR (>= 2.0.85)", "ergm (>= 3.10.4)", "fixest (>= 0.9.0)", "gam (>= 1.15)", @@ -869,8 +833,8 @@ "glmnetUtils", "gmm", "Hmisc", - "irlba", "interp", + "irlba", "joineRML", "Kendall", "knitr", @@ -899,7 +863,6 @@ "multcomp", "network", "nnet", - "orcutt (>= 2.2)", "ordinal", "plm", "poLCA", @@ -910,26 +873,28 @@ "robustbase", "rsample", "sandwich", - "spdep (>= 1.1)", "spatialreg", + "spdep (>= 1.1)", "speedglm", "spelling", "survey", "survival (>= 3.6-4)", "systemfit", - "testthat (>= 2.1.0)", + "testthat (>= 3.0.0)", "tseries", "vars", "zoo" ], "VignetteBuilder": "knitr", "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-25", "Encoding": "UTF-8", - "RoxygenNote": "7.3.2", "Language": "en-US", - "Collate": "'aaa-documentation-helper.R' 'null-and-default-tidiers.R' 'aer-tidiers.R' 'auc-tidiers.R' 'base-tidiers.R' 'bbmle-tidiers.R' 'betareg-tidiers.R' 'biglm-tidiers.R' 'bingroup-tidiers.R' 'boot-tidiers.R' 'broom-package.R' 'broom.R' 'btergm-tidiers.R' 'car-tidiers.R' 'caret-tidiers.R' 'cluster-tidiers.R' 'cmprsk-tidiers.R' 'data-frame-tidiers.R' 'deprecated-0-7-0.R' 'drc-tidiers.R' 'emmeans-tidiers.R' 'epiR-tidiers.R' 'ergm-tidiers.R' 'fixest-tidiers.R' 'gam-tidiers.R' 'geepack-tidiers.R' 'glmnet-cv-glmnet-tidiers.R' 'glmnet-glmnet-tidiers.R' 'gmm-tidiers.R' 'hmisc-tidiers.R' 'joinerml-tidiers.R' 'kendall-tidiers.R' 'ks-tidiers.R' 'lavaan-tidiers.R' 'leaps-tidiers.R' 'lfe-tidiers.R' 'list-irlba.R' 'list-optim-tidiers.R' 'list-svd-tidiers.R' 'list-tidiers.R' 'list-xyz-tidiers.R' 'lm-beta-tidiers.R' 'lmodel2-tidiers.R' 'lmtest-tidiers.R' 'maps-tidiers.R' 'margins-tidiers.R' 'mass-fitdistr-tidiers.R' 'mass-negbin-tidiers.R' 'mass-polr-tidiers.R' 'mass-ridgelm-tidiers.R' 'stats-lm-tidiers.R' 'mass-rlm-tidiers.R' 'mclust-tidiers.R' 'mediation-tidiers.R' 'metafor-tidiers.R' 'mfx-tidiers.R' 'mgcv-tidiers.R' 'mlogit-tidiers.R' 'muhaz-tidiers.R' 'multcomp-tidiers.R' 'nnet-tidiers.R' 'nobs.R' 'orcutt-tidiers.R' 'ordinal-clm-tidiers.R' 'ordinal-clmm-tidiers.R' 'plm-tidiers.R' 'polca-tidiers.R' 'psych-tidiers.R' 'stats-nls-tidiers.R' 'quantreg-nlrq-tidiers.R' 'quantreg-rq-tidiers.R' 'quantreg-rqs-tidiers.R' 'robust-glmrob-tidiers.R' 'robust-lmrob-tidiers.R' 'robustbase-glmrob-tidiers.R' 'robustbase-lmrob-tidiers.R' 'sp-tidiers.R' 'spdep-tidiers.R' 'speedglm-speedglm-tidiers.R' 'speedglm-speedlm-tidiers.R' 'stats-anova-tidiers.R' 'stats-arima-tidiers.R' 'stats-decompose-tidiers.R' 'stats-factanal-tidiers.R' 'stats-glm-tidiers.R' 'stats-htest-tidiers.R' 'stats-kmeans-tidiers.R' 'stats-loess-tidiers.R' 'stats-mlm-tidiers.R' 'stats-prcomp-tidiers.R' 'stats-smooth.spline-tidiers.R' 'stats-summary-lm-tidiers.R' 'stats-time-series-tidiers.R' 'survey-tidiers.R' 'survival-aareg-tidiers.R' 'survival-cch-tidiers.R' 'survival-coxph-tidiers.R' 'survival-pyears-tidiers.R' 'survival-survdiff-tidiers.R' 'survival-survexp-tidiers.R' 'survival-survfit-tidiers.R' 'survival-survreg-tidiers.R' 'systemfit-tidiers.R' 'tseries-tidiers.R' 'utilities.R' 'vars-tidiers.R' 'zoo-tidiers.R' 'zzz.R'", + "RoxygenNote": "7.3.2", + "Collate": "'aaa-documentation-helper.R' 'null-and-default.R' 'aer.R' 'auc.R' 'base.R' 'bbmle.R' 'betareg.R' 'biglm.R' 'bingroup.R' 'boot.R' 'broom-package.R' 'broom.R' 'btergm.R' 'car.R' 'caret.R' 'cluster.R' 'cmprsk.R' 'data-frame.R' 'deprecated-0-7-0.R' 'drc.R' 'emmeans.R' 'epiR.R' 'ergm.R' 'fixest.R' 'gam.R' 'geepack.R' 'glmnet-cv-glmnet.R' 'glmnet-glmnet.R' 'gmm.R' 'hmisc.R' 'import-standalone-obj-type.R' 'import-standalone-types-check.R' 'joinerml.R' 'kendall.R' 'ks.R' 'lavaan.R' 'leaps.R' 'lfe.R' 'list-irlba.R' 'list-optim.R' 'list-svd.R' 'list-xyz.R' 'list.R' 'lm-beta.R' 'lmodel2.R' 'lmtest.R' 'maps.R' 'margins.R' 'mass-fitdistr.R' 'mass-negbin.R' 'mass-polr.R' 'mass-ridgelm.R' 'stats-lm.R' 'mass-rlm.R' 'mclust.R' 'mediation.R' 'metafor.R' 'mfx.R' 'mgcv.R' 'mlogit.R' 'muhaz.R' 'multcomp.R' 'nnet.R' 'nobs.R' 'ordinal-clm.R' 'ordinal-clmm.R' 'plm.R' 'polca.R' 'psych.R' 'stats-nls.R' 'quantreg-nlrq.R' 'quantreg-rq.R' 'quantreg-rqs.R' 'robust-glmrob.R' 'robust-lmrob.R' 'robustbase-glmrob.R' 'robustbase-lmrob.R' 'sp.R' 'spdep.R' 'speedglm-speedglm.R' 'speedglm-speedlm.R' 'stats-anova.R' 'stats-arima.R' 'stats-decompose.R' 'stats-factanal.R' 'stats-glm.R' 'stats-htest.R' 'stats-kmeans.R' 'stats-loess.R' 'stats-mlm.R' 'stats-prcomp.R' 'stats-smooth.spline.R' 'stats-summary-lm.R' 'stats-time-series.R' 'survey.R' 'survival-aareg.R' 'survival-cch.R' 'survival-coxph.R' 'survival-pyears.R' 'survival-survdiff.R' 'survival-survexp.R' 'survival-survfit.R' 'survival-survreg.R' 'systemfit.R' 'tseries.R' 'utilities.R' 'vars.R' 'zoo.R' 'zzz.R'", "NeedsCompilation": "no", - "Author": "David Robinson [aut], Alex Hayes [aut] (), Simon Couch [aut, cre] (), Posit Software, PBC [cph, fnd], Indrajeet Patil [ctb] (), Derek Chiu [ctb], Matthieu Gomez [ctb], Boris Demeshev [ctb], Dieter Menne [ctb], Benjamin Nutter [ctb], Luke Johnston [ctb], Ben Bolker [ctb], Francois Briatte [ctb], Jeffrey Arnold [ctb], Jonah Gabry [ctb], Luciano Selzer [ctb], Gavin Simpson [ctb], Jens Preussner [ctb], Jay Hesselberth [ctb], Hadley Wickham [ctb], Matthew Lincoln [ctb], Alessandro Gasparini [ctb], Lukasz Komsta [ctb], Frederick Novometsky [ctb], Wilson Freitas [ctb], Michelle Evans [ctb], Jason Cory Brunson [ctb], Simon Jackson [ctb], Ben Whalley [ctb], Karissa Whiting [ctb], Yves Rosseel [ctb], Michael Kuehn [ctb], Jorge Cimentada [ctb], Erle Holgersen [ctb], Karl Dunkle Werner [ctb] (), Ethan Christensen [ctb], Steven Pav [ctb], Paul PJ [ctb], Ben Schneider [ctb], Patrick Kennedy [ctb], Lily Medina [ctb], Brian Fannin [ctb], Jason Muhlenkamp [ctb], Matt Lehman [ctb], Bill Denney [ctb] (), Nic Crane [ctb], Andrew Bates [ctb], Vincent Arel-Bundock [ctb] (), Hideaki Hayashi [ctb], Luis Tobalina [ctb], Annie Wang [ctb], Wei Yang Tham [ctb], Clara Wang [ctb], Abby Smith [ctb] (), Jasper Cooper [ctb] (), E Auden Krauska [ctb] (), Alex Wang [ctb], Malcolm Barrett [ctb] (), Charles Gray [ctb] (), Jared Wilber [ctb], Vilmantas Gegzna [ctb] (), Eduard Szoecs [ctb], Frederik Aust [ctb] (), Angus Moore [ctb], Nick Williams [ctb], Marius Barth [ctb] (), Bruna Wundervald [ctb] (), Joyce Cahoon [ctb] (), Grant McDermott [ctb] (), Kevin Zarca [ctb], Shiro Kuriwaki [ctb] (), Lukas Wallrich [ctb] (), James Martherus [ctb] (), Chuliang Xiao [ctb] (), Joseph Larmarange [ctb], Max Kuhn [ctb], Michal Bojanowski [ctb], Hakon Malmedal [ctb], Clara Wang [ctb], Sergio Oller [ctb], Luke Sonnet [ctb], Jim Hester [ctb], Ben Schneider [ctb], Bernie Gray [ctb] (), Mara Averick [ctb], Aaron Jacobs [ctb], Andreas Bender [ctb], Sven Templer [ctb], Paul-Christian Buerkner [ctb], Matthew Kay [ctb], Erwan Le Pennec [ctb], Johan Junkka [ctb], Hao Zhu [ctb], Benjamin Soltoff [ctb], Zoe Wilkinson Saldana [ctb], Tyler Littlefield [ctb], Charles T. Gray [ctb], Shabbh E. Banks [ctb], Serina Robinson [ctb], Roger Bivand [ctb], Riinu Ots [ctb], Nicholas Williams [ctb], Nina Jakobsen [ctb], Michael Weylandt [ctb], Lisa Lendway [ctb], Karl Hailperin [ctb], Josue Rodriguez [ctb], Jenny Bryan [ctb], Chris Jarvis [ctb], Greg Macfarlane [ctb], Brian Mannakee [ctb], Drew Tyre [ctb], Shreyas Singh [ctb], Laurens Geffert [ctb], Hong Ooi [ctb], Henrik Bengtsson [ctb], Eduard Szocs [ctb], David Hugh-Jones [ctb], Matthieu Stigler [ctb], Hugo Tavares [ctb] (), R. Willem Vervoort [ctb], Brenton M. Wiernik [ctb], Josh Yamamoto [ctb], Jasme Lee [ctb], Taren Sanders [ctb] (), Ilaria Prosdocimi [ctb] (), Daniel D. Sjoberg [ctb] (), Alex Reinhart [ctb] ()", + "Author": "David Robinson [aut], Alex Hayes [aut] (ORCID: ), Simon Couch [aut, cre] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: ), Indrajeet Patil [ctb] (ORCID: ), Derek Chiu [ctb], Matthieu Gomez [ctb], Boris Demeshev [ctb], Dieter Menne [ctb], Benjamin Nutter [ctb], Luke Johnston [ctb], Ben Bolker [ctb], Francois Briatte [ctb], Jeffrey Arnold [ctb], Jonah Gabry [ctb], Luciano Selzer [ctb], Gavin Simpson [ctb], Jens Preussner [ctb], Jay Hesselberth [ctb], Hadley Wickham [ctb], Matthew Lincoln [ctb], Alessandro Gasparini [ctb], Lukasz Komsta [ctb], Frederick Novometsky [ctb], Wilson Freitas [ctb], Michelle Evans [ctb], Jason Cory Brunson [ctb], Simon Jackson [ctb], Ben Whalley [ctb], Karissa Whiting [ctb], Yves Rosseel [ctb], Michael Kuehn [ctb], Jorge Cimentada [ctb], Erle Holgersen [ctb], Karl Dunkle Werner [ctb] (ORCID: ), Ethan Christensen [ctb], Steven Pav [ctb], Paul PJ [ctb], Ben Schneider [ctb], Patrick Kennedy [ctb], Lily Medina [ctb], Brian Fannin [ctb], Jason Muhlenkamp [ctb], Matt Lehman [ctb], Bill Denney [ctb] (ORCID: ), Nic Crane [ctb], Andrew Bates [ctb], Vincent Arel-Bundock [ctb] (ORCID: ), Hideaki Hayashi [ctb], Luis Tobalina [ctb], Annie Wang [ctb], Wei Yang Tham [ctb], Clara Wang [ctb], Abby Smith [ctb] (ORCID: ), Jasper Cooper [ctb] (ORCID: ), E Auden Krauska [ctb] (ORCID: ), Alex Wang [ctb], Malcolm Barrett [ctb] (ORCID: ), Charles Gray [ctb] (ORCID: ), Jared Wilber [ctb], Vilmantas Gegzna [ctb] (ORCID: ), Eduard Szoecs [ctb], Frederik Aust [ctb] (ORCID: ), Angus Moore [ctb], Nick Williams [ctb], Marius Barth [ctb] (ORCID: ), Bruna Wundervald [ctb] (ORCID: ), Joyce Cahoon [ctb] (ORCID: ), Grant McDermott [ctb] (ORCID: ), Kevin Zarca [ctb], Shiro Kuriwaki [ctb] (ORCID: ), Lukas Wallrich [ctb] (ORCID: ), James Martherus [ctb] (ORCID: ), Chuliang Xiao [ctb] (ORCID: ), Joseph Larmarange [ctb], Max Kuhn [ctb], Michal Bojanowski [ctb], Hakon Malmedal [ctb], Clara Wang [ctb], Sergio Oller [ctb], Luke Sonnet [ctb], Jim Hester [ctb], Ben Schneider [ctb], Bernie Gray [ctb] (ORCID: ), Mara Averick [ctb], Aaron Jacobs [ctb], Andreas Bender [ctb], Sven Templer [ctb], Paul-Christian Buerkner [ctb], Matthew Kay [ctb], Erwan Le Pennec [ctb], Johan Junkka [ctb], Hao Zhu [ctb], Benjamin Soltoff [ctb], Zoe Wilkinson Saldana [ctb], Tyler Littlefield [ctb], Charles T. Gray [ctb], Shabbh E. Banks [ctb], Serina Robinson [ctb], Roger Bivand [ctb], Riinu Ots [ctb], Nicholas Williams [ctb], Nina Jakobsen [ctb], Michael Weylandt [ctb], Lisa Lendway [ctb], Karl Hailperin [ctb], Josue Rodriguez [ctb], Jenny Bryan [ctb], Chris Jarvis [ctb], Greg Macfarlane [ctb], Brian Mannakee [ctb], Drew Tyre [ctb], Shreyas Singh [ctb], Laurens Geffert [ctb], Hong Ooi [ctb], Henrik Bengtsson [ctb], Eduard Szocs [ctb], David Hugh-Jones [ctb], Matthieu Stigler [ctb], Hugo Tavares [ctb] (ORCID: ), R. Willem Vervoort [ctb], Brenton M. Wiernik [ctb], Josh Yamamoto [ctb], Jasme Lee [ctb], Taren Sanders [ctb] (ORCID: ), Ilaria Prosdocimi [ctb] (ORCID: ), Daniel D. Sjoberg [ctb] (ORCID: ), Alex Reinhart [ctb] (ORCID: )", "Maintainer": "Simon Couch ", "Repository": "CRAN" }, @@ -1101,15 +1066,16 @@ }, "chromote": { "Package": "chromote", - "Version": "0.4.0", + "Version": "0.5.1", "Source": "Repository", "Title": "Headless Chrome Web Browser Interface", - "Authors@R": "c( person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-7111-0077\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Authors@R": "c( person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-7111-0077\")), person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\"), person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", "Description": "An implementation of the 'Chrome DevTools Protocol', for controlling a headless Chrome web browser.", - "License": "GPL-2", + "License": "MIT + file LICENSE", "URL": "https://rstudio.github.io/chromote/, https://github.com/rstudio/chromote", "BugReports": "https://github.com/rstudio/chromote/issues", "Imports": [ + "cli", "curl", "fastmap", "jsonlite", @@ -1118,23 +1084,30 @@ "processx", "promises (>= 1.1.1)", "R6", - "rlang", + "rlang (>= 1.1.0)", "utils", - "websocket (>= 1.2.0)" + "websocket (>= 1.2.0)", + "withr", + "zip" ], "Suggests": [ + "knitr", + "rmarkdown", "showimage", "testthat (>= 3.0.0)" ], - "Config/Needs/website": "tidyverse/tidytemplate", + "VignetteBuilder": "knitr", + "Config/Needs/website": "r-lib/pkgdown, rstudio/bslib", "Config/testthat/edition": "3", + "Config/testthat/parallel": "FALSE", + "Config/testthat/start-first": "chromote_session", "Encoding": "UTF-8", "Language": "en-US", "RoxygenNote": "7.3.2", "SystemRequirements": "Google Chrome or other Chromium-based browser. chromium: chromium (rpm) or chromium-browser (deb)", "NeedsCompilation": "no", - "Author": "Winston Chang [aut, cre], Barret Schloerke [aut] (), Garrick Aden-Buie [aut] (), Posit Software, PBC [cph, fnd]", - "Maintainer": "Winston Chang ", + "Author": "Garrick Aden-Buie [aut, cre] (), Winston Chang [aut], Barret Schloerke [aut] (), Posit Software, PBC [cph, fnd] (03wc8by49)", + "Maintainer": "Garrick Aden-Buie ", "Repository": "CRAN" }, "class": { @@ -1164,10 +1137,10 @@ }, "cli": { "Package": "cli", - "Version": "3.6.3", + "Version": "3.6.5", "Source": "Repository", "Title": "Helpers for Developing Command Line Interfaces", - "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Kirill\", \"Müller\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", , \"salim-b@pm.me\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"gabor@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Kirill\", \"Müller\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", , \"salim-b@pm.me\", role = \"ctb\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", "Description": "A suite of tools to build attractive command line interfaces ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs, etc. Supports custom themes via a 'CSS'-like language. It also contains a number of lower level 'CLI' elements: rules, boxes, trees, and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI colors and text styles as well.", "License": "MIT + file LICENSE", "URL": "https://cli.r-lib.org, https://github.com/r-lib/cli", @@ -1189,14 +1162,13 @@ "htmlwidgets", "knitr", "methods", - "mockery", "processx", "ps (>= 1.3.4.9000)", "rlang (>= 1.0.2.9003)", "rmarkdown", "rprojroot", "rstudioapi", - "testthat", + "testthat (>= 3.2.0)", "tibble", "whoami", "withr" @@ -1204,10 +1176,10 @@ "Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc, fansi, prettyunits, sessioninfo, tidyverse/tidytemplate, usethis, vctrs", "Config/testthat/edition": "3", "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", "Author": "Gábor Csárdi [aut, cre], Hadley Wickham [ctb], Kirill Müller [ctb], Salim Brüggemann [ctb] (), Posit Software, PBC [cph, fnd]", - "Maintainer": "Gábor Csárdi ", + "Maintainer": "Gábor Csárdi ", "Repository": "CRAN" }, "clipr": { @@ -1243,7 +1215,7 @@ }, "clock": { "Package": "clock", - "Version": "0.7.2", + "Version": "0.7.3", "Source": "Repository", "Title": "Date-Time Types and Tools", "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", @@ -1252,14 +1224,14 @@ "URL": "https://clock.r-lib.org, https://github.com/r-lib/clock", "BugReports": "https://github.com/r-lib/clock/issues", "Depends": [ - "R (>= 3.6.0)" + "R (>= 4.0.0)" ], "Imports": [ - "cli (>= 3.6.1)", - "lifecycle (>= 1.0.3)", - "rlang (>= 1.1.0)", - "tzdb (>= 0.4.0)", - "vctrs (>= 0.6.1)" + "cli (>= 3.6.4)", + "lifecycle (>= 1.0.4)", + "rlang (>= 1.1.5)", + "tzdb (>= 0.5.0)", + "vctrs (>= 0.6.5)" ], "Suggests": [ "covr", @@ -1267,13 +1239,13 @@ "magrittr", "pillar", "rmarkdown", - "slider (>= 0.3.0)", + "slider (>= 0.3.2)", "testthat (>= 3.0.0)", "withr" ], "LinkingTo": [ - "cpp11 (>= 0.5.1)", - "tzdb (>= 0.4.0)" + "cpp11 (>= 0.5.2)", + "tzdb (>= 0.5.0)" ], "VignetteBuilder": "knitr", "Config/build/compilation-database": "true", @@ -1360,7 +1332,7 @@ }, "commonmark": { "Package": "commonmark", - "Version": "1.9.2", + "Version": "2.0.0", "Source": "Repository", "Type": "Package", "Title": "High Performance CommonMark and Github Markdown Rendering in R", @@ -1374,11 +1346,11 @@ "testthat", "xml2" ], - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2", "Language": "en-US", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Author": "Jeroen Ooms [aut, cre] (), John MacFarlane [cph] (Author of cmark)", + "Author": "Jeroen Ooms [aut, cre] (ORCID: ), John MacFarlane [cph] (Author of cmark)", "Maintainer": "Jeroen Ooms ", "Repository": "CRAN" }, @@ -1416,15 +1388,15 @@ }, "connectapi": { "Package": "connectapi", - "Version": "0.5.0", + "Version": "0.8.0", "Source": "Repository", "Type": "Package", "Title": "Utilities for Interacting with the 'Posit Connect' Server API", "Authors@R": "c( person(given = \"Toph\", family = \"Allen\", role = c(\"aut\", \"cre\"), email = \"toph@posit.co\"), person(given = \"Neal\", family = \"Richardson\", role = c(\"aut\")), person(given = \"Sean\", family = \"Lopp\", role = c(\"aut\")), person(given = \"Cole\", family = \"Arendt\", role = c(\"aut\")), person(given = \"Posit, PBC\", role = c(\"cph\", \"fnd\")))", "Description": "Provides a helpful 'R6' class and methods for interacting with the 'Posit Connect' Server API along with some meaningful utility functions for regular tasks. API documentation varies by 'Posit Connect' installation and version, but the latest documentation is also hosted publicly at .", "License": "MIT + file LICENSE", - "URL": "https://pkgs.rstudio.com/connectapi/, https://github.com/rstudio/connectapi", - "BugReports": "https://github.com/rstudio/connectapi/issues", + "URL": "https://posit-dev.github.io/connectapi/, https://github.com/posit-dev/connectapi", + "BugReports": "https://github.com/posit-dev/connectapi/issues", "Imports": [ "bit64", "fs", @@ -1439,7 +1411,8 @@ "rlang (>= 0.4.2)", "tibble", "uuid", - "vctrs (>= 0.3.0)" + "vctrs (>= 0.3.0)", + "base64enc" ], "Suggests": [ "covr", @@ -1456,6 +1429,7 @@ "rsconnect", "spelling", "testthat", + "tidyr", "webshot2", "withr" ], @@ -1464,6 +1438,7 @@ "Language": "en-US", "RoxygenNote": "7.3.2", "Config/testthat/edition": "3", + "Collate": "'audits.R' 'browse.R' 'connect.R' 'connectapi-package.R' 'connectapi.R' 'content.R' 'deploy.R' 'get.R' 'git.R' 'groups.R' 'integrations.R' 'lazy.R' 'page.R' 'parse.R' 'promote.R' 'ptype.R' 'remote.R' 'runtime-caches.R' 'schedule.R' 'tags.R' 'utils.R' 'thumbnail.R' 'user.R' 'utils-ci.R' 'utils-pipe.R' 'variant.R'", "NeedsCompilation": "no", "Author": "Toph Allen [aut, cre], Neal Richardson [aut], Sean Lopp [aut], Cole Arendt [aut], Posit, PBC [cph, fnd]", "Maintainer": "Toph Allen ", @@ -1495,11 +1470,12 @@ "RoxygenNote": "7.2.1", "NeedsCompilation": "no", "Author": "Taiyun Wei [cre, aut], Viliam Simko [aut], Michael Levy [ctb], Yihui Xie [ctb], Yan Jin [ctb], Jeff Zemla [ctb], Moritz Freidank [ctb], Jun Cai [ctb], Tomas Protivinsky [ctb]", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "countrycode": { "Package": "countrycode", - "Version": "1.6.0", + "Version": "1.6.1", "Source": "Repository", "Type": "Package", "Title": "Convert Country Names and Country Codes", @@ -1522,7 +1498,7 @@ "Encoding": "UTF-8", "LazyData": "yes", "LazyLoad": "yes", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", "Author": "Vincent Arel-Bundock [aut, cre] (), CJ Yetman [ctb] (), Nils Enevoldsen [ctb] (), Etienne Bacher [ctb] (), Samuel Meichtry [ctb] ()", "Maintainer": "Vincent Arel-Bundock ", @@ -1530,7 +1506,7 @@ }, "cpp11": { "Package": "cpp11", - "Version": "0.5.1", + "Version": "0.5.2", "Source": "Repository", "Title": "A C++11 Interface for R's C Interface", "Authors@R": "c( person(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Benjamin\", \"Kietzman\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", @@ -1638,14 +1614,14 @@ }, "curl": { "Package": "curl", - "Version": "6.2.0", + "Version": "6.4.0", "Source": "Repository", "Type": "Package", "Title": "A Modern and Flexible Web Client for R", "Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Posit Software, PBC\", role = \"cph\"))", "Description": "Bindings to 'libcurl' for performing fully configurable HTTP/FTP requests where responses can be processed in memory, on disk, or streaming via the callback or connection interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly web client see the 'httr2' package which builds on this package with http specific tools and logic.", "License": "MIT + file LICENSE", - "SystemRequirements": "libcurl (>= 7.62): libcurl-devel (rpm) or libcurl4-openssl-dev (deb)", + "SystemRequirements": "libcurl (>= 7.73): libcurl-devel (rpm) or libcurl4-openssl-dev (deb)", "URL": "https://jeroen.r-universe.dev/curl", "BugReports": "https://github.com/jeroen/curl/issues", "Suggests": [ @@ -1666,39 +1642,13 @@ "Encoding": "UTF-8", "Language": "en-US", "NeedsCompilation": "yes", - "Author": "Jeroen Ooms [aut, cre] (), Hadley Wickham [ctb], Posit Software, PBC [cph]", + "Author": "Jeroen Ooms [aut, cre] (ORCID: ), Hadley Wickham [ctb], Posit Software, PBC [cph]", "Maintainer": "Jeroen Ooms ", "Repository": "CRAN" }, - "cyclocomp": { - "Package": "cyclocomp", - "Version": "1.1.1", - "Source": "Repository", - "Title": "Cyclomatic Complexity of R Code", - "Author": "Gabor Csardi", - "Maintainer": "Gabor Csardi ", - "Description": "Cyclomatic complexity is a software metric (measurement), used to indicate the complexity of a program. It is a quantitative measure of the number of linearly independent paths through a program's source code. It was developed by Thomas J. McCabe, Sr. in 1976.", - "License": "MIT + file LICENSE", - "URL": "https://github.com/gaborcsardi/cyclocomp", - "BugReports": "https://github.com/gaborcsardi/cyclocomp/issues", - "Imports": [ - "callr", - "crayon", - "desc", - "remotes", - "withr" - ], - "Suggests": [ - "testthat" - ], - "RoxygenNote": "7.2.3", - "Encoding": "UTF-8", - "NeedsCompilation": "no", - "Repository": "CRAN" - }, "data.table": { "Package": "data.table", - "Version": "1.16.4", + "Version": "1.17.8", "Source": "Repository", "Title": "Extension of `data.frame`", "Depends": [ @@ -1724,9 +1674,9 @@ "VignetteBuilder": "knitr", "Encoding": "UTF-8", "ByteCompile": "TRUE", - "Authors@R": "c( person(\"Tyson\",\"Barrett\", role=c(\"aut\",\"cre\"), email=\"t.barrett88@gmail.com\", comment = c(ORCID=\"0000-0002-2137-1391\")), person(\"Matt\",\"Dowle\", role=\"aut\", email=\"mattjdowle@gmail.com\"), person(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"asrini@pm.me\"), person(\"Jan\",\"Gorecki\", role=\"aut\"), person(\"Michael\",\"Chirico\", role=\"aut\", comment = c(ORCID=\"0000-0003-0787-087X\")), person(\"Toby\",\"Hocking\", role=\"aut\", comment = c(ORCID=\"0000-0002-3146-0865\")), person(\"Benjamin\",\"Schwendinger\",role=\"aut\", comment = c(ORCID=\"0000-0003-3315-8114\")), person(\"Pasha\",\"Stetsenko\", role=\"ctb\"), person(\"Tom\",\"Short\", role=\"ctb\"), person(\"Steve\",\"Lianoglou\", role=\"ctb\"), person(\"Eduard\",\"Antonyan\", role=\"ctb\"), person(\"Markus\",\"Bonsch\", role=\"ctb\"), person(\"Hugh\",\"Parsonage\", role=\"ctb\"), person(\"Scott\",\"Ritchie\", role=\"ctb\"), person(\"Kun\",\"Ren\", role=\"ctb\"), person(\"Xianying\",\"Tan\", role=\"ctb\"), person(\"Rick\",\"Saporta\", role=\"ctb\"), person(\"Otto\",\"Seiskari\", role=\"ctb\"), person(\"Xianghui\",\"Dong\", role=\"ctb\"), person(\"Michel\",\"Lang\", role=\"ctb\"), person(\"Watal\",\"Iwasaki\", role=\"ctb\"), person(\"Seth\",\"Wenchel\", role=\"ctb\"), person(\"Karl\",\"Broman\", role=\"ctb\"), person(\"Tobias\",\"Schmidt\", role=\"ctb\"), person(\"David\",\"Arenburg\", role=\"ctb\"), person(\"Ethan\",\"Smith\", role=\"ctb\"), person(\"Francois\",\"Cocquemas\", role=\"ctb\"), person(\"Matthieu\",\"Gomez\", role=\"ctb\"), person(\"Philippe\",\"Chataignon\", role=\"ctb\"), person(\"Nello\",\"Blaser\", role=\"ctb\"), person(\"Dmitry\",\"Selivanov\", role=\"ctb\"), person(\"Andrey\",\"Riabushenko\", role=\"ctb\"), person(\"Cheng\",\"Lee\", role=\"ctb\"), person(\"Declan\",\"Groves\", role=\"ctb\"), person(\"Daniel\",\"Possenriede\", role=\"ctb\"), person(\"Felipe\",\"Parages\", role=\"ctb\"), person(\"Denes\",\"Toth\", role=\"ctb\"), person(\"Mus\",\"Yaramaz-David\", role=\"ctb\"), person(\"Ayappan\",\"Perumal\", role=\"ctb\"), person(\"James\",\"Sams\", role=\"ctb\"), person(\"Martin\",\"Morgan\", role=\"ctb\"), person(\"Michael\",\"Quinn\", role=\"ctb\"), person(\"@javrucebo\",\"\", role=\"ctb\"), person(\"@marc-outins\",\"\", role=\"ctb\"), person(\"Roy\",\"Storey\", role=\"ctb\"), person(\"Manish\",\"Saraswat\", role=\"ctb\"), person(\"Morgan\",\"Jacob\", role=\"ctb\"), person(\"Michael\",\"Schubmehl\", role=\"ctb\"), person(\"Davis\",\"Vaughan\", role=\"ctb\"), person(\"Leonardo\",\"Silvestri\", role=\"ctb\"), person(\"Jim\",\"Hester\", role=\"ctb\"), person(\"Anthony\",\"Damico\", role=\"ctb\"), person(\"Sebastian\",\"Freundt\", role=\"ctb\"), person(\"David\",\"Simons\", role=\"ctb\"), person(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"), person(\"Cole\",\"Miller\", role=\"ctb\"), person(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"), person(\"Vaclav\",\"Tlapak\", role=\"ctb\"), person(\"Kevin\",\"Ushey\", role=\"ctb\"), person(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"), person(\"Tony\",\"Fischetti\", role=\"ctb\"), person(\"Ofek\",\"Shilon\", role=\"ctb\"), person(\"Vadim\",\"Khotilovich\", role=\"ctb\"), person(\"Hadley\",\"Wickham\", role=\"ctb\"), person(\"Bennet\",\"Becker\", role=\"ctb\"), person(\"Kyle\",\"Haynes\", role=\"ctb\"), person(\"Boniface Christian\",\"Kamgang\", role=\"ctb\"), person(\"Olivier\",\"Delmarcell\", role=\"ctb\"), person(\"Josh\",\"O'Brien\", role=\"ctb\"), person(\"Dereck\",\"de Mezquita\", role=\"ctb\"), person(\"Michael\",\"Czekanski\", role=\"ctb\"), person(\"Dmitry\", \"Shemetov\", role=\"ctb\"), person(\"Nitish\", \"Jha\", role=\"ctb\"), person(\"Joshua\", \"Wu\", role=\"ctb\"), person(\"Iago\", \"Giné-Vázquez\", role=\"ctb\"), person(\"Anirban\", \"Chetia\", role=\"ctb\"), person(\"Doris\", \"Amoakohene\", role=\"ctb\"), person(\"Ivan\", \"Krylov\", role=\"ctb\") )", + "Authors@R": "c( person(\"Tyson\",\"Barrett\", role=c(\"aut\",\"cre\"), email=\"t.barrett88@gmail.com\", comment = c(ORCID=\"0000-0002-2137-1391\")), person(\"Matt\",\"Dowle\", role=\"aut\", email=\"mattjdowle@gmail.com\"), person(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"asrini@pm.me\"), person(\"Jan\",\"Gorecki\", role=\"aut\"), person(\"Michael\",\"Chirico\", role=\"aut\", comment = c(ORCID=\"0000-0003-0787-087X\")), person(\"Toby\",\"Hocking\", role=\"aut\", comment = c(ORCID=\"0000-0002-3146-0865\")), person(\"Benjamin\",\"Schwendinger\",role=\"aut\", comment = c(ORCID=\"0000-0003-3315-8114\")), person(\"Ivan\", \"Krylov\", role=\"aut\", email=\"ikrylov@disroot.org\", comment = c(ORCID=\"0000-0002-0172-3812\")), person(\"Pasha\",\"Stetsenko\", role=\"ctb\"), person(\"Tom\",\"Short\", role=\"ctb\"), person(\"Steve\",\"Lianoglou\", role=\"ctb\"), person(\"Eduard\",\"Antonyan\", role=\"ctb\"), person(\"Markus\",\"Bonsch\", role=\"ctb\"), person(\"Hugh\",\"Parsonage\", role=\"ctb\"), person(\"Scott\",\"Ritchie\", role=\"ctb\"), person(\"Kun\",\"Ren\", role=\"ctb\"), person(\"Xianying\",\"Tan\", role=\"ctb\"), person(\"Rick\",\"Saporta\", role=\"ctb\"), person(\"Otto\",\"Seiskari\", role=\"ctb\"), person(\"Xianghui\",\"Dong\", role=\"ctb\"), person(\"Michel\",\"Lang\", role=\"ctb\"), person(\"Watal\",\"Iwasaki\", role=\"ctb\"), person(\"Seth\",\"Wenchel\", role=\"ctb\"), person(\"Karl\",\"Broman\", role=\"ctb\"), person(\"Tobias\",\"Schmidt\", role=\"ctb\"), person(\"David\",\"Arenburg\", role=\"ctb\"), person(\"Ethan\",\"Smith\", role=\"ctb\"), person(\"Francois\",\"Cocquemas\", role=\"ctb\"), person(\"Matthieu\",\"Gomez\", role=\"ctb\"), person(\"Philippe\",\"Chataignon\", role=\"ctb\"), person(\"Nello\",\"Blaser\", role=\"ctb\"), person(\"Dmitry\",\"Selivanov\", role=\"ctb\"), person(\"Andrey\",\"Riabushenko\", role=\"ctb\"), person(\"Cheng\",\"Lee\", role=\"ctb\"), person(\"Declan\",\"Groves\", role=\"ctb\"), person(\"Daniel\",\"Possenriede\", role=\"ctb\"), person(\"Felipe\",\"Parages\", role=\"ctb\"), person(\"Denes\",\"Toth\", role=\"ctb\"), person(\"Mus\",\"Yaramaz-David\", role=\"ctb\"), person(\"Ayappan\",\"Perumal\", role=\"ctb\"), person(\"James\",\"Sams\", role=\"ctb\"), person(\"Martin\",\"Morgan\", role=\"ctb\"), person(\"Michael\",\"Quinn\", role=\"ctb\"), person(\"@javrucebo\",\"\", role=\"ctb\"), person(\"@marc-outins\",\"\", role=\"ctb\"), person(\"Roy\",\"Storey\", role=\"ctb\"), person(\"Manish\",\"Saraswat\", role=\"ctb\"), person(\"Morgan\",\"Jacob\", role=\"ctb\"), person(\"Michael\",\"Schubmehl\", role=\"ctb\"), person(\"Davis\",\"Vaughan\", role=\"ctb\"), person(\"Leonardo\",\"Silvestri\", role=\"ctb\"), person(\"Jim\",\"Hester\", role=\"ctb\"), person(\"Anthony\",\"Damico\", role=\"ctb\"), person(\"Sebastian\",\"Freundt\", role=\"ctb\"), person(\"David\",\"Simons\", role=\"ctb\"), person(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"), person(\"Cole\",\"Miller\", role=\"ctb\"), person(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"), person(\"Vaclav\",\"Tlapak\", role=\"ctb\"), person(\"Kevin\",\"Ushey\", role=\"ctb\"), person(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"), person(\"Tony\",\"Fischetti\", role=\"ctb\"), person(\"Ofek\",\"Shilon\", role=\"ctb\"), person(\"Vadim\",\"Khotilovich\", role=\"ctb\"), person(\"Hadley\",\"Wickham\", role=\"ctb\"), person(\"Bennet\",\"Becker\", role=\"ctb\"), person(\"Kyle\",\"Haynes\", role=\"ctb\"), person(\"Boniface Christian\",\"Kamgang\", role=\"ctb\"), person(\"Olivier\",\"Delmarcell\", role=\"ctb\"), person(\"Josh\",\"O'Brien\", role=\"ctb\"), person(\"Dereck\",\"de Mezquita\", role=\"ctb\"), person(\"Michael\",\"Czekanski\", role=\"ctb\"), person(\"Dmitry\", \"Shemetov\", role=\"ctb\"), person(\"Nitish\", \"Jha\", role=\"ctb\"), person(\"Joshua\", \"Wu\", role=\"ctb\"), person(\"Iago\", \"Giné-Vázquez\", role=\"ctb\"), person(\"Anirban\", \"Chetia\", role=\"ctb\"), person(\"Doris\", \"Amoakohene\", role=\"ctb\"), person(\"Angel\", \"Feliz\", role=\"ctb\"), person(\"Michael\",\"Young\", role=\"ctb\"), person(\"Mark\", \"Seeto\", role=\"ctb\"), person(\"Philippe\", \"Grosjean\", role=\"ctb\"), person(\"Vincent\", \"Runge\", role=\"ctb\"), person(\"Christian\", \"Wia\", role=\"ctb\"), person(\"Elise\", \"Maigné\", role=\"ctb\"), person(\"Vincent\", \"Rocher\", role=\"ctb\"), person(\"Vijay\", \"Lulla\", role=\"ctb\"), person(\"Aljaž\", \"Sluga\", role=\"ctb\"), person(\"Bill\", \"Evans\", role=\"ctb\") )", "NeedsCompilation": "yes", - "Author": "Tyson Barrett [aut, cre] (), Matt Dowle [aut], Arun Srinivasan [aut], Jan Gorecki [aut], Michael Chirico [aut] (), Toby Hocking [aut] (), Benjamin Schwendinger [aut] (), Pasha Stetsenko [ctb], Tom Short [ctb], Steve Lianoglou [ctb], Eduard Antonyan [ctb], Markus Bonsch [ctb], Hugh Parsonage [ctb], Scott Ritchie [ctb], Kun Ren [ctb], Xianying Tan [ctb], Rick Saporta [ctb], Otto Seiskari [ctb], Xianghui Dong [ctb], Michel Lang [ctb], Watal Iwasaki [ctb], Seth Wenchel [ctb], Karl Broman [ctb], Tobias Schmidt [ctb], David Arenburg [ctb], Ethan Smith [ctb], Francois Cocquemas [ctb], Matthieu Gomez [ctb], Philippe Chataignon [ctb], Nello Blaser [ctb], Dmitry Selivanov [ctb], Andrey Riabushenko [ctb], Cheng Lee [ctb], Declan Groves [ctb], Daniel Possenriede [ctb], Felipe Parages [ctb], Denes Toth [ctb], Mus Yaramaz-David [ctb], Ayappan Perumal [ctb], James Sams [ctb], Martin Morgan [ctb], Michael Quinn [ctb], @javrucebo [ctb], @marc-outins [ctb], Roy Storey [ctb], Manish Saraswat [ctb], Morgan Jacob [ctb], Michael Schubmehl [ctb], Davis Vaughan [ctb], Leonardo Silvestri [ctb], Jim Hester [ctb], Anthony Damico [ctb], Sebastian Freundt [ctb], David Simons [ctb], Elliott Sales de Andrade [ctb], Cole Miller [ctb], Jens Peder Meldgaard [ctb], Vaclav Tlapak [ctb], Kevin Ushey [ctb], Dirk Eddelbuettel [ctb], Tony Fischetti [ctb], Ofek Shilon [ctb], Vadim Khotilovich [ctb], Hadley Wickham [ctb], Bennet Becker [ctb], Kyle Haynes [ctb], Boniface Christian Kamgang [ctb], Olivier Delmarcell [ctb], Josh O'Brien [ctb], Dereck de Mezquita [ctb], Michael Czekanski [ctb], Dmitry Shemetov [ctb], Nitish Jha [ctb], Joshua Wu [ctb], Iago Giné-Vázquez [ctb], Anirban Chetia [ctb], Doris Amoakohene [ctb], Ivan Krylov [ctb]", + "Author": "Tyson Barrett [aut, cre] (ORCID: ), Matt Dowle [aut], Arun Srinivasan [aut], Jan Gorecki [aut], Michael Chirico [aut] (ORCID: ), Toby Hocking [aut] (ORCID: ), Benjamin Schwendinger [aut] (ORCID: ), Ivan Krylov [aut] (ORCID: ), Pasha Stetsenko [ctb], Tom Short [ctb], Steve Lianoglou [ctb], Eduard Antonyan [ctb], Markus Bonsch [ctb], Hugh Parsonage [ctb], Scott Ritchie [ctb], Kun Ren [ctb], Xianying Tan [ctb], Rick Saporta [ctb], Otto Seiskari [ctb], Xianghui Dong [ctb], Michel Lang [ctb], Watal Iwasaki [ctb], Seth Wenchel [ctb], Karl Broman [ctb], Tobias Schmidt [ctb], David Arenburg [ctb], Ethan Smith [ctb], Francois Cocquemas [ctb], Matthieu Gomez [ctb], Philippe Chataignon [ctb], Nello Blaser [ctb], Dmitry Selivanov [ctb], Andrey Riabushenko [ctb], Cheng Lee [ctb], Declan Groves [ctb], Daniel Possenriede [ctb], Felipe Parages [ctb], Denes Toth [ctb], Mus Yaramaz-David [ctb], Ayappan Perumal [ctb], James Sams [ctb], Martin Morgan [ctb], Michael Quinn [ctb], @javrucebo [ctb], @marc-outins [ctb], Roy Storey [ctb], Manish Saraswat [ctb], Morgan Jacob [ctb], Michael Schubmehl [ctb], Davis Vaughan [ctb], Leonardo Silvestri [ctb], Jim Hester [ctb], Anthony Damico [ctb], Sebastian Freundt [ctb], David Simons [ctb], Elliott Sales de Andrade [ctb], Cole Miller [ctb], Jens Peder Meldgaard [ctb], Vaclav Tlapak [ctb], Kevin Ushey [ctb], Dirk Eddelbuettel [ctb], Tony Fischetti [ctb], Ofek Shilon [ctb], Vadim Khotilovich [ctb], Hadley Wickham [ctb], Bennet Becker [ctb], Kyle Haynes [ctb], Boniface Christian Kamgang [ctb], Olivier Delmarcell [ctb], Josh O'Brien [ctb], Dereck de Mezquita [ctb], Michael Czekanski [ctb], Dmitry Shemetov [ctb], Nitish Jha [ctb], Joshua Wu [ctb], Iago Giné-Vázquez [ctb], Anirban Chetia [ctb], Doris Amoakohene [ctb], Angel Feliz [ctb], Michael Young [ctb], Mark Seeto [ctb], Philippe Grosjean [ctb], Vincent Runge [ctb], Christian Wia [ctb], Elise Maigné [ctb], Vincent Rocher [ctb], Vijay Lulla [ctb], Aljaž Sluga [ctb], Bill Evans [ctb]", "Maintainer": "Tyson Barrett ", "Repository": "CRAN" }, @@ -1787,11 +1737,12 @@ "License": "GPL (>= 2)", "LazyData": "yes", "NeedsCompilation": "no", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "diffobj": { "Package": "diffobj", - "Version": "0.3.5", + "Version": "0.3.6", "Source": "Repository", "Type": "Package", "Title": "Diffs for R Objects", @@ -1803,7 +1754,7 @@ "License": "GPL-2 | GPL-3", "URL": "https://github.com/brodieG/diffobj", "BugReports": "https://github.com/brodieG/diffobj/issues", - "RoxygenNote": "7.1.1", + "RoxygenNote": "7.2.3", "VignetteBuilder": "knitr", "Encoding": "UTF-8", "Suggests": [ @@ -1960,7 +1911,7 @@ }, "evaluate": { "Package": "evaluate", - "Version": "1.0.3", + "Version": "1.0.4", "Source": "Repository", "Type": "Package", "Title": "Parsing and Evaluation Tools that Provide More Details than the Default", @@ -1979,7 +1930,8 @@ "lattice", "methods", "pkgload", - "rlang", + "ragg (>= 1.4.0)", + "rlang (>= 1.1.5)", "knitr", "testthat (>= 3.0.0)", "withr" @@ -1989,41 +1941,10 @@ "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Author": "Hadley Wickham [aut, cre], Yihui Xie [aut] (), Michael Lawrence [ctb], Thomas Kluyver [ctb], Jeroen Ooms [ctb], Barret Schloerke [ctb], Adam Ryczkowski [ctb], Hiroaki Yutani [ctb], Michel Lang [ctb], Karolis Koncevičius [ctb], Posit Software, PBC [cph, fnd]", + "Author": "Hadley Wickham [aut, cre], Yihui Xie [aut] (ORCID: ), Michael Lawrence [ctb], Thomas Kluyver [ctb], Jeroen Ooms [ctb], Barret Schloerke [ctb], Adam Ryczkowski [ctb], Hiroaki Yutani [ctb], Michel Lang [ctb], Karolis Koncevičius [ctb], Posit Software, PBC [cph, fnd]", "Maintainer": "Hadley Wickham ", "Repository": "CRAN" }, - "fansi": { - "Package": "fansi", - "Version": "1.0.6", - "Source": "Repository", - "Title": "ANSI Control Sequence Aware String Functions", - "Description": "Counterparts to R string manipulation functions that account for the effects of ANSI text formatting control sequences.", - "Authors@R": "c( person(\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\", role=c(\"aut\", \"cre\")), person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"), person(family=\"R Core Team\", email=\"R-core@r-project.org\", role=\"cph\", comment=\"UTF8 byte length calcs from src/util.c\" ))", - "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' 'nchar.R' 'strwrap.R' 'strtrim.R' 'strsplit.R' 'substr2.R' 'trimws.R' 'tohtml.R' 'unhandled.R' 'normalize.R' 'sgr.R'", - "NeedsCompilation": "yes", - "Author": "Brodie Gaslam [aut, cre], Elliott Sales De Andrade [ctb], R Core Team [cph] (UTF8 byte length calcs from src/util.c)", - "Maintainer": "Brodie Gaslam ", - "Repository": "CRAN" - }, "farver": { "Package": "farver", "Version": "2.1.2", @@ -2146,7 +2067,7 @@ }, "forecast": { "Package": "forecast", - "Version": "8.23.0", + "Version": "8.24.0", "Source": "Repository", "Title": "Forecasting Functions for Time Series and Linear Models", "Description": "Methods and tools for displaying and analysing univariate time series forecasts including exponential smoothing via state space models and automatic ARIMA modelling.", @@ -2194,7 +2115,7 @@ "URL": "https://pkg.robjhyndman.com/forecast/, https://github.com/robjhyndman/forecast", "VignetteBuilder": "knitr", "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "Config/testthat/edition": "3", "NeedsCompilation": "yes", "Author": "Rob Hyndman [aut, cre, cph] (), George Athanasopoulos [aut] (), Christoph Bergmeir [aut] (), Gabriel Caceres [aut] (), Leanne Chhay [aut], Kirill Kuroptev [aut], Mitchell O'Hara-Wild [aut] (), Fotios Petropoulos [aut] (), Slava Razbash [aut], Earo Wang [aut] (), Farah Yasmeen [aut] (), Federico Garza [ctb], Daniele Girolimetto [ctb], Ross Ihaka [ctb, cph], R Core Team [ctb, cph], Daniel Reid [ctb], David Shaub [ctb], Yuan Tang [ctb] (), Xiaoqian Wang [ctb], Zhenyu Zhou [ctb]", @@ -2229,7 +2150,7 @@ }, "fs": { "Package": "fs", - "Version": "1.6.5", + "Version": "1.6.6", "Source": "Repository", "Title": "Cross-Platform File System Operations Based on 'libuv'", "Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library\"), person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", @@ -2313,15 +2234,18 @@ }, "future": { "Package": "future", - "Version": "1.34.0", + "Version": "1.67.0", "Source": "Repository", "Title": "Unified Parallel and Distributed Processing in R for Everyone", + "Depends": [ + "R (>= 3.2.0)" + ], "Imports": [ "digest", - "globals (>= 0.16.1)", + "globals (>= 0.18.0)", "listenv (>= 0.8.0)", "parallel", - "parallelly (>= 1.38.0)", + "parallelly (>= 1.44.0)", "utils" ], "Suggests": [ @@ -2336,26 +2260,28 @@ "License": "LGPL (>= 2.1)", "LazyLoad": "TRUE", "ByteCompile": "TRUE", - "URL": "https://future.futureverse.org, https://github.com/HenrikBengtsson/future", - "BugReports": "https://github.com/HenrikBengtsson/future/issues", + "URL": "https://future.futureverse.org, https://github.com/futureverse/future", + "BugReports": "https://github.com/futureverse/future/issues", + "Language": "en-US", "Encoding": "UTF-8", "RoxygenNote": "7.3.2", + "Collate": "'000.bquote.R' '000.import.R' '000.re-exports.R' '010.tweakable.R' '010.utils-parallelly.R' 'backend_api-01-FutureBackend-class.R' 'backend_api-03.MultiprocessFutureBackend-class.R' 'backend_api-11.ClusterFutureBackend-class.R' 'backend_api-11.MulticoreFutureBackend-class.R' 'backend_api-11.SequentialFutureBackend-class.R' 'backend_api-13.MultisessionFutureBackend-class.R' 'backend_api-ConstantFuture-class.R' 'backend_api-Future-class.R' 'backend_api-FutureRegistry.R' 'backend_api-UniprocessFuture-class.R' 'backend_api-evalFuture.R' 'core_api-cancel.R' 'core_api-future.R' 'core_api-reset.R' 'core_api-resolved.R' 'core_api-value.R' 'delayed_api-futureAssign.R' 'delayed_api-futureOf.R' 'demo_api-mandelbrot.R' 'infix_api-01-futureAssign_OP.R' 'infix_api-02-globals_OP.R' 'infix_api-03-seed_OP.R' 'infix_api-04-stdout_OP.R' 'infix_api-05-conditions_OP.R' 'infix_api-06-lazy_OP.R' 'infix_api-07-label_OP.R' 'infix_api-08-plan_OP.R' 'infix_api-09-tweak_OP.R' 'protected_api-FutureCondition-class.R' 'protected_api-FutureGlobals-class.R' 'protected_api-FutureResult-class.R' 'protected_api-futures.R' 'protected_api-globals.R' 'protected_api-journal.R' 'protected_api-resolve.R' 'protected_api-signalConditions.R' 'testme.R' 'utils-basic.R' 'utils-conditions.R' 'utils-connections.R' 'utils-debug.R' 'utils-immediateCondition.R' 'utils-marshalling.R' 'utils-objectSize.R' 'utils-options.R' 'utils-prune_pkg_code.R' 'utils-registerClusterTypes.R' 'utils-rng_utils.R' 'utils-signalEarly.R' 'utils-stealth_sample.R' 'utils-sticky_globals.R' 'utils-tweakExpression.R' 'utils-uuid.R' 'utils-whichIndex.R' 'utils_api-backtrace.R' 'utils_api-capture_journals.R' 'utils_api-futureCall.R' 'utils_api-futureSessionInfo.R' 'utils_api-makeClusterFuture.R' 'utils_api-minifuture.R' 'utils_api-nbrOfWorkers.R' 'utils_api-plan.R' 'utils_api-plan-with.R' 'utils_api-sessionDetails.R' 'utils_api-tweak.R' 'zzz.R'", "NeedsCompilation": "no", - "Author": "Henrik Bengtsson [aut, cre, cph] ()", + "Author": "Henrik Bengtsson [aut, cre, cph] (ORCID: )", "Maintainer": "Henrik Bengtsson ", "Repository": "CRAN" }, "future.apply": { "Package": "future.apply", - "Version": "1.11.3", + "Version": "1.20.0", "Source": "Repository", "Title": "Apply Function to Elements in Parallel using Futures", "Depends": [ "R (>= 3.2.0)", - "future (>= 1.28.0)" + "future (>= 1.49.0)" ], "Imports": [ - "globals (>= 0.16.1)", + "globals", "parallel", "utils" ], @@ -2363,7 +2289,7 @@ "datasets", "stats", "tools", - "listenv (>= 0.8.0)", + "listenv", "R.rsp", "markdown" ], @@ -2374,24 +2300,26 @@ "LazyLoad": "TRUE", "URL": "https://future.apply.futureverse.org, https://github.com/futureverse/future.apply", "BugReports": "https://github.com/futureverse/future.apply/issues", + "Language": "en-US", + "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Author": "Henrik Bengtsson [aut, cre, cph] (), R Core Team [cph, ctb]", + "Author": "Henrik Bengtsson [aut, cre, cph] (ORCID: ), R Core Team [cph, ctb]", "Maintainer": "Henrik Bengtsson ", "Repository": "CRAN" }, "generics": { "Package": "generics", - "Version": "0.1.3", + "Version": "0.1.4", "Source": "Repository", "Title": "Common S3 Generics not Provided by Base R Methods Related to Model Fitting", - "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")), person(\"Max\", \"Kuhn\", , \"max@rstudio.com\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@rstudio.com\", role = \"aut\"), person(\"RStudio\", role = \"cph\") )", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"https://ror.org/03wc8by49\")) )", "Description": "In order to reduce potential package dependencies and conflicts, 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)" + "R (>= 3.6)" ], "Imports": [ "methods" @@ -2406,15 +2334,15 @@ "Config/Needs/website": "tidyverse/tidytemplate", "Config/testthat/edition": "3", "Encoding": "UTF-8", - "RoxygenNote": "7.2.0", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Author": "Hadley Wickham [aut, cre], Max Kuhn [aut], Davis Vaughan [aut], RStudio [cph]", - "Maintainer": "Hadley Wickham ", + "Author": "Hadley Wickham [aut, cre] (ORCID: ), Max Kuhn [aut], Davis Vaughan [aut], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Hadley Wickham ", "Repository": "CRAN" }, "ggplot2": { "Package": "ggplot2", - "Version": "3.5.1", + "Version": "3.5.2", "Source": "Repository", "Title": "Create Elegant Data Visualisations Using the Grammar of Graphics", "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Winston\", \"Chang\", role = \"aut\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Lionel\", \"Henry\", role = \"aut\"), person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Kohske\", \"Takahashi\", role = \"aut\"), person(\"Claus\", \"Wilke\", role = \"aut\", comment = c(ORCID = \"0000-0002-7470-9261\")), person(\"Kara\", \"Woo\", role = \"aut\", comment = c(ORCID = \"0000-0002-5125-4188\")), person(\"Hiroaki\", \"Yutani\", role = \"aut\", comment = c(ORCID = \"0000-0002-3385-7233\")), person(\"Dewey\", \"Dunnington\", role = \"aut\", comment = c(ORCID = \"0000-0002-9415-4582\")), person(\"Teun\", \"van den Brand\", role = \"aut\", comment = c(ORCID = \"0000-0002-9335-7468\")), person(\"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", @@ -2474,7 +2402,7 @@ "Config/testthat/edition": "3", "Encoding": "UTF-8", "LazyData": "true", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "Collate": "'ggproto.R' 'ggplot-global.R' 'aaa-.R' 'aes-colour-fill-alpha.R' 'aes-evaluation.R' 'aes-group-order.R' 'aes-linetype-size-shape.R' 'aes-position.R' 'compat-plyr.R' 'utilities.R' 'aes.R' 'utilities-checks.R' 'legend-draw.R' 'geom-.R' 'annotation-custom.R' 'annotation-logticks.R' 'geom-polygon.R' 'geom-map.R' 'annotation-map.R' 'geom-raster.R' 'annotation-raster.R' 'annotation.R' 'autolayer.R' 'autoplot.R' 'axis-secondary.R' 'backports.R' 'bench.R' 'bin.R' 'coord-.R' 'coord-cartesian-.R' 'coord-fixed.R' 'coord-flip.R' 'coord-map.R' 'coord-munch.R' 'coord-polar.R' 'coord-quickmap.R' 'coord-radial.R' 'coord-sf.R' 'coord-transform.R' 'data.R' 'docs_layer.R' 'facet-.R' 'facet-grid-.R' 'facet-null.R' 'facet-wrap.R' 'fortify-lm.R' 'fortify-map.R' 'fortify-multcomp.R' 'fortify-spatial.R' 'fortify.R' 'stat-.R' 'geom-abline.R' 'geom-rect.R' 'geom-bar.R' 'geom-bin2d.R' 'geom-blank.R' 'geom-boxplot.R' 'geom-col.R' 'geom-path.R' 'geom-contour.R' 'geom-count.R' 'geom-crossbar.R' 'geom-segment.R' 'geom-curve.R' 'geom-defaults.R' 'geom-ribbon.R' 'geom-density.R' 'geom-density2d.R' 'geom-dotplot.R' 'geom-errorbar.R' 'geom-errorbarh.R' 'geom-freqpoly.R' 'geom-function.R' 'geom-hex.R' 'geom-histogram.R' 'geom-hline.R' 'geom-jitter.R' 'geom-label.R' 'geom-linerange.R' 'geom-point.R' 'geom-pointrange.R' 'geom-quantile.R' 'geom-rug.R' 'geom-sf.R' 'geom-smooth.R' 'geom-spoke.R' 'geom-text.R' 'geom-tile.R' 'geom-violin.R' 'geom-vline.R' 'ggplot2-package.R' 'grob-absolute.R' 'grob-dotstack.R' 'grob-null.R' 'grouping.R' 'theme-elements.R' 'guide-.R' 'guide-axis.R' 'guide-axis-logticks.R' 'guide-axis-stack.R' 'guide-axis-theta.R' 'guide-legend.R' 'guide-bins.R' 'guide-colorbar.R' 'guide-colorsteps.R' 'guide-custom.R' 'layer.R' 'guide-none.R' 'guide-old.R' 'guides-.R' 'guides-grid.R' 'hexbin.R' 'import-standalone-obj-type.R' 'import-standalone-types-check.R' 'labeller.R' 'labels.R' 'layer-sf.R' 'layout.R' 'limits.R' 'margins.R' 'performance.R' 'plot-build.R' 'plot-construction.R' 'plot-last.R' 'plot.R' 'position-.R' 'position-collide.R' 'position-dodge.R' 'position-dodge2.R' 'position-identity.R' 'position-jitter.R' 'position-jitterdodge.R' 'position-nudge.R' 'position-stack.R' 'quick-plot.R' 'reshape-add-margins.R' 'save.R' 'scale-.R' 'scale-alpha.R' 'scale-binned.R' 'scale-brewer.R' 'scale-colour.R' 'scale-continuous.R' 'scale-date.R' 'scale-discrete-.R' 'scale-expansion.R' 'scale-gradient.R' 'scale-grey.R' 'scale-hue.R' 'scale-identity.R' 'scale-linetype.R' 'scale-linewidth.R' 'scale-manual.R' 'scale-shape.R' 'scale-size.R' 'scale-steps.R' 'scale-type.R' 'scale-view.R' 'scale-viridis.R' 'scales-.R' 'stat-align.R' 'stat-bin.R' 'stat-bin2d.R' 'stat-bindot.R' 'stat-binhex.R' 'stat-boxplot.R' 'stat-contour.R' 'stat-count.R' 'stat-density-2d.R' 'stat-density.R' 'stat-ecdf.R' 'stat-ellipse.R' 'stat-function.R' 'stat-identity.R' 'stat-qq-line.R' 'stat-qq.R' 'stat-quantilemethods.R' 'stat-sf-coordinates.R' 'stat-sf.R' 'stat-smooth-methods.R' 'stat-smooth.R' 'stat-sum.R' 'stat-summary-2d.R' 'stat-summary-bin.R' 'stat-summary-hex.R' 'stat-summary.R' 'stat-unique.R' 'stat-ydensity.R' 'summarise-plot.R' 'summary.R' 'theme.R' 'theme-defaults.R' 'theme-current.R' 'utilities-break.R' 'utilities-grid.R' 'utilities-help.R' 'utilities-matrix.R' 'utilities-patterns.R' 'utilities-resolution.R' 'utilities-tidy-eval.R' 'zxx.R' 'zzz.R'", "NeedsCompilation": "no", "Author": "Hadley Wickham [aut] (), Winston Chang [aut] (), Lionel Henry [aut], Thomas Lin Pedersen [aut, cre] (), Kohske Takahashi [aut], Claus Wilke [aut] (), Kara Woo [aut] (), Hiroaki Yutani [aut] (), Dewey Dunnington [aut] (), Teun van den Brand [aut] (), Posit, PBC [cph, fnd]", @@ -2483,7 +2411,7 @@ }, "globals": { "Package": "globals", - "Version": "0.16.3", + "Version": "0.18.0", "Source": "Repository", "Depends": [ "R (>= 3.1.2)" @@ -2492,14 +2420,16 @@ "codetools" ], "Title": "Identify Global Objects in R Expressions", - "Authors@R": "c( person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email=\"henrikb@braju.com\"), person(\"Davis\",\"Vaughan\", role=\"ctb\", email=\"davis@rstudio.com\"))", - "Description": "Identifies global (\"unknown\" or \"free\") objects in R expressions by code inspection using various strategies (ordered, liberal, or conservative). The objective of this package is to make it as simple as possible to identify global objects for the purpose of exporting them in parallel, distributed compute environments.", + "Authors@R": "c( person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"), email=\"henrikb@braju.com\"), person(\"Davis\",\"Vaughan\", role=\"ctb\", email=\"davis@posit.co\"))", + "Description": "Identifies global (\"unknown\" or \"free\") objects in R expressions by code inspection using various strategies (ordered, liberal, conservative, or deep-first search). The objective of this package is to make it as simple as possible to identify global objects for the purpose of exporting them in parallel, distributed compute environments.", "License": "LGPL (>= 2.1)", "LazyLoad": "TRUE", "ByteCompile": "TRUE", - "URL": "https://globals.futureverse.org, https://github.com/HenrikBengtsson/globals", - "BugReports": "https://github.com/HenrikBengtsson/globals/issues", - "RoxygenNote": "7.3.1", + "Language": "en-US", + "Encoding": "UTF-8", + "URL": "https://globals.futureverse.org, https://github.com/futureverse/globals", + "BugReports": "https://github.com/futureverse/globals/issues", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", "Author": "Henrik Bengtsson [aut, cre, cph], Davis Vaughan [ctb]", "Maintainer": "Henrik Bengtsson ", @@ -2565,7 +2495,8 @@ "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", "Author": "Mark van der Loo [aut, cre], David Turner [ctb]", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "gtable": { "Package": "gtable", @@ -2834,7 +2765,7 @@ }, "httpuv": { "Package": "httpuv", - "Version": "1.6.15", + "Version": "1.6.16", "Source": "Repository", "Type": "Package", "Title": "HTTP and WebSocket Server Library", @@ -2856,6 +2787,7 @@ "Suggests": [ "callr", "curl", + "jsonlite", "testthat", "websocket" ], @@ -2864,7 +2796,7 @@ "Rcpp" ], "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "SystemRequirements": "GNU make, zlib", "Collate": "'RcppExports.R' 'httpuv.R' 'random_port.R' 'server.R' 'staticServer.R' 'static_paths.R' 'utils.R'", "NeedsCompilation": "yes", @@ -2978,7 +2910,8 @@ "NeedsCompilation": "yes", "Author": "Andrea Peters [aut], Torsten Hothorn [aut, cre], Brian D. Ripley [ctb], Terry Therneau [ctb], Beth Atkinson [ctb]", "Maintainer": "Torsten Hothorn ", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "isoband": { "Package": "isoband", @@ -3016,38 +2949,6 @@ "Maintainer": "Hadley Wickham ", "Repository": "CRAN" }, - "jose": { - "Package": "jose", - "Version": "1.2.1", - "Source": "Repository", - "Type": "Package", - "Title": "JavaScript Object Signing and Encryption", - "Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\"))", - "Description": "Read and write JSON Web Keys (JWK, rfc7517), generate and verify JSON Web Signatures (JWS, rfc7515) and encode/decode JSON Web Tokens (JWT, rfc7519) . These standards provide modern signing and encryption formats that are natively supported by browsers via the JavaScript WebCryptoAPI , and used by services like OAuth 2.0, LetsEncrypt, and Github Apps.", - "License": "MIT + file LICENSE", - "URL": "https://r-lib.r-universe.dev/jose", - "BugReports": "https://github.com/r-lib/jose/issues", - "Depends": [ - "openssl (>= 1.2.1)" - ], - "Imports": [ - "jsonlite" - ], - "RoxygenNote": "7.1.2", - "VignetteBuilder": "knitr", - "Suggests": [ - "spelling", - "testthat", - "knitr", - "rmarkdown" - ], - "Encoding": "UTF-8", - "Language": "en-US", - "NeedsCompilation": "no", - "Author": "Jeroen Ooms [aut, cre] ()", - "Maintainer": "Jeroen Ooms ", - "Repository": "CRAN" - }, "jquerylib": { "Package": "jquerylib", "Version": "0.1.4", @@ -3072,7 +2973,7 @@ }, "jsonlite": { "Package": "jsonlite", - "Version": "1.8.9", + "Version": "2.0.0", "Source": "Repository", "Title": "A Simple and Robust JSON Parser and Generator for R", "License": "MIT + file LICENSE", @@ -3094,7 +2995,7 @@ "R.rsp", "sf" ], - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2", "Encoding": "UTF-8", "NeedsCompilation": "yes", "Author": "Jeroen Ooms [aut, cre] (), Duncan Temple Lang [ctb], Lloyd Hilaiel [cph] (author of bundled libyajl)", @@ -3102,11 +3003,11 @@ }, "knitr": { "Package": "knitr", - "Version": "1.49", + "Version": "1.50", "Source": "Repository", "Type": "Package", "Title": "A General-Purpose Package for Dynamic Report Generation in R", - "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Abhraneel\", \"Sarma\", role = \"ctb\"), person(\"Adam\", \"Vogt\", role = \"ctb\"), person(\"Alastair\", \"Andrew\", role = \"ctb\"), person(\"Alex\", \"Zvoleff\", role = \"ctb\"), person(\"Amar\", \"Al-Zubaidi\", role = \"ctb\"), person(\"Andre\", \"Simon\", role = \"ctb\", comment = \"the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de\"), person(\"Aron\", \"Atkins\", role = \"ctb\"), person(\"Aaron\", \"Wolen\", role = \"ctb\"), person(\"Ashley\", \"Manton\", role = \"ctb\"), person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")), person(\"Ben\", \"Baumer\", role = \"ctb\"), person(\"Brian\", \"Diggs\", role = \"ctb\"), person(\"Brian\", \"Zhang\", role = \"ctb\"), person(\"Bulat\", \"Yapparov\", role = \"ctb\"), person(\"Cassio\", \"Pereira\", role = \"ctb\"), person(\"Christophe\", \"Dervieux\", role = \"ctb\"), person(\"David\", \"Hall\", role = \"ctb\"), person(\"David\", \"Hugh-Jones\", role = \"ctb\"), person(\"David\", \"Robinson\", role = \"ctb\"), person(\"Doug\", \"Hemken\", role = \"ctb\"), person(\"Duncan\", \"Murdoch\", role = \"ctb\"), person(\"Elio\", \"Campitelli\", role = \"ctb\"), person(\"Ellis\", \"Hughes\", role = \"ctb\"), person(\"Emily\", \"Riederer\", role = \"ctb\"), person(\"Fabian\", \"Hirschmann\", role = \"ctb\"), person(\"Fitch\", \"Simeon\", role = \"ctb\"), person(\"Forest\", \"Fang\", role = \"ctb\"), person(c(\"Frank\", \"E\", \"Harrell\", \"Jr\"), role = \"ctb\", comment = \"the Sweavel package at inst/misc/Sweavel.sty\"), person(\"Garrick\", \"Aden-Buie\", role = \"ctb\"), person(\"Gregoire\", \"Detrez\", role = \"ctb\"), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Hao\", \"Zhu\", role = \"ctb\"), person(\"Heewon\", \"Jeon\", role = \"ctb\"), person(\"Henrik\", \"Bengtsson\", role = \"ctb\"), person(\"Hiroaki\", \"Yutani\", role = \"ctb\"), person(\"Ian\", \"Lyttle\", role = \"ctb\"), person(\"Hodges\", \"Daniel\", role = \"ctb\"), person(\"Jacob\", \"Bien\", role = \"ctb\"), person(\"Jake\", \"Burkhead\", role = \"ctb\"), person(\"James\", \"Manton\", role = \"ctb\"), person(\"Jared\", \"Lander\", role = \"ctb\"), person(\"Jason\", \"Punyon\", role = \"ctb\"), person(\"Javier\", \"Luraschi\", role = \"ctb\"), person(\"Jeff\", \"Arnold\", role = \"ctb\"), person(\"Jenny\", \"Bryan\", role = \"ctb\"), person(\"Jeremy\", \"Ashkenas\", role = c(\"ctb\", \"cph\"), comment = \"the CSS file at inst/misc/docco-classic.css\"), person(\"Jeremy\", \"Stephens\", role = \"ctb\"), person(\"Jim\", \"Hester\", role = \"ctb\"), person(\"Joe\", \"Cheng\", role = \"ctb\"), person(\"Johannes\", \"Ranke\", role = \"ctb\"), person(\"John\", \"Honaker\", role = \"ctb\"), person(\"John\", \"Muschelli\", role = \"ctb\"), person(\"Jonathan\", \"Keane\", role = \"ctb\"), person(\"JJ\", \"Allaire\", role = \"ctb\"), person(\"Johan\", \"Toloe\", role = \"ctb\"), person(\"Jonathan\", \"Sidi\", role = \"ctb\"), person(\"Joseph\", \"Larmarange\", role = \"ctb\"), person(\"Julien\", \"Barnier\", role = \"ctb\"), person(\"Kaiyin\", \"Zhong\", role = \"ctb\"), person(\"Kamil\", \"Slowikowski\", role = \"ctb\"), person(\"Karl\", \"Forner\", role = \"ctb\"), person(c(\"Kevin\", \"K.\"), \"Smith\", role = \"ctb\"), person(\"Kirill\", \"Mueller\", role = \"ctb\"), person(\"Kohske\", \"Takahashi\", role = \"ctb\"), person(\"Lorenz\", \"Walthert\", role = \"ctb\"), person(\"Lucas\", \"Gallindo\", role = \"ctb\"), person(\"Marius\", \"Hofert\", role = \"ctb\"), person(\"Martin\", \"Modrák\", role = \"ctb\"), person(\"Michael\", \"Chirico\", role = \"ctb\"), person(\"Michael\", \"Friendly\", role = \"ctb\"), person(\"Michal\", \"Bojanowski\", role = \"ctb\"), person(\"Michel\", \"Kuhlmann\", role = \"ctb\"), person(\"Miller\", \"Patrick\", role = \"ctb\"), person(\"Nacho\", \"Caballero\", role = \"ctb\"), person(\"Nick\", \"Salkowski\", role = \"ctb\"), person(\"Niels Richard\", \"Hansen\", role = \"ctb\"), person(\"Noam\", \"Ross\", role = \"ctb\"), person(\"Obada\", \"Mahdi\", role = \"ctb\"), person(\"Pavel N.\", \"Krivitsky\", role = \"ctb\", comment=c(ORCID = \"0000-0002-9101-3362\")), person(\"Pedro\", \"Faria\", role = \"ctb\"), person(\"Qiang\", \"Li\", role = \"ctb\"), person(\"Ramnath\", \"Vaidyanathan\", role = \"ctb\"), person(\"Richard\", \"Cotton\", role = \"ctb\"), person(\"Robert\", \"Krzyzanowski\", role = \"ctb\"), person(\"Rodrigo\", \"Copetti\", role = \"ctb\"), person(\"Romain\", \"Francois\", role = \"ctb\"), person(\"Ruaridh\", \"Williamson\", role = \"ctb\"), person(\"Sagiru\", \"Mati\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1413-3974\")), person(\"Scott\", \"Kostyshak\", role = \"ctb\"), person(\"Sebastian\", \"Meyer\", role = \"ctb\"), person(\"Sietse\", \"Brouwer\", role = \"ctb\"), person(c(\"Simon\", \"de\"), \"Bernard\", role = \"ctb\"), person(\"Sylvain\", \"Rousseau\", role = \"ctb\"), person(\"Taiyun\", \"Wei\", role = \"ctb\"), person(\"Thibaut\", \"Assus\", role = \"ctb\"), person(\"Thibaut\", \"Lamadon\", role = \"ctb\"), person(\"Thomas\", \"Leeper\", role = \"ctb\"), person(\"Tim\", \"Mastny\", role = \"ctb\"), person(\"Tom\", \"Torsney-Weir\", role = \"ctb\"), person(\"Trevor\", \"Davis\", role = \"ctb\"), person(\"Viktoras\", \"Veitas\", role = \"ctb\"), person(\"Weicheng\", \"Zhu\", role = \"ctb\"), person(\"Wush\", \"Wu\", role = \"ctb\"), person(\"Zachary\", \"Foster\", role = \"ctb\"), person(\"Zhian N.\", \"Kamvar\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1458-7108\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")), person(\"Abhraneel\", \"Sarma\", role = \"ctb\"), person(\"Adam\", \"Vogt\", role = \"ctb\"), person(\"Alastair\", \"Andrew\", role = \"ctb\"), person(\"Alex\", \"Zvoleff\", role = \"ctb\"), person(\"Amar\", \"Al-Zubaidi\", role = \"ctb\"), person(\"Andre\", \"Simon\", role = \"ctb\", comment = \"the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de\"), person(\"Aron\", \"Atkins\", role = \"ctb\"), person(\"Aaron\", \"Wolen\", role = \"ctb\"), person(\"Ashley\", \"Manton\", role = \"ctb\"), person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")), person(\"Ben\", \"Baumer\", role = \"ctb\"), person(\"Brian\", \"Diggs\", role = \"ctb\"), person(\"Brian\", \"Zhang\", role = \"ctb\"), person(\"Bulat\", \"Yapparov\", role = \"ctb\"), person(\"Cassio\", \"Pereira\", role = \"ctb\"), person(\"Christophe\", \"Dervieux\", role = \"ctb\"), person(\"David\", \"Hall\", role = \"ctb\"), person(\"David\", \"Hugh-Jones\", role = \"ctb\"), person(\"David\", \"Robinson\", role = \"ctb\"), person(\"Doug\", \"Hemken\", role = \"ctb\"), person(\"Duncan\", \"Murdoch\", role = \"ctb\"), person(\"Elio\", \"Campitelli\", role = \"ctb\"), person(\"Ellis\", \"Hughes\", role = \"ctb\"), person(\"Emily\", \"Riederer\", role = \"ctb\"), person(\"Fabian\", \"Hirschmann\", role = \"ctb\"), person(\"Fitch\", \"Simeon\", role = \"ctb\"), person(\"Forest\", \"Fang\", role = \"ctb\"), person(c(\"Frank\", \"E\", \"Harrell\", \"Jr\"), role = \"ctb\", comment = \"the Sweavel package at inst/misc/Sweavel.sty\"), person(\"Garrick\", \"Aden-Buie\", role = \"ctb\"), person(\"Gregoire\", \"Detrez\", role = \"ctb\"), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Hao\", \"Zhu\", role = \"ctb\"), person(\"Heewon\", \"Jeon\", role = \"ctb\"), person(\"Henrik\", \"Bengtsson\", role = \"ctb\"), person(\"Hiroaki\", \"Yutani\", role = \"ctb\"), person(\"Ian\", \"Lyttle\", role = \"ctb\"), person(\"Hodges\", \"Daniel\", role = \"ctb\"), person(\"Jacob\", \"Bien\", role = \"ctb\"), person(\"Jake\", \"Burkhead\", role = \"ctb\"), person(\"James\", \"Manton\", role = \"ctb\"), person(\"Jared\", \"Lander\", role = \"ctb\"), person(\"Jason\", \"Punyon\", role = \"ctb\"), person(\"Javier\", \"Luraschi\", role = \"ctb\"), person(\"Jeff\", \"Arnold\", role = \"ctb\"), person(\"Jenny\", \"Bryan\", role = \"ctb\"), person(\"Jeremy\", \"Ashkenas\", role = c(\"ctb\", \"cph\"), comment = \"the CSS file at inst/misc/docco-classic.css\"), person(\"Jeremy\", \"Stephens\", role = \"ctb\"), person(\"Jim\", \"Hester\", role = \"ctb\"), person(\"Joe\", \"Cheng\", role = \"ctb\"), person(\"Johannes\", \"Ranke\", role = \"ctb\"), person(\"John\", \"Honaker\", role = \"ctb\"), person(\"John\", \"Muschelli\", role = \"ctb\"), person(\"Jonathan\", \"Keane\", role = \"ctb\"), person(\"JJ\", \"Allaire\", role = \"ctb\"), person(\"Johan\", \"Toloe\", role = \"ctb\"), person(\"Jonathan\", \"Sidi\", role = \"ctb\"), person(\"Joseph\", \"Larmarange\", role = \"ctb\"), person(\"Julien\", \"Barnier\", role = \"ctb\"), person(\"Kaiyin\", \"Zhong\", role = \"ctb\"), person(\"Kamil\", \"Slowikowski\", role = \"ctb\"), person(\"Karl\", \"Forner\", role = \"ctb\"), person(c(\"Kevin\", \"K.\"), \"Smith\", role = \"ctb\"), person(\"Kirill\", \"Mueller\", role = \"ctb\"), person(\"Kohske\", \"Takahashi\", role = \"ctb\"), person(\"Lorenz\", \"Walthert\", role = \"ctb\"), person(\"Lucas\", \"Gallindo\", role = \"ctb\"), person(\"Marius\", \"Hofert\", role = \"ctb\"), person(\"Martin\", \"Modrák\", role = \"ctb\"), person(\"Michael\", \"Chirico\", role = \"ctb\"), person(\"Michael\", \"Friendly\", role = \"ctb\"), person(\"Michal\", \"Bojanowski\", role = \"ctb\"), person(\"Michel\", \"Kuhlmann\", role = \"ctb\"), person(\"Miller\", \"Patrick\", role = \"ctb\"), person(\"Nacho\", \"Caballero\", role = \"ctb\"), person(\"Nick\", \"Salkowski\", role = \"ctb\"), person(\"Niels Richard\", \"Hansen\", role = \"ctb\"), person(\"Noam\", \"Ross\", role = \"ctb\"), person(\"Obada\", \"Mahdi\", role = \"ctb\"), person(\"Pavel N.\", \"Krivitsky\", role = \"ctb\", comment=c(ORCID = \"0000-0002-9101-3362\")), person(\"Pedro\", \"Faria\", role = \"ctb\"), person(\"Qiang\", \"Li\", role = \"ctb\"), person(\"Ramnath\", \"Vaidyanathan\", role = \"ctb\"), person(\"Richard\", \"Cotton\", role = \"ctb\"), person(\"Robert\", \"Krzyzanowski\", role = \"ctb\"), person(\"Rodrigo\", \"Copetti\", role = \"ctb\"), person(\"Romain\", \"Francois\", role = \"ctb\"), person(\"Ruaridh\", \"Williamson\", role = \"ctb\"), person(\"Sagiru\", \"Mati\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1413-3974\")), person(\"Scott\", \"Kostyshak\", role = \"ctb\"), person(\"Sebastian\", \"Meyer\", role = \"ctb\"), person(\"Sietse\", \"Brouwer\", role = \"ctb\"), person(c(\"Simon\", \"de\"), \"Bernard\", role = \"ctb\"), person(\"Sylvain\", \"Rousseau\", role = \"ctb\"), person(\"Taiyun\", \"Wei\", role = \"ctb\"), person(\"Thibaut\", \"Assus\", role = \"ctb\"), person(\"Thibaut\", \"Lamadon\", role = \"ctb\"), person(\"Thomas\", \"Leeper\", role = \"ctb\"), person(\"Tim\", \"Mastny\", role = \"ctb\"), person(\"Tom\", \"Torsney-Weir\", role = \"ctb\"), person(\"Trevor\", \"Davis\", role = \"ctb\"), person(\"Viktoras\", \"Veitas\", role = \"ctb\"), person(\"Weicheng\", \"Zhu\", role = \"ctb\"), person(\"Wush\", \"Wu\", role = \"ctb\"), person(\"Zachary\", \"Foster\", role = \"ctb\"), person(\"Zhian N.\", \"Kamvar\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1458-7108\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", "Description": "Provides a general-purpose tool for dynamic report generation in R using Literate Programming techniques.", "Depends": [ "R (>= 3.6.0)" @@ -3116,7 +3017,7 @@ "highr (>= 0.11)", "methods", "tools", - "xfun (>= 0.48)", + "xfun (>= 0.51)", "yaml (>= 2.1.19)" ], "Suggests": [ @@ -3146,7 +3047,7 @@ "testit", "tibble", "tikzDevice (>= 0.10)", - "tinytex (>= 0.46)", + "tinytex (>= 0.56)", "webshot", "rstudioapi", "svglite" @@ -3157,10 +3058,10 @@ "Encoding": "UTF-8", "VignetteBuilder": "litedown, knitr", "SystemRequirements": "Package vignettes based on R Markdown v2 or reStructuredText require Pandoc (http://pandoc.org). The function rst2pdf() requires rst2pdf (https://github.com/rst2pdf/rst2pdf).", - "Collate": "'block.R' 'cache.R' 'utils.R' 'citation.R' 'hooks-html.R' 'plot.R' 'defaults.R' 'concordance.R' 'engine.R' 'highlight.R' 'themes.R' 'header.R' 'hooks-asciidoc.R' 'hooks-chunk.R' 'hooks-extra.R' 'hooks-latex.R' 'hooks-md.R' 'hooks-rst.R' 'hooks-textile.R' 'hooks.R' 'output.R' 'package.R' 'pandoc.R' 'params.R' 'parser.R' 'pattern.R' 'rocco.R' 'spin.R' 'table.R' 'template.R' 'utils-conversion.R' 'utils-rd2html.R' 'utils-string.R' 'utils-sweave.R' 'utils-upload.R' 'utils-vignettes.R' 'zzz.R'", + "Collate": "'block.R' 'cache.R' 'citation.R' 'hooks-html.R' 'plot.R' 'utils.R' 'defaults.R' 'concordance.R' 'engine.R' 'highlight.R' 'themes.R' 'header.R' 'hooks-asciidoc.R' 'hooks-chunk.R' 'hooks-extra.R' 'hooks-latex.R' 'hooks-md.R' 'hooks-rst.R' 'hooks-textile.R' 'hooks.R' 'output.R' 'package.R' 'pandoc.R' 'params.R' 'parser.R' 'pattern.R' 'rocco.R' 'spin.R' 'table.R' 'template.R' 'utils-conversion.R' 'utils-rd2html.R' 'utils-string.R' 'utils-sweave.R' 'utils-upload.R' 'utils-vignettes.R' 'zzz.R'", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Author": "Yihui Xie [aut, cre] (), Abhraneel Sarma [ctb], Adam Vogt [ctb], Alastair Andrew [ctb], Alex Zvoleff [ctb], Amar Al-Zubaidi [ctb], Andre Simon [ctb] (the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de), Aron Atkins [ctb], Aaron Wolen [ctb], Ashley Manton [ctb], Atsushi Yasumoto [ctb] (), Ben Baumer [ctb], Brian Diggs [ctb], Brian Zhang [ctb], Bulat Yapparov [ctb], Cassio Pereira [ctb], Christophe Dervieux [ctb], David Hall [ctb], David Hugh-Jones [ctb], David Robinson [ctb], Doug Hemken [ctb], Duncan Murdoch [ctb], Elio Campitelli [ctb], Ellis Hughes [ctb], Emily Riederer [ctb], Fabian Hirschmann [ctb], Fitch Simeon [ctb], Forest Fang [ctb], Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty), Garrick Aden-Buie [ctb], Gregoire Detrez [ctb], Hadley Wickham [ctb], Hao Zhu [ctb], Heewon Jeon [ctb], Henrik Bengtsson [ctb], Hiroaki Yutani [ctb], Ian Lyttle [ctb], Hodges Daniel [ctb], Jacob Bien [ctb], Jake Burkhead [ctb], James Manton [ctb], Jared Lander [ctb], Jason Punyon [ctb], Javier Luraschi [ctb], Jeff Arnold [ctb], Jenny Bryan [ctb], Jeremy Ashkenas [ctb, cph] (the CSS file at inst/misc/docco-classic.css), Jeremy Stephens [ctb], Jim Hester [ctb], Joe Cheng [ctb], Johannes Ranke [ctb], John Honaker [ctb], John Muschelli [ctb], Jonathan Keane [ctb], JJ Allaire [ctb], Johan Toloe [ctb], Jonathan Sidi [ctb], Joseph Larmarange [ctb], Julien Barnier [ctb], Kaiyin Zhong [ctb], Kamil Slowikowski [ctb], Karl Forner [ctb], Kevin K. Smith [ctb], Kirill Mueller [ctb], Kohske Takahashi [ctb], Lorenz Walthert [ctb], Lucas Gallindo [ctb], Marius Hofert [ctb], Martin Modrák [ctb], Michael Chirico [ctb], Michael Friendly [ctb], Michal Bojanowski [ctb], Michel Kuhlmann [ctb], Miller Patrick [ctb], Nacho Caballero [ctb], Nick Salkowski [ctb], Niels Richard Hansen [ctb], Noam Ross [ctb], Obada Mahdi [ctb], Pavel N. Krivitsky [ctb] (), Pedro Faria [ctb], Qiang Li [ctb], Ramnath Vaidyanathan [ctb], Richard Cotton [ctb], Robert Krzyzanowski [ctb], Rodrigo Copetti [ctb], Romain Francois [ctb], Ruaridh Williamson [ctb], Sagiru Mati [ctb] (), Scott Kostyshak [ctb], Sebastian Meyer [ctb], Sietse Brouwer [ctb], Simon de Bernard [ctb], Sylvain Rousseau [ctb], Taiyun Wei [ctb], Thibaut Assus [ctb], Thibaut Lamadon [ctb], Thomas Leeper [ctb], Tim Mastny [ctb], Tom Torsney-Weir [ctb], Trevor Davis [ctb], Viktoras Veitas [ctb], Weicheng Zhu [ctb], Wush Wu [ctb], Zachary Foster [ctb], Zhian N. Kamvar [ctb] (), Posit Software, PBC [cph, fnd]", + "Author": "Yihui Xie [aut, cre] (, https://yihui.org), Abhraneel Sarma [ctb], Adam Vogt [ctb], Alastair Andrew [ctb], Alex Zvoleff [ctb], Amar Al-Zubaidi [ctb], Andre Simon [ctb] (the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de), Aron Atkins [ctb], Aaron Wolen [ctb], Ashley Manton [ctb], Atsushi Yasumoto [ctb] (), Ben Baumer [ctb], Brian Diggs [ctb], Brian Zhang [ctb], Bulat Yapparov [ctb], Cassio Pereira [ctb], Christophe Dervieux [ctb], David Hall [ctb], David Hugh-Jones [ctb], David Robinson [ctb], Doug Hemken [ctb], Duncan Murdoch [ctb], Elio Campitelli [ctb], Ellis Hughes [ctb], Emily Riederer [ctb], Fabian Hirschmann [ctb], Fitch Simeon [ctb], Forest Fang [ctb], Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty), Garrick Aden-Buie [ctb], Gregoire Detrez [ctb], Hadley Wickham [ctb], Hao Zhu [ctb], Heewon Jeon [ctb], Henrik Bengtsson [ctb], Hiroaki Yutani [ctb], Ian Lyttle [ctb], Hodges Daniel [ctb], Jacob Bien [ctb], Jake Burkhead [ctb], James Manton [ctb], Jared Lander [ctb], Jason Punyon [ctb], Javier Luraschi [ctb], Jeff Arnold [ctb], Jenny Bryan [ctb], Jeremy Ashkenas [ctb, cph] (the CSS file at inst/misc/docco-classic.css), Jeremy Stephens [ctb], Jim Hester [ctb], Joe Cheng [ctb], Johannes Ranke [ctb], John Honaker [ctb], John Muschelli [ctb], Jonathan Keane [ctb], JJ Allaire [ctb], Johan Toloe [ctb], Jonathan Sidi [ctb], Joseph Larmarange [ctb], Julien Barnier [ctb], Kaiyin Zhong [ctb], Kamil Slowikowski [ctb], Karl Forner [ctb], Kevin K. Smith [ctb], Kirill Mueller [ctb], Kohske Takahashi [ctb], Lorenz Walthert [ctb], Lucas Gallindo [ctb], Marius Hofert [ctb], Martin Modrák [ctb], Michael Chirico [ctb], Michael Friendly [ctb], Michal Bojanowski [ctb], Michel Kuhlmann [ctb], Miller Patrick [ctb], Nacho Caballero [ctb], Nick Salkowski [ctb], Niels Richard Hansen [ctb], Noam Ross [ctb], Obada Mahdi [ctb], Pavel N. Krivitsky [ctb] (), Pedro Faria [ctb], Qiang Li [ctb], Ramnath Vaidyanathan [ctb], Richard Cotton [ctb], Robert Krzyzanowski [ctb], Rodrigo Copetti [ctb], Romain Francois [ctb], Ruaridh Williamson [ctb], Sagiru Mati [ctb] (), Scott Kostyshak [ctb], Sebastian Meyer [ctb], Sietse Brouwer [ctb], Simon de Bernard [ctb], Sylvain Rousseau [ctb], Taiyun Wei [ctb], Thibaut Assus [ctb], Thibaut Lamadon [ctb], Thomas Leeper [ctb], Tim Mastny [ctb], Tom Torsney-Weir [ctb], Trevor Davis [ctb], Viktoras Veitas [ctb], Weicheng Zhu [ctb], Wush Wu [ctb], Zachary Foster [ctb], Zhian N. Kamvar [ctb] (), Posit Software, PBC [cph, fnd]", "Maintainer": "Yihui Xie ", "Repository": "CRAN" }, @@ -3181,11 +3082,12 @@ "stats", "graphics" ], - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "later": { "Package": "later", - "Version": "1.4.1", + "Version": "1.4.2", "Source": "Repository", "Type": "Package", "Title": "Utilities for Scheduling Functions to Execute Later with Event Loops", @@ -3218,9 +3120,9 @@ }, "lattice": { "Package": "lattice", - "Version": "0.22-6", + "Version": "0.22-7", "Source": "Repository", - "Date": "2024-03-20", + "Date": "2025-03-31", "Priority": "recommended", "Title": "Trellis Graphics for R", "Authors@R": "c(person(\"Deepayan\", \"Sarkar\", role = c(\"aut\", \"cre\"), email = \"deepayan.sarkar@r-project.org\", comment = c(ORCID = \"0000-0003-4107-1553\")), person(\"Felix\", \"Andrews\", role = \"ctb\"), person(\"Kevin\", \"Wright\", role = \"ctb\", comment = \"documentation\"), person(\"Neil\", \"Klepeis\", role = \"ctb\"), person(\"Johan\", \"Larsson\", role = \"ctb\", comment = \"miscellaneous improvements\"), person(\"Zhijian (Jason)\", \"Wen\", role = \"cph\", comment = \"filled contour code\"), person(\"Paul\", \"Murrell\", role = \"ctb\", email = \"paul@stat.auckland.ac.nz\"), person(\"Stefan\", \"Eng\", role = \"ctb\", comment = \"violin plot improvements\"), person(\"Achim\", \"Zeileis\", role = \"ctb\", comment = \"modern colors\"), person(\"Alexandre\", \"Courtiol\", role = \"ctb\", comment = \"generics for larrows, lpolygon, lrect and lsegments\") )", @@ -3340,7 +3242,8 @@ "NeedsCompilation": "yes", "Author": "Hadley Wickham [aut, cre], RStudio [cph]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN" + "Repository": "RSPM", + "Encoding": "UTF-8" }, "lifecycle": { "Package": "lifecycle", @@ -3385,21 +3288,21 @@ }, "lintr": { "Package": "lintr", - "Version": "3.1.2", + "Version": "3.2.0", "Source": "Repository", "Title": "A 'Linter' for R Code", "Authors@R": "c( person(\"Jim\", \"Hester\", , role = \"aut\"), person(\"Florent\", \"Angly\", role = \"aut\", comment = \"fangly\"), person(\"Russ\", \"Hyde\", role = \"aut\"), person(\"Michael\", \"Chirico\", email = \"michaelchirico4@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Kun\", \"Ren\", role = \"aut\"), person(\"Alexander\", \"Rosenstock\", role = \"aut\", comment = \"AshesITR\"), person(\"Indrajeet\", \"Patil\", , \"patilindrajeet.science@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0003-1995-6531\", Twitter = \"@patilindrajeets\")) )", "Description": "Checks adherence to a given style, syntax errors and possible semantic issues. Supports on the fly checking of R code edited with 'RStudio IDE', 'Emacs', 'Vim', 'Sublime Text', 'Atom' and 'Visual Studio Code'.", "License": "MIT + file LICENSE", - "URL": "https://github.com/r-lib/lintr, https://lintr.r-lib.org", + "URL": "https://lintr.r-lib.org, https://github.com/r-lib/lintr", "BugReports": "https://github.com/r-lib/lintr/issues", "Depends": [ - "R (>= 3.5)" + "R (>= 4.0)" ], "Imports": [ - "backports (>= 1.1.7)", + "backports (>= 1.4.0)", + "cli (>= 3.4.0)", "codetools", - "cyclocomp", "digest", "glue", "knitr", @@ -3411,15 +3314,13 @@ ], "Suggests": [ "bookdown", - "crayon", - "httr (>= 1.2.1)", + "cyclocomp", "jsonlite", - "mockery", - "patrick", + "patrick (>= 0.2.0)", "rlang", "rmarkdown", "rstudioapi (>= 0.2)", - "testthat (>= 3.1.5)", + "testthat (>= 3.2.1)", "tibble", "tufte", "withr (>= 2.5.0)" @@ -3429,10 +3330,11 @@ ], "VignetteBuilder": "knitr", "Config/Needs/website": "tidyverse/tidytemplate", + "Config/Needs/development": "pkgload, cli, testthat, patrick", "Config/testthat/edition": "3", "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", - "Collate": "'make_linter_from_xpath.R' 'xp_utils.R' 'utils.R' 'AAA.R' 'T_and_F_symbol_linter.R' 'absolute_path_linter.R' 'actions.R' 'addins.R' 'any_duplicated_linter.R' 'any_is_na_linter.R' 'assignment_linter.R' 'backport_linter.R' 'boolean_arithmetic_linter.R' 'brace_linter.R' 'cache.R' 'class_equals_linter.R' 'commas_linter.R' 'comment_linters.R' 'comments.R' 'condition_message_linter.R' 'conjunct_test_linter.R' 'consecutive_assertion_linter.R' 'cyclocomp_linter.R' 'declared_functions.R' 'deprecated.R' 'duplicate_argument_linter.R' 'empty_assignment_linter.R' 'equals_na_linter.R' 'exclude.R' 'expect_comparison_linter.R' 'expect_identical_linter.R' 'expect_length_linter.R' 'expect_lint.R' 'expect_named_linter.R' 'expect_not_linter.R' 'expect_null_linter.R' 'expect_s3_class_linter.R' 'expect_s4_class_linter.R' 'expect_true_false_linter.R' 'expect_type_linter.R' 'extract.R' 'extraction_operator_linter.R' 'fixed_regex_linter.R' 'for_loop_index_linter.R' 'function_argument_linter.R' 'function_left_parentheses_linter.R' 'function_return_linter.R' 'get_source_expressions.R' 'ids_with_token.R' 'if_not_else_linter.R' 'ifelse_censor_linter.R' 'implicit_assignment_linter.R' 'implicit_integer_linter.R' 'indentation_linter.R' 'infix_spaces_linter.R' 'inner_combine_linter.R' 'is_lint_level.R' 'is_numeric_linter.R' 'keyword_quote_linter.R' 'length_levels_linter.R' 'length_test_linter.R' 'lengths_linter.R' 'library_call_linter.R' 'line_length_linter.R' 'lint.R' 'linter_tag_docs.R' 'linter_tags.R' 'lintr-deprecated.R' 'lintr-package.R' 'literal_coercion_linter.R' 'make_linter_from_regex.R' 'matrix_apply_linter.R' 'methods.R' 'missing_argument_linter.R' 'missing_package_linter.R' 'namespace.R' 'namespace_linter.R' 'nested_ifelse_linter.R' 'nonportable_path_linter.R' 'numeric_leading_zero_linter.R' 'object_length_linter.R' 'object_name_linter.R' 'object_usage_linter.R' 'outer_negation_linter.R' 'package_hooks_linter.R' 'paren_body_linter.R' 'paste_linter.R' 'path_utils.R' 'pipe_call_linter.R' 'pipe_consistency_linter.R' 'pipe_continuation_linter.R' 'quotes_linter.R' 'redundant_equals_linter.R' 'redundant_ifelse_linter.R' 'regex_subset_linter.R' 'repeat_linter.R' 'routine_registration_linter.R' 'scalar_in_linter.R' 'semicolon_linter.R' 'seq_linter.R' 'settings.R' 'settings_utils.R' 'shared_constants.R' 'sort_linter.R' 'spaces_inside_linter.R' 'spaces_left_parentheses_linter.R' 'sprintf_linter.R' 'string_boundary_linter.R' 'strings_as_factors_linter.R' 'system_file_linter.R' 'trailing_blank_lines_linter.R' 'trailing_whitespace_linter.R' 'tree_utils.R' 'undesirable_function_linter.R' 'undesirable_operator_linter.R' 'unnecessary_concatenation_linter.R' 'unnecessary_lambda_linter.R' 'unnecessary_nested_if_linter.R' 'unnecessary_placeholder_linter.R' 'unreachable_code_linter.R' 'unused_import_linter.R' 'use_lintr.R' 'vector_logic_linter.R' 'whitespace_linter.R' 'with.R' 'with_id.R' 'xml_nodes_to_lints.R' 'yoda_test_linter.R' 'zzz.R'", + "RoxygenNote": "7.3.2", + "Collate": "'make_linter_from_xpath.R' 'xp_utils.R' 'utils.R' 'AAA.R' 'T_and_F_symbol_linter.R' 'absolute_path_linter.R' 'actions.R' 'addins.R' 'any_duplicated_linter.R' 'any_is_na_linter.R' 'assignment_linter.R' 'backport_linter.R' 'boolean_arithmetic_linter.R' 'brace_linter.R' 'cache.R' 'class_equals_linter.R' 'commas_linter.R' 'commented_code_linter.R' 'comparison_negation_linter.R' 'condition_call_linter.R' 'condition_message_linter.R' 'conjunct_test_linter.R' 'consecutive_assertion_linter.R' 'consecutive_mutate_linter.R' 'cyclocomp_linter.R' 'declared_functions.R' 'deprecated.R' 'duplicate_argument_linter.R' 'empty_assignment_linter.R' 'equals_na_linter.R' 'exclude.R' 'expect_comparison_linter.R' 'expect_identical_linter.R' 'expect_length_linter.R' 'expect_lint.R' 'expect_named_linter.R' 'expect_not_linter.R' 'expect_null_linter.R' 'expect_s3_class_linter.R' 'expect_s4_class_linter.R' 'expect_true_false_linter.R' 'expect_type_linter.R' 'extract.R' 'fixed_regex_linter.R' 'for_loop_index_linter.R' 'function_argument_linter.R' 'function_left_parentheses_linter.R' 'function_return_linter.R' 'get_source_expressions.R' 'ids_with_token.R' 'if_not_else_linter.R' 'if_switch_linter.R' 'ifelse_censor_linter.R' 'implicit_assignment_linter.R' 'implicit_integer_linter.R' 'indentation_linter.R' 'infix_spaces_linter.R' 'inner_combine_linter.R' 'is_lint_level.R' 'is_numeric_linter.R' 'keyword_quote_linter.R' 'length_levels_linter.R' 'length_test_linter.R' 'lengths_linter.R' 'library_call_linter.R' 'line_length_linter.R' 'lint.R' 'linter_tag_docs.R' 'linter_tags.R' 'lintr-deprecated.R' 'lintr-package.R' 'list_comparison_linter.R' 'literal_coercion_linter.R' 'make_linter_from_regex.R' 'matrix_apply_linter.R' 'methods.R' 'missing_argument_linter.R' 'missing_package_linter.R' 'namespace.R' 'namespace_linter.R' 'nested_ifelse_linter.R' 'nested_pipe_linter.R' 'nonportable_path_linter.R' 'shared_constants.R' 'nrow_subset_linter.R' 'numeric_leading_zero_linter.R' 'nzchar_linter.R' 'object_length_linter.R' 'object_name_linter.R' 'object_overwrite_linter.R' 'object_usage_linter.R' 'one_call_pipe_linter.R' 'outer_negation_linter.R' 'package_hooks_linter.R' 'paren_body_linter.R' 'paste_linter.R' 'path_utils.R' 'pipe_call_linter.R' 'pipe_consistency_linter.R' 'pipe_continuation_linter.R' 'pipe_return_linter.R' 'print_linter.R' 'quotes_linter.R' 'redundant_equals_linter.R' 'redundant_ifelse_linter.R' 'regex_subset_linter.R' 'rep_len_linter.R' 'repeat_linter.R' 'return_linter.R' 'routine_registration_linter.R' 'sample_int_linter.R' 'scalar_in_linter.R' 'semicolon_linter.R' 'seq_linter.R' 'settings.R' 'settings_utils.R' 'sort_linter.R' 'source_utils.R' 'spaces_inside_linter.R' 'spaces_left_parentheses_linter.R' 'sprintf_linter.R' 'stopifnot_all_linter.R' 'string_boundary_linter.R' 'strings_as_factors_linter.R' 'system_file_linter.R' 'terminal_close_linter.R' 'todo_comment_linter.R' 'trailing_blank_lines_linter.R' 'trailing_whitespace_linter.R' 'tree_utils.R' 'undesirable_function_linter.R' 'undesirable_operator_linter.R' 'unnecessary_concatenation_linter.R' 'unnecessary_lambda_linter.R' 'unnecessary_nesting_linter.R' 'unnecessary_placeholder_linter.R' 'unreachable_code_linter.R' 'unused_import_linter.R' 'use_lintr.R' 'vector_logic_linter.R' 'which_grepl_linter.R' 'whitespace_linter.R' 'with.R' 'with_id.R' 'xml_nodes_to_lints.R' 'xml_utils.R' 'yoda_test_linter.R' 'zzz.R'", "Language": "en-US", "NeedsCompilation": "no", "Author": "Jim Hester [aut], Florent Angly [aut] (fangly), Russ Hyde [aut], Michael Chirico [aut, cre], Kun Ren [aut], Alexander Rosenstock [aut] (AshesITR), Indrajeet Patil [aut] (, @patilindrajeets)", @@ -3463,7 +3365,8 @@ "NeedsCompilation": "no", "Author": "Henrik Bengtsson [aut, cre, cph]", "Maintainer": "Henrik Bengtsson ", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "lmtest": { "Package": "lmtest", @@ -3495,7 +3398,8 @@ "NeedsCompilation": "yes", "Author": "Torsten Hothorn [aut] (), Achim Zeileis [aut, cre] (), Richard W. Farebrother [aut] (pan.f), Clint Cummins [aut] (pan.f), Giovanni Millo [ctb], David Mitchell [ctb]", "Maintainer": "Achim Zeileis ", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "logger": { "Package": "logger", @@ -3662,10 +3566,9 @@ }, "mgcv": { "Package": "mgcv", - "Version": "1.9-1", + "Version": "1.9-3", "Source": "Repository", - "Author": "Simon Wood ", - "Maintainer": "Simon Wood ", + "Authors@R": "person(given = \"Simon\", family = \"Wood\", role = c(\"aut\", \"cre\"), email = \"simon.wood@r-project.org\")", "Title": "Mixed GAM Computation Vehicle with Automatic Smoothness Estimation", "Description": "Generalized additive (mixed) models, some of their extensions and other generalized ridge regression with multiple smoothing parameter estimation by (Restricted) Marginal Likelihood, Generalized Cross Validation and similar, or using iterated nested Laplace approximation for fully Bayesian inference. See Wood (2017) for an overview. Includes a gam() function, a wide variety of smoothers, 'JAGS' support and distributions beyond the exponential family.", "Priority": "recommended", @@ -3690,15 +3593,17 @@ "ByteCompile": "yes", "License": "GPL (>= 2)", "NeedsCompilation": "yes", + "Author": "Simon Wood [aut, cre]", + "Maintainer": "Simon Wood ", "Repository": "CRAN" }, "mime": { "Package": "mime", - "Version": "0.12", + "Version": "0.13", "Source": "Repository", "Type": "Package", "Title": "Map Filenames to MIME Types", - "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Jeffrey\", \"Horner\", role = \"ctb\"), person(\"Beilei\", \"Bian\", role = \"ctb\") )", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")), person(\"Jeffrey\", \"Horner\", role = \"ctb\"), person(\"Beilei\", \"Bian\", role = \"ctb\") )", "Description": "Guesses the MIME type from a filename extension using the data derived from /etc/mime.types in UNIX-type systems.", "Imports": [ "tools" @@ -3706,107 +3611,87 @@ "License": "GPL", "URL": "https://github.com/yihui/mime", "BugReports": "https://github.com/yihui/mime/issues", - "RoxygenNote": "7.1.1", + "RoxygenNote": "7.3.2", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Author": "Yihui Xie [aut, cre] (), Jeffrey Horner [ctb], Beilei Bian [ctb]", + "Author": "Yihui Xie [aut, cre] (, https://yihui.org), Jeffrey Horner [ctb], Beilei Bian [ctb]", "Maintainer": "Yihui Xie ", "Repository": "CRAN" }, "mirai": { "Package": "mirai", - "Version": "2.1.0", + "Version": "2.4.1", "Source": "Repository", "Type": "Package", "Title": "Minimalist Async Evaluation Framework for R", - "Description": "Designed for simplicity, a 'mirai' evaluates an R expression asynchronously in a parallel process, locally or distributed over the network. The result is automatically available upon completion. Modern networking and concurrency, built on 'nanonext' and 'NNG' (Nanomsg Next Gen), ensures reliable and efficient scheduling over fast inter-process communications or TCP/IP secured by TLS. Distributed computing can launch remote resources via SSH or cluster managers. An inherently queued architecture handles many more tasks than available processes, and requires no storage on the file system. Innovative features include support for otherwise non-exportable reference objects, event-driven promises, and asynchronous parallel map.", - "Authors@R": "c(person(given = \"Charlie\", family = \"Gao\", role = c(\"aut\", \"cre\"), email = \"charlie.gao@shikokuchuo.net\", comment = c(ORCID = \"0000-0002-0750-061X\")), person(given = \"Joe\", family = \"Cheng\", role = \"ctb\", email = \"joe@posit.co\"), person(given = \"Hibiki AI Limited\", role = \"cph\"), person(given = \"Posit Software, PBC\", role = \"cph\"))", - "License": "GPL (>= 3)", - "BugReports": "https://github.com/shikokuchuo/mirai/issues", - "URL": "https://shikokuchuo.net/mirai/, https://github.com/shikokuchuo/mirai/", - "Encoding": "UTF-8", + "Authors@R": "c( person(\"Charlie\", \"Gao\", , \"charlie.gao@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-0750-061X\")), person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(\"Hibiki AI Limited\", role = \"cph\") )", + "Description": "Designed for simplicity, a 'mirai' evaluates an R expression asynchronously in a parallel process, locally or distributed over the network. Modern networking and concurrency, built on 'nanonext' and 'NNG', ensures reliable scheduling over fast inter-process communications or TCP/IP secured by TLS. Launch remote resources via SSH or cluster managers for distributed computing. Scales efficiently to millions of tasks over thousands of connections, requiring no storage on the file system due to its inherently queued architecture. Innovative features include event-driven promises, asynchronous parallel map, and seamless serialization of otherwise non-exportable reference objects.", + "License": "MIT + file LICENSE", + "URL": "https://mirai.r-lib.org, https://github.com/r-lib/mirai", + "BugReports": "https://github.com/r-lib/mirai/issues", "Depends": [ "R (>= 3.6)" ], "Imports": [ - "nanonext (>= 1.5.0)" - ], - "Enhances": [ - "parallel", - "promises" + "nanonext (>= 1.6.2)" ], "Suggests": [ "cli", "litedown" ], - "VignetteBuilder": "litedown", - "RoxygenNote": "7.3.2", - "NeedsCompilation": "no", - "Author": "Charlie Gao [aut, cre] (), Joe Cheng [ctb], Hibiki AI Limited [cph], Posit Software, PBC [cph]", - "Maintainer": "Charlie Gao ", - "Repository": "CRAN" - }, - "munsell": { - "Package": "munsell", - "Version": "0.5.1", - "Source": "Repository", - "Type": "Package", - "Title": "Utilities for Using Munsell Colours", - "Author": "Charlotte Wickham ", - "Maintainer": "Charlotte Wickham ", - "Description": "Provides easy access to, and manipulation of, the Munsell colours. Provides a mapping between Munsell's original notation (e.g. \"5R 5/10\") and hexadecimal strings suitable for use directly in R graphics. Also provides utilities to explore slices through the Munsell colour tree, to transform Munsell colours and display colour palettes.", - "Suggests": [ - "ggplot2", - "testthat" - ], - "Imports": [ - "colorspace", - "methods" + "Enhances": [ + "parallel", + "promises" ], - "License": "MIT + file LICENSE", - "URL": "https://cran.r-project.org/package=munsell, https://github.com/cwickham/munsell/", - "RoxygenNote": "7.3.1", + "VignetteBuilder": "litedown", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/usethis/last-upkeep": "2025-04-23", "Encoding": "UTF-8", - "BugReports": "https://github.com/cwickham/munsell/issues", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", + "Author": "Charlie Gao [aut, cre] (ORCID: ), Joe Cheng [ctb], Posit Software, PBC [cph, fnd] (ROR: ), Hibiki AI Limited [cph]", + "Maintainer": "Charlie Gao ", "Repository": "CRAN" }, "nanonext": { "Package": "nanonext", - "Version": "1.5.2", + "Version": "1.6.2", "Source": "Repository", "Type": "Package", "Title": "NNG (Nanomsg Next Gen) Lightweight Messaging Library", + "Authors@R": "c( person(\"Charlie\", \"Gao\", , \"charlie.gao@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-0750-061X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")), person(\"Hibiki AI Limited\", role = \"cph\"), person(\"R Consortium\", role = \"fnd\") )", "Description": "R binding for NNG (Nanomsg Next Gen), a successor to ZeroMQ. NNG is a socket library for reliable, high-performance messaging over in-process, IPC, TCP, WebSocket and secure TLS transports. Implements 'Scalability Protocols', a standard for common communications patterns including publish/subscribe, request/reply and service discovery. As its own threaded concurrency framework, provides a toolkit for asynchronous programming and distributed computing. Intuitive 'aio' objects resolve automatically when asynchronous operations complete, and synchronisation primitives allow R to wait upon events signalled by concurrent threads.", - "Authors@R": "c(person(given = \"Charlie\", family = \"Gao\", role = c(\"aut\", \"cre\"), email = \"charlie.gao@shikokuchuo.net\", comment = c(ORCID = \"0000-0002-0750-061X\")), person(given = \"Hibiki AI Limited\", role = \"cph\"), person(given = \"R Consortium\", role = \"fnd\"))", - "License": "GPL (>= 3)", - "BugReports": "https://github.com/shikokuchuo/nanonext/issues", - "URL": "https://shikokuchuo.net/nanonext/, https://github.com/shikokuchuo/nanonext/", - "Encoding": "UTF-8", - "SystemRequirements": "'libnng' >= 1.9 and 'libmbedtls' >= 2.5, or 'cmake' and 'xz' to compile NNG and/or Mbed TLS included in package sources", + "License": "MIT + file LICENSE", + "URL": "https://nanonext.r-lib.org, https://github.com/r-lib/nanonext", + "BugReports": "https://github.com/r-lib/nanonext/issues", "Depends": [ "R (>= 3.6)" ], - "Enhances": [ - "promises" - ], "Suggests": [ "later", "litedown" ], + "Enhances": [ + "promises" + ], "VignetteBuilder": "litedown", - "RoxygenNote": "7.3.2", + "Biarch": "true", "Config/build/compilation-database": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/usethis/last-upkeep": "2025-04-23", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "SystemRequirements": "'libnng' >= 1.9 and 'libmbedtls' >= 2.5, or 'cmake' and 'xz' to compile NNG and/or Mbed TLS included in package sources", "NeedsCompilation": "yes", - "Author": "Charlie Gao [aut, cre] (), Hibiki AI Limited [cph], R Consortium [fnd]", - "Maintainer": "Charlie Gao ", + "Author": "Charlie Gao [aut, cre] (ORCID: ), Posit Software, PBC [cph, fnd] (ROR: ), Hibiki AI Limited [cph], R Consortium [fnd]", + "Maintainer": "Charlie Gao ", "Repository": "CRAN" }, "nlme": { "Package": "nlme", - "Version": "3.1-167", + "Version": "3.1-168", "Source": "Repository", - "Date": "2025-01-27", + "Date": "2025-03-31", "Priority": "recommended", "Title": "Linear and Nonlinear Mixed Effects Models", "Authors@R": "c(person(\"José\", \"Pinheiro\", role = \"aut\", comment = \"S version\"), person(\"Douglas\", \"Bates\", role = \"aut\", comment = \"up to 2007\"), person(\"Saikat\", \"DebRoy\", role = \"ctb\", comment = \"up to 2002\"), person(\"Deepayan\", \"Sarkar\", role = \"ctb\", comment = \"up to 2005\"), person(\"EISPACK authors\", role = \"ctb\", comment = \"src/rs.f\"), person(\"Siem\", \"Heisterkamp\", role = \"ctb\", comment = \"Author fixed sigma\"), person(\"Bert\", \"Van Willigen\",role = \"ctb\", comment = \"Programmer fixed sigma\"), person(\"Johannes\", \"Ranke\", role = \"ctb\", comment = \"varConstProp()\"), person(\"R Core Team\", email = \"R-core@R-project.org\", role = c(\"aut\", \"cre\"), comment = c(ROR = \"02zz1nj61\")))", @@ -3878,11 +3763,12 @@ "Maintainer": "Paul Gilbert ", "URL": "http://optimizer.r-forge.r-project.org/", "NeedsCompilation": "no", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "openssl": { "Package": "openssl", - "Version": "2.3.2", + "Version": "2.3.3", "Source": "Repository", "Type": "Package", "Title": "Toolkit for Encryption, Signatures and Certificates Based on OpenSSL", @@ -3909,44 +3795,10 @@ "RoxygenNote": "7.3.2", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Author": "Jeroen Ooms [aut, cre] (), Oliver Keyes [ctb]", + "Author": "Jeroen Ooms [aut, cre] (ORCID: ), Oliver Keyes [ctb]", "Maintainer": "Jeroen Ooms ", "Repository": "CRAN" }, - "packrat": { - "Package": "packrat", - "Version": "0.9.2", - "Source": "Repository", - "Type": "Package", - "Title": "A Dependency Management System for Projects and their R Package Dependencies", - "Authors@R": "c( person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")), person(\"Toph\", \"Allen\", role = \"aut\"), person(\"Kevin\", \"Ushey\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\"), person(\"Joe\", \"Cheng\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", - "Description": "Manage the R packages your project depends on in an isolated, portable, and reproducible way.", - "License": "GPL-2", - "URL": "https://github.com/rstudio/packrat", - "BugReports": "https://github.com/rstudio/packrat/issues", - "Depends": [ - "R (>= 3.0.0)" - ], - "Imports": [ - "tools", - "utils" - ], - "Suggests": [ - "devtools", - "httr", - "knitr", - "mockery", - "rmarkdown", - "testthat (>= 3.0.0)" - ], - "Config/testthat/edition": "3", - "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", - "NeedsCompilation": "no", - "Author": "Aron Atkins [aut, cre], Toph Allen [aut], Kevin Ushey [aut], Jonathan McPherson [aut], Joe Cheng [aut], JJ Allaire [aut], Posit Software, PBC [cph, fnd]", - "Maintainer": "Aron Atkins ", - "Repository": "CRAN" - }, "padr": { "Package": "padr", "Version": "0.6.3", @@ -3991,7 +3843,7 @@ }, "parallelly": { "Package": "parallelly", - "Version": "1.42.0", + "Version": "1.45.1", "Source": "Repository", "Title": "Enhancing the 'parallel' Package", "Imports": [ @@ -4011,16 +3863,17 @@ "ByteCompile": "TRUE", "URL": "https://parallelly.futureverse.org, https://github.com/futureverse/parallelly", "BugReports": "https://github.com/futureverse/parallelly/issues", + "Language": "en-US", "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", - "Author": "Henrik Bengtsson [aut, cre, cph] (), Mike Cheng [ctb]", + "Author": "Henrik Bengtsson [aut, cre, cph] (ORCID: ), Mike Cheng [ctb]", "Maintainer": "Henrik Bengtsson ", "Repository": "CRAN" }, "pillar": { "Package": "pillar", - "Version": "1.10.1", + "Version": "1.11.0", "Source": "Repository", "Title": "Coloured Formatting for Columns", "Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\"), person(given = \"RStudio\", role = \"cph\"))", @@ -4068,10 +3921,10 @@ "Config/testthat/start-first": "format_multi_fuzz, format_multi_fuzz_2, format_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/gha/extra-packages": "units=?ignore-before-r=4.3.0", "Config/Needs/website": "tidyverse/tidytemplate", "NeedsCompilation": "no", - "Author": "Kirill Müller [aut, cre] (), Hadley Wickham [aut], RStudio [cph]", + "Author": "Kirill Müller [aut, cre] (ORCID: ), Hadley Wickham [aut], RStudio [cph]", "Maintainer": "Kirill Müller ", "Repository": "CRAN" }, @@ -4109,10 +3962,10 @@ }, "pkgbuild": { "Package": "pkgbuild", - "Version": "1.4.6", + "Version": "1.4.8", "Source": "Repository", "Title": "Find Tools Needed to Build R Packages", - "Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", "Description": "Provides functions used to build R packages. Locates compilers needed to build R packages on various platforms and ensures the 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", @@ -4138,10 +3991,11 @@ ], "Config/Needs/website": "tidyverse/tidytemplate", "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-30", "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Author": "Hadley Wickham [aut], Jim Hester [aut], Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd]", + "Author": "Hadley Wickham [aut], Jim Hester [aut], Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd] (ROR: )", "Maintainer": "Gábor Csárdi ", "Repository": "CRAN" }, @@ -4220,7 +4074,7 @@ }, "plotly": { "Package": "plotly", - "Version": "4.10.4", + "Version": "4.11.0", "Source": "Repository", "Title": "Create Interactive Web Graphics via 'plotly.js'", "Authors@R": "c(person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"cpsievert1@gmail.com\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Chris\", \"Parmer\", role = \"aut\", email = \"chris@plot.ly\"), person(\"Toby\", \"Hocking\", role = \"aut\", email = \"tdhock5@gmail.com\"), person(\"Scott\", \"Chamberlain\", role = \"aut\", email = \"myrmecocystus@gmail.com\"), person(\"Karthik\", \"Ram\", role = \"aut\", email = \"karthik.ram@gmail.com\"), person(\"Marianne\", \"Corvellec\", role = \"aut\", email = \"marianne.corvellec@igdore.org\", comment = c(ORCID = \"0000-0002-1994-3581\")), person(\"Pedro\", \"Despouy\", role = \"aut\", email = \"pedro@plot.ly\"), person(\"Salim\", \"Brüggemann\", role = \"ctb\", email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Plotly Technologies Inc.\", role = \"cph\"))", @@ -4249,7 +4103,7 @@ "vctrs", "tibble", "lazyeval (>= 0.2.0)", - "rlang (>= 0.4.10)", + "rlang (>= 1.0.0)", "crosstalk", "purrr", "data.table", @@ -4265,7 +4119,7 @@ "testthat", "knitr", "shiny (>= 1.1.0)", - "shinytest (>= 1.3.0)", + "shinytest2", "curl", "rmarkdown", "Cairo", @@ -4283,14 +4137,15 @@ "palmerpenguins", "rversions", "reticulate", - "rsvg" + "rsvg", + "ggridges" ], "LazyData": "true", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2", "Encoding": "UTF-8", - "Config/Needs/check": "tidyverse/ggplot2, rcmdcheck, devtools, reshape2", + "Config/Needs/check": "tidyverse/ggplot2, ggobi/GGally, rcmdcheck, devtools, reshape2, s2", "NeedsCompilation": "no", - "Author": "Carson Sievert [aut, cre] (), Chris Parmer [aut], Toby Hocking [aut], Scott Chamberlain [aut], Karthik Ram [aut], Marianne Corvellec [aut] (), Pedro Despouy [aut], Salim Brüggemann [ctb] (), Plotly Technologies Inc. [cph]", + "Author": "Carson Sievert [aut, cre] (ORCID: ), Chris Parmer [aut], Toby Hocking [aut], Scott Chamberlain [aut], Karthik Ram [aut], Marianne Corvellec [aut] (ORCID: ), Pedro Despouy [aut], Salim Brüggemann [ctb] (ORCID: ), Plotly Technologies Inc. [cph]", "Maintainer": "Carson Sievert ", "Repository": "CRAN" }, @@ -4311,7 +4166,8 @@ ], "Collate": "'adjective.R' 'adverb.R' 'exclamation.R' 'verb.R' 'rpackage.R' 'package.R'", "NeedsCompilation": "no", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "prettyunits": { "Package": "prettyunits", @@ -4340,7 +4196,7 @@ }, "processx": { "Package": "processx", - "Version": "3.8.5", + "Version": "3.8.6", "Source": "Repository", "Title": "Execute and Control System Processes", "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0001-7098-9676\")), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\")) )", @@ -4380,34 +4236,43 @@ }, "prodlim": { "Package": "prodlim", - "Version": "2024.06.25", + "Version": "2025.04.28", "Source": "Repository", "Title": "Product-Limit Estimation for Censored Event History Analysis", - "Author": "Thomas A. Gerds", + "Authors@R": "person(given = c(\"Thomas\", \"A.\"), family = \"Gerds\", role = c(\"aut\", \"cre\"), email = \"tag@biostat.ku.dk\")", "Description": "Fast and user friendly implementation of nonparametric estimators for censored event history (survival) analysis. Kaplan-Meier and Aalen-Johansen method.", "Depends": [ - "R (>= 2.9.0)" + "R (>= 4.1.0)" ], "Imports": [ "Rcpp (>= 0.11.5)", "stats", + "rlang", "data.table", "grDevices", + "ggplot2", "graphics", "diagram", "survival", "KernSmooth", "lava" ], + "Suggests": [ + "tibble", + "pammtools", + "ggthemes" + ], "LinkingTo": [ "Rcpp" ], "Maintainer": "Thomas A. Gerds ", "BugReports": "https://github.com/tagteam/prodlim/issues", "License": "GPL (>= 2)", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", - "Repository": "CRAN" + "Author": "Thomas A. Gerds [aut, cre]", + "Repository": "CRAN", + "Encoding": "UTF-8" }, "progress": { "Package": "progress", @@ -4487,15 +4352,16 @@ "NeedsCompilation": "no", "Author": "Henrik Bengtsson [aut, cre, cph] ()", "Maintainer": "Henrik Bengtsson ", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "promises": { "Package": "promises", - "Version": "1.3.2", + "Version": "1.3.3", "Source": "Repository", "Type": "Package", "Title": "Abstractions for Promise-Based Asynchronous Programming", - "Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Authors@R": "c( person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", "Description": "Provides fundamental abstractions for doing asynchronous programming in R using promises. Asynchronous programming is useful for allowing a single R process to orchestrate multiple tasks in the background while also attending to something else. Semantics are similar to 'JavaScript' promises, but with a syntax that is idiomatic R.", "License": "MIT + file LICENSE", "URL": "https://rstudio.github.io/promises/, https://github.com/rstudio/promises", @@ -4515,7 +4381,7 @@ "purrr", "rmarkdown", "spelling", - "testthat", + "testthat (>= 3.0.0)", "vembedr" ], "LinkingTo": [ @@ -4523,18 +4389,20 @@ "Rcpp" ], "VignetteBuilder": "knitr", - "Config/Needs/website": "rsconnect", + "Config/Needs/website": "rsconnect, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-05-27", "Encoding": "UTF-8", "Language": "en-US", "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", - "Author": "Joe Cheng [aut, cre], Posit Software, PBC [cph, fnd]", + "Author": "Joe Cheng [aut, cre], Posit Software, PBC [cph, fnd] (ROR: )", "Maintainer": "Joe Cheng ", "Repository": "CRAN" }, "ps": { "Package": "ps", - "Version": "1.8.1", + "Version": "1.9.1", "Source": "Repository", "Title": "List, Query, Manipulate System Processes", "Authors@R": "c( person(\"Jay\", \"Loden\", role = \"aut\"), person(\"Dave\", \"Daeschler\", role = \"aut\"), person(\"Giampaolo\", \"Rodola'\", role = \"aut\"), person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", @@ -4573,16 +4441,16 @@ }, "purrr": { "Package": "purrr", - "Version": "1.0.2", + "Version": "1.1.0", "Source": "Repository", "Title": "Functional Programming Tools", - "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = \"aut\"), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"https://ror.org/03wc8by49\")) )", "Description": "A complete and consistent functional programming toolkit for R.", "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)" + "R (>= 4.1)" ], "Imports": [ "cli (>= 3.6.1)", @@ -4592,11 +4460,13 @@ "vctrs (>= 0.6.3)" ], "Suggests": [ + "carrier (>= 0.2.0)", "covr", "dplyr (>= 0.7.8)", "httr", "knitr", "lubridate", + "mirai (>= 2.4.0)", "rmarkdown", "testthat (>= 3.0.0)", "tibble", @@ -4607,13 +4477,15 @@ ], "VignetteBuilder": "knitr", "Biarch": "true", + "Config/build/compilation-database": "true", "Config/Needs/website": "tidyverse/tidytemplate, tidyr", "Config/testthat/edition": "3", + "Config/testthat/parallel": "TRUE", "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", - "Author": "Hadley Wickham [aut, cre] (), Lionel Henry [aut], RStudio [cph, fnd]", - "Maintainer": "Hadley Wickham ", + "Author": "Hadley Wickham [aut, cre] (ORCID: ), Lionel Henry [aut], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Hadley Wickham ", "Repository": "CRAN" }, "quadprog": { @@ -4631,11 +4503,12 @@ ], "License": "GPL (>= 2)", "NeedsCompilation": "yes", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "quantmod": { "Package": "quantmod", - "Version": "0.4.26", + "Version": "0.4.28", "Source": "Repository", "Type": "Package", "Title": "Quantitative Financial Modelling Framework", @@ -4657,7 +4530,8 @@ "RSQLite", "timeSeries", "xml2", - "downloader" + "downloader", + "tinytest" ], "Description": "Specify, build, trade, and analyse quantitative financial trading strategies.", "LazyLoad": "yes", @@ -4667,7 +4541,8 @@ "NeedsCompilation": "no", "Author": "Jeffrey A. Ryan [aut, cph], Joshua M. Ulrich [cre, aut], Ethan B. Smith [ctb], Wouter Thielen [ctb], Paul Teetor [ctb], Steve Bronder [ctb]", "Maintainer": "Joshua M. Ulrich ", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "rappdirs": { "Package": "rappdirs", @@ -4832,17 +4707,17 @@ }, "recipes": { "Package": "recipes", - "Version": "1.1.0", + "Version": "1.3.1", "Source": "Repository", "Title": "Preprocessing and Feature Engineering Steps for Modeling", - "Authors@R": "c( person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = \"aut\"), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Authors@R": "c( person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", "Description": "A recipe prepares your data for modeling. We provide an extensible framework for pipeable sequences of feature engineering steps provides preprocessing tools to be applied to data. Statistical parameters for the steps can be estimated from an initial data set and then applied to other data sets. The resulting processed output can then be used as inputs for statistical or machine learning models.", "License": "MIT + file LICENSE", "URL": "https://github.com/tidymodels/recipes, https://recipes.tidymodels.org/", "BugReports": "https://github.com/tidymodels/recipes/issues", "Depends": [ "dplyr (>= 1.1.0)", - "R (>= 3.6)" + "R (>= 4.1)" ], "Imports": [ "cli", @@ -4850,7 +4725,7 @@ "generics (>= 0.1.2)", "glue", "gower", - "hardhat (>= 1.4.0)", + "hardhat (>= 1.4.1)", "ipred (>= 0.9-12)", "lifecycle (>= 1.0.3)", "lubridate (>= 1.8.0)", @@ -4858,6 +4733,7 @@ "Matrix", "purrr (>= 1.0.0)", "rlang (>= 1.1.0)", + "sparsevctrs (>= 0.3.3)", "stats", "tibble", "tidyr (>= 1.0.0)", @@ -4875,6 +4751,7 @@ "igraph", "kernlab", "knitr", + "methods", "modeldata (>= 0.1.1)", "parsnip (>= 1.2.0)", "RANN", @@ -4890,62 +4767,16 @@ ], "VignetteBuilder": "knitr", "RdMacros": "lifecycle", - "Config/Needs/website": "tidyverse/tidytemplate", + "Config/Needs/website": "tidyverse/tidytemplate, rmarkdown", "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-23", "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Author": "Max Kuhn [aut, cre], Hadley Wickham [aut], Emil Hvitfeldt [aut], Posit Software, PBC [cph, fnd]", + "Author": "Max Kuhn [aut, cre], Hadley Wickham [aut], Emil Hvitfeldt [aut], Posit Software, PBC [cph, fnd] (ROR: )", "Maintainer": "Max Kuhn ", "Repository": "CRAN" }, - "remotes": { - "Package": "remotes", - "Version": "2.5.0", - "Source": "Repository", - "Title": "R Package Installation from Remote Repositories, Including 'GitHub'", - "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Winston\", \"Chang\", role = \"aut\"), person(\"Martin\", \"Morgan\", role = \"aut\"), person(\"Dan\", \"Tenenbaum\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Ascent Digital Services\", role = \"cph\") )", - "Description": "Download and install R packages stored in 'GitHub', 'GitLab', 'Bitbucket', 'Bioconductor', or plain 'subversion' or 'git' repositories. This package provides the 'install_*' functions in 'devtools'. Indeed most of the code was copied over from 'devtools'.", - "License": "MIT + file LICENSE", - "URL": "https://remotes.r-lib.org, https://github.com/r-lib/remotes#readme", - "BugReports": "https://github.com/r-lib/remotes/issues", - "Depends": [ - "R (>= 3.0.0)" - ], - "Imports": [ - "methods", - "stats", - "tools", - "utils" - ], - "Suggests": [ - "brew", - "callr", - "codetools", - "covr", - "curl", - "git2r (>= 0.23.0)", - "knitr", - "mockery", - "pingr", - "pkgbuild (>= 1.0.1)", - "rmarkdown", - "rprojroot", - "testthat (>= 3.0.0)", - "webfakes", - "withr" - ], - "VignetteBuilder": "knitr", - "Config/Needs/website": "tidyverse/tidytemplate", - "Config/testthat/edition": "3", - "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", - "SystemRequirements": "Subversion for install_svn, git for install_git", - "NeedsCompilation": "no", - "Author": "Gábor Csárdi [aut, cre], Jim Hester [aut], Hadley Wickham [aut], Winston Chang [aut], Martin Morgan [aut], Dan Tenenbaum [aut], Posit Software, PBC [cph, fnd], Ascent Digital Services [cph]", - "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN" - }, "renv": { "Package": "renv", "Version": "1.1.4", @@ -5037,7 +4868,7 @@ }, "rhino": { "Package": "rhino", - "Version": "1.10.1", + "Version": "1.11.0", "Source": "Repository", "Title": "A Framework for Enterprise Shiny Applications", "Authors@R": "c( person(\"Kamil\", \"Żyła\", role = c(\"aut\", \"cre\"), email = \"opensource+kamil@appsilon.com\"), person(\"Jakub\", \"Nowicki\", role = \"aut\", email = \"kuba@appsilon.com\"), person(\"Leszek\", \"Siemiński\", role = \"aut\", email = \"leszek.sieminski@appsilon.com\"), person(\"Marek\", \"Rogala\", role = \"aut\", email = \"marek@appsilon.com\"), person(\"Recle\", \"Vibal\", role = \"aut\", email = \"recle.vibal@appsilon.com\"), person(\"Tymoteusz\", \"Makowski\", role = \"aut\", email = \"tymoteusz@appsilon.com\"), person(\"Rodrigo\", \"Basa\", role = \"aut\", email = \"rodrigo@appsilon.com\"), person(\"Eduardo\", \"Almeida\", role = \"ctb\", email = \"eduardo@appsilon.com\"), person(\"Appsilon Sp. z o.o.\", role = \"cph\", email = \"opensource@appsilon.com\") )", @@ -5054,6 +4885,7 @@ "box (>= 1.1.3)", "box.linters (>= 0.10.5)", "box.lsp", + "callr", "cli", "config", "fs", @@ -5074,6 +4906,7 @@ "Suggests": [ "covr", "knitr", + "lifecycle", "mockery", "rcmdcheck", "rex", @@ -5093,11 +4926,11 @@ }, "rlang": { "Package": "rlang", - "Version": "1.1.5", + "Version": "1.1.6", "Source": "Repository", "Title": "Functions for Base Types and Core R and 'Tidyverse' Features", "Description": "A toolbox for working with base types, core R features like the condition system, and core 'Tidyverse' features like tidy evaluation.", - "Authors@R": "c( person(\"Lionel\", \"Henry\", ,\"lionel@posit.co\", c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", ,\"hadley@posit.co\", \"aut\"), person(given = \"mikefc\", email = \"mikefc@coolbutuseless.com\", role = \"cph\", comment = \"Hash implementation based on Mike's xxhashlite\"), person(given = \"Yann\", family = \"Collet\", role = \"cph\", comment = \"Author of the embedded xxHash library\"), person(given = \"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", + "Authors@R": "c( person(\"Lionel\", \"Henry\", ,\"lionel@posit.co\", c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", ,\"hadley@posit.co\", \"aut\"), person(given = \"mikefc\", email = \"mikefc@coolbutuseless.com\", role = \"cph\", comment = \"Hash implementation based on Mike's xxhashlite\"), person(given = \"Yann\", family = \"Collet\", role = \"cph\", comment = \"Author of the embedded xxHash library\"), person(given = \"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", "License": "MIT + file LICENSE", "ByteCompile": "true", "Biarch": "true", @@ -5111,15 +4944,17 @@ "cli (>= 3.1.0)", "covr", "crayon", + "desc", "fs", "glue", "knitr", "magrittr", "methods", "pillar", + "pkgload", "rmarkdown", "stats", - "testthat (>= 3.0.0)", + "testthat (>= 3.2.0)", "tibble", "usethis", "vctrs (>= 0.2.3)", @@ -5132,6 +4967,7 @@ "RoxygenNote": "7.3.2", "URL": "https://rlang.r-lib.org, https://github.com/r-lib/rlang", "BugReports": "https://github.com/r-lib/rlang/issues", + "Config/build/compilation-database": "true", "Config/testthat/edition": "3", "Config/Needs/website": "dplyr, tidyverse/tidytemplate", "NeedsCompilation": "yes", @@ -5225,7 +5061,7 @@ }, "rprojroot": { "Package": "rprojroot", - "Version": "2.0.4", + "Version": "2.1.0", "Source": "Repository", "Title": "Finding Files in Project Subdirectories", "Authors@R": "person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\"))", @@ -5240,33 +5076,35 @@ "covr", "knitr", "lifecycle", - "mockr", "rlang", "rmarkdown", - "testthat (>= 3.0.0)", + "testthat (>= 3.2.0)", "withr" ], "VignetteBuilder": "knitr", "Config/testthat/edition": "3", "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2.9000", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "true", + "Config/Needs/website": "tidyverse/tidytemplate", "NeedsCompilation": "no", - "Author": "Kirill Müller [aut, cre] ()", + "Author": "Kirill Müller [aut, cre] (ORCID: )", "Maintainer": "Kirill Müller ", "Repository": "CRAN" }, "rsample": { "Package": "rsample", - "Version": "1.2.1", + "Version": "1.3.1", "Source": "Repository", "Title": "General Resampling Infrastructure", - "Authors@R": "c( person(\"Hannah\", \"Frick\", , \"hannah@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6049-5258\")), person(\"Fanny\", \"Chow\", , \"fannybchow@gmail.com\", role = \"aut\"), person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"), person(\"Michael\", \"Mahoney\", , \"mike.mahoney.218@gmail.com\", role = c(\"aut\"), comment = c(ORCID = \"0000-0003-2402-304X\")), person(\"Julia\", \"Silge\", , \"julia.silge@posit.co\", role = c(\"aut\"), comment = c(ORCID = \"0000-0002-3671-836X\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Authors@R": "c( person(\"Hannah\", \"Frick\", , \"hannah@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6049-5258\")), person(\"Fanny\", \"Chow\", , \"fannybchow@gmail.com\", role = \"aut\"), person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"), person(\"Michael\", \"Mahoney\", , \"mike.mahoney.218@gmail.com\", role = \"aut\", comment = c(ORCID = \"0000-0003-2402-304X\")), person(\"Julia\", \"Silge\", , \"julia.silge@posit.co\", role = \"aut\", comment = c(ORCID = \"0000-0002-3671-836X\")), person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", "Description": "Classes and functions to create and summarize different types of resampling objects (e.g. bootstrap, cross-validation).", "License": "MIT + file LICENSE", "URL": "https://rsample.tidymodels.org, https://github.com/tidymodels/rsample", "BugReports": "https://github.com/tidymodels/rsample/issues", "Depends": [ - "R (>= 3.6)" + "R (>= 4.1)" ], "Imports": [ "cli", @@ -5278,7 +5116,7 @@ "methods", "pillar", "purrr (>= 1.0.0)", - "rlang (>= 0.4.10)", + "rlang (>= 1.1.0)", "slider (>= 0.1.5)", "tibble", "tidyr", @@ -5302,71 +5140,13 @@ ], "VignetteBuilder": "knitr", "Config/Needs/website": "GGally, nlstools, tidymodels, tidyverse/tidytemplate", - "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", "Config/testthat/edition": "3", - "NeedsCompilation": "no", - "Author": "Hannah Frick [aut, cre] (), Fanny Chow [aut], Max Kuhn [aut], Michael Mahoney [aut] (), Julia Silge [aut] (), Hadley Wickham [aut], Posit Software, PBC [cph, fnd]", - "Maintainer": "Hannah Frick ", - "Repository": "CRAN" - }, - "rsconnect": { - "Package": "rsconnect", - "Version": "1.4.1", - "Source": "Repository", - "Type": "Package", - "Title": "Deploy Docs, Apps, and APIs to 'Posit Connect', 'shinyapps.io', and 'RPubs'", - "Authors@R": "c( person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")), person(\"Toph\", \"Allen\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", - "Description": "Programmatic deployment interface for 'RPubs', 'shinyapps.io', and 'Posit Connect'. Supported content types include R Markdown documents, Shiny applications, Plumber APIs, plots, and static web content.", - "License": "GPL-2", - "URL": "https://rstudio.github.io/rsconnect/, https://github.com/rstudio/rsconnect", - "BugReports": "https://github.com/rstudio/rsconnect/issues", - "Depends": [ - "R (>= 3.5.0)" - ], - "Imports": [ - "cli", - "curl", - "digest", - "jsonlite", - "lifecycle", - "openssl (>= 2.0.0)", - "PKI", - "packrat (>= 0.6)", - "renv (>= 1.0.0)", - "rlang (>= 1.0.0)", - "rstudioapi (>= 0.5)", - "tools", - "yaml (>= 2.1.5)", - "RcppTOML", - "jose", - "utils" - ], - "Suggests": [ - "Biobase", - "BiocManager", - "foreign", - "knitr", - "MASS", - "plumber (>= 0.3.2)", - "quarto", - "RCurl", - "reticulate", - "rmarkdown (>= 1.1)", - "shiny", - "testthat (>= 3.1.9)", - "webfakes", - "withr" - ], - "VignetteBuilder": "knitr, rmarkdown", - "Config/Needs/website": "tidyverse/tidytemplate", - "Config/testthat/edition": "3", - "Config/testthat/parallel": "true", + "Config/usethis/last-upkeep": "2025-04-23", "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Author": "Aron Atkins [aut, cre], Toph Allen [aut], Hadley Wickham [aut], Jonathan McPherson [aut], JJ Allaire [aut], Posit Software, PBC [cph, fnd]", - "Maintainer": "Aron Atkins ", + "Author": "Hannah Frick [aut, cre] (ORCID: ), Fanny Chow [aut], Max Kuhn [aut], Michael Mahoney [aut] (ORCID: ), Julia Silge [aut] (ORCID: ), Hadley Wickham [aut], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Hannah Frick ", "Repository": "CRAN" }, "rstudioapi": { @@ -5396,7 +5176,7 @@ }, "sass": { "Package": "sass", - "Version": "0.4.9", + "Version": "0.4.10", "Source": "Repository", "Type": "Package", "Title": "Syntactically Awesome Style Sheets ('Sass')", @@ -5406,7 +5186,7 @@ "URL": "https://rstudio.github.io/sass/, https://github.com/rstudio/sass", "BugReports": "https://github.com/rstudio/sass/issues", "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "SystemRequirements": "GNU make", "Imports": [ "fs (>= 1.2.4)", @@ -5432,16 +5212,16 @@ }, "scales": { "Package": "scales", - "Version": "1.3.0", + "Version": "1.4.0", "Source": "Repository", "Title": "Scale Functions for Visualization", - "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\")), person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Dana\", \"Seidel\", role = \"aut\"), person(\"Posit, PBC\", role = c(\"cph\", \"fnd\")) )", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"), person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0002-5147-4711\")), person(\"Dana\", \"Seidel\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", "Description": "Graphical scales map data to aesthetics, and provide methods for 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.6)" + "R (>= 4.1)" ], "Imports": [ "cli", @@ -5449,10 +5229,9 @@ "glue", "labeling", "lifecycle", - "munsell (>= 0.5)", "R6", "RColorBrewer", - "rlang (>= 1.0.0)", + "rlang (>= 1.1.0)", "viridisLite" ], "Suggests": [ @@ -5466,11 +5245,12 @@ ], "Config/Needs/website": "tidyverse/tidytemplate", "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-23", "Encoding": "UTF-8", "LazyLoad": "yes", - "RoxygenNote": "7.2.3", - "NeedsCompilation": "yes", - "Author": "Hadley Wickham [aut], Thomas Lin Pedersen [cre, aut] (), Dana Seidel [aut], Posit, PBC [cph, fnd]", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Hadley Wickham [aut], Thomas Lin Pedersen [cre, aut] (), Dana Seidel [aut], Posit Software, PBC [cph, fnd] (03wc8by49)", "Maintainer": "Thomas Lin Pedersen ", "Repository": "CRAN" }, @@ -5492,15 +5272,16 @@ "Description": "Functions for plotting graphical shapes such as ellipses, circles, cylinders, arrows, ...", "License": "GPL (>= 3)", "NeedsCompilation": "no", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "shiny": { "Package": "shiny", - "Version": "1.10.0", + "Version": "1.11.1", "Source": "Repository", "Type": "Package", "Title": "Web Application Framework for R", - "Authors@R": "c( person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"), person(\"JJ\", \"Allaire\", role = \"aut\", email = \"jj@posit.co\"), person(\"Carson\", \"Sievert\", role = \"aut\", email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Barret\", \"Schloerke\", role = \"aut\", email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Yihui\", \"Xie\", role = \"aut\", email = \"yihui@posit.co\"), person(\"Jeff\", \"Allen\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"jonathan@posit.co\"), person(\"Alan\", \"Dipert\", role = \"aut\"), person(\"Barbara\", \"Borges\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(family = \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library and jQuery UI library\"), person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"), person(family = \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt\"), person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"), person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"), person(family = \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(family = \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Prem Nawaz\", \"Khan\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Victor\", \"Tsaran\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Dennis\", \"Lembree\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Srinivasu\", \"Chakravarthula\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Cathy\", \"O'Connor\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(family = \"PayPal, Inc\", role = \"cph\", comment = \"Bootstrap accessibility plugin\"), person(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js library\"), person(\"Salmen\", \"Bejaoui\", role = c(\"ctb\", \"cph\"), comment = \"selectize-plugin-a11y library\"), person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"), comment = \"ion.rangeSlider library\"), person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"), comment = \"Javascript strftime library\"), person(family = \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables library\"), person(\"John\", \"Fraser\", role = c(\"ctb\", \"cph\"), comment = \"showdown.js library\"), person(\"John\", \"Gruber\", role = c(\"ctb\", \"cph\"), comment = \"showdown.js library\"), person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\"), person(family = \"R Core Team\", role = c(\"ctb\", \"cph\"), comment = \"tar implementation from R\") )", + "Authors@R": "c( person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\", comment = c(ORCID = \"0000-0002-1576-2126\")), person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"), person(\"JJ\", \"Allaire\", role = \"aut\", email = \"jj@posit.co\"), person(\"Carson\", \"Sievert\", role = \"aut\", email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Barret\", \"Schloerke\", role = \"aut\", email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(\"Yihui\", \"Xie\", role = \"aut\", email = \"yihui@posit.co\"), person(\"Jeff\", \"Allen\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"jonathan@posit.co\"), person(\"Alan\", \"Dipert\", role = \"aut\"), person(\"Barbara\", \"Borges\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(family = \"jQuery Foundation\", role = \"cph\", comment = \"jQuery library and jQuery UI library\"), person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"), person(family = \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt\"), person(\"Mark\", \"Otto\", role = \"ctb\", comment = \"Bootstrap library\"), person(\"Jacob\", \"Thornton\", role = \"ctb\", comment = \"Bootstrap library\"), person(family = \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(family = \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Prem Nawaz\", \"Khan\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Victor\", \"Tsaran\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Dennis\", \"Lembree\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Srinivasu\", \"Chakravarthula\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(\"Cathy\", \"O'Connor\", role = \"ctb\", comment = \"Bootstrap accessibility plugin\"), person(family = \"PayPal, Inc\", role = \"cph\", comment = \"Bootstrap accessibility plugin\"), person(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap-datepicker library\"), person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js library\"), person(\"Salmen\", \"Bejaoui\", role = c(\"ctb\", \"cph\"), comment = \"selectize-plugin-a11y library\"), person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"), comment = \"ion.rangeSlider library\"), person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"), comment = \"Javascript strftime library\"), person(family = \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables library\"), person(\"John\", \"Fraser\", role = c(\"ctb\", \"cph\"), comment = \"showdown.js library\"), person(\"John\", \"Gruber\", role = c(\"ctb\", \"cph\"), comment = \"showdown.js library\"), person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"), comment = \"highlight.js library\"), person(given = \"R Core Team\", role = c(\"ctb\", \"cph\"), comment = \"tar implementation from R\") )", "Description": "Makes it incredibly easy to build interactive web applications with R. Automatic \"reactive\" binding between inputs and outputs and extensive prebuilt widgets make it possible to build beautiful, responsive, and powerful applications with minimal effort.", "License": "GPL-3 | file LICENSE", "Depends": [ @@ -5521,7 +5302,7 @@ "later (>= 1.0.0)", "promises (>= 1.3.2)", "tools", - "crayon", + "cli", "rlang (>= 0.4.10)", "fastmap (>= 1.1.1)", "withr", @@ -5536,7 +5317,7 @@ "datasets", "DT", "Cairo (>= 1.5-5)", - "testthat (>= 3.0.0)", + "testthat (>= 3.2.1)", "knitr (>= 1.6)", "markdown", "rmarkdown", @@ -5544,22 +5325,23 @@ "reactlog (>= 1.0.0)", "magrittr", "yaml", + "mirai", "future", "dygraphs", "ragg", "showtext", - "sass" + "sass", + "watcher" ], "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' 'bind-event.R' 'bookmark-state-local.R' 'bookmark-state.R' 'bootstrap-deprecated.R' 'bootstrap-layout.R' 'conditions.R' 'map.R' 'utils.R' 'bootstrap.R' 'busy-indicators-spinners.R' 'busy-indicators.R' 'cache-utils.R' 'deprecated.R' 'devmode.R' 'diagnose.R' 'extended-task.R' 'fileupload.R' 'graph.R' 'reactives.R' 'reactive-domains.R' 'history.R' 'hooks.R' 'html-deps.R' 'image-interact-opts.R' 'image-interact.R' 'imageutils.R' 'input-action.R' 'input-checkbox.R' 'input-checkboxgroup.R' 'input-date.R' 'input-daterange.R' 'input-file.R' 'input-numeric.R' 'input-password.R' 'input-radiobuttons.R' 'input-select.R' 'input-slider.R' 'input-submit.R' 'input-text.R' 'input-textarea.R' 'input-utils.R' 'insert-tab.R' 'insert-ui.R' 'jqueryui.R' 'knitr.R' 'middleware-shiny.R' 'middleware.R' 'timer.R' 'shiny.R' 'mock-session.R' 'modal.R' 'modules.R' 'notifications.R' 'priorityqueue.R' 'progress.R' 'react.R' 'reexports.R' 'render-cached-plot.R' 'render-plot.R' 'render-table.R' 'run-url.R' 'runapp.R' 'serializers.R' 'server-input-handlers.R' 'server-resource-paths.R' 'server.R' 'shiny-options.R' 'shiny-package.R' 'shinyapp.R' 'shinyui.R' 'shinywrappers.R' 'showcase.R' 'snapshot.R' 'staticimports.R' 'tar.R' 'test-export.R' 'test-server.R' 'test.R' 'update-input.R' 'utils-lang.R' 'version_bs_date_picker.R' 'version_ion_range_slider.R' 'version_jquery.R' 'version_jqueryui.R' 'version_selectize.R' 'version_strftime.R' 'viewer.R'", "RoxygenNote": "7.3.2", "Encoding": "UTF-8", - "RdMacros": "lifecycle", "Config/testthat/edition": "3", "Config/Needs/check": "shinytest2", "NeedsCompilation": "no", - "Author": "Winston Chang [aut, cre] (), Joe Cheng [aut], JJ Allaire [aut], Carson Sievert [aut] (), Barret Schloerke [aut] (), Yihui Xie [aut], Jeff Allen [aut], Jonathan McPherson [aut], Alan Dipert [aut], Barbara Borges [aut], Posit Software, PBC [cph, fnd], jQuery Foundation [cph] (jQuery library and jQuery UI library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt), jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt), Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library), Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Prem Nawaz Khan [ctb] (Bootstrap accessibility plugin), Victor Tsaran [ctb] (Bootstrap accessibility plugin), Dennis Lembree [ctb] (Bootstrap accessibility plugin), Srinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin), Cathy O'Connor [ctb] (Bootstrap accessibility plugin), PayPal, Inc [cph] (Bootstrap accessibility plugin), Stefan Petre [ctb, cph] (Bootstrap-datepicker library), Andrew Rowls [ctb, cph] (Bootstrap-datepicker library), Brian Reavis [ctb, cph] (selectize.js library), Salmen Bejaoui [ctb, cph] (selectize-plugin-a11y library), Denis Ineshin [ctb, cph] (ion.rangeSlider library), Sami Samhuri [ctb, cph] (Javascript strftime library), SpryMedia Limited [ctb, cph] (DataTables library), John Fraser [ctb, cph] (showdown.js library), John Gruber [ctb, cph] (showdown.js library), Ivan Sagalaev [ctb, cph] (highlight.js library), R Core Team [ctb, cph] (tar implementation from R)", + "Author": "Winston Chang [aut, cre] (ORCID: ), Joe Cheng [aut], JJ Allaire [aut], Carson Sievert [aut] (ORCID: ), Barret Schloerke [aut] (ORCID: ), Yihui Xie [aut], Jeff Allen [aut], Jonathan McPherson [aut], Alan Dipert [aut], Barbara Borges [aut], Posit Software, PBC [cph, fnd], jQuery Foundation [cph] (jQuery library and jQuery UI library), jQuery contributors [ctb, cph] (jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt), jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt), Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library), Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Prem Nawaz Khan [ctb] (Bootstrap accessibility plugin), Victor Tsaran [ctb] (Bootstrap accessibility plugin), Dennis Lembree [ctb] (Bootstrap accessibility plugin), Srinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin), Cathy O'Connor [ctb] (Bootstrap accessibility plugin), PayPal, Inc [cph] (Bootstrap accessibility plugin), Stefan Petre [ctb, cph] (Bootstrap-datepicker library), Andrew Rowls [ctb, cph] (Bootstrap-datepicker library), Brian Reavis [ctb, cph] (selectize.js library), Salmen Bejaoui [ctb, cph] (selectize-plugin-a11y library), Denis Ineshin [ctb, cph] (ion.rangeSlider library), Sami Samhuri [ctb, cph] (Javascript strftime library), SpryMedia Limited [ctb, cph] (DataTables library), John Fraser [ctb, cph] (showdown.js library), John Gruber [ctb, cph] (showdown.js library), Ivan Sagalaev [ctb, cph] (highlight.js library), R Core Team [ctb, cph] (tar implementation from R)", "Maintainer": "Winston Chang ", "Repository": "CRAN" }, @@ -5593,7 +5375,7 @@ }, "shinyWidgets": { "Package": "shinyWidgets", - "Version": "0.8.7", + "Version": "0.9.0", "Source": "Repository", "Title": "Custom Inputs Widgets for Shiny", "Authors@R": "c( person(\"Victor\", \"Perrier\", email = \"victor.perrier@dreamrs.fr\", role = c(\"aut\", \"cre\", \"cph\")), person(\"Fanny\", \"Meyer\", role = \"aut\"), person(\"David\", \"Granjon\", role = \"aut\"), person(\"Ian\", \"Fellows\", role = \"ctb\", comment = \"Methods for mutating vertical tabs & updateMultiInput\"), person(\"Wil\", \"Davis\", role = \"ctb\", comment = \"numericRangeInput function\"), person(\"Spencer\", \"Matthews\", role = \"ctb\", comment = \"autoNumeric methods\"), person(family = \"JavaScript and CSS libraries authors\", role = c(\"ctb\", \"cph\"), comment = \"All authors are listed in LICENSE.md\") )", @@ -5698,7 +5480,7 @@ }, "shinytest2": { "Package": "shinytest2", - "Version": "0.3.2", + "Version": "0.4.1", "Source": "Repository", "Title": "Testing for Shiny Applications", "Authors@R": "c( person(\"Barret\", \"Schloerke\", role = c(\"cre\", \"aut\"), email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")), person(family = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Winston\", \"Chang\", role =\"ctb\", email = \"winston@posit.co\", comment = \"Original author to rstudio/shinytest\"), person(\"Gábor\", \"Csárdi\", role = \"ctb\", email = \"gabor@posit.co\", comment = \"Original author to rstudio/shinytest\"), person(\"Hadley\", \"Wickham\", role = \"ctb\", email = \"hadley@posit.co\", comment = \"Original author to rstudio/shinytest\"), person(family = \"Mango Solutions\", role = c(\"cph\", \"ccp\"), comment = \"Original author to rstudio/shinytest\") )", @@ -5706,7 +5488,7 @@ "License": "MIT + file LICENSE", "Encoding": "UTF-8", "Language": "en-US", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "URL": "https://rstudio.github.io/shinytest2/, https://github.com/rstudio/shinytest2", "BugReports": "https://github.com/rstudio/shinytest2/issues", "VignetteBuilder": "knitr", @@ -5717,8 +5499,8 @@ "R6 (>= 2.4.0)", "callr", "checkmate (>= 2.0.0)", - "chromote (>= 0.1.2)", - "crayon", + "chromote (>= 0.5.0)", + "cli", "fs", "globals (>= 0.14.0)", "httr", @@ -5727,7 +5509,8 @@ "rlang (>= 1.0.0)", "rmarkdown", "shiny", - "withr" + "withr", + "lifecycle" ], "Suggests": [ "deSolve", @@ -5745,7 +5528,7 @@ "vdiffr (>= 1.0.0)", "spelling" ], - "Config/Needs/check": "rstudio/shiny", + "Config/Needs/check": "rstudio/shiny, bslib", "Config/Needs/website": "pkgdown, tidyverse/tidytemplate", "Config/testthat/edition": "3", "Collate": "'R6-helper.R' 'app-driver-chromote.R' 'app-driver-dir.R' 'app-driver-expect-download.R' 'app-driver-expect-js.R' 'app-driver-expect-screenshot.R' 'app-driver-expect-unique-names.R' 'app-driver-expect-values.R' 'app-driver-get-log.R' 'app-driver-initialize.R' 'app-driver-log-message.R' 'app-driver-message.R' 'app-driver-node.R' 'app-driver-set-inputs.R' 'app-driver-start.R' 'app-driver-stop.R' 'app-driver-timeout.R' 'app-driver-upload-file.R' 'app-driver-variant.R' 'app-driver-wait.R' 'app-driver-window.R' 'app-driver.R' 'chromote-methods.R' 'compare-screenshot-threshold.R' 'cpp11.R' 'expect-snapshot.R' 'expr-recurse.R' 'httr.R' 'migrate.R' 'missing-value.R' 'utils.R' 'platform.R' 'record-test-unique-name.R' 'record-test.R' 'rstudio.R' 'save-app.R' 'shiny-browser.R' 'shinytest2-logs.R' 'shinytest2-package.R' 'test-app.R' 'use.R'", @@ -5824,16 +5607,16 @@ }, "sparsevctrs": { "Package": "sparsevctrs", - "Version": "0.2.0", + "Version": "0.3.4", "Source": "Repository", "Title": "Sparse Vectors for Use in Data Frames", - "Authors@R": "c( person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-0679-1945\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Authors@R": "c( person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-0679-1945\")), person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", "Description": "Provides sparse vectors powered by ALTREP (Alternative Representations for R Objects) that behave like regular vectors, and can thus be used in data frames. Also provides tools to convert between sparse matrices and data frames with sparse columns and functions to interact with sparse vectors.", "License": "MIT + file LICENSE", "URL": "https://github.com/r-lib/sparsevctrs, https://r-lib.github.io/sparsevctrs/", "BugReports": "https://github.com/r-lib/sparsevctrs/issues", "Depends": [ - "R (>= 4.0.0)" + "R (>= 4.1)" ], "Imports": [ "cli (>= 3.4.0)", @@ -5854,16 +5637,17 @@ "Config/testthat/edition": "3", "Encoding": "UTF-8", "RoxygenNote": "7.3.2", + "Config/usethis/last-upkeep": "2025-05-25", "NeedsCompilation": "yes", - "Author": "Emil Hvitfeldt [aut, cre] (), Davis Vaughan [ctb], Posit Software, PBC [cph, fnd]", + "Author": "Emil Hvitfeldt [aut, cre] (ORCID: ), Davis Vaughan [ctb], Posit Software, PBC [cph, fnd] (ROR: )", "Maintainer": "Emil Hvitfeldt ", "Repository": "CRAN" }, "stringi": { "Package": "stringi", - "Version": "1.8.4", + "Version": "1.8.7", "Source": "Repository", - "Date": "2024-05-06", + "Date": "2025-03-27", "Title": "Fast and Portable Character String Processing Facilities", "Description": "A collection of character string/text/natural language processing tools for pattern searching (e.g., with 'Java'-like regular expressions or the 'Unicode' collation algorithm), random string generation, case mapping, string transliteration, concatenation, sorting, padding, wrapping, Unicode normalisation, date-time formatting and parsing, and many more. They are fast, consistent, convenient, and - thanks to 'ICU' (International Components for Unicode) - portable across all locales and platforms. Documentation about 'stringi' is provided via its website at and the paper by Gagolewski (2022, ).", "URL": "https://stringi.gagolewski.com/, https://github.com/gagolews/stringi, https://icu.unicode.org/", @@ -5880,11 +5664,12 @@ ], "Biarch": "TRUE", "License": "file LICENSE", - "Author": "Marek Gagolewski [aut, cre, cph] (), Bartek Tartanus [ctb], and others (stringi source code); Unicode, Inc. and others (ICU4C source code, Unicode Character Database)", - "Maintainer": "Marek Gagolewski ", - "RoxygenNote": "7.2.3", + "Authors@R": "c(person(given = \"Marek\", family = \"Gagolewski\", role = c(\"aut\", \"cre\", \"cph\"), email = \"marek@gagolewski.com\", comment = c(ORCID = \"0000-0003-0637-6028\")), person(given = \"Bartek\", family = \"Tartanus\", role = \"ctb\"), person(\"Unicode, Inc. and others\", role=\"ctb\", comment = \"ICU4C source code, Unicode Character Database\") )", + "RoxygenNote": "7.3.2", "Encoding": "UTF-8", "NeedsCompilation": "yes", + "Author": "Marek Gagolewski [aut, cre, cph] (), Bartek Tartanus [ctb], Unicode, Inc. and others [ctb] (ICU4C source code, Unicode Character Database)", + "Maintainer": "Marek Gagolewski ", "License_is_FOSS": "yes", "Repository": "CRAN" }, @@ -6095,7 +5880,7 @@ }, "tibble": { "Package": "tibble", - "Version": "3.2.1", + "Version": "3.3.0", "Source": "Repository", "Title": "Simple Data Frames", "Authors@R": "c(person(given = \"Kirill\", family = \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Hadley\", family = \"Wickham\", role = \"aut\", email = \"hadley@rstudio.com\"), person(given = \"Romain\", family = \"Francois\", role = \"ctb\", email = \"romain@r-enthusiasts.com\"), person(given = \"Jennifer\", family = \"Bryan\", role = \"ctb\", email = \"jenny@rstudio.com\"), person(given = \"RStudio\", role = c(\"cph\", \"fnd\")))", @@ -6107,7 +5892,7 @@ "R (>= 3.4.0)" ], "Imports": [ - "fansi (>= 0.4.0)", + "cli", "lifecycle (>= 1.0.0)", "magrittr", "methods", @@ -6115,7 +5900,7 @@ "pkgconfig", "rlang (>= 1.0.2)", "utils", - "vctrs (>= 0.4.2)" + "vctrs (>= 0.5.0)" ], "Suggests": [ "bench", @@ -6123,9 +5908,6 @@ "blob", "brio", "callr", - "cli", - "covr", - "crayon (>= 1.3.4)", "DiagrammeR", "dplyr", "evaluate", @@ -6136,9 +5918,7 @@ "htmltools", "knitr", "lubridate", - "mockr", "nycflights13", - "pkgbuild", "pkgload", "purrr", "rmarkdown", @@ -6149,7 +5929,7 @@ ], "VignetteBuilder": "knitr", "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2.9000", "Config/testthat/edition": "3", "Config/testthat/parallel": "true", "Config/testthat/start-first": "vignette-formats, as_tibble, add, invariants", @@ -6158,7 +5938,7 @@ "Config/autostyle/rmd": "false", "Config/Needs/website": "tidyverse/tidytemplate", "NeedsCompilation": "yes", - "Author": "Kirill Müller [aut, cre] (), Hadley Wickham [aut], Romain Francois [ctb], Jennifer Bryan [ctb], RStudio [cph, fnd]", + "Author": "Kirill Müller [aut, cre] (ORCID: ), Hadley Wickham [aut], Romain Francois [ctb], Jennifer Bryan [ctb], RStudio [cph, fnd]", "Maintainer": "Kirill Müller ", "Repository": "CRAN" }, @@ -6379,7 +6159,7 @@ }, "tinytex": { "Package": "tinytex", - "Version": "0.54", + "Version": "0.57", "Source": "Repository", "Type": "Package", "Title": "Helper Functions to Install and Maintain TeX Live, and Compile LaTeX Documents", @@ -6404,13 +6184,13 @@ }, "treesitter": { "Package": "treesitter", - "Version": "0.1.0", + "Version": "0.3.0", "Source": "Repository", "Title": "Bindings to 'Tree-Sitter'", "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Tree-sitter authors\", role = \"cph\", comment = \"Tree-sitter C library\") )", "Description": "Provides bindings to 'Tree-sitter', an incremental parsing system for programming tools. 'Tree-sitter' builds concrete syntax trees for source files of any language, and can efficiently update those syntax trees as the source file is edited. It also includes a robust error recovery system that provides useful parse results even in the presence of syntax errors.", "License": "MIT + file LICENSE", - "URL": "https://github.com/DavisVaughan/r-tree-sitter", + "URL": "https://github.com/DavisVaughan/r-tree-sitter, https://davisvaughan.github.io/r-tree-sitter/", "BugReports": "https://github.com/DavisVaughan/r-tree-sitter/issues", "Depends": [ "R (>= 4.3.0)" @@ -6423,12 +6203,13 @@ ], "Suggests": [ "testthat (>= 3.0.0)", - "treesitter.r" + "treesitter.r (>= 1.1.0)" ], + "Config/build/compilation-database": "true", "Config/Needs/website": "tidyverse/tidytemplate", "Config/testthat/edition": "3", "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", "Author": "Davis Vaughan [aut, cre], Posit Software, PBC [cph, fnd], Tree-sitter authors [cph] (Tree-sitter C library)", "Maintainer": "Davis Vaughan ", @@ -6436,7 +6217,7 @@ }, "treesitter.r": { "Package": "treesitter.r", - "Version": "1.1.0", + "Version": "1.2.0", "Source": "Repository", "Title": "'R' Grammar for 'Tree-Sitter'", "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Tree-sitter authors\", role = \"cph\", comment = \"Tree-sitter C headers and parser.c\") )", @@ -6484,7 +6265,8 @@ "NeedsCompilation": "yes", "Author": "Adrian Trapletti [aut], Kurt Hornik [aut, cre] (), Blake LeBaron [ctb] (BDS test code)", "Maintainer": "Kurt Hornik ", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "tsfeatures": { "Package": "tsfeatures", @@ -6532,7 +6314,7 @@ }, "tzdb": { "Package": "tzdb", - "Version": "0.4.0", + "Version": "0.5.0", "Source": "Repository", "Title": "Time Zone Database Information", "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Howard\", \"Hinnant\", role = \"cph\", comment = \"Author of the included date library\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", @@ -6541,20 +6323,20 @@ "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)" + "R (>= 4.0.0)" ], "Suggests": [ "covr", "testthat (>= 3.0.0)" ], "LinkingTo": [ - "cpp11 (>= 0.4.2)" + "cpp11 (>= 0.5.2)" ], "Biarch": "yes", "Config/Needs/website": "tidyverse/tidytemplate", "Config/testthat/edition": "3", "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", "Author": "Davis Vaughan [aut, cre], Howard Hinnant [cph] (Author of the included date library), Posit Software, PBC [cph, fnd]", "Maintainer": "Davis Vaughan ", @@ -6582,18 +6364,19 @@ "NeedsCompilation": "yes", "Author": "Bernhard Pfaff [aut, cre], Eric Zivot [ctb], Matthieu Stigler [ctb]", "Maintainer": "Bernhard Pfaff ", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "utf8": { "Package": "utf8", - "Version": "1.2.4", + "Version": "1.2.6", "Source": "Repository", "Title": "Unicode Text Processing", - "Authors@R": "c(person(given = c(\"Patrick\", \"O.\"), family = \"Perry\", role = c(\"aut\", \"cph\")), person(given = \"Kirill\", family = \"M\\u00fcller\", role = \"cre\", email = \"kirill@cynkra.com\"), person(given = \"Unicode, Inc.\", role = c(\"cph\", \"dtc\"), comment = \"Unicode Character Database\"))", + "Authors@R": "c(person(given = c(\"Patrick\", \"O.\"), family = \"Perry\", role = c(\"aut\", \"cph\")), person(given = \"Kirill\", family = \"M\\u00fcller\", role = \"cre\", email = \"kirill@cynkra.com\", comment = c(ORCID = \"0000-0002-1416-3412\")), person(given = \"Unicode, Inc.\", role = c(\"cph\", \"dtc\"), comment = \"Unicode Character Database\"))", "Description": "Process and print 'UTF-8' encoded international text (Unicode). Input, validate, normalize, encode, format, and display.", "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", + "URL": "https://krlmlr.github.io/utf8/, https://github.com/krlmlr/utf8", + "BugReports": "https://github.com/krlmlr/utf8/issues", "Depends": [ "R (>= 2.10)" ], @@ -6609,9 +6392,9 @@ "VignetteBuilder": "knitr, rmarkdown", "Config/testthat/edition": "3", "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2.9000", "NeedsCompilation": "yes", - "Author": "Patrick O. Perry [aut, cph], Kirill Müller [cre], Unicode, Inc. [cph, dtc] (Unicode Character Database)", + "Author": "Patrick O. Perry [aut, cph], Kirill Müller [cre] (ORCID: ), Unicode, Inc. [cph, dtc] (Unicode Character Database)", "Maintainer": "Kirill Müller ", "Repository": "CRAN" }, @@ -6631,7 +6414,8 @@ "URL": "https://www.rforge.net/uuid", "BugReports": "https://github.com/s-u/uuid/issues", "NeedsCompilation": "yes", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" }, "vctrs": { "Package": "vctrs", @@ -6780,7 +6564,7 @@ }, "waldo": { "Package": "waldo", - "Version": "0.6.1", + "Version": "0.6.2", "Source": "Repository", "Title": "Find Differences Between R Objects", "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", @@ -6845,7 +6629,7 @@ }, "websocket": { "Package": "websocket", - "Version": "1.4.2", + "Version": "1.4.4", "Source": "Repository", "Title": "'WebSocket' Client Library", "Description": "Provides a 'WebSocket' client interface for R. 'WebSocket' is a protocol for low-overhead real-time communication: .", @@ -6917,11 +6701,11 @@ }, "xfun": { "Package": "xfun", - "Version": "0.50", + "Version": "0.52", "Source": "Repository", "Type": "Package", "Title": "Supporting Functions for Packages Maintained by 'Yihui Xie'", - "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")), person(\"Wush\", \"Wu\", role = \"ctb\"), person(\"Daijiang\", \"Li\", role = \"ctb\"), person(\"Xianying\", \"Tan\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", role = \"ctb\", email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Christophe\", \"Dervieux\", role = \"ctb\"), person() )", + "Authors@R": "c( person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")), person(\"Wush\", \"Wu\", role = \"ctb\"), person(\"Daijiang\", \"Li\", role = \"ctb\"), person(\"Xianying\", \"Tan\", role = \"ctb\"), person(\"Salim\", \"Brüggemann\", role = \"ctb\", email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")), person(\"Christophe\", \"Dervieux\", role = \"ctb\"), person() )", "Description": "Miscellaneous functions commonly used in other packages maintained by 'Yihui Xie'.", "Depends": [ "R (>= 3.2.0)" @@ -6941,18 +6725,15 @@ "mime", "litedown (>= 0.4)", "commonmark", - "knitr (>= 1.47)", + "knitr (>= 1.50)", "remotes", "pak", - "rhub", - "renv", "curl", "xml2", "jsonlite", "magick", "yaml", - "qs", - "rmarkdown" + "qs" ], "License": "MIT + file LICENSE", "URL": "https://github.com/yihui/xfun", @@ -6961,19 +6742,19 @@ "RoxygenNote": "7.3.2", "VignetteBuilder": "litedown", "NeedsCompilation": "yes", - "Author": "Yihui Xie [aut, cre, cph] (), Wush Wu [ctb], Daijiang Li [ctb], Xianying Tan [ctb], Salim Brüggemann [ctb] (), Christophe Dervieux [ctb]", + "Author": "Yihui Xie [aut, cre, cph] (, https://yihui.org), Wush Wu [ctb], Daijiang Li [ctb], Xianying Tan [ctb], Salim Brüggemann [ctb] (), Christophe Dervieux [ctb]", "Maintainer": "Yihui Xie ", "Repository": "CRAN" }, "xml2": { "Package": "xml2", - "Version": "1.3.6", + "Version": "1.3.8", "Source": "Repository", "Title": "Parse XML", - "Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Jeroen\", \"Ooms\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Foundation\", role = \"ctb\", comment = \"Copy of R-project homepage cached as example\") )", - "Description": "Work with XML files using a simple, consistent interface. Built on top of the 'libxml2' C library.", + "Authors@R": "c( person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jim\", \"Hester\", role = \"aut\"), person(\"Jeroen\", \"Ooms\", email = \"jeroenooms@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"R Foundation\", role = \"ctb\", comment = \"Copy of R-project homepage cached as example\") )", + "Description": "Bindings to 'libxml2' for working with XML data using a simple, consistent interface based on 'XPath' expressions. Also supports XML schema validation; for 'XSLT' transformations see the 'xslt' package.", "License": "MIT + file LICENSE", - "URL": "https://xml2.r-lib.org/, https://github.com/r-lib/xml2", + "URL": "https://xml2.r-lib.org, https://r-lib.r-universe.dev/xml2", "BugReports": "https://github.com/r-lib/xml2/issues", "Depends": [ "R (>= 3.6.0)" @@ -6991,7 +6772,8 @@ "magrittr", "mockery", "rmarkdown", - "testthat (>= 3.0.0)" + "testthat (>= 3.2.0)", + "xslt" ], "VignetteBuilder": "knitr", "Config/Needs/website": "tidyverse/tidytemplate", @@ -7001,8 +6783,8 @@ "Collate": "'S4.R' 'as_list.R' 'xml_parse.R' 'as_xml_document.R' 'classes.R' 'format.R' 'import-standalone-obj-type.R' 'import-standalone-purrr.R' 'import-standalone-types-check.R' 'init.R' 'nodeset_apply.R' 'paths.R' 'utils.R' 'xml2-package.R' 'xml_attr.R' 'xml_children.R' 'xml_document.R' 'xml_find.R' 'xml_missing.R' 'xml_modify.R' 'xml_name.R' 'xml_namespaces.R' 'xml_node.R' 'xml_nodeset.R' 'xml_path.R' 'xml_schema.R' 'xml_serialize.R' 'xml_structure.R' 'xml_text.R' 'xml_type.R' 'xml_url.R' 'xml_write.R' 'zzz.R'", "Config/testthat/edition": "3", "NeedsCompilation": "yes", - "Author": "Hadley Wickham [aut, cre], Jim Hester [aut], Jeroen Ooms [aut], Posit Software, PBC [cph, fnd], R Foundation [ctb] (Copy of R-project homepage cached as example)", - "Maintainer": "Hadley Wickham ", + "Author": "Hadley Wickham [aut], Jim Hester [aut], Jeroen Ooms [aut, cre], Posit Software, PBC [cph, fnd], R Foundation [ctb] (Copy of R-project homepage cached as example)", + "Maintainer": "Jeroen Ooms ", "Repository": "CRAN" }, "xmlparsedata": { @@ -7057,7 +6839,8 @@ "License": "GPL (>= 2)", "Repository": "CRAN", "NeedsCompilation": "no", - "Author": "David B. Dahl [aut], David Scott [aut, cre], Charles Roosen [aut], Arni Magnusson [aut], Jonathan Swinton [aut], Ajay Shah [ctb], Arne Henningsen [ctb], Benno Puetz [ctb], Bernhard Pfaff [ctb], Claudio Agostinelli [ctb], Claudius Loehnert [ctb], David Mitchell [ctb], David Whiting [ctb], Fernando da Rosa [ctb], Guido Gay [ctb], Guido Schulz [ctb], Ian Fellows [ctb], Jeff Laake [ctb], John Walker [ctb], Jun Yan [ctb], Liviu Andronic [ctb], Markus Loecher [ctb], Martin Gubri [ctb], Matthieu Stigler [ctb], Robert Castelo [ctb], Seth Falcon [ctb], Stefan Edwards [ctb], Sven Garbade [ctb], Uwe Ligges [ctb]" + "Author": "David B. Dahl [aut], David Scott [aut, cre], Charles Roosen [aut], Arni Magnusson [aut], Jonathan Swinton [aut], Ajay Shah [ctb], Arne Henningsen [ctb], Benno Puetz [ctb], Bernhard Pfaff [ctb], Claudio Agostinelli [ctb], Claudius Loehnert [ctb], David Mitchell [ctb], David Whiting [ctb], Fernando da Rosa [ctb], Guido Gay [ctb], Guido Schulz [ctb], Ian Fellows [ctb], Jeff Laake [ctb], John Walker [ctb], Jun Yan [ctb], Liviu Andronic [ctb], Markus Loecher [ctb], Martin Gubri [ctb], Matthieu Stigler [ctb], Robert Castelo [ctb], Seth Falcon [ctb], Stefan Edwards [ctb], Sven Garbade [ctb], Uwe Ligges [ctb]", + "Encoding": "UTF-8" }, "xts": { "Package": "xts", @@ -7111,13 +6894,42 @@ "URL": "https://github.com/vubiostat/r-yaml/", "BugReports": "https://github.com/vubiostat/r-yaml/issues", "NeedsCompilation": "yes", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, + "zip": { + "Package": "zip", + "Version": "2.3.3", + "Source": "Repository", + "Title": "Cross-Platform 'zip' Compression", + "Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")), person(\"Kuba\", \"Podgórski\", role = \"ctb\"), person(\"Rich\", \"Geldreich\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\")) )", + "Description": "Cross-Platform 'zip' Compression Library. A replacement for the 'zip' function, that does not require any additional external tools on any platform.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/zip, https://r-lib.github.io/zip/", + "BugReports": "https://github.com/r-lib/zip/issues", + "Suggests": [ + "covr", + "pillar", + "processx", + "R6", + "testthat", + "withr" + ], + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-05-07", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2.9000", + "NeedsCompilation": "yes", + "Author": "Gábor Csárdi [aut, cre], Kuba Podgórski [ctb], Rich Geldreich [ctb], Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Gábor Csárdi ", "Repository": "CRAN" }, "zoo": { "Package": "zoo", - "Version": "1.8-12", + "Version": "1.8-14", "Source": "Repository", - "Date": "2023-04-11", + "Date": "2025-04-09", "Title": "S3 Infrastructure for Regular and Irregular Time Series (Z's Ordered Observations)", "Authors@R": "c(person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\", comment = c(ORCID = \"0000-0003-0918-3766\")), person(given = \"Gabor\", family = \"Grothendieck\", role = \"aut\", email = \"ggrothendieck@gmail.com\"), person(given = c(\"Jeffrey\", \"A.\"), family = \"Ryan\", role = \"aut\", email = \"jeff.a.ryan@gmail.com\"), person(given = c(\"Joshua\", \"M.\"), family = \"Ulrich\", role = \"ctb\", email = \"josh.m.ulrich@gmail.com\"), person(given = \"Felix\", family = \"Andrews\", role = \"ctb\", email = \"felix@nfrac.org\"))", "Description": "An S3 class with methods for totally ordered indexed observations. It is particularly aimed at irregular time series of numeric vectors/matrices and factors. zoo's key design goals are independence of a particular index/date/time class and consistency with ts and base R by providing methods to extend standard generics.", @@ -7129,13 +6941,14 @@ "AER", "coda", "chron", - "ggplot2 (>= 3.0.0)", + "ggplot2 (>= 3.5.0)", "mondate", "scales", "stinepack", "strucchange", "timeDate", "timeSeries", + "tinyplot", "tis", "tseries", "xts" @@ -7151,7 +6964,8 @@ "NeedsCompilation": "yes", "Author": "Achim Zeileis [aut, cre] (), Gabor Grothendieck [aut], Jeffrey A. Ryan [aut], Joshua M. Ulrich [ctb], Felix Andrews [ctb]", "Maintainer": "Achim Zeileis ", - "Repository": "CRAN" + "Repository": "CRAN", + "Encoding": "UTF-8" } } } From ddf8e3a460b1567c86585ec29291e268b0564c17 Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 31 Jul 2025 12:48:52 +0200 Subject: [PATCH 18/31] build: add rsconnect --- .../connect-user-metrics/dependencies.R | 1 + extensions/connect-user-metrics/renv.lock | 178 ++++++++++++++++++ 2 files changed, 179 insertions(+) diff --git a/extensions/connect-user-metrics/dependencies.R b/extensions/connect-user-metrics/dependencies.R index 058fbe8c..5b5c82e5 100644 --- a/extensions/connect-user-metrics/dependencies.R +++ b/extensions/connect-user-metrics/dependencies.R @@ -13,6 +13,7 @@ library(purrr) library(reactable) library(rhino) library(rlang) +library(rsconnect) library(shinycssloaders) library(shinyjs) library(shinytest2) diff --git a/extensions/connect-user-metrics/renv.lock b/extensions/connect-user-metrics/renv.lock index 20b50c6c..d2034d28 100644 --- a/extensions/connect-user-metrics/renv.lock +++ b/extensions/connect-user-metrics/renv.lock @@ -152,6 +152,28 @@ "Maintainer": "Martin Maechler ", "Repository": "CRAN" }, + "PKI": { + "Package": "PKI", + "Version": "0.1-14", + "Source": "Repository", + "Title": "Public Key Infrastucture for R Based on the X.509 Standard", + "Author": "Simon Urbanek ", + "Maintainer": "Simon Urbanek ", + "Depends": [ + "R (>= 2.9.0)", + "base64enc" + ], + "Enhances": [ + "gmp" + ], + "Description": "Public Key Infrastucture functions such as verifying certificates, RSA encription and signing which can be used to build PKI infrastructure and perform cryptographic tasks.", + "License": "GPL-2 | GPL-3 | file LICENSE", + "URL": "http://www.rforge.net/PKI", + "SystemRequirements": "OpenSSL library and headers (openssl-dev or similar)", + "NeedsCompilation": "yes", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, "R.cache": { "Package": "R.cache", "Version": "0.17.0", @@ -404,6 +426,37 @@ "Repository": "RSPM", "Encoding": "UTF-8" }, + "RcppTOML": { + "Package": "RcppTOML", + "Version": "0.2.3", + "Source": "Repository", + "Type": "Package", + "Title": "'Rcpp' Bindings to Parser for \"Tom's Obvious Markup Language\"", + "Date": "2025-03-08", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Mark\", \"Gillard\", role = \"aut\", comment = \"Author of 'toml++' header library\"))", + "Description": "The configuration format defined by 'TOML' (which expands to \"Tom's Obvious Markup Language\") specifies an excellent format (described at ) suitable for both human editing as well as the common uses of a machine-readable format. This package uses 'Rcpp' to connect to the 'toml++' parser written by Mark Gillard to R.", + "SystemRequirements": "A C++17 compiler", + "BugReports": "https://github.com/eddelbuettel/rcpptoml/issues", + "URL": "http://dirk.eddelbuettel.com/code/rcpp.toml.html", + "Imports": [ + "Rcpp (>= 1.0.8)" + ], + "Depends": [ + "R (>= 3.3.0)" + ], + "LinkingTo": [ + "Rcpp" + ], + "Suggests": [ + "tinytest" + ], + "License": "GPL (>= 2)", + "NeedsCompilation": "yes", + "Author": "Dirk Eddelbuettel [aut, cre] (), Mark Gillard [aut] (Author of 'toml++' header library)", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "RSPM", + "Encoding": "UTF-8" + }, "SQUAREM": { "Package": "SQUAREM", "Version": "2021.1", @@ -3799,6 +3852,42 @@ "Maintainer": "Jeroen Ooms ", "Repository": "CRAN" }, + "packrat": { + "Package": "packrat", + "Version": "0.9.3", + "Source": "Repository", + "Type": "Package", + "Title": "A Dependency Management System for Projects and their R Package Dependencies", + "Authors@R": "c( person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")), person(\"Toph\", \"Allen\", role = \"aut\"), person(\"Kevin\", \"Ushey\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\"), person(\"Joe\", \"Cheng\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Manage the R packages your project depends on in an isolated, portable, and reproducible way.", + "License": "GPL-2", + "URL": "https://github.com/rstudio/packrat", + "BugReports": "https://github.com/rstudio/packrat/issues", + "Depends": [ + "R (>= 3.0.0)" + ], + "Imports": [ + "tools", + "utils" + ], + "Suggests": [ + "devtools", + "httr", + "knitr", + "mockery", + "rmarkdown", + "testthat (>= 3.0.0)", + "webfakes", + "withr" + ], + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Aron Atkins [aut, cre], Toph Allen [aut], Kevin Ushey [aut], Jonathan McPherson [aut], Joe Cheng [aut], JJ Allaire [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Aron Atkins ", + "Repository": "CRAN" + }, "padr": { "Package": "padr", "Version": "0.6.3", @@ -5149,6 +5238,64 @@ "Maintainer": "Hannah Frick ", "Repository": "CRAN" }, + "rsconnect": { + "Package": "rsconnect", + "Version": "1.5.0", + "Source": "Repository", + "Type": "Package", + "Title": "Deploy Docs, Apps, and APIs to 'Posit Connect', 'shinyapps.io', and 'RPubs'", + "Authors@R": "c( person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")), person(\"Toph\", \"Allen\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Programmatic deployment interface for 'RPubs', 'shinyapps.io', and 'Posit Connect'. Supported content types include R Markdown documents, Shiny applications, Plumber APIs, plots, and static web content.", + "License": "GPL-2", + "URL": "https://rstudio.github.io/rsconnect/, https://github.com/rstudio/rsconnect", + "BugReports": "https://github.com/rstudio/rsconnect/issues", + "Depends": [ + "R (>= 3.5.0)" + ], + "Imports": [ + "cli", + "curl", + "digest", + "jsonlite", + "lifecycle", + "openssl (>= 2.0.0)", + "PKI", + "packrat (>= 0.6)", + "renv (>= 1.0.0)", + "rlang (>= 1.0.0)", + "rstudioapi (>= 0.5)", + "snowflakeauth", + "tools", + "yaml (>= 2.1.5)", + "utils" + ], + "Suggests": [ + "Biobase", + "BiocManager", + "foreign", + "knitr", + "MASS", + "plumber (>= 0.3.2)", + "quarto", + "RCurl", + "reticulate", + "rmarkdown (>= 1.1)", + "shiny", + "testthat (>= 3.1.9)", + "webfakes", + "withr" + ], + "VignetteBuilder": "knitr, rmarkdown", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/testthat/parallel": "true", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Author": "Aron Atkins [aut, cre], Toph Allen [aut], Hadley Wickham [aut], Jonathan McPherson [aut], JJ Allaire [aut], Posit Software, PBC [cph, fnd]", + "Maintainer": "Aron Atkins ", + "Repository": "CRAN" + }, "rstudioapi": { "Package": "rstudioapi", "Version": "0.17.1", @@ -5583,6 +5730,37 @@ "Maintainer": "Davis Vaughan ", "Repository": "CRAN" }, + "snowflakeauth": { + "Package": "snowflakeauth", + "Version": "0.1.2", + "Source": "Repository", + "Title": "Authentication Helpers for 'Snowflake'", + "Authors@R": "c( person(\"Aaron\", \"Jacobs\", , \"aaron.jacobs@posit.co\", role = c(\"aut\")), person(\"E. David\", \"Aja\", , \"david@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", + "Description": "Authentication helpers for 'Snowflake'. It provides compatibility with authentication approaches supported by the 'Snowflake Connector for Python' and the 'Snowflake CLI' .", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Imports": [ + "cli", + "curl", + "jsonlite", + "RcppTOML", + "rlang" + ], + "Suggests": [ + "jose", + "openssl", + "testthat (>= 3.0.0)", + "withr" + ], + "RoxygenNote": "7.3.2", + "Config/testthat/edition": "3", + "URL": "https://posit-dev.github.io/snowflakeauth/, https://github.com/posit-dev/snowflakeauth", + "BugReports": "https://github.com/posit-dev/snowflakeauth/issues", + "NeedsCompilation": "no", + "Author": "Aaron Jacobs [aut], E. David Aja [aut, cre], Posit Software, PBC [cph, fnd]", + "Maintainer": "E. David Aja ", + "Repository": "CRAN" + }, "sourcetools": { "Package": "sourcetools", "Version": "0.1.7-1", From c772ce23e45633d93100cdf4a7bbd01018e29cd0 Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 31 Jul 2025 12:49:06 +0200 Subject: [PATCH 19/31] refactor: address lints --- .../connect-user-metrics/app/logic/config_settings.R | 2 +- .../connect-user-metrics/app/logic/connect-extension.R | 2 +- extensions/connect-user-metrics/app/logic/utils.R | 8 ++++---- extensions/connect-user-metrics/app/main.R | 2 +- extensions/connect-user-metrics/app/view/navbar_section.R | 2 +- .../connect-user-metrics/app/view/session_duration.R | 2 +- extensions/connect-user-metrics/app/view/ui_components.R | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/extensions/connect-user-metrics/app/logic/config_settings.R b/extensions/connect-user-metrics/app/logic/config_settings.R index 0477fb71..cb98874a 100644 --- a/extensions/connect-user-metrics/app/logic/config_settings.R +++ b/extensions/connect-user-metrics/app/logic/config_settings.R @@ -32,7 +32,7 @@ read_config_yml <- function(file_path = "config.yml") { error = function(e) { message("Error in parsing config") message(e) - return(NULL) + NULL } ) } diff --git a/extensions/connect-user-metrics/app/logic/connect-extension.R b/extensions/connect-user-metrics/app/logic/connect-extension.R index 07d57c58..794aa49b 100644 --- a/extensions/connect-user-metrics/app/logic/connect-extension.R +++ b/extensions/connect-user-metrics/app/logic/connect-extension.R @@ -1,5 +1,5 @@ box::use( - rsconnect + rsconnect, ) rsconnect$writeManifest( diff --git a/extensions/connect-user-metrics/app/logic/utils.R b/extensions/connect-user-metrics/app/logic/utils.R index a55f2a79..17051bf8 100644 --- a/extensions/connect-user-metrics/app/logic/utils.R +++ b/extensions/connect-user-metrics/app/logic/utils.R @@ -40,7 +40,7 @@ map_wday <- function(dow) { "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday" ) - return(match(tolower(dow), dows)) + match(tolower(dow), dows) } #' @export @@ -73,9 +73,9 @@ get_goal_spec <- function(goal_df, agg_levels, date_agg) { as.integer() if (length(spec) == 0) { return(NULL) - } else { - return(spec) } + + spec } #' Filter dataframe by username @@ -129,7 +129,7 @@ create_image_path <- function(image_path) { ) } - return(file_path) + file_path } #' Get titles for applications and replace empty titles with names diff --git a/extensions/connect-user-metrics/app/main.R b/extensions/connect-user-metrics/app/main.R index e75d8819..7597153c 100644 --- a/extensions/connect-user-metrics/app/main.R +++ b/extensions/connect-user-metrics/app/main.R @@ -9,7 +9,6 @@ box::use( mirai[mirai], reactable[reactableOutput, renderReactable], shiny, - shinyjs[toggleElement, useShinyjs], shinyWidgets[ prettyCheckboxGroup, sendSweetAlert, @@ -17,6 +16,7 @@ box::use( updateVirtualSelect, virtualSelectInput ], + shinyjs[toggleElement, useShinyjs], stats[setNames], tibble[add_row], tidyr[replace_na], diff --git a/extensions/connect-user-metrics/app/view/navbar_section.R b/extensions/connect-user-metrics/app/view/navbar_section.R index 6895aa05..112249d5 100644 --- a/extensions/connect-user-metrics/app/view/navbar_section.R +++ b/extensions/connect-user-metrics/app/view/navbar_section.R @@ -3,11 +3,11 @@ box::use( imola[flexPanel], shiny[ + NS, a, h1, img, moduleServer, - NS ], ) diff --git a/extensions/connect-user-metrics/app/view/session_duration.R b/extensions/connect-user-metrics/app/view/session_duration.R index f90bb3c8..a4c18323 100755 --- a/extensions/connect-user-metrics/app/view/session_duration.R +++ b/extensions/connect-user-metrics/app/view/session_duration.R @@ -1,6 +1,6 @@ box::use( lubridate, - shiny[div, moduleServer, NS, numericInput, reactive, req, selectInput, tags], + shiny[NS, div, moduleServer, numericInput, reactive, req, selectInput, tags], ) #' @export default_min_time_list <- list(number = 0, unit = "minutes") diff --git a/extensions/connect-user-metrics/app/view/ui_components.R b/extensions/connect-user-metrics/app/view/ui_components.R index bec90627..074aa1a0 100644 --- a/extensions/connect-user-metrics/app/view/ui_components.R +++ b/extensions/connect-user-metrics/app/view/ui_components.R @@ -1,12 +1,12 @@ box::use( bslib[card_header], shiny[ + HTML, a, div, - HTML, icon, img, - tags + tags, ], ) From 2baadba9260a5219ea67652216b2d3c312b1286d Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 31 Jul 2025 12:55:41 +0200 Subject: [PATCH 20/31] build: remove unused dependency --- .../connect-user-metrics/dependencies.R | 2 - extensions/connect-user-metrics/renv.lock | 60 ------------------- 2 files changed, 62 deletions(-) diff --git a/extensions/connect-user-metrics/dependencies.R b/extensions/connect-user-metrics/dependencies.R index 5b5c82e5..a38e0faf 100644 --- a/extensions/connect-user-metrics/dependencies.R +++ b/extensions/connect-user-metrics/dependencies.R @@ -14,10 +14,8 @@ library(reactable) library(rhino) library(rlang) library(rsconnect) -library(shinycssloaders) library(shinyjs) library(shinytest2) -library(shinyTime) library(shinyWidgets) library(stringr) library(timetk) diff --git a/extensions/connect-user-metrics/renv.lock b/extensions/connect-user-metrics/renv.lock index d2034d28..a3354f82 100644 --- a/extensions/connect-user-metrics/renv.lock +++ b/extensions/connect-user-metrics/renv.lock @@ -5492,34 +5492,6 @@ "Maintainer": "Winston Chang ", "Repository": "CRAN" }, - "shinyTime": { - "Package": "shinyTime", - "Version": "1.0.3", - "Source": "Repository", - "Type": "Package", - "Title": "A Time Input Widget for Shiny", - "Authors@R": "person(\"Gerhard\", \"Burger\", email = \"burger.ga@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-1062-5576\"))", - "Description": "Provides a time input widget for Shiny. This widget allows intuitive time input in the '[hh]:[mm]:[ss]' or '[hh]:[mm]' (24H) format by using a separate numeric input for each time component. The interface with R uses date-time objects. See the project page for more information and examples.", - "License": "GPL-3 | file LICENSE", - "Imports": [ - "htmltools", - "shiny" - ], - "URL": "https://burgerga.github.io/shinyTime/, https://github.com/burgerga/shinyTime", - "BugReports": "https://github.com/burgerga/shinyTime/issues", - "RoxygenNote": "7.2.1", - "Encoding": "UTF-8", - "Language": "en-US", - "Suggests": [ - "testthat (>= 2.1.0)", - "spelling", - "hms" - ], - "NeedsCompilation": "no", - "Author": "Gerhard Burger [aut, cre] ()", - "Maintainer": "Gerhard Burger ", - "Repository": "CRAN" - }, "shinyWidgets": { "Package": "shinyWidgets", "Version": "0.9.0", @@ -5559,38 +5531,6 @@ "Maintainer": "Victor Perrier ", "Repository": "CRAN" }, - "shinycssloaders": { - "Package": "shinycssloaders", - "Version": "1.1.0", - "Source": "Repository", - "Title": "Add Loading Animations to a 'shiny' Output While It's Recalculating", - "Authors@R": "c( person(\"Dean\",\"Attali\",email=\"daattali@gmail.com\",role=c(\"aut\",\"cre\"), comment = c(\"Maintainer/developer of shinycssloaders since 2019\", ORCID=\"0000-0002-5645-3493\")), person(\"Andras\",\"Sali\",email=\"andras.sali@alphacruncher.hu\",role=c(\"aut\"),comment=\"Original creator of shinycssloaders package\"), person(\"Luke\",\"Hass\",role=c(\"ctb\",\"cph\"),comment=\"Author of included CSS loader code\") )", - "Description": "When a 'Shiny' output (such as a plot, table, map, etc.) is recalculating, it remains visible but gets greyed out. Using 'shinycssloaders', you can add a loading animation (\"spinner\") to outputs instead. By wrapping a 'Shiny' output in 'withSpinner()', a spinner will automatically appear while the output is recalculating. You can also manually show and hide the spinner, or add a full-page spinner to cover the entire page. See the demo online at .", - "License": "MIT + file LICENSE", - "URL": "https://github.com/daattali/shinycssloaders, https://daattali.com/shiny/shinycssloaders-demo/", - "BugReports": "https://github.com/daattali/shinycssloaders/issues", - "Depends": [ - "R (>= 3.1)" - ], - "Imports": [ - "digest", - "glue", - "grDevices", - "htmltools (>= 0.3.5)", - "shiny" - ], - "Suggests": [ - "knitr", - "shinydisconnect", - "shinyjs" - ], - "RoxygenNote": "7.2.3", - "Encoding": "UTF-8", - "NeedsCompilation": "no", - "Author": "Dean Attali [aut, cre] (Maintainer/developer of shinycssloaders since 2019, ), Andras Sali [aut] (Original creator of shinycssloaders package), Luke Hass [ctb, cph] (Author of included CSS loader code)", - "Maintainer": "Dean Attali ", - "Repository": "CRAN" - }, "shinyjs": { "Package": "shinyjs", "Version": "2.1.0", From 33631594d9abcdf75ee237cd3271484321f644ae Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 31 Jul 2025 12:56:22 +0200 Subject: [PATCH 21/31] build: remove dependencies.R --- extensions/connect-user-metrics/.renvignore | 3 - .../connect-user-metrics/dependencies.R | 23 ------- extensions/connect-user-metrics/renv.lock | 60 ------------------- 3 files changed, 86 deletions(-) delete mode 100644 extensions/connect-user-metrics/.renvignore delete mode 100644 extensions/connect-user-metrics/dependencies.R diff --git a/extensions/connect-user-metrics/.renvignore b/extensions/connect-user-metrics/.renvignore deleted file mode 100644 index 4f16dc6d..00000000 --- a/extensions/connect-user-metrics/.renvignore +++ /dev/null @@ -1,3 +0,0 @@ -# Only use `dependencies.R` to infer project dependencies. -* -!dependencies.R diff --git a/extensions/connect-user-metrics/dependencies.R b/extensions/connect-user-metrics/dependencies.R deleted file mode 100644 index a38e0faf..00000000 --- a/extensions/connect-user-metrics/dependencies.R +++ /dev/null @@ -1,23 +0,0 @@ -# This file allows packrat (used by rsconnect during deployment) to pick up dependencies. -library(box.linters) -library(config) -library(connectapi) -library(dplyr) -library(echarts4r) -library(glue) -library(here) -library(imola) -library(lubridate) -library(mirai) -library(purrr) -library(reactable) -library(rhino) -library(rlang) -library(rsconnect) -library(shinyjs) -library(shinytest2) -library(shinyWidgets) -library(stringr) -library(timetk) -library(treesitter) -library(treesitter.r) diff --git a/extensions/connect-user-metrics/renv.lock b/extensions/connect-user-metrics/renv.lock index a3354f82..e0860eda 100644 --- a/extensions/connect-user-metrics/renv.lock +++ b/extensions/connect-user-metrics/renv.lock @@ -6300,66 +6300,6 @@ "Maintainer": "Yihui Xie ", "Repository": "CRAN" }, - "treesitter": { - "Package": "treesitter", - "Version": "0.3.0", - "Source": "Repository", - "Title": "Bindings to 'Tree-Sitter'", - "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Tree-sitter authors\", role = \"cph\", comment = \"Tree-sitter C library\") )", - "Description": "Provides bindings to 'Tree-sitter', an incremental parsing system for programming tools. 'Tree-sitter' builds concrete syntax trees for source files of any language, and can efficiently update those syntax trees as the source file is edited. It also includes a robust error recovery system that provides useful parse results even in the presence of syntax errors.", - "License": "MIT + file LICENSE", - "URL": "https://github.com/DavisVaughan/r-tree-sitter, https://davisvaughan.github.io/r-tree-sitter/", - "BugReports": "https://github.com/DavisVaughan/r-tree-sitter/issues", - "Depends": [ - "R (>= 4.3.0)" - ], - "Imports": [ - "cli (>= 3.6.2)", - "R6 (>= 2.5.1)", - "rlang (>= 1.1.3)", - "vctrs (>= 0.6.5)" - ], - "Suggests": [ - "testthat (>= 3.0.0)", - "treesitter.r (>= 1.1.0)" - ], - "Config/build/compilation-database": "true", - "Config/Needs/website": "tidyverse/tidytemplate", - "Config/testthat/edition": "3", - "Encoding": "UTF-8", - "RoxygenNote": "7.3.2", - "NeedsCompilation": "yes", - "Author": "Davis Vaughan [aut, cre], Posit Software, PBC [cph, fnd], Tree-sitter authors [cph] (Tree-sitter C library)", - "Maintainer": "Davis Vaughan ", - "Repository": "CRAN" - }, - "treesitter.r": { - "Package": "treesitter.r", - "Version": "1.2.0", - "Source": "Repository", - "Title": "'R' Grammar for 'Tree-Sitter'", - "Authors@R": "c( person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(\"Tree-sitter authors\", role = \"cph\", comment = \"Tree-sitter C headers and parser.c\") )", - "Description": "Provides bindings to an 'R' grammar for 'Tree-sitter', to be used alongside the 'treesitter' package. 'Tree-sitter' builds concrete syntax trees for source files of any language, and can efficiently update those syntax trees as the source file is edited.", - "License": "MIT + file LICENSE", - "URL": "https://github.com/r-lib/tree-sitter-r", - "BugReports": "https://github.com/r-lib/tree-sitter-r/issues", - "Depends": [ - "R (>= 4.3.0)" - ], - "Suggests": [ - "testthat (>= 3.0.0)", - "treesitter" - ], - "Config/build/bootstrap": "TRUE", - "Config/Needs/website": "tidyverse/tidytemplate", - "Config/testthat/edition": "3", - "Encoding": "UTF-8", - "RoxygenNote": "7.3.2", - "NeedsCompilation": "yes", - "Author": "Davis Vaughan [aut, cre], Posit Software, PBC [cph, fnd], Tree-sitter authors [cph] (Tree-sitter C headers and parser.c)", - "Maintainer": "Davis Vaughan ", - "Repository": "CRAN" - }, "tseries": { "Package": "tseries", "Version": "0.10-58", From d1961cf24ff87c7dae16d69ec3bcac44ed409d12 Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 31 Jul 2025 13:05:17 +0200 Subject: [PATCH 22/31] fix: set window_title --- extensions/connect-user-metrics/app/main.R | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extensions/connect-user-metrics/app/main.R b/extensions/connect-user-metrics/app/main.R index 7597153c..1202ffdc 100644 --- a/extensions/connect-user-metrics/app/main.R +++ b/extensions/connect-user-metrics/app/main.R @@ -30,6 +30,7 @@ box::use( app/logic/data_utils, app/logic/duration_utils[format_duration], app/logic/ui_utils[ + brand, compose_charts_theme, is_credits_enabled, placeholder_replacements @@ -70,6 +71,7 @@ ui <- function(id) { useShinyjs(), shiny$useBusyIndicators(), title = navbar_section$ui(ns("navbar")), + window_title = brand$meta$app_title, # Sidebar sidebar = bslib$sidebar( width = 300, From 83a9fc9d0400419f9fe7e76e9b04439e6b872a5c Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 31 Jul 2025 13:13:56 +0200 Subject: [PATCH 23/31] chore: update manifest.json --- extensions/connect-user-metrics/manifest.json | 2079 ++++++++--------- 1 file changed, 972 insertions(+), 1107 deletions(-) diff --git a/extensions/connect-user-metrics/manifest.json b/extensions/connect-user-metrics/manifest.json index 14d8efdb..d72797b3 100644 --- a/extensions/connect-user-metrics/manifest.json +++ b/extensions/connect-user-metrics/manifest.json @@ -1,7 +1,7 @@ { "version": 1, "locale": "en_US", - "platform": "4.5.0", + "platform": "4.5.1", "metadata": { "appmode": "shiny", "primary_rmd": null, @@ -22,20 +22,22 @@ "Package": "AsioHeaders", "Type": "Package", "Title": "'Asio' C++ Header Files", - "Version": "1.22.1-2", - "Date": "2022-12-07", - "Author": "Dirk Eddelbuettel", - "Maintainer": "Dirk Eddelbuettel ", + "Version": "1.30.2-1", + "Date": "2025-04-15", + "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Christopher M.\", \"Kohlhoff\", role = \"aut\",\n comment = \"Author of Asio\"))", "Description": "'Asio' is a cross-platform C++ library for network and low-level\n I/O programming that provides developers with a consistent asynchronous model\n using a modern C++ approach. It is also included in Boost but requires linking\n when used with Boost. Standalone it can be used header-only (provided a recent\n compiler). 'Asio' is written and maintained by Christopher M. Kohlhoff, and\n released under the 'Boost Software License', Version 1.0.", "Copyright": "file inst/COPYRIGHTS", "License": "BSL-1.0", "URL": "https://github.com/eddelbuettel/asioheaders,\nhttps://dirk.eddelbuettel.com/code/asioheaders.html", "BugReports": "https://github.com/eddelbuettel/asioheaders/issues", "NeedsCompilation": "no", - "Packaged": "2022-12-08 04:04:23 UTC; edd", - "Repository": "CRAN", - "Date/Publication": "2022-12-08 08:12:34 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:47:13 UTC; unix" + "Packaged": "2025-04-15 10:31:52 UTC; edd", + "Author": "Dirk Eddelbuettel [aut, cre] (),\n Christopher M. Kohlhoff [aut] (Author of Asio)", + "Maintainer": "Dirk Eddelbuettel ", + "Repository": "RSPM", + "Date/Publication": "2025-04-15 10:50:01 UTC", + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-16 04:40:18 UTC; unix" } }, "BH": { @@ -56,9 +58,10 @@ "Packaged": "2024-12-17 14:33:33 UTC; edd", "Author": "Dirk Eddelbuettel [aut, cre] (),\n John W. Emerson [aut],\n Michael J. Kane [aut] ()", "Maintainer": "Dirk Eddelbuettel ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-12-17 18:20:03 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:47:14 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-06 04:42:46 UTC; unix" } }, "KernSmooth": { @@ -83,7 +86,7 @@ "Maintainer": "Brian Ripley ", "Repository": "CRAN", "Date/Publication": "2025-01-01 10:25:36 UTC", - "Built": "R 4.4.2; x86_64-pc-linux-gnu; 'Tue, 07 Jan 2025 00:15:06 +0000'; unix" + "Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:29:47 UTC; unix" } }, "MASS": { @@ -112,7 +115,7 @@ "Maintainer": "Brian Ripley ", "Repository": "CRAN", "Date/Publication": "2025-02-28 17:44:52 UTC", - "Built": "R 4.4.3; x86_64-pc-linux-gnu; 'Wed, 12 Mar 2025 13:46:16 +0000'; unix" + "Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:29:47 UTC; unix" } }, "Matrix": { @@ -120,9 +123,9 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "Matrix", - "Version": "1.7-2", + "Version": "1.7-3", "VersionNote": "do also bump src/version.h, inst/include/Matrix/version.h", - "Date": "2025-01-20", + "Date": "2025-03-05", "Priority": "recommended", "Title": "Sparse and Dense Matrix Classes and Methods", "Description": "A rich hierarchy of sparse and dense matrix classes,\n\tincluding general, symmetric, triangular, and diagonal matrices\n\twith numeric, logical, or pattern entries. Efficient methods for\n\toperating on such matrices, often wrapping the 'BLAS', 'LAPACK',\n\tand 'SuiteSparse' libraries.", @@ -140,12 +143,12 @@ "BuildResaveData": "no", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Packaged": "2025-01-23 10:24:58 UTC; maechler", + "Packaged": "2025-03-05 09:59:22 UTC; maechler", "Author": "Douglas Bates [aut] (),\n Martin Maechler [aut, cre] (),\n Mikael Jagan [aut] (),\n Timothy A. Davis [ctb] (,\n SuiteSparse libraries, collaborators listed in\n dir(system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"),\n pattern=\"License\", full.names=TRUE, recursive=TRUE)),\n George Karypis [ctb] (, METIS\n library, Copyright: Regents of the University of Minnesota),\n Jason Riedy [ctb] (, GNU\n Octave's condest() and onenormest(), Copyright: Regents of the\n University of California),\n Jens Oehlschlägel [ctb] (initial nearPD()),\n R Core Team [ctb] (02zz1nj61, base R's matrix implementation)", "Maintainer": "Martin Maechler ", "Repository": "CRAN", - "Date/Publication": "2025-01-23 16:40:11 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:45:47 UTC; unix" + "Date/Publication": "2025-03-11 07:20:02 UTC", + "Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:29:52 UTC; unix" } }, "PKI": { @@ -165,16 +168,10 @@ "SystemRequirements": "OpenSSL library and headers (openssl-dev or\nsimilar)", "NeedsCompilation": "yes", "Packaged": "2024-06-15 19:22:05 UTC; rforge", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-06-15 19:40:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-17 13:47:26 UTC; unix", - "RemoteType": "standard", - "RemoteRef": "PKI", - "RemotePkgRef": "PKI", - "RemoteRepos": "https://cloud.r-project.org", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "source", - "RemoteSha": "0.1-14" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-09 05:57:02 UTC; unix" } }, "R.cache": { @@ -182,7 +179,7 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "R.cache", - "Version": "0.16.0", + "Version": "0.17.0", "Depends": "R (>= 2.14.0)", "Imports": "utils, R.methodsS3 (>= 1.8.1), R.oo (>= 1.24.0), R.utils (>=\n2.10.1), digest (>= 0.6.13)", "Title": "Fast and Light-Weight Caching (Memoization) of Objects and\nResults to Speed Up Computations", @@ -194,12 +191,12 @@ "LazyLoad": "TRUE", "URL": "https://github.com/HenrikBengtsson/R.cache", "BugReports": "https://github.com/HenrikBengtsson/R.cache/issues", - "RoxygenNote": "7.2.1", + "Encoding": "UTF-8", "NeedsCompilation": "no", - "Packaged": "2022-07-21 13:19:33 UTC; hb", - "Repository": "CRAN", - "Date/Publication": "2022-07-21 16:20:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:47:25 UTC; unix" + "Packaged": "2025-05-02 21:22:23 UTC; henrik", + "Repository": "RSPM", + "Date/Publication": "2025-05-02 22:20:02 UTC", + "Built": "R 4.5.0; ; 2025-05-03 04:51:11 UTC; unix" } }, "R.methodsS3": { @@ -222,9 +219,10 @@ "BugReports": "https://github.com/HenrikBengtsson/R.methodsS3/issues", "NeedsCompilation": "no", "Packaged": "2022-06-13 18:23:35 UTC; hb", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2022-06-13 22:00:14 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:47:15 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-06 04:41:17 UTC; unix" } }, "R.oo": { @@ -232,7 +230,7 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "R.oo", - "Version": "1.27.0", + "Version": "1.27.1", "Depends": "R (>= 2.13.0), R.methodsS3 (>= 1.8.2)", "Imports": "methods, utils", "Suggests": "tools", @@ -243,13 +241,14 @@ "Description": "Methods and classes for object-oriented programming in R with or without references. Large effort has been made on making definition of methods as simple as possible with a minimum of maintenance for package developers. The package has been developed since 2001 and is now considered very stable. This is a cross-platform package implemented in pure R that defines standard S3 classes without any tricks.", "License": "LGPL (>= 2.1)", "LazyLoad": "TRUE", - "URL": "https://github.com/HenrikBengtsson/R.oo", + "URL": "https://henrikbengtsson.github.io/R.oo/,\nhttps://github.com/HenrikBengtsson/R.oo", "BugReports": "https://github.com/HenrikBengtsson/R.oo/issues", "NeedsCompilation": "no", - "Packaged": "2024-11-01 17:26:30 UTC; henrik", - "Repository": "CRAN", - "Date/Publication": "2024-11-01 18:00:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:47:16 UTC; unix" + "Packaged": "2025-05-02 20:29:15 UTC; henrik", + "Repository": "RSPM", + "Date/Publication": "2025-05-02 21:00:05 UTC", + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-05-03 04:50:56 UTC; unix" } }, "R.utils": { @@ -257,7 +256,7 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "R.utils", - "Version": "2.12.3", + "Version": "2.13.0", "Depends": "R (>= 2.14.0), R.oo", "Imports": "methods, utils, tools, R.methodsS3", "Suggests": "datasets, digest (>= 0.6.10)", @@ -271,10 +270,11 @@ "URL": "https://henrikbengtsson.github.io/R.utils/,\nhttps://github.com/HenrikBengtsson/R.utils", "BugReports": "https://github.com/HenrikBengtsson/R.utils/issues", "NeedsCompilation": "no", - "Packaged": "2023-11-17 05:13:25 UTC; henrik", - "Repository": "CRAN", - "Date/Publication": "2023-11-18 01:00:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:47:18 UTC; unix" + "Packaged": "2025-02-24 19:44:20 UTC; henrik", + "Repository": "RSPM", + "Date/Publication": "2025-02-24 21:20:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-06 04:41:47 UTC; unix" } }, "R6": { @@ -283,22 +283,25 @@ "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\n reference classes. Compared to reference classes, R6 classes are simpler\n and lighter-weight, and they are not built on S4 classes so they do not\n require the methods package. These classes allow public and private\n members, and they support inheritance, even when the classes are defined in\n different packages.", - "Depends": "R (>= 3.0)", - "Suggests": "testthat, pryr", + "Version": "2.6.1", + "Authors@R": "c(\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Creates classes with reference semantics, similar to R's\n built-in reference classes. Compared to reference classes, R6 classes\n are simpler and lighter-weight, and they are not built on S4 classes\n so they do not require the methods package. These classes allow public\n and private members, and they support inheritance, even when the\n classes are defined in different packages.", "License": "MIT + file LICENSE", - "URL": "https://r6.r-lib.org, https://github.com/r-lib/R6/", + "URL": "https://r6.r-lib.org, https://github.com/r-lib/R6", "BugReports": "https://github.com/r-lib/R6/issues", - "RoxygenNote": "7.1.1", + "Depends": "R (>= 3.6)", + "Suggests": "lobstr, testthat (>= 3.0.0)", + "Config/Needs/website": "tidyverse/tidytemplate, ggplot2, microbenchmark,\nscales", + "Config/testthat/edition": "3", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2021-08-06 20:18:46 UTC; winston", - "Author": "Winston Chang [aut, cre]", - "Maintainer": "Winston Chang ", - "Repository": "CRAN", - "Date/Publication": "2021-08-19 14:00:05 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:47:26 UTC; unix" + "Packaged": "2025-02-14 21:15:19 UTC; winston", + "Author": "Winston Chang [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "Winston Chang ", + "Repository": "RSPM", + "Date/Publication": "2025-02-15 00:50:02 UTC", + "Built": "R 4.5.0; ; 2025-04-06 04:42:23 UTC; unix" } }, "RColorBrewer": { @@ -317,9 +320,10 @@ "License": "Apache License 2.0", "Packaged": "2022-04-03 10:26:20 UTC; neuwirth", "NeedsCompilation": "no", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2022-04-03 19:20:13 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:47:27 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-06 04:42:04 UTC; unix" } }, "Rcpp": { @@ -328,8 +332,8 @@ "description": { "Package": "Rcpp", "Title": "Seamless R and C++ Integration", - "Version": "1.0.14", - "Date": "2025-01-11", + "Version": "1.1.0", + "Date": "2025-07-01", "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Romain\", \"Francois\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"JJ\", \"Allaire\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-0174-9868\")),\n person(\"Kevin\", \"Ushey\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-2880-7407\")),\n person(\"Qiang\", \"Kou\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-6786-5453\")),\n person(\"Nathan\", \"Russell\", role = \"aut\"),\n person(\"Iñaki\", \"Ucar\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-6403-5550\")),\n person(\"Doug\", \"Bates\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-8316-9503\")),\n person(\"John\", \"Chambers\", role = \"aut\"))", "Description": "The 'Rcpp' package provides R functions as well as C++ classes which\n offer a seamless integration of R and C++. Many R data types and objects can be\n mapped back and forth to C++ equivalents which facilitates both writing of new\n code as well as easier integration of third-party libraries. Documentation\n about 'Rcpp' is provided by several vignettes included in this package, via the\n 'Rcpp Gallery' site at , the paper by Eddelbuettel and\n Francois (2011, ), the book by Eddelbuettel (2013,\n ) and the paper by Eddelbuettel and Balamuta (2018,\n ); see 'citation(\"Rcpp\")' for details.", "Imports": "methods, utils", @@ -341,12 +345,12 @@ "RoxygenNote": "6.1.1", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Packaged": "2025-01-11 20:21:25 UTC; edd", - "Author": "Dirk Eddelbuettel [aut, cre] (),\n Romain Francois [aut] (),\n JJ Allaire [aut] (),\n Kevin Ushey [aut] (),\n Qiang Kou [aut] (),\n Nathan Russell [aut],\n Iñaki Ucar [aut] (),\n Doug Bates [aut] (),\n John Chambers [aut]", + "Packaged": "2025-07-01 12:58:41 UTC; edd", + "Author": "Dirk Eddelbuettel [aut, cre] (ORCID:\n ),\n Romain Francois [aut] (ORCID: ),\n JJ Allaire [aut] (ORCID: ),\n Kevin Ushey [aut] (ORCID: ),\n Qiang Kou [aut] (ORCID: ),\n Nathan Russell [aut],\n Iñaki Ucar [aut] (ORCID: ),\n Doug Bates [aut] (ORCID: ),\n John Chambers [aut]", "Maintainer": "Dirk Eddelbuettel ", - "Repository": "CRAN", - "Date/Publication": "2025-01-12 16:10:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:27 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-02 16:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 13:34:43 UTC; unix" } }, "RcppArmadillo": { @@ -356,8 +360,8 @@ "Package": "RcppArmadillo", "Type": "Package", "Title": "'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra\nLibrary", - "Version": "14.2.3-1", - "Date": "2025-02-05", + "Version": "14.6.0-1", + "Date": "2025-07-02", "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Romain\", \"Francois\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Doug\", \"Bates\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-8316-9503\")),\n person(\"Binxiang\", \"Ni\", role = \"aut\"),\n person(\"Conrad\", \"Sanderson\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-0049-4501\")))", "Description": "'Armadillo' is a templated C++ linear algebra library (by Conrad\n Sanderson) that aims towards a good balance between speed and ease of\n use. Integer, floating point and complex numbers are supported, as\n well as a subset of trigonometric and statistics functions. Various\n matrix decompositions are provided through optional integration with\n LAPACK and ATLAS libraries. The 'RcppArmadillo' package includes the\n header files from the templated 'Armadillo' library. Thus users do\n not need to install 'Armadillo' itself in order to use\n 'RcppArmadillo'. From release 7.800.0 on, 'Armadillo' is licensed\n under Apache License 2; previous releases were under licensed as MPL\n 2.0 from version 3.800.0 onwards and LGPL-3 prior to that;\n 'RcppArmadillo' (the 'Rcpp' bindings/bridge to Armadillo) is licensed\n under the GNU GPL version 2 or later, as is the rest of 'Rcpp'.", "License": "GPL (>= 2)", @@ -370,12 +374,13 @@ "BugReports": "https://github.com/RcppCore/RcppArmadillo/issues", "RoxygenNote": "6.0.1", "NeedsCompilation": "yes", - "Packaged": "2025-02-05 15:53:51 UTC; edd", - "Author": "Dirk Eddelbuettel [aut, cre] (),\n Romain Francois [aut] (),\n Doug Bates [aut] (),\n Binxiang Ni [aut],\n Conrad Sanderson [aut] ()", + "Packaged": "2025-07-02 13:16:08 UTC; edd", + "Author": "Dirk Eddelbuettel [aut, cre] (ORCID:\n ),\n Romain Francois [aut] (ORCID: ),\n Doug Bates [aut] (ORCID: ),\n Binxiang Ni [aut],\n Conrad Sanderson [aut] (ORCID: )", "Maintainer": "Dirk Eddelbuettel ", - "Repository": "CRAN", - "Date/Publication": "2025-02-06 08:40:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-17 14:39:28 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-02 20:10:06 UTC", + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 13:49:25 UTC; unix" } }, "RcppRoll": { @@ -397,9 +402,10 @@ "RoxygenNote": "6.0.1", "NeedsCompilation": "yes", "Packaged": "2024-07-07 10:09:06 UTC; kevin", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-07 11:10:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:45 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 13:55:20 UTC; unix" } }, "RcppTOML": { @@ -425,16 +431,10 @@ "Packaged": "2025-03-08 13:54:57 UTC; edd", "Author": "Dirk Eddelbuettel [aut, cre] (),\n Mark Gillard [aut] (Author of 'toml++' header library)", "Maintainer": "Dirk Eddelbuettel ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2025-03-08 14:30:06 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-05-21 18:57:20 UTC; unix", - "RemoteType": "standard", - "RemoteRef": "RcppTOML", - "RemotePkgRef": "RcppTOML", - "RemoteRepos": "https://cran.rstudio.com", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "source", - "RemoteSha": "0.2.3" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 14:00:57 UTC; unix" } }, "SQUAREM": { @@ -453,11 +453,12 @@ "Author": "Ravi Varadhan", "Maintainer": "Ravi Varadhan ", "URL": "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html", - "Repository": "CRAN", + "Repository": "RSPM", "NeedsCompilation": "no", "Packaged": "2021-01-12 23:59:02 UTC; rvaradhan", "Date/Publication": "2021-01-13 06:40:10 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:47:49 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-08 03:10:55 UTC; unix" } }, "TTR": { @@ -481,9 +482,10 @@ "Packaged": "2023-11-28 00:12:35 UTC; josh", "Author": "Joshua Ulrich [cre, aut],\n Ethan B. Smith [ctb]", "Maintainer": "Joshua Ulrich ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-11-28 05:20:21 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:58 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-11 19:14:37 UTC; unix" } }, "anytime": { @@ -493,8 +495,8 @@ "Package": "anytime", "Type": "Package", "Title": "Anything to 'POSIXct' or 'Date' Converter", - "Version": "0.3.11", - "Date": "2024-12-18", + "Version": "0.3.12", + "Date": "2025-07-14", "Authors@R": "person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\"))", "Description": "Convert input in any one of character, integer, numeric, factor,\n or ordered type into 'POSIXct' (or 'Date') objects, using one of a number of\n predefined formats, and relying on Boost facilities for date and time parsing.", "URL": "https://github.com/eddelbuettel/anytime,\nhttps://dirk.eddelbuettel.com/code/anytime.html", @@ -502,17 +504,17 @@ "License": "GPL (>= 2)", "Encoding": "UTF-8", "Depends": "R (>= 3.2.0)", - "Imports": "Rcpp (>= 0.12.9)", - "LinkingTo": "Rcpp (>= 0.12.9), BH", + "Imports": "Rcpp (>= 1.0.8)", + "LinkingTo": "Rcpp (>= 1.0.8), BH", "Suggests": "tinytest (>= 1.0.0), gettz", "RoxygenNote": "6.0.1", "NeedsCompilation": "yes", - "Packaged": "2024-12-18 14:26:53 UTC; edd", - "Author": "Dirk Eddelbuettel [aut, cre] ()", + "Packaged": "2025-07-14 13:24:21 UTC; edd", + "Author": "Dirk Eddelbuettel [aut, cre] (ORCID:\n )", "Maintainer": "Dirk Eddelbuettel ", - "Repository": "CRAN", - "Date/Publication": "2024-12-19 15:50:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:00 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-14 14:00:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-15 04:44:26 UTC; unix" } }, "askpass": { @@ -537,9 +539,9 @@ "Packaged": "2024-10-03 14:12:09 UTC; jeroen", "Author": "Jeroen Ooms [aut, cre] ()", "Maintainer": "Jeroen Ooms ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-10-04 07:20:03 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:06 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:08 UTC; unix" } }, "backports": { @@ -563,9 +565,9 @@ "RoxygenNote": "7.3.1", "Packaged": "2024-05-23 11:56:25 UTC; michel", "Author": "Michel Lang [cre, aut] (),\n Duncan Murdoch [aut],\n R Core Team [aut]", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-05-23 12:30:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:07 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:41:14 UTC; unix" } }, "base64enc": { @@ -584,9 +586,10 @@ "URL": "http://www.rforge.net/base64enc", "NeedsCompilation": "yes", "Packaged": "2015-02-04 20:31:00 UTC; svnuser", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2015-07-28 08:03:37", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:08 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:03 UTC; unix" } }, "bit": { @@ -594,28 +597,27 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "bit", - "Type": "Package", "Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections", - "Version": "4.5.0.1", - "Date": "2024-09-17", - "Authors@R": "c(person(given = \"Jens\",\n family = \"Oehlschlägel\",\n role = c(\"aut\", \"cre\"),\n email = \"Jens.Oehlschlaegel@truecluster.com\"),\n person(given = \"Brian\",\n family = \"Ripley\",\n role = \"ctb\"))", - "Author": "Jens Oehlschlägel [aut, cre],\n Brian Ripley [ctb]", - "Maintainer": "Jens Oehlschlägel ", + "Version": "4.6.0", + "Authors@R": "c(\n person(\"Michael\", \"Chirico\", email = \"MichaelChirico4@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Jens\", \"Oehlschlägel\", role = \"aut\"),\n person(\"Brian\", \"Ripley\", role = \"ctb\")\n )", "Depends": "R (>= 3.4.0)", - "Suggests": "testthat (>= 0.11.0), roxygen2, knitr, markdown, rmarkdown,\nmicrobenchmark, bit64 (>= 4.0.0), ff (>= 4.0.0)", + "Suggests": "testthat (>= 3.0.0), roxygen2, knitr, markdown, rmarkdown,\nmicrobenchmark, bit64 (>= 4.0.0), ff (>= 4.0.0)", "Description": "Provided are classes for boolean and skewed boolean vectors,\n fast boolean methods, fast unique and non-unique integer sorting,\n fast set operations on sorted and unsorted sets of integers, and\n foundations 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", + "URL": "https://github.com/r-lib/bit", "VignetteBuilder": "knitr, rmarkdown", "RoxygenNote": "7.3.2", + "Config/testthat/edition": "3", "NeedsCompilation": "yes", - "Packaged": "2024-11-27 08:15:13 UTC; ripley", - "Repository": "CRAN", - "Date/Publication": "2024-12-03 13:45:44 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:08 UTC; unix" + "Packaged": "2025-03-05 07:18:45 UTC; michael", + "Author": "Michael Chirico [aut, cre],\n Jens Oehlschlägel [aut],\n Brian Ripley [ctb]", + "Maintainer": "Michael Chirico ", + "Repository": "RSPM", + "Date/Publication": "2025-03-06 10:50:01 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:41:15 UTC; unix" } }, "bit64": { @@ -642,9 +644,9 @@ "Packaged": "2025-01-16 14:04:20 UTC; michael", "Author": "Michael Chirico [aut, cre],\n Jens Oehlschlägel [aut],\n Leonardo Silvestri [ctb],\n Ofek Shilon [ctb]", "Maintainer": "Michael Chirico ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2025-01-16 16:00:07 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:11 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:41:33 UTC; unix" } }, "box": { @@ -670,9 +672,9 @@ "Packaged": "2024-02-06 23:06:27 UTC; rudolpk2", "Author": "Konrad Rudolph [aut, cre] (),\n Michael Schubert [ctb] ()", "Maintainer": "Konrad Rudolph ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-02-06 23:50:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:15 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-09 05:57:23 UTC; unix" } }, "box.linters": { @@ -681,8 +683,8 @@ "description": { "Package": "box.linters", "Title": "Linters for 'box' Modules", - "Version": "0.10.5", - "Authors@R": "\n c(\n person(\"Ricardo Rodrigo\", \"Basa\", role = c(\"aut\", \"cre\"), email = \"opensource+rodrigo@appsilon.com\"),\n person(\"Jakub\", \"Nowicki\", role = \"aut\", email = \"kuba@appsilon.com\"),\n person(\"Mateusz\", \"Kołomański\", role = \"ctb\", email = \"mateusz.kolomanski@appsilon.com\"),\n person(\"Appsilon Sp. z o.o.\", role = \"cph\", email = \"opensource@appsilon.com\")\n )", + "Version": "0.10.6", + "Authors@R": "\n c(\n person(\"Ricardo Rodrigo\", \"Basa\", role = c(\"aut\", \"cre\"), email = \"opensource+rodrigo@appsilon.com\"),\n person(\"Jakub\", \"Nowicki\", role = \"aut\", email = \"kuba@appsilon.com\"),\n person(\"Mateusz\", \"Kołomański\", role = \"ctb\", email = \"mateusz.kolomanski@appsilon.com\"),\n person(\"Guilherme\", \"Vituri\", role = \"ctb\", email = \"vituri@appsilon.com\"),\n person(\"Appsilon Sp. z o.o.\", role = \"cph\", email = \"opensource@appsilon.com\")\n )", "Description": "Static code analysis of 'box' modules.\n The package enhances code quality by providing linters that check for common issues,\n enforce best practices, and ensure consistent coding standards.", "URL": "https://appsilon.github.io/box.linters/,\nhttps://github.com/Appsilon/box.linters", "License": "LGPL-3", @@ -695,12 +697,12 @@ "Config/testthat/parallel": "true", "Language": "en-US", "NeedsCompilation": "no", - "Packaged": "2024-09-10 09:47:05 UTC; kuba", - "Author": "Ricardo Rodrigo Basa [aut, cre],\n Jakub Nowicki [aut],\n Mateusz Kołomański [ctb],\n Appsilon Sp. z o.o. [cph]", + "Packaged": "2025-06-26 08:45:17 UTC; rstudio", + "Author": "Ricardo Rodrigo Basa [aut, cre],\n Jakub Nowicki [aut],\n Mateusz Kołomański [ctb],\n Guilherme Vituri [ctb],\n Appsilon Sp. z o.o. [cph]", "Maintainer": "Ricardo Rodrigo Basa ", - "Repository": "CRAN", - "Date/Publication": "2024-09-10 11:00:01 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:49:54 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-06-26 09:00:02 UTC", + "Built": "R 4.5.0; ; 2025-06-27 04:40:16 UTC; unix" } }, "box.lsp": { @@ -724,9 +726,9 @@ "Packaged": "2024-09-19 07:33:10 UTC; kuba", "Author": "Ricardo Rodrigo Basa [aut, cre],\n Pavel Demin [aut],\n Jakub Nowicki [aut],\n Appsilon Sp. z o.o. [cph]", "Maintainer": "Ricardo Rodrigo Basa ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-09-19 14:20:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:49:55 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-09 06:14:41 UTC; unix" } }, "brio": { @@ -751,9 +753,9 @@ "Packaged": "2024-04-24 18:51:29 UTC; gaborcsardi", "Author": "Jim Hester [aut] (),\n Gábor Csárdi [aut, cre],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-04-24 19:20:07 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:56 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:37 UTC; unix" } }, "broom": { @@ -763,28 +765,30 @@ "Type": "Package", "Package": "broom", "Title": "Convert Statistical Objects into Tidy Tibbles", - "Version": "1.0.7", - "Authors@R": "\n c(person(given = \"David\",\n family = \"Robinson\",\n role = \"aut\",\n email = \"admiral.david@gmail.com\"),\n person(given = \"Alex\",\n family = \"Hayes\",\n role = \"aut\",\n email = \"alexpghayes@gmail.com\",\n comment = c(ORCID = \"0000-0002-4985-5160\")),\n person(given = \"Simon\",\n family = \"Couch\",\n role = c(\"aut\", \"cre\"),\n email = \"simon.couch@posit.co\",\n comment = c(ORCID = \"0000-0001-5676-5107\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(given = \"Indrajeet\",\n family = \"Patil\",\n role = \"ctb\",\n email = \"patilindrajeet.science@gmail.com\",\n comment = c(ORCID = \"0000-0003-1995-6531\")),\n person(given = \"Derek\",\n family = \"Chiu\",\n role = \"ctb\",\n email = \"dchiu@bccrc.ca\"),\n person(given = \"Matthieu\",\n family = \"Gomez\",\n role = \"ctb\",\n email = \"mattg@princeton.edu\"),\n person(given = \"Boris\",\n family = \"Demeshev\",\n role = \"ctb\",\n email = \"boris.demeshev@gmail.com\"),\n person(given = \"Dieter\",\n family = \"Menne\",\n role = \"ctb\",\n email = \"dieter.menne@menne-biomed.de\"),\n person(given = \"Benjamin\",\n family = \"Nutter\",\n role = \"ctb\",\n email = \"nutter@battelle.org\"),\n person(given = \"Luke\",\n family = \"Johnston\",\n role = \"ctb\",\n email = \"luke.johnston@mail.utoronto.ca\"),\n person(given = \"Ben\",\n family = \"Bolker\",\n role = \"ctb\",\n email = \"bolker@mcmaster.ca\"),\n person(given = \"Francois\",\n family = \"Briatte\",\n role = \"ctb\",\n email = \"f.briatte@gmail.com\"),\n person(given = \"Jeffrey\",\n family = \"Arnold\",\n role = \"ctb\",\n email = \"jeffrey.arnold@gmail.com\"),\n person(given = \"Jonah\",\n family = \"Gabry\",\n role = \"ctb\",\n email = \"jsg2201@columbia.edu\"),\n person(given = \"Luciano\",\n family = \"Selzer\",\n role = \"ctb\",\n email = \"luciano.selzer@gmail.com\"),\n person(given = \"Gavin\",\n family = \"Simpson\",\n role = \"ctb\",\n email = \"ucfagls@gmail.com\"),\n person(given = \"Jens\",\n family = \"Preussner\",\n role = \"ctb\",\n email = \" jens.preussner@mpi-bn.mpg.de\"),\n person(given = \"Jay\",\n family = \"Hesselberth\",\n role = \"ctb\",\n email = \"jay.hesselberth@gmail.com\"),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"ctb\",\n email = \"hadley@posit.co\"),\n person(given = \"Matthew\",\n family = \"Lincoln\",\n role = \"ctb\",\n email = \"matthew.d.lincoln@gmail.com\"),\n person(given = \"Alessandro\",\n family = \"Gasparini\",\n role = \"ctb\",\n email = \"ag475@leicester.ac.uk\"),\n person(given = \"Lukasz\",\n family = \"Komsta\",\n role = \"ctb\",\n email = \"lukasz.komsta@umlub.pl\"),\n person(given = \"Frederick\",\n family = \"Novometsky\",\n role = \"ctb\"),\n person(given = \"Wilson\",\n family = \"Freitas\",\n role = \"ctb\"),\n person(given = \"Michelle\",\n family = \"Evans\",\n role = \"ctb\"),\n person(given = \"Jason Cory\",\n family = \"Brunson\",\n role = \"ctb\",\n email = \"cornelioid@gmail.com\"),\n person(given = \"Simon\",\n family = \"Jackson\",\n role = \"ctb\",\n email = \"drsimonjackson@gmail.com\"),\n person(given = \"Ben\",\n family = \"Whalley\",\n role = \"ctb\",\n email = \"ben.whalley@plymouth.ac.uk\"),\n person(given = \"Karissa\",\n family = \"Whiting\",\n role = \"ctb\",\n email = \"karissa.whiting@gmail.com\"),\n person(given = \"Yves\",\n family = \"Rosseel\",\n role = \"ctb\",\n email = \"yrosseel@gmail.com\"),\n person(given = \"Michael\",\n family = \"Kuehn\",\n role = \"ctb\",\n email = \"mkuehn10@gmail.com\"),\n person(given = \"Jorge\",\n family = \"Cimentada\",\n role = \"ctb\",\n email = \"cimentadaj@gmail.com\"),\n person(given = \"Erle\",\n family = \"Holgersen\",\n role = \"ctb\",\n email = \"erle.holgersen@gmail.com\"),\n person(given = \"Karl\",\n family = \"Dunkle Werner\",\n role = \"ctb\",\n comment = c(ORCID = \"0000-0003-0523-7309\")),\n person(given = \"Ethan\",\n family = \"Christensen\",\n role = \"ctb\",\n email = \"christensen.ej@gmail.com\"),\n person(given = \"Steven\",\n family = \"Pav\",\n role = \"ctb\",\n email = \"shabbychef@gmail.com\"),\n person(given = \"Paul\",\n family = \"PJ\",\n role = \"ctb\",\n email = \"pjpaul.stephens@gmail.com\"),\n person(given = \"Ben\",\n family = \"Schneider\",\n role = \"ctb\",\n email = \"benjamin.julius.schneider@gmail.com\"),\n person(given = \"Patrick\",\n family = \"Kennedy\",\n role = \"ctb\",\n email = \"pkqstr@protonmail.com\"),\n person(given = \"Lily\",\n family = \"Medina\",\n role = \"ctb\",\n email = \"lilymiru@gmail.com\"),\n person(given = \"Brian\",\n family = \"Fannin\",\n role = \"ctb\",\n email = \"captain@pirategrunt.com\"),\n person(given = \"Jason\",\n family = \"Muhlenkamp\",\n role = \"ctb\",\n email = \"jason.muhlenkamp@gmail.com\"),\n person(given = \"Matt\",\n family = \"Lehman\",\n role = \"ctb\"),\n person(given = \"Bill\",\n family = \"Denney\",\n role = \"ctb\",\n email = \"wdenney@humanpredictions.com\",\n comment = c(ORCID = \"0000-0002-5759-428X\")),\n person(given = \"Nic\",\n family = \"Crane\",\n role = \"ctb\"),\n person(given = \"Andrew\",\n family = \"Bates\",\n role = \"ctb\"),\n person(given = \"Vincent\",\n family = \"Arel-Bundock\",\n role = \"ctb\",\n email = \"vincent.arel-bundock@umontreal.ca\",\n comment = c(ORCID = \"0000-0003-2042-7063\")),\n person(given = \"Hideaki\",\n family = \"Hayashi\",\n role = \"ctb\"),\n person(given = \"Luis\",\n family = \"Tobalina\",\n role = \"ctb\"),\n person(given = \"Annie\",\n family = \"Wang\",\n role = \"ctb\",\n email = \"anniewang.uc@gmail.com\"),\n person(given = \"Wei Yang\",\n family = \"Tham\",\n role = \"ctb\",\n email = \"weiyang.tham@gmail.com\"),\n person(given = \"Clara\",\n family = \"Wang\",\n role = \"ctb\",\n email = \"clara.wang.94@gmail.com\"),\n person(given = \"Abby\",\n family = \"Smith\",\n role = \"ctb\",\n email = \"als1@u.northwestern.edu\",\n comment = c(ORCID = \"0000-0002-3207-0375\")),\n person(given = \"Jasper\",\n family = \"Cooper\",\n role = \"ctb\",\n email = \"jaspercooper@gmail.com\",\n comment = c(ORCID = \"0000-0002-8639-3188\")),\n person(given = \"E Auden\",\n family = \"Krauska\",\n role = \"ctb\",\n email = \"krauskae@gmail.com\",\n comment = c(ORCID = \"0000-0002-1466-5850\")),\n person(given = \"Alex\",\n family = \"Wang\",\n role = \"ctb\",\n email = \"x249wang@uwaterloo.ca\"),\n person(given = \"Malcolm\",\n family = \"Barrett\",\n role = \"ctb\",\n email = \"malcolmbarrett@gmail.com\",\n comment = c(ORCID = \"0000-0003-0299-5825\")),\n person(given = \"Charles\",\n family = \"Gray\",\n role = \"ctb\",\n email = \"charlestigray@gmail.com\",\n comment = c(ORCID = \"0000-0002-9978-011X\")),\n person(given = \"Jared\",\n family = \"Wilber\",\n role = \"ctb\"),\n person(given = \"Vilmantas\",\n family = \"Gegzna\",\n role = \"ctb\",\n email = \"GegznaV@gmail.com\",\n comment = c(ORCID = \"0000-0002-9500-5167\")),\n person(given = \"Eduard\",\n family = \"Szoecs\",\n role = \"ctb\",\n email = \"eduardszoecs@gmail.com\"),\n person(given = \"Frederik\",\n family = \"Aust\",\n role = \"ctb\",\n email = \"frederik.aust@uni-koeln.de\",\n comment = c(ORCID = \"0000-0003-4900-788X\")),\n person(given = \"Angus\",\n family = \"Moore\",\n role = \"ctb\",\n email = \"angusmoore9@gmail.com\"),\n person(given = \"Nick\",\n family = \"Williams\",\n role = \"ctb\",\n email = \"ntwilliams.personal@gmail.com\"),\n person(given = \"Marius\",\n family = \"Barth\",\n role = \"ctb\",\n email = \"marius.barth.uni.koeln@gmail.com\",\n comment = c(ORCID = \"0000-0002-3421-6665\")),\n person(given = \"Bruna\",\n family = \"Wundervald\",\n role = \"ctb\",\n email = \"brunadaviesw@gmail.com\",\n comment = c(ORCID = \"0000-0001-8163-220X\")),\n person(given = \"Joyce\",\n family = \"Cahoon\",\n role = \"ctb\",\n email = \"joyceyu48@gmail.com\",\n comment = c(ORCID = \"0000-0001-7217-4702\")),\n person(given = \"Grant\",\n family = \"McDermott\",\n role = \"ctb\",\n email = \"grantmcd@uoregon.edu\",\n comment = c(ORCID = \"0000-0001-7883-8573\")),\n person(given = \"Kevin\",\n family = \"Zarca\",\n role = \"ctb\",\n email = \"kevin.zarca@gmail.com\"),\n person(given = \"Shiro\",\n family = \"Kuriwaki\",\n role = \"ctb\",\n email = \"shirokuriwaki@gmail.com\",\n comment = c(ORCID = \"0000-0002-5687-2647\")),\n person(given = \"Lukas\",\n family = \"Wallrich\",\n role = \"ctb\",\n email = \"lukas.wallrich@gmail.com\",\n comment = c(ORCID = \"0000-0003-2121-5177\")),\n person(given = \"James\",\n family = \"Martherus\",\n role = \"ctb\",\n email = \"james@martherus.com\",\n comment = c(ORCID = \"0000-0002-8285-3300\")),\n person(given = \"Chuliang\",\n family = \"Xiao\",\n role = \"ctb\",\n email = \"cxiao@umich.edu\",\n comment = c(ORCID = \"0000-0002-8466-9398\")),\n person(given = \"Joseph\",\n family = \"Larmarange\",\n role = \"ctb\",\n email = \"joseph@larmarange.net\"),\n person(given = \"Max\",\n family = \"Kuhn\",\n role = \"ctb\",\n email = \"max@posit.co\"),\n person(given = \"Michal\",\n family = \"Bojanowski\",\n role = \"ctb\",\n email = \"michal2992@gmail.com\"),\n person(given = \"Hakon\",\n family = \"Malmedal\",\n role = \"ctb\",\n email = \"hmalmedal@gmail.com\"),\n person(given = \"Clara\",\n family = \"Wang\",\n role = \"ctb\"),\n person(given = \"Sergio\",\n family = \"Oller\",\n role = \"ctb\",\n email = \"sergioller@gmail.com\"),\n person(given = \"Luke\",\n family = \"Sonnet\",\n role = \"ctb\",\n email = \"luke.sonnet@gmail.com\"),\n person(given = \"Jim\",\n family = \"Hester\",\n role = \"ctb\",\n email = \"jim.hester@posit.co\"),\n person(given = \"Ben\",\n family = \"Schneider\",\n role = \"ctb\",\n email = \"benjamin.julius.schneider@gmail.com\"),\n person(given = \"Bernie\",\n family = \"Gray\",\n role = \"ctb\",\n email = \"bfgray3@gmail.com\",\n comment = c(ORCID = \"0000-0001-9190-6032\")),\n person(given = \"Mara\",\n family = \"Averick\",\n role = \"ctb\",\n email = \"mara@posit.co\"),\n person(given = \"Aaron\",\n family = \"Jacobs\",\n role = \"ctb\",\n email = \"atheriel@gmail.com\"),\n person(given = \"Andreas\",\n family = \"Bender\",\n role = \"ctb\",\n email = \"bender.at.R@gmail.com\"),\n person(given = \"Sven\",\n family = \"Templer\",\n role = \"ctb\",\n email = \"sven.templer@gmail.com\"),\n person(given = \"Paul-Christian\",\n family = \"Buerkner\",\n role = \"ctb\",\n email = \"paul.buerkner@gmail.com\"),\n person(given = \"Matthew\",\n family = \"Kay\",\n role = \"ctb\",\n email = \"mjskay@umich.edu\"),\n person(given = \"Erwan\",\n family = \"Le Pennec\",\n role = \"ctb\",\n email = \"lepennec@gmail.com\"),\n person(given = \"Johan\",\n family = \"Junkka\",\n role = \"ctb\",\n email = \"johan.junkka@umu.se\"),\n person(given = \"Hao\",\n family = \"Zhu\",\n role = \"ctb\",\n email = \"haozhu233@gmail.com\"),\n person(given = \"Benjamin\",\n family = \"Soltoff\",\n role = \"ctb\",\n email = \"soltoffbc@uchicago.edu\"),\n person(given = \"Zoe\",\n family = \"Wilkinson Saldana\",\n role = \"ctb\",\n email = \"zoewsaldana@gmail.com\"),\n person(given = \"Tyler\",\n family = \"Littlefield\",\n role = \"ctb\",\n email = \"tylurp1@gmail.com\"),\n person(given = \"Charles T.\",\n family = \"Gray\",\n role = \"ctb\",\n email = \"charlestigray@gmail.com\"),\n person(given = \"Shabbh E.\",\n family = \"Banks\",\n role = \"ctb\"),\n person(given = \"Serina\",\n family = \"Robinson\",\n role = \"ctb\",\n email = \"robi0916@umn.edu\"),\n person(given = \"Roger\",\n family = \"Bivand\",\n role = \"ctb\",\n email = \"Roger.Bivand@nhh.no\"),\n person(given = \"Riinu\",\n family = \"Ots\",\n role = \"ctb\",\n email = \"riinuots@gmail.com\"),\n person(given = \"Nicholas\",\n family = \"Williams\",\n role = \"ctb\",\n email = \"ntwilliams.personal@gmail.com\"),\n person(given = \"Nina\",\n family = \"Jakobsen\",\n role = \"ctb\"),\n person(given = \"Michael\",\n family = \"Weylandt\",\n role = \"ctb\",\n email = \"michael.weylandt@gmail.com\"),\n person(given = \"Lisa\",\n family = \"Lendway\",\n role = \"ctb\",\n email = \"llendway@macalester.edu\"),\n person(given = \"Karl\",\n family = \"Hailperin\",\n role = \"ctb\",\n email = \"khailper@gmail.com\"),\n person(given = \"Josue\",\n family = \"Rodriguez\",\n role = \"ctb\",\n email = \"jerrodriguez@ucdavis.edu\"),\n person(given = \"Jenny\",\n family = \"Bryan\",\n role = \"ctb\",\n email = \"jenny@posit.co\"),\n person(given = \"Chris\",\n family = \"Jarvis\",\n role = \"ctb\",\n email = \"Christopher1.jarvis@gmail.com\"),\n person(given = \"Greg\",\n family = \"Macfarlane\",\n role = \"ctb\",\n email = \"gregmacfarlane@gmail.com\"),\n person(given = \"Brian\",\n family = \"Mannakee\",\n role = \"ctb\",\n email = \"bmannakee@gmail.com\"),\n person(given = \"Drew\",\n family = \"Tyre\",\n role = \"ctb\",\n email = \"atyre2@unl.edu\"),\n person(given = \"Shreyas\",\n family = \"Singh\",\n role = \"ctb\",\n email = \"shreyas.singh.298@gmail.com\"),\n person(given = \"Laurens\",\n family = \"Geffert\",\n role = \"ctb\",\n email = \"laurensgeffert@gmail.com\"),\n person(given = \"Hong\",\n family = \"Ooi\",\n role = \"ctb\",\n email = \"hongooi@microsoft.com\"),\n person(given = \"Henrik\",\n family = \"Bengtsson\",\n role = \"ctb\",\n email = \"henrikb@braju.com\"),\n person(given = \"Eduard\",\n family = \"Szocs\",\n role = \"ctb\",\n email = \"eduardszoecs@gmail.com\"),\n person(given = \"David\",\n family = \"Hugh-Jones\",\n role = \"ctb\",\n email = \"davidhughjones@gmail.com\"),\n person(given = \"Matthieu\",\n family = \"Stigler\",\n role = \"ctb\",\n email = \"Matthieu.Stigler@gmail.com\"),\n person(given = \"Hugo\",\n family = \"Tavares\",\n role = \"ctb\",\n email = \"hm533@cam.ac.uk\",\n comment = c(ORCID = \"0000-0001-9373-2726\")),\n\t person(given = \"R. Willem\",\n family = \"Vervoort\",\n role = \"ctb\",\n email = \"Willemvervoort@gmail.com\"),\n person(given = \"Brenton M.\",\n family = \"Wiernik\",\n role = \"ctb\",\n email = \"brenton@wiernik.org\"),\n person(given = \"Josh\",\n family = \"Yamamoto\",\n role = \"ctb\",\n email = \"joshuayamamoto5@gmail.com\"),\n person(given = \"Jasme\",\n family = \"Lee\",\n role = \"ctb\"),\n person(given = \"Taren\",\n family = \"Sanders\",\n role = \"ctb\",\n email = \"taren.sanders@acu.edu.au\",\n comment = c(ORCID = \"0000-0002-4504-6008\")),\n person(given = \"Ilaria\",\n family = \"Prosdocimi\",\n role = \"ctb\",\n email = \"prosdocimi.ilaria@gmail.com\",\n comment = c(ORCID = \"0000-0001-8565-094X\")),\n person(given = \"Daniel D.\",\n family = \"Sjoberg\",\n role = \"ctb\",\n email = \"danield.sjoberg@gmail.com\",\n comment = c(ORCID = \"0000-0003-0862-2018\")),\n person(given = \"Alex\",\n family = \"Reinhart\",\n role = \"ctb\",\n email = \"areinhar@stat.cmu.edu\",\n comment = c(ORCID = \"0000-0002-6658-514X\")))", - "Description": "Summarizes key information about statistical\n objects in tidy tibbles. This makes it easy to report results, create\n plots and consistently work with large numbers of models at once.\n Broom provides three verbs that each provide different types of\n information about a model. tidy() summarizes information about model\n components such as coefficients of a regression. glance() reports\n information about an entire model, such as goodness of fit measures\n like AIC and BIC. augment() adds information about individual\n observations to a dataset, such as fitted values or influence\n measures.", + "Version": "1.0.9", + "Authors@R": "c(\n person(\"David\", \"Robinson\", , \"admiral.david@gmail.com\", role = \"aut\"),\n person(\"Alex\", \"Hayes\", , \"alexpghayes@gmail.com\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-4985-5160\")),\n person(\"Simon\", \"Couch\", , \"simon.couch@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0001-5676-5107\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"),\n comment = c(ROR = \"03wc8by49\")),\n person(\"Indrajeet\", \"Patil\", , \"patilindrajeet.science@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-1995-6531\")),\n person(\"Derek\", \"Chiu\", , \"dchiu@bccrc.ca\", role = \"ctb\"),\n person(\"Matthieu\", \"Gomez\", , \"mattg@princeton.edu\", role = \"ctb\"),\n person(\"Boris\", \"Demeshev\", , \"boris.demeshev@gmail.com\", role = \"ctb\"),\n person(\"Dieter\", \"Menne\", , \"dieter.menne@menne-biomed.de\", role = \"ctb\"),\n person(\"Benjamin\", \"Nutter\", , \"nutter@battelle.org\", role = \"ctb\"),\n person(\"Luke\", \"Johnston\", , \"luke.johnston@mail.utoronto.ca\", role = \"ctb\"),\n person(\"Ben\", \"Bolker\", , \"bolker@mcmaster.ca\", role = \"ctb\"),\n person(\"Francois\", \"Briatte\", , \"f.briatte@gmail.com\", role = \"ctb\"),\n person(\"Jeffrey\", \"Arnold\", , \"jeffrey.arnold@gmail.com\", role = \"ctb\"),\n person(\"Jonah\", \"Gabry\", , \"jsg2201@columbia.edu\", role = \"ctb\"),\n person(\"Luciano\", \"Selzer\", , \"luciano.selzer@gmail.com\", role = \"ctb\"),\n person(\"Gavin\", \"Simpson\", , \"ucfagls@gmail.com\", role = \"ctb\"),\n person(\"Jens\", \"Preussner\", , \"jens.preussner@mpi-bn.mpg.de\", role = \"ctb\"),\n person(\"Jay\", \"Hesselberth\", , \"jay.hesselberth@gmail.com\", role = \"ctb\"),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"ctb\"),\n person(\"Matthew\", \"Lincoln\", , \"matthew.d.lincoln@gmail.com\", role = \"ctb\"),\n person(\"Alessandro\", \"Gasparini\", , \"ag475@leicester.ac.uk\", role = \"ctb\"),\n person(\"Lukasz\", \"Komsta\", , \"lukasz.komsta@umlub.pl\", role = \"ctb\"),\n person(\"Frederick\", \"Novometsky\", role = \"ctb\"),\n person(\"Wilson\", \"Freitas\", role = \"ctb\"),\n person(\"Michelle\", \"Evans\", role = \"ctb\"),\n person(\"Jason Cory\", \"Brunson\", , \"cornelioid@gmail.com\", role = \"ctb\"),\n person(\"Simon\", \"Jackson\", , \"drsimonjackson@gmail.com\", role = \"ctb\"),\n person(\"Ben\", \"Whalley\", , \"ben.whalley@plymouth.ac.uk\", role = \"ctb\"),\n person(\"Karissa\", \"Whiting\", , \"karissa.whiting@gmail.com\", role = \"ctb\"),\n person(\"Yves\", \"Rosseel\", , \"yrosseel@gmail.com\", role = \"ctb\"),\n person(\"Michael\", \"Kuehn\", , \"mkuehn10@gmail.com\", role = \"ctb\"),\n person(\"Jorge\", \"Cimentada\", , \"cimentadaj@gmail.com\", role = \"ctb\"),\n person(\"Erle\", \"Holgersen\", , \"erle.holgersen@gmail.com\", role = \"ctb\"),\n person(\"Karl\", \"Dunkle Werner\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-0523-7309\")),\n person(\"Ethan\", \"Christensen\", , \"christensen.ej@gmail.com\", role = \"ctb\"),\n person(\"Steven\", \"Pav\", , \"shabbychef@gmail.com\", role = \"ctb\"),\n person(\"Paul\", \"PJ\", , \"pjpaul.stephens@gmail.com\", role = \"ctb\"),\n person(\"Ben\", \"Schneider\", , \"benjamin.julius.schneider@gmail.com\", role = \"ctb\"),\n person(\"Patrick\", \"Kennedy\", , \"pkqstr@protonmail.com\", role = \"ctb\"),\n person(\"Lily\", \"Medina\", , \"lilymiru@gmail.com\", role = \"ctb\"),\n person(\"Brian\", \"Fannin\", , \"captain@pirategrunt.com\", role = \"ctb\"),\n person(\"Jason\", \"Muhlenkamp\", , \"jason.muhlenkamp@gmail.com\", role = \"ctb\"),\n person(\"Matt\", \"Lehman\", role = \"ctb\"),\n person(\"Bill\", \"Denney\", , \"wdenney@humanpredictions.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-5759-428X\")),\n person(\"Nic\", \"Crane\", role = \"ctb\"),\n person(\"Andrew\", \"Bates\", role = \"ctb\"),\n person(\"Vincent\", \"Arel-Bundock\", , \"vincent.arel-bundock@umontreal.ca\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-2042-7063\")),\n person(\"Hideaki\", \"Hayashi\", role = \"ctb\"),\n person(\"Luis\", \"Tobalina\", role = \"ctb\"),\n person(\"Annie\", \"Wang\", , \"anniewang.uc@gmail.com\", role = \"ctb\"),\n person(\"Wei Yang\", \"Tham\", , \"weiyang.tham@gmail.com\", role = \"ctb\"),\n person(\"Clara\", \"Wang\", , \"clara.wang.94@gmail.com\", role = \"ctb\"),\n person(\"Abby\", \"Smith\", , \"als1@u.northwestern.edu\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-3207-0375\")),\n person(\"Jasper\", \"Cooper\", , \"jaspercooper@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-8639-3188\")),\n person(\"E Auden\", \"Krauska\", , \"krauskae@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-1466-5850\")),\n person(\"Alex\", \"Wang\", , \"x249wang@uwaterloo.ca\", role = \"ctb\"),\n person(\"Malcolm\", \"Barrett\", , \"malcolmbarrett@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-0299-5825\")),\n person(\"Charles\", \"Gray\", , \"charlestigray@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-9978-011X\")),\n person(\"Jared\", \"Wilber\", role = \"ctb\"),\n person(\"Vilmantas\", \"Gegzna\", , \"GegznaV@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-9500-5167\")),\n person(\"Eduard\", \"Szoecs\", , \"eduardszoecs@gmail.com\", role = \"ctb\"),\n person(\"Frederik\", \"Aust\", , \"frederik.aust@uni-koeln.de\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-4900-788X\")),\n person(\"Angus\", \"Moore\", , \"angusmoore9@gmail.com\", role = \"ctb\"),\n person(\"Nick\", \"Williams\", , \"ntwilliams.personal@gmail.com\", role = \"ctb\"),\n person(\"Marius\", \"Barth\", , \"marius.barth.uni.koeln@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-3421-6665\")),\n person(\"Bruna\", \"Wundervald\", , \"brunadaviesw@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0001-8163-220X\")),\n person(\"Joyce\", \"Cahoon\", , \"joyceyu48@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0001-7217-4702\")),\n person(\"Grant\", \"McDermott\", , \"grantmcd@uoregon.edu\", role = \"ctb\",\n comment = c(ORCID = \"0000-0001-7883-8573\")),\n person(\"Kevin\", \"Zarca\", , \"kevin.zarca@gmail.com\", role = \"ctb\"),\n person(\"Shiro\", \"Kuriwaki\", , \"shirokuriwaki@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-5687-2647\")),\n person(\"Lukas\", \"Wallrich\", , \"lukas.wallrich@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-2121-5177\")),\n person(\"James\", \"Martherus\", , \"james@martherus.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-8285-3300\")),\n person(\"Chuliang\", \"Xiao\", , \"cxiao@umich.edu\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-8466-9398\")),\n person(\"Joseph\", \"Larmarange\", , \"joseph@larmarange.net\", role = \"ctb\"),\n person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"ctb\"),\n person(\"Michal\", \"Bojanowski\", , \"michal2992@gmail.com\", role = \"ctb\"),\n person(\"Hakon\", \"Malmedal\", , \"hmalmedal@gmail.com\", role = \"ctb\"),\n person(\"Clara\", \"Wang\", role = \"ctb\"),\n person(\"Sergio\", \"Oller\", , \"sergioller@gmail.com\", role = \"ctb\"),\n person(\"Luke\", \"Sonnet\", , \"luke.sonnet@gmail.com\", role = \"ctb\"),\n person(\"Jim\", \"Hester\", , \"jim.hester@posit.co\", role = \"ctb\"),\n person(\"Ben\", \"Schneider\", , \"benjamin.julius.schneider@gmail.com\", role = \"ctb\"),\n person(\"Bernie\", \"Gray\", , \"bfgray3@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0001-9190-6032\")),\n person(\"Mara\", \"Averick\", , \"mara@posit.co\", role = \"ctb\"),\n person(\"Aaron\", \"Jacobs\", , \"atheriel@gmail.com\", role = \"ctb\"),\n person(\"Andreas\", \"Bender\", , \"bender.at.R@gmail.com\", role = \"ctb\"),\n person(\"Sven\", \"Templer\", , \"sven.templer@gmail.com\", role = \"ctb\"),\n person(\"Paul-Christian\", \"Buerkner\", , \"paul.buerkner@gmail.com\", role = \"ctb\"),\n person(\"Matthew\", \"Kay\", , \"mjskay@umich.edu\", role = \"ctb\"),\n person(\"Erwan\", \"Le Pennec\", , \"lepennec@gmail.com\", role = \"ctb\"),\n person(\"Johan\", \"Junkka\", , \"johan.junkka@umu.se\", role = \"ctb\"),\n person(\"Hao\", \"Zhu\", , \"haozhu233@gmail.com\", role = \"ctb\"),\n person(\"Benjamin\", \"Soltoff\", , \"soltoffbc@uchicago.edu\", role = \"ctb\"),\n person(\"Zoe\", \"Wilkinson Saldana\", , \"zoewsaldana@gmail.com\", role = \"ctb\"),\n person(\"Tyler\", \"Littlefield\", , \"tylurp1@gmail.com\", role = \"ctb\"),\n person(\"Charles T.\", \"Gray\", , \"charlestigray@gmail.com\", role = \"ctb\"),\n person(\"Shabbh E.\", \"Banks\", role = \"ctb\"),\n person(\"Serina\", \"Robinson\", , \"robi0916@umn.edu\", role = \"ctb\"),\n person(\"Roger\", \"Bivand\", , \"Roger.Bivand@nhh.no\", role = \"ctb\"),\n person(\"Riinu\", \"Ots\", , \"riinuots@gmail.com\", role = \"ctb\"),\n person(\"Nicholas\", \"Williams\", , \"ntwilliams.personal@gmail.com\", role = \"ctb\"),\n person(\"Nina\", \"Jakobsen\", role = \"ctb\"),\n person(\"Michael\", \"Weylandt\", , \"michael.weylandt@gmail.com\", role = \"ctb\"),\n person(\"Lisa\", \"Lendway\", , \"llendway@macalester.edu\", role = \"ctb\"),\n person(\"Karl\", \"Hailperin\", , \"khailper@gmail.com\", role = \"ctb\"),\n person(\"Josue\", \"Rodriguez\", , \"jerrodriguez@ucdavis.edu\", role = \"ctb\"),\n person(\"Jenny\", \"Bryan\", , \"jenny@posit.co\", role = \"ctb\"),\n person(\"Chris\", \"Jarvis\", , \"Christopher1.jarvis@gmail.com\", role = \"ctb\"),\n person(\"Greg\", \"Macfarlane\", , \"gregmacfarlane@gmail.com\", role = \"ctb\"),\n person(\"Brian\", \"Mannakee\", , \"bmannakee@gmail.com\", role = \"ctb\"),\n person(\"Drew\", \"Tyre\", , \"atyre2@unl.edu\", role = \"ctb\"),\n person(\"Shreyas\", \"Singh\", , \"shreyas.singh.298@gmail.com\", role = \"ctb\"),\n person(\"Laurens\", \"Geffert\", , \"laurensgeffert@gmail.com\", role = \"ctb\"),\n person(\"Hong\", \"Ooi\", , \"hongooi@microsoft.com\", role = \"ctb\"),\n person(\"Henrik\", \"Bengtsson\", , \"henrikb@braju.com\", role = \"ctb\"),\n person(\"Eduard\", \"Szocs\", , \"eduardszoecs@gmail.com\", role = \"ctb\"),\n person(\"David\", \"Hugh-Jones\", , \"davidhughjones@gmail.com\", role = \"ctb\"),\n person(\"Matthieu\", \"Stigler\", , \"Matthieu.Stigler@gmail.com\", role = \"ctb\"),\n person(\"Hugo\", \"Tavares\", , \"hm533@cam.ac.uk\", role = \"ctb\",\n comment = c(ORCID = \"0000-0001-9373-2726\")),\n person(\"R. Willem\", \"Vervoort\", , \"Willemvervoort@gmail.com\", role = \"ctb\"),\n person(\"Brenton M.\", \"Wiernik\", , \"brenton@wiernik.org\", role = \"ctb\"),\n person(\"Josh\", \"Yamamoto\", , \"joshuayamamoto5@gmail.com\", role = \"ctb\"),\n person(\"Jasme\", \"Lee\", role = \"ctb\"),\n person(\"Taren\", \"Sanders\", , \"taren.sanders@acu.edu.au\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-4504-6008\")),\n person(\"Ilaria\", \"Prosdocimi\", , \"prosdocimi.ilaria@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0001-8565-094X\")),\n person(\"Daniel D.\", \"Sjoberg\", , \"danield.sjoberg@gmail.com\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-0862-2018\")),\n person(\"Alex\", \"Reinhart\", , \"areinhar@stat.cmu.edu\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-6658-514X\"))\n )", + "Description": "Summarizes key information about statistical objects in tidy\n tibbles. This makes it easy to report results, create plots and\n consistently work with large numbers of models at once. Broom\n provides three verbs that each provide different types of information\n about a model. tidy() summarizes information about model components\n such as coefficients of a regression. glance() reports information\n about an entire model, such as goodness of fit measures like AIC and\n BIC. augment() adds information about individual observations to a\n dataset, such as fitted values or influence measures.", "License": "MIT + file LICENSE", "URL": "https://broom.tidymodels.org/, https://github.com/tidymodels/broom", "BugReports": "https://github.com/tidymodels/broom/issues", - "Depends": "R (>= 3.5)", - "Imports": "backports, dplyr (>= 1.0.0), generics (>= 0.0.2), glue,\nlifecycle, purrr, rlang, stringr, tibble (>= 3.0.0), tidyr (>=\n1.0.0)", - "Suggests": "AER, AUC, bbmle, betareg (>= 3.2-1), biglm, binGroup, boot,\nbtergm (>= 1.10.6), car (>= 3.1-2), carData, caret, cluster,\ncmprsk, coda, covr, drc, e1071, emmeans, epiR, ergm (>=\n3.10.4), fixest (>= 0.9.0), gam (>= 1.15), gee, geepack,\nggplot2, glmnet, glmnetUtils, gmm, Hmisc, irlba, interp,\njoineRML, Kendall, knitr, ks, Lahman, lavaan (>= 0.6.18),\nleaps, lfe, lm.beta, lme4, lmodel2, lmtest (>= 0.9.38),\nlsmeans, maps, margins, MASS, mclust, mediation, metafor, mfx,\nmgcv, mlogit, modeldata, modeltests (>= 0.1.6), muhaz,\nmultcomp, network, nnet, orcutt (>= 2.2), ordinal, plm, poLCA,\npsych, quantreg, rmarkdown, robust, robustbase, rsample,\nsandwich, spdep (>= 1.1), spatialreg, speedglm, spelling,\nsurvey, survival (>= 3.6-4), systemfit, testthat (>= 2.1.0),\ntseries, vars, zoo", + "Depends": "R (>= 4.1)", + "Imports": "backports, cli, dplyr (>= 1.0.0), generics (>= 0.0.2), glue,\nlifecycle, purrr, rlang (>= 1.1.0), stringr, tibble (>= 3.0.0),\ntidyr (>= 1.0.0)", + "Suggests": "AER, AUC, bbmle, betareg (>= 3.2-1), biglm, binGroup, boot,\nbtergm (>= 1.10.6), car (>= 3.1-2), carData, caret, cluster,\ncmprsk, coda, covr, drc, e1071, emmeans, epiR (>= 2.0.85), ergm\n(>= 3.10.4), fixest (>= 0.9.0), gam (>= 1.15), gee, geepack,\nggplot2, glmnet, glmnetUtils, gmm, Hmisc, interp, irlba,\njoineRML, Kendall, knitr, ks, Lahman, lavaan (>= 0.6.18),\nleaps, lfe, lm.beta, lme4, lmodel2, lmtest (>= 0.9.38),\nlsmeans, maps, margins, MASS, mclust, mediation, metafor, mfx,\nmgcv, mlogit, modeldata, modeltests (>= 0.1.6), muhaz,\nmultcomp, network, nnet, ordinal, plm, poLCA, psych, quantreg,\nrmarkdown, robust, robustbase, rsample, sandwich, spatialreg,\nspdep (>= 1.1), speedglm, spelling, survey, survival (>=\n3.6-4), systemfit, testthat (>= 3.0.0), tseries, vars, zoo", "VignetteBuilder": "knitr", "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-25", "Encoding": "UTF-8", - "RoxygenNote": "7.3.2", "Language": "en-US", - "Collate": "'aaa-documentation-helper.R' 'null-and-default-tidiers.R'\n'aer-tidiers.R' 'auc-tidiers.R' 'base-tidiers.R'\n'bbmle-tidiers.R' 'betareg-tidiers.R' 'biglm-tidiers.R'\n'bingroup-tidiers.R' 'boot-tidiers.R' 'broom-package.R'\n'broom.R' 'btergm-tidiers.R' 'car-tidiers.R' 'caret-tidiers.R'\n'cluster-tidiers.R' 'cmprsk-tidiers.R' 'data-frame-tidiers.R'\n'deprecated-0-7-0.R' 'drc-tidiers.R' 'emmeans-tidiers.R'\n'epiR-tidiers.R' 'ergm-tidiers.R' 'fixest-tidiers.R'\n'gam-tidiers.R' 'geepack-tidiers.R'\n'glmnet-cv-glmnet-tidiers.R' 'glmnet-glmnet-tidiers.R'\n'gmm-tidiers.R' 'hmisc-tidiers.R' 'joinerml-tidiers.R'\n'kendall-tidiers.R' 'ks-tidiers.R' 'lavaan-tidiers.R'\n'leaps-tidiers.R' 'lfe-tidiers.R' 'list-irlba.R'\n'list-optim-tidiers.R' 'list-svd-tidiers.R' 'list-tidiers.R'\n'list-xyz-tidiers.R' 'lm-beta-tidiers.R' 'lmodel2-tidiers.R'\n'lmtest-tidiers.R' 'maps-tidiers.R' 'margins-tidiers.R'\n'mass-fitdistr-tidiers.R' 'mass-negbin-tidiers.R'\n'mass-polr-tidiers.R' 'mass-ridgelm-tidiers.R'\n'stats-lm-tidiers.R' 'mass-rlm-tidiers.R' 'mclust-tidiers.R'\n'mediation-tidiers.R' 'metafor-tidiers.R' 'mfx-tidiers.R'\n'mgcv-tidiers.R' 'mlogit-tidiers.R' 'muhaz-tidiers.R'\n'multcomp-tidiers.R' 'nnet-tidiers.R' 'nobs.R'\n'orcutt-tidiers.R' 'ordinal-clm-tidiers.R'\n'ordinal-clmm-tidiers.R' 'plm-tidiers.R' 'polca-tidiers.R'\n'psych-tidiers.R' 'stats-nls-tidiers.R'\n'quantreg-nlrq-tidiers.R' 'quantreg-rq-tidiers.R'\n'quantreg-rqs-tidiers.R' 'robust-glmrob-tidiers.R'\n'robust-lmrob-tidiers.R' 'robustbase-glmrob-tidiers.R'\n'robustbase-lmrob-tidiers.R' 'sp-tidiers.R' 'spdep-tidiers.R'\n'speedglm-speedglm-tidiers.R' 'speedglm-speedlm-tidiers.R'\n'stats-anova-tidiers.R' 'stats-arima-tidiers.R'\n'stats-decompose-tidiers.R' 'stats-factanal-tidiers.R'\n'stats-glm-tidiers.R' 'stats-htest-tidiers.R'\n'stats-kmeans-tidiers.R' 'stats-loess-tidiers.R'\n'stats-mlm-tidiers.R' 'stats-prcomp-tidiers.R'\n'stats-smooth.spline-tidiers.R' 'stats-summary-lm-tidiers.R'\n'stats-time-series-tidiers.R' 'survey-tidiers.R'\n'survival-aareg-tidiers.R' 'survival-cch-tidiers.R'\n'survival-coxph-tidiers.R' 'survival-pyears-tidiers.R'\n'survival-survdiff-tidiers.R' 'survival-survexp-tidiers.R'\n'survival-survfit-tidiers.R' 'survival-survreg-tidiers.R'\n'systemfit-tidiers.R' 'tseries-tidiers.R' 'utilities.R'\n'vars-tidiers.R' 'zoo-tidiers.R' 'zzz.R'", + "RoxygenNote": "7.3.2", + "Collate": "'aaa-documentation-helper.R' 'null-and-default.R' 'aer.R'\n'auc.R' 'base.R' 'bbmle.R' 'betareg.R' 'biglm.R' 'bingroup.R'\n'boot.R' 'broom-package.R' 'broom.R' 'btergm.R' 'car.R'\n'caret.R' 'cluster.R' 'cmprsk.R' 'data-frame.R'\n'deprecated-0-7-0.R' 'drc.R' 'emmeans.R' 'epiR.R' 'ergm.R'\n'fixest.R' 'gam.R' 'geepack.R' 'glmnet-cv-glmnet.R'\n'glmnet-glmnet.R' 'gmm.R' 'hmisc.R'\n'import-standalone-obj-type.R'\n'import-standalone-types-check.R' 'joinerml.R' 'kendall.R'\n'ks.R' 'lavaan.R' 'leaps.R' 'lfe.R' 'list-irlba.R'\n'list-optim.R' 'list-svd.R' 'list-xyz.R' 'list.R' 'lm-beta.R'\n'lmodel2.R' 'lmtest.R' 'maps.R' 'margins.R' 'mass-fitdistr.R'\n'mass-negbin.R' 'mass-polr.R' 'mass-ridgelm.R' 'stats-lm.R'\n'mass-rlm.R' 'mclust.R' 'mediation.R' 'metafor.R' 'mfx.R'\n'mgcv.R' 'mlogit.R' 'muhaz.R' 'multcomp.R' 'nnet.R' 'nobs.R'\n'ordinal-clm.R' 'ordinal-clmm.R' 'plm.R' 'polca.R' 'psych.R'\n'stats-nls.R' 'quantreg-nlrq.R' 'quantreg-rq.R'\n'quantreg-rqs.R' 'robust-glmrob.R' 'robust-lmrob.R'\n'robustbase-glmrob.R' 'robustbase-lmrob.R' 'sp.R' 'spdep.R'\n'speedglm-speedglm.R' 'speedglm-speedlm.R' 'stats-anova.R'\n'stats-arima.R' 'stats-decompose.R' 'stats-factanal.R'\n'stats-glm.R' 'stats-htest.R' 'stats-kmeans.R' 'stats-loess.R'\n'stats-mlm.R' 'stats-prcomp.R' 'stats-smooth.spline.R'\n'stats-summary-lm.R' 'stats-time-series.R' 'survey.R'\n'survival-aareg.R' 'survival-cch.R' 'survival-coxph.R'\n'survival-pyears.R' 'survival-survdiff.R' 'survival-survexp.R'\n'survival-survfit.R' 'survival-survreg.R' 'systemfit.R'\n'tseries.R' 'utilities.R' 'vars.R' 'zoo.R' 'zzz.R'", "NeedsCompilation": "no", - "Packaged": "2024-09-26 19:48:33 UTC; simoncouch", - "Author": "David Robinson [aut],\n Alex Hayes [aut] (),\n Simon Couch [aut, cre] (),\n Posit Software, PBC [cph, fnd],\n Indrajeet Patil [ctb] (),\n Derek Chiu [ctb],\n Matthieu Gomez [ctb],\n Boris Demeshev [ctb],\n Dieter Menne [ctb],\n Benjamin Nutter [ctb],\n Luke Johnston [ctb],\n Ben Bolker [ctb],\n Francois Briatte [ctb],\n Jeffrey Arnold [ctb],\n Jonah Gabry [ctb],\n Luciano Selzer [ctb],\n Gavin Simpson [ctb],\n Jens Preussner [ctb],\n Jay Hesselberth [ctb],\n Hadley Wickham [ctb],\n Matthew Lincoln [ctb],\n Alessandro Gasparini [ctb],\n Lukasz Komsta [ctb],\n Frederick Novometsky [ctb],\n Wilson Freitas [ctb],\n Michelle Evans [ctb],\n Jason Cory Brunson [ctb],\n Simon Jackson [ctb],\n Ben Whalley [ctb],\n Karissa Whiting [ctb],\n Yves Rosseel [ctb],\n Michael Kuehn [ctb],\n Jorge Cimentada [ctb],\n Erle Holgersen [ctb],\n Karl Dunkle Werner [ctb] (),\n Ethan Christensen [ctb],\n Steven Pav [ctb],\n Paul PJ [ctb],\n Ben Schneider [ctb],\n Patrick Kennedy [ctb],\n Lily Medina [ctb],\n Brian Fannin [ctb],\n Jason Muhlenkamp [ctb],\n Matt Lehman [ctb],\n Bill Denney [ctb] (),\n Nic Crane [ctb],\n Andrew Bates [ctb],\n Vincent Arel-Bundock [ctb] (),\n Hideaki Hayashi [ctb],\n Luis Tobalina [ctb],\n Annie Wang [ctb],\n Wei Yang Tham [ctb],\n Clara Wang [ctb],\n Abby Smith [ctb] (),\n Jasper Cooper [ctb] (),\n E Auden Krauska [ctb] (),\n Alex Wang [ctb],\n Malcolm Barrett [ctb] (),\n Charles Gray [ctb] (),\n Jared Wilber [ctb],\n Vilmantas Gegzna [ctb] (),\n Eduard Szoecs [ctb],\n Frederik Aust [ctb] (),\n Angus Moore [ctb],\n Nick Williams [ctb],\n Marius Barth [ctb] (),\n Bruna Wundervald [ctb] (),\n Joyce Cahoon [ctb] (),\n Grant McDermott [ctb] (),\n Kevin Zarca [ctb],\n Shiro Kuriwaki [ctb] (),\n Lukas Wallrich [ctb] (),\n James Martherus [ctb] (),\n Chuliang Xiao [ctb] (),\n Joseph Larmarange [ctb],\n Max Kuhn [ctb],\n Michal Bojanowski [ctb],\n Hakon Malmedal [ctb],\n Clara Wang [ctb],\n Sergio Oller [ctb],\n Luke Sonnet [ctb],\n Jim Hester [ctb],\n Ben Schneider [ctb],\n Bernie Gray [ctb] (),\n Mara Averick [ctb],\n Aaron Jacobs [ctb],\n Andreas Bender [ctb],\n Sven Templer [ctb],\n Paul-Christian Buerkner [ctb],\n Matthew Kay [ctb],\n Erwan Le Pennec [ctb],\n Johan Junkka [ctb],\n Hao Zhu [ctb],\n Benjamin Soltoff [ctb],\n Zoe Wilkinson Saldana [ctb],\n Tyler Littlefield [ctb],\n Charles T. Gray [ctb],\n Shabbh E. Banks [ctb],\n Serina Robinson [ctb],\n Roger Bivand [ctb],\n Riinu Ots [ctb],\n Nicholas Williams [ctb],\n Nina Jakobsen [ctb],\n Michael Weylandt [ctb],\n Lisa Lendway [ctb],\n Karl Hailperin [ctb],\n Josue Rodriguez [ctb],\n Jenny Bryan [ctb],\n Chris Jarvis [ctb],\n Greg Macfarlane [ctb],\n Brian Mannakee [ctb],\n Drew Tyre [ctb],\n Shreyas Singh [ctb],\n Laurens Geffert [ctb],\n Hong Ooi [ctb],\n Henrik Bengtsson [ctb],\n Eduard Szocs [ctb],\n David Hugh-Jones [ctb],\n Matthieu Stigler [ctb],\n Hugo Tavares [ctb] (),\n R. Willem Vervoort [ctb],\n Brenton M. Wiernik [ctb],\n Josh Yamamoto [ctb],\n Jasme Lee [ctb],\n Taren Sanders [ctb] (),\n Ilaria Prosdocimi [ctb] (),\n Daniel D. Sjoberg [ctb] (),\n Alex Reinhart [ctb] ()", + "Packaged": "2025-07-28 13:51:56 UTC; simoncouch", + "Author": "David Robinson [aut],\n Alex Hayes [aut] (ORCID: ),\n Simon Couch [aut, cre] (ORCID: ),\n Posit Software, PBC [cph, fnd] (ROR: ),\n Indrajeet Patil [ctb] (ORCID: ),\n Derek Chiu [ctb],\n Matthieu Gomez [ctb],\n Boris Demeshev [ctb],\n Dieter Menne [ctb],\n Benjamin Nutter [ctb],\n Luke Johnston [ctb],\n Ben Bolker [ctb],\n Francois Briatte [ctb],\n Jeffrey Arnold [ctb],\n Jonah Gabry [ctb],\n Luciano Selzer [ctb],\n Gavin Simpson [ctb],\n Jens Preussner [ctb],\n Jay Hesselberth [ctb],\n Hadley Wickham [ctb],\n Matthew Lincoln [ctb],\n Alessandro Gasparini [ctb],\n Lukasz Komsta [ctb],\n Frederick Novometsky [ctb],\n Wilson Freitas [ctb],\n Michelle Evans [ctb],\n Jason Cory Brunson [ctb],\n Simon Jackson [ctb],\n Ben Whalley [ctb],\n Karissa Whiting [ctb],\n Yves Rosseel [ctb],\n Michael Kuehn [ctb],\n Jorge Cimentada [ctb],\n Erle Holgersen [ctb],\n Karl Dunkle Werner [ctb] (ORCID:\n ),\n Ethan Christensen [ctb],\n Steven Pav [ctb],\n Paul PJ [ctb],\n Ben Schneider [ctb],\n Patrick Kennedy [ctb],\n Lily Medina [ctb],\n Brian Fannin [ctb],\n Jason Muhlenkamp [ctb],\n Matt Lehman [ctb],\n Bill Denney [ctb] (ORCID: ),\n Nic Crane [ctb],\n Andrew Bates [ctb],\n Vincent Arel-Bundock [ctb] (ORCID:\n ),\n Hideaki Hayashi [ctb],\n Luis Tobalina [ctb],\n Annie Wang [ctb],\n Wei Yang Tham [ctb],\n Clara Wang [ctb],\n Abby Smith [ctb] (ORCID: ),\n Jasper Cooper [ctb] (ORCID: ),\n E Auden Krauska [ctb] (ORCID: ),\n Alex Wang [ctb],\n Malcolm Barrett [ctb] (ORCID: ),\n Charles Gray [ctb] (ORCID: ),\n Jared Wilber [ctb],\n Vilmantas Gegzna [ctb] (ORCID: ),\n Eduard Szoecs [ctb],\n Frederik Aust [ctb] (ORCID: ),\n Angus Moore [ctb],\n Nick Williams [ctb],\n Marius Barth [ctb] (ORCID: ),\n Bruna Wundervald [ctb] (ORCID: ),\n Joyce Cahoon [ctb] (ORCID: ),\n Grant McDermott [ctb] (ORCID: ),\n Kevin Zarca [ctb],\n Shiro Kuriwaki [ctb] (ORCID: ),\n Lukas Wallrich [ctb] (ORCID: ),\n James Martherus [ctb] (ORCID: ),\n Chuliang Xiao [ctb] (ORCID: ),\n Joseph Larmarange [ctb],\n Max Kuhn [ctb],\n Michal Bojanowski [ctb],\n Hakon Malmedal [ctb],\n Clara Wang [ctb],\n Sergio Oller [ctb],\n Luke Sonnet [ctb],\n Jim Hester [ctb],\n Ben Schneider [ctb],\n Bernie Gray [ctb] (ORCID: ),\n Mara Averick [ctb],\n Aaron Jacobs [ctb],\n Andreas Bender [ctb],\n Sven Templer [ctb],\n Paul-Christian Buerkner [ctb],\n Matthew Kay [ctb],\n Erwan Le Pennec [ctb],\n Johan Junkka [ctb],\n Hao Zhu [ctb],\n Benjamin Soltoff [ctb],\n Zoe Wilkinson Saldana [ctb],\n Tyler Littlefield [ctb],\n Charles T. Gray [ctb],\n Shabbh E. Banks [ctb],\n Serina Robinson [ctb],\n Roger Bivand [ctb],\n Riinu Ots [ctb],\n Nicholas Williams [ctb],\n Nina Jakobsen [ctb],\n Michael Weylandt [ctb],\n Lisa Lendway [ctb],\n Karl Hailperin [ctb],\n Josue Rodriguez [ctb],\n Jenny Bryan [ctb],\n Chris Jarvis [ctb],\n Greg Macfarlane [ctb],\n Brian Mannakee [ctb],\n Drew Tyre [ctb],\n Shreyas Singh [ctb],\n Laurens Geffert [ctb],\n Hong Ooi [ctb],\n Henrik Bengtsson [ctb],\n Eduard Szocs [ctb],\n David Hugh-Jones [ctb],\n Matthieu Stigler [ctb],\n Hugo Tavares [ctb] (ORCID: ),\n R. Willem Vervoort [ctb],\n Brenton M. Wiernik [ctb],\n Josh Yamamoto [ctb],\n Jasme Lee [ctb],\n Taren Sanders [ctb] (ORCID: ),\n Ilaria Prosdocimi [ctb] (ORCID:\n ),\n Daniel D. Sjoberg [ctb] (ORCID:\n ),\n Alex Reinhart [ctb] (ORCID: )", "Maintainer": "Simon Couch ", - "Repository": "CRAN", - "Date/Publication": "2024-09-26 21:00:13 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:50:16 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-28 15:20:07 UTC", + "Built": "R 4.5.0; ; 2025-07-29 11:44:43 UTC; unix" } }, "bslib": { @@ -815,9 +819,9 @@ "Packaged": "2025-01-30 22:04:52 UTC; garrick", "Author": "Carson Sievert [aut, cre] (),\n Joe Cheng [aut],\n Garrick Aden-Buie [aut] (),\n Posit Software, PBC [cph, fnd],\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Javi Aguilar [ctb, cph] (Bootstrap colorpicker library),\n Thomas Park [ctb, cph] (Bootswatch library),\n PayPal [ctb, cph] (Bootstrap accessibility plugin)", "Maintainer": "Carson Sievert ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2025-01-30 23:20:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:51:14 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:45:56 UTC; unix" } }, "cachem": { @@ -842,9 +846,9 @@ "Packaged": "2024-05-15 15:54:22 UTC; winston", "Author": "Winston Chang [aut, cre],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Winston Chang ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-05-16 09:50:11 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:21 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:51 UTC; unix" } }, "callr": { @@ -871,9 +875,9 @@ "Packaged": "2024-03-25 12:10:25 UTC; gaborcsardi", "Author": "Gábor Csárdi [aut, cre, cph] (),\n Winston Chang [aut],\n Posit Software, PBC [cph, fnd],\n Ascent Digital Services [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-03-25 13:30:06 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:48:40 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:43:04 UTC; unix" } }, "checkmate": { @@ -902,9 +906,9 @@ "Packaged": "2024-07-29 09:26:26 UTC; michel", "Author": "Michel Lang [cre, aut] (),\n Bernd Bischl [ctb],\n Dénes Tóth [ctb] ()", "Maintainer": "Michel Lang ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-29 12:30:06 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:51:16 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:35 UTC; unix" } }, "chromote": { @@ -913,27 +917,30 @@ "description": { "Package": "chromote", "Title": "Headless Chrome Web Browser Interface", - "Version": "0.4.0", - "Authors@R": "c(\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-7111-0077\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Version": "0.5.1", + "Authors@R": "c(\n person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-7111-0077\")),\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"aut\"),\n person(\"Barret\", \"Schloerke\", , \"barret@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\"))\n )", "Description": "An implementation of the 'Chrome DevTools Protocol', for\n controlling a headless Chrome web browser.", - "License": "GPL-2", + "License": "MIT + file LICENSE", "URL": "https://rstudio.github.io/chromote/,\nhttps://github.com/rstudio/chromote", "BugReports": "https://github.com/rstudio/chromote/issues", - "Imports": "curl, fastmap, jsonlite, later (>= 1.1.0), magrittr, processx,\npromises (>= 1.1.1), R6, rlang, utils, websocket (>= 1.2.0)", - "Suggests": "showimage, testthat (>= 3.0.0)", - "Config/Needs/website": "tidyverse/tidytemplate", + "Imports": "cli, curl, fastmap, jsonlite, later (>= 1.1.0), magrittr,\nprocessx, promises (>= 1.1.1), R6, rlang (>= 1.1.0), utils,\nwebsocket (>= 1.2.0), withr, zip", + "Suggests": "knitr, rmarkdown, showimage, testthat (>= 3.0.0)", + "VignetteBuilder": "knitr", + "Config/Needs/website": "r-lib/pkgdown, rstudio/bslib", "Config/testthat/edition": "3", + "Config/testthat/parallel": "FALSE", + "Config/testthat/start-first": "chromote_session", "Encoding": "UTF-8", "Language": "en-US", "RoxygenNote": "7.3.2", "SystemRequirements": "Google Chrome or other Chromium-based browser.\nchromium: chromium (rpm) or chromium-browser (deb)", "NeedsCompilation": "no", - "Packaged": "2025-01-24 16:36:51 UTC; garrick", - "Author": "Winston Chang [aut, cre],\n Barret Schloerke [aut] (),\n Garrick Aden-Buie [aut] (),\n Posit Software, PBC [cph, fnd]", - "Maintainer": "Winston Chang ", - "Repository": "CRAN", - "Date/Publication": "2025-01-25 00:20:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:51:49 UTC; unix" + "Packaged": "2025-04-24 03:18:21 UTC; garrick", + "Author": "Garrick Aden-Buie [aut, cre] (),\n Winston Chang [aut],\n Barret Schloerke [aut] (),\n Posit Software, PBC [cph, fnd] (03wc8by49)", + "Maintainer": "Garrick Aden-Buie ", + "Repository": "RSPM", + "Date/Publication": "2025-04-24 03:40:02 UTC", + "Built": "R 4.5.0; ; 2025-04-25 04:54:27 UTC; unix" } }, "class": { @@ -958,7 +965,7 @@ "Maintainer": "Brian Ripley ", "Repository": "CRAN", "Date/Publication": "2025-01-01 10:25:33 UTC", - "Built": "R 4.4.2; x86_64-pc-linux-gnu; 'Tue, 07 Jan 2025 00:15:21 +0000'; unix" + "Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:29:50 UTC; unix" } }, "cli": { @@ -967,26 +974,26 @@ "description": { "Package": "cli", "Title": "Helpers for Developing Command Line Interfaces", - "Version": "3.6.3", - "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Kirill\", \"Müller\", role = \"ctb\"),\n person(\"Salim\", \"Brüggemann\", , \"salim-b@pm.me\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-5329-5987\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Version": "3.6.5", + "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"gabor@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Kirill\", \"Müller\", role = \"ctb\"),\n person(\"Salim\", \"Brüggemann\", , \"salim-b@pm.me\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-5329-5987\")),\n person(\"Posit Software, PBC\", 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,\n etc. Supports custom themes via a 'CSS'-like language. It also\n contains a number of lower level 'CLI' elements: rules, boxes, trees,\n and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI\n colors and text styles as well.", "License": "MIT + file LICENSE", "URL": "https://cli.r-lib.org, https://github.com/r-lib/cli", "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", + "Suggests": "callr, covr, crayon, digest, glue (>= 1.6.0), grDevices,\nhtmltools, htmlwidgets, knitr, methods, processx, ps (>=\n1.3.4.9000), rlang (>= 1.0.2.9003), rmarkdown, rprojroot,\nrstudioapi, testthat (>= 3.2.0), 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.3", + "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", - "Packaged": "2024-06-21 17:24:00 UTC; gaborcsardi", + "Packaged": "2025-04-22 12:00:18 UTC; gaborcsardi", "Author": "Gábor Csárdi [aut, cre],\n Hadley Wickham [ctb],\n Kirill Müller [ctb],\n Salim Brüggemann [ctb] (),\n Posit Software, PBC [cph, fnd]", - "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN", - "Date/Publication": "2024-06-21 21:00:07 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:16 UTC; unix" + "Maintainer": "Gábor Csárdi ", + "Repository": "RSPM", + "Date/Publication": "2025-04-23 13:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-24 05:04:45 UTC; unix" } }, "clipr": { @@ -1013,9 +1020,9 @@ "Packaged": "2022-02-19 02:20:21 UTC; mlincoln", "Author": "Matthew Lincoln [aut, cre] (),\n Louis Maddox [ctb],\n Steve Simpson [ctb],\n Jennifer Bryan [ctb]", "Maintainer": "Matthew Lincoln ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2022-02-22 00:58:45 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:51:51 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:42:33 UTC; unix" } }, "clock": { @@ -1024,16 +1031,16 @@ "description": { "Package": "clock", "Title": "Date-Time Types and Tools", - "Version": "0.7.2", + "Version": "0.7.3", "Authors@R": "c(\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", "Description": "Provides a comprehensive library for date-time manipulations\n using a new family of orthogonal date-time classes (durations, time\n points, zoned-times, and calendars) that partition responsibilities so\n that the complexities of time zones are only considered when they are\n really needed. Capabilities include: date-time parsing, formatting,\n arithmetic, 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.6.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.5.1), tzdb (>= 0.4.0)", + "Depends": "R (>= 4.0.0)", + "Imports": "cli (>= 3.6.4), lifecycle (>= 1.0.4), rlang (>= 1.1.5), tzdb\n(>= 0.5.0), vctrs (>= 0.6.5)", + "Suggests": "covr, knitr, magrittr, pillar, rmarkdown, slider (>= 0.3.2),\ntestthat (>= 3.0.0), withr", + "LinkingTo": "cpp11 (>= 0.5.2), tzdb (>= 0.5.0)", "VignetteBuilder": "knitr", "Config/build/compilation-database": "true", "Config/Needs/website": "lubridate, tidyverse/tidytemplate", @@ -1042,12 +1049,12 @@ "LazyData": "true", "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", - "Packaged": "2025-01-21 22:04:46 UTC; davis", + "Packaged": "2025-03-17 14:40:28 UTC; davis", "Author": "Davis Vaughan [aut, cre],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Davis Vaughan ", - "Repository": "CRAN", - "Date/Publication": "2025-01-21 23:00:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:51:57 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-03-21 19:00:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-08 03:10:58 UTC; unix" } }, "codetools": { @@ -1068,7 +1075,7 @@ "Packaged": "2024-03-31 18:18:09 UTC; luke", "Repository": "CRAN", "Date/Publication": "2024-03-31 20:10:06 UTC", - "Built": "R 4.4.0; ; 'Sat, 27 Apr 2024 18:01:06 +0000'; unix" + "Built": "R 4.5.1; ; 2025-06-14 01:29:47 UTC; unix" } }, "colorspace": { @@ -1095,9 +1102,9 @@ "Packaged": "2024-07-26 15:40:41 UTC; zeileis", "Author": "Ross Ihaka [aut],\n Paul Murrell [aut] (),\n Kurt Hornik [aut] (),\n Jason C. Fisher [aut] (),\n Reto Stauffer [aut] (),\n Claus O. Wilke [aut] (),\n Claire D. McWhite [aut] (),\n Achim Zeileis [aut, cre] ()", "Maintainer": "Achim Zeileis ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-26 17:10:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:52:38 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:26 UTC; unix" } }, "commonmark": { @@ -1107,23 +1114,23 @@ "Package": "commonmark", "Type": "Package", "Title": "High Performance CommonMark and Github Markdown Rendering in R", - "Version": "1.9.2", + "Version": "2.0.0", "Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", ,\"jeroenooms@gmail.com\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))", "Description": "The CommonMark specification defines\n a rationalized version of markdown syntax. This package uses the 'cmark' \n reference implementation for converting markdown text into various formats\n including html, latex and groff man. In addition it exposes the markdown\n parse tree in xml format. Also includes opt-in support for GFM extensions\n including tables, autolinks, and strikethrough text.", "License": "BSD_2_clause + file LICENSE", "URL": "https://docs.ropensci.org/commonmark/\nhttps://ropensci.r-universe.dev/commonmark", "BugReports": "https://github.com/r-lib/commonmark/issues", "Suggests": "curl, testthat, xml2", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2", "Language": "en-US", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Packaged": "2024-10-03 14:12:30 UTC; jeroen", - "Author": "Jeroen Ooms [aut, cre] (),\n John MacFarlane [cph] (Author of cmark)", + "Packaged": "2025-07-07 13:20:39 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (ORCID: ),\n John MacFarlane [cph] (Author of cmark)", "Maintainer": "Jeroen Ooms ", - "Repository": "CRAN", - "Date/Publication": "2024-10-04 12:40:06 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:52:41 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-07 13:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-08 04:45:55 UTC; unix" } }, "config": { @@ -1150,9 +1157,9 @@ "Packaged": "2023-08-30 09:28:23 UTC; apdev", "Author": "JJ Allaire [aut],\n Andrie de Vries [cre],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Andrie de Vries ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-08-30 16:50:36 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:52:45 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-08 03:11:37 UTC; unix" } }, "connectapi": { @@ -1162,26 +1169,27 @@ "Type": "Package", "Package": "connectapi", "Title": "Utilities for Interacting with the 'Posit Connect' Server API", - "Version": "0.5.0", + "Version": "0.8.0", "Authors@R": "c(\n person(given = \"Toph\",\n family = \"Allen\",\n role = c(\"aut\", \"cre\"),\n email = \"toph@posit.co\"),\n person(given = \"Neal\",\n family = \"Richardson\",\n role = c(\"aut\")),\n person(given = \"Sean\",\n family = \"Lopp\",\n role = c(\"aut\")),\n person(given = \"Cole\",\n family = \"Arendt\",\n role = c(\"aut\")),\n person(given = \"Posit, PBC\",\n role = c(\"cph\", \"fnd\")))", "Description": "Provides a helpful 'R6' class and methods for interacting with\n the 'Posit Connect' Server API along with some meaningful utility functions\n for regular tasks. API documentation varies by 'Posit Connect' installation\n and version, but the latest documentation is also hosted publicly at\n .", "License": "MIT + file LICENSE", - "URL": "https://pkgs.rstudio.com/connectapi/,\nhttps://github.com/rstudio/connectapi", - "BugReports": "https://github.com/rstudio/connectapi/issues", - "Imports": "bit64, fs, glue, httr, mime, jsonlite, lifecycle, magrittr,\npurrr, R6, rlang (>= 0.4.2), tibble, uuid, vctrs (>= 0.3.0)", - "Suggests": "covr, dbplyr, dplyr, ggplot2, gridExtra, httptest, knitr,\nlubridate, progress, rmarkdown, rprojroot, rsconnect, spelling,\ntestthat, webshot2, withr", + "URL": "https://posit-dev.github.io/connectapi/,\nhttps://github.com/posit-dev/connectapi", + "BugReports": "https://github.com/posit-dev/connectapi/issues", + "Imports": "bit64, fs, glue, httr, mime, jsonlite, lifecycle, magrittr,\npurrr, R6, rlang (>= 0.4.2), tibble, uuid, vctrs (>= 0.3.0),\nbase64enc", + "Suggests": "covr, dbplyr, dplyr, ggplot2, gridExtra, httptest, knitr,\nlubridate, progress, rmarkdown, rprojroot, rsconnect, spelling,\ntestthat, tidyr, webshot2, withr", "VignetteBuilder": "knitr", "Encoding": "UTF-8", "Language": "en-US", "RoxygenNote": "7.3.2", "Config/testthat/edition": "3", + "Collate": "'audits.R' 'browse.R' 'connect.R' 'connectapi-package.R'\n'connectapi.R' 'content.R' 'deploy.R' 'get.R' 'git.R'\n'groups.R' 'integrations.R' 'lazy.R' 'page.R' 'parse.R'\n'promote.R' 'ptype.R' 'remote.R' 'runtime-caches.R'\n'schedule.R' 'tags.R' 'utils.R' 'thumbnail.R' 'user.R'\n'utils-ci.R' 'utils-pipe.R' 'variant.R'", "NeedsCompilation": "no", - "Packaged": "2024-12-18 22:21:42 UTC; toph", + "Packaged": "2025-07-30 21:46:47 UTC; toph", "Author": "Toph Allen [aut, cre],\n Neal Richardson [aut],\n Sean Lopp [aut],\n Cole Arendt [aut],\n Posit, PBC [cph, fnd]", "Maintainer": "Toph Allen ", - "Repository": "CRAN", - "Date/Publication": "2024-12-18 22:40:06 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:52:53 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-30 22:00:11 UTC", + "Built": "R 4.5.1; ; 2025-07-31 10:41:25 UTC; unix" } }, "corrplot": { @@ -1205,9 +1213,10 @@ "NeedsCompilation": "no", "Packaged": "2024-10-14 05:38:35 UTC; weita", "Author": "Taiyun Wei [cre, aut],\n Viliam Simko [aut],\n Michael Levy [ctb],\n Yihui Xie [ctb],\n Yan Jin [ctb],\n Jeff Zemla [ctb],\n Moritz Freidank [ctb],\n Jun Cai [ctb],\n Tomas Protivinsky [ctb]", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-10-14 12:11:18 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:52:56 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-06 04:42:08 UTC; unix" } }, "countrycode": { @@ -1217,7 +1226,7 @@ "Type": "Package", "Package": "countrycode", "Title": "Convert Country Names and Country Codes", - "Version": "1.6.0", + "Version": "1.6.1", "Authors@R": "\n c(person(given = \"Vincent\",\n family = \"Arel-Bundock\",\n role = c(\"aut\", \"cre\"),\n email = \"vincent.arel-bundock@umontreal.ca\",\n comment = c(ORCID = \"0000-0003-2042-7063\")),\n person(given = \"CJ\",\n family = \"Yetman\",\n role = \"ctb\",\n email = \"cj@cjyetman.com\",\n comment = c(ORCID = \"0000-0001-5099-9500\")),\n person(given = \"Nils\",\n family = \"Enevoldsen\",\n role = \"ctb\",\n email = \"nils@wlonk.com\",\n comment = c(ORCID = \"0000-0001-7195-4117\")),\n person(\"Etienne\", \"Bacher\",\n email = \"etienne.bacher@protonmail.com\",\n role = \"ctb\",\n comment = c(ORCID = \"0000-0002-9271-5075\")),\n person(given = \"Samuel\",\n family = \"Meichtry\",\n role = \"ctb\",\n email = \"samuel.meichtry@bj.admin.ch\",\n comment = c(ORCID = \"0000-0003-2165-791X\")))", "Description": "Standardize country names, convert them into one of 40\n different coding schemes, convert between coding schemes, and assign\n region descriptors.", "License": "GPL-3", @@ -1228,14 +1237,14 @@ "Encoding": "UTF-8", "LazyData": "yes", "LazyLoad": "yes", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2024-03-22 15:18:14 UTC; vincent", + "Packaged": "2025-03-31 19:29:48 UTC; vincent", "Author": "Vincent Arel-Bundock [aut, cre]\n (),\n CJ Yetman [ctb] (),\n Nils Enevoldsen [ctb] (),\n Etienne Bacher [ctb] (),\n Samuel Meichtry [ctb] ()", "Maintainer": "Vincent Arel-Bundock ", - "Repository": "CRAN", - "Date/Publication": "2024-03-22 16:10:19 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:52:57 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-03-31 20:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-09 05:58:20 UTC; unix" } }, "cpp11": { @@ -1244,7 +1253,7 @@ "description": { "Package": "cpp11", "Title": "A C++11 Interface for R's C Interface", - "Version": "0.5.1", + "Version": "0.5.2", "Authors@R": "\n c(\n person(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")),\n person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Benjamin\", \"Kietzman\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", "Description": "Provides a header only, C++11 interface to R's C\n interface. Compared to other approaches 'cpp11' strives to be safe\n against long jumps from the C API as well as C++ exceptions, conform\n to normal R function semantics and supports interaction with 'ALTREP'\n vectors.", "License": "MIT + file LICENSE", @@ -1259,12 +1268,12 @@ "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2024-12-04 14:25:58 UTC; davis", + "Packaged": "2025-03-03 22:24:28 UTC; davis", "Author": "Davis Vaughan [aut, cre] (),\n Jim Hester [aut] (),\n Romain François [aut] (),\n Benjamin Kietzman [ctb],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Davis Vaughan ", - "Repository": "CRAN", - "Date/Publication": "2024-12-04 15:40:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:50:12 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-03-03 23:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-06 04:42:26 UTC; unix" } }, "crayon": { @@ -1289,9 +1298,9 @@ "Packaged": "2024-06-20 11:49:08 UTC; gaborcsardi", "Author": "Gábor Csárdi [aut, cre],\n Brodie Gaslam [ctb],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-06-20 13:00:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:48:42 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:42:34 UTC; unix" } }, "crosstalk": { @@ -1315,9 +1324,9 @@ "Packaged": "2023-11-22 16:29:50 UTC; cpsievert", "Author": "Joe Cheng [aut],\n Carson Sievert [aut, cre] (),\n Posit Software, PBC [cph, fnd],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/www/shared/jquery-AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Brian Reavis [ctb, cph] (selectize.js library),\n Kristopher Michael Kowal [ctb, cph] (es5-shim library),\n es5-shim contributors [ctb, cph] (es5-shim library),\n Denis Ineshin [ctb, cph] (ion.rangeSlider library),\n Sami Samhuri [ctb, cph] (Javascript strftime library)", "Maintainer": "Carson Sievert ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-11-23 08:50:07 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:52:58 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:43:12 UTC; unix" } }, "curl": { @@ -1327,11 +1336,11 @@ "Package": "curl", "Type": "Package", "Title": "A Modern and Flexible Web Client for R", - "Version": "6.2.0", + "Version": "6.4.0", "Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = \"cph\"))", "Description": "Bindings to 'libcurl' for performing fully\n configurable HTTP/FTP requests where responses can be processed in memory, on\n disk, or streaming via the callback or connection interfaces. Some knowledge\n of 'libcurl' is recommended; for a more-user-friendly web client see the \n 'httr2' package which builds on this package with http specific tools and logic.", "License": "MIT + file LICENSE", - "SystemRequirements": "libcurl (>= 7.62): libcurl-devel (rpm) or\nlibcurl4-openssl-dev (deb)", + "SystemRequirements": "libcurl (>= 7.73): libcurl-devel (rpm) or\nlibcurl4-openssl-dev (deb)", "URL": "https://jeroen.r-universe.dev/curl", "BugReports": "https://github.com/jeroen/curl/issues", "Suggests": "spelling, testthat (>= 1.0.0), knitr, jsonlite, later,\nrmarkdown, httpuv (>= 1.4.4), webutils", @@ -1341,36 +1350,12 @@ "Encoding": "UTF-8", "Language": "en-US", "NeedsCompilation": "yes", - "Packaged": "2025-01-23 12:31:51 UTC; jeroen", - "Author": "Jeroen Ooms [aut, cre] (),\n Hadley Wickham [ctb],\n Posit Software, PBC [cph]", + "Packaged": "2025-06-21 19:18:13 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (ORCID: ),\n Hadley Wickham [ctb],\n Posit Software, PBC [cph]", "Maintainer": "Jeroen Ooms ", - "Repository": "CRAN", - "Date/Publication": "2025-01-23 18:40:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:56 UTC; unix" - } - }, - "cyclocomp": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Package": "cyclocomp", - "Title": "Cyclomatic Complexity of R Code", - "Version": "1.1.1", - "Author": "Gabor Csardi", - "Maintainer": "Gabor Csardi ", - "Description": "Cyclomatic complexity is a software metric (measurement),\n used to indicate the complexity of a program. It is a quantitative\n measure of the number of linearly independent paths through a program's\n source code. It was developed by Thomas J. McCabe, Sr. in 1976.", - "License": "MIT + file LICENSE", - "URL": "https://github.com/gaborcsardi/cyclocomp", - "BugReports": "https://github.com/gaborcsardi/cyclocomp/issues", - "Imports": "callr, crayon, desc, remotes, withr", - "Suggests": "testthat", - "RoxygenNote": "7.2.3", - "Encoding": "UTF-8", - "NeedsCompilation": "no", - "Packaged": "2023-08-30 12:49:50 UTC; gaborcsardi", - "Repository": "CRAN", - "Date/Publication": "2023-08-30 17:00:22 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:48:46 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-06-22 10:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-06-23 17:59:14 UTC; unix" } }, "data.table": { @@ -1378,7 +1363,7 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "data.table", - "Version": "1.16.4", + "Version": "1.17.8", "Title": "Extension of `data.frame`", "Depends": "R (>= 3.3.0)", "Imports": "methods", @@ -1390,14 +1375,14 @@ "VignetteBuilder": "knitr", "Encoding": "UTF-8", "ByteCompile": "TRUE", - "Authors@R": "c(\n person(\"Tyson\",\"Barrett\", role=c(\"aut\",\"cre\"), email=\"t.barrett88@gmail.com\", comment = c(ORCID=\"0000-0002-2137-1391\")),\n person(\"Matt\",\"Dowle\", role=\"aut\", email=\"mattjdowle@gmail.com\"),\n person(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"asrini@pm.me\"),\n person(\"Jan\",\"Gorecki\", role=\"aut\"),\n person(\"Michael\",\"Chirico\", role=\"aut\", comment = c(ORCID=\"0000-0003-0787-087X\")),\n person(\"Toby\",\"Hocking\", role=\"aut\", comment = c(ORCID=\"0000-0002-3146-0865\")),\n person(\"Benjamin\",\"Schwendinger\",role=\"aut\", comment = c(ORCID=\"0000-0003-3315-8114\")),\n person(\"Pasha\",\"Stetsenko\", role=\"ctb\"),\n person(\"Tom\",\"Short\", role=\"ctb\"),\n person(\"Steve\",\"Lianoglou\", role=\"ctb\"),\n person(\"Eduard\",\"Antonyan\", role=\"ctb\"),\n person(\"Markus\",\"Bonsch\", role=\"ctb\"),\n person(\"Hugh\",\"Parsonage\", role=\"ctb\"),\n person(\"Scott\",\"Ritchie\", role=\"ctb\"),\n person(\"Kun\",\"Ren\", role=\"ctb\"),\n person(\"Xianying\",\"Tan\", role=\"ctb\"),\n person(\"Rick\",\"Saporta\", role=\"ctb\"),\n person(\"Otto\",\"Seiskari\", role=\"ctb\"),\n person(\"Xianghui\",\"Dong\", role=\"ctb\"),\n person(\"Michel\",\"Lang\", role=\"ctb\"),\n person(\"Watal\",\"Iwasaki\", role=\"ctb\"),\n person(\"Seth\",\"Wenchel\", role=\"ctb\"),\n person(\"Karl\",\"Broman\", role=\"ctb\"),\n person(\"Tobias\",\"Schmidt\", role=\"ctb\"),\n person(\"David\",\"Arenburg\", role=\"ctb\"),\n person(\"Ethan\",\"Smith\", role=\"ctb\"),\n person(\"Francois\",\"Cocquemas\", role=\"ctb\"),\n person(\"Matthieu\",\"Gomez\", role=\"ctb\"),\n person(\"Philippe\",\"Chataignon\", role=\"ctb\"),\n person(\"Nello\",\"Blaser\", role=\"ctb\"),\n person(\"Dmitry\",\"Selivanov\", role=\"ctb\"),\n person(\"Andrey\",\"Riabushenko\", role=\"ctb\"),\n person(\"Cheng\",\"Lee\", role=\"ctb\"),\n person(\"Declan\",\"Groves\", role=\"ctb\"),\n person(\"Daniel\",\"Possenriede\", role=\"ctb\"),\n person(\"Felipe\",\"Parages\", role=\"ctb\"),\n person(\"Denes\",\"Toth\", role=\"ctb\"),\n person(\"Mus\",\"Yaramaz-David\", role=\"ctb\"),\n person(\"Ayappan\",\"Perumal\", role=\"ctb\"),\n person(\"James\",\"Sams\", role=\"ctb\"),\n person(\"Martin\",\"Morgan\", role=\"ctb\"),\n person(\"Michael\",\"Quinn\", role=\"ctb\"),\n person(\"@javrucebo\",\"\", role=\"ctb\"),\n person(\"@marc-outins\",\"\", role=\"ctb\"),\n person(\"Roy\",\"Storey\", role=\"ctb\"),\n person(\"Manish\",\"Saraswat\", role=\"ctb\"),\n person(\"Morgan\",\"Jacob\", role=\"ctb\"),\n person(\"Michael\",\"Schubmehl\", role=\"ctb\"),\n person(\"Davis\",\"Vaughan\", role=\"ctb\"),\n person(\"Leonardo\",\"Silvestri\", role=\"ctb\"),\n person(\"Jim\",\"Hester\", role=\"ctb\"),\n person(\"Anthony\",\"Damico\", role=\"ctb\"),\n person(\"Sebastian\",\"Freundt\", role=\"ctb\"),\n person(\"David\",\"Simons\", role=\"ctb\"),\n person(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"),\n person(\"Cole\",\"Miller\", role=\"ctb\"),\n person(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"),\n person(\"Vaclav\",\"Tlapak\", role=\"ctb\"),\n person(\"Kevin\",\"Ushey\", role=\"ctb\"),\n person(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"),\n person(\"Tony\",\"Fischetti\", role=\"ctb\"),\n person(\"Ofek\",\"Shilon\", role=\"ctb\"),\n person(\"Vadim\",\"Khotilovich\", role=\"ctb\"),\n person(\"Hadley\",\"Wickham\", role=\"ctb\"),\n person(\"Bennet\",\"Becker\", role=\"ctb\"),\n person(\"Kyle\",\"Haynes\", role=\"ctb\"),\n person(\"Boniface Christian\",\"Kamgang\", role=\"ctb\"),\n person(\"Olivier\",\"Delmarcell\", role=\"ctb\"),\n person(\"Josh\",\"O'Brien\", role=\"ctb\"),\n person(\"Dereck\",\"de Mezquita\", role=\"ctb\"),\n person(\"Michael\",\"Czekanski\", role=\"ctb\"),\n person(\"Dmitry\", \"Shemetov\", role=\"ctb\"),\n person(\"Nitish\", \"Jha\", role=\"ctb\"),\n person(\"Joshua\", \"Wu\", role=\"ctb\"),\n person(\"Iago\", \"Giné-Vázquez\", role=\"ctb\"),\n person(\"Anirban\", \"Chetia\", role=\"ctb\"),\n person(\"Doris\", \"Amoakohene\", role=\"ctb\"),\n person(\"Ivan\", \"Krylov\", role=\"ctb\")\n )", + "Authors@R": "c(\n person(\"Tyson\",\"Barrett\", role=c(\"aut\",\"cre\"), email=\"t.barrett88@gmail.com\", comment = c(ORCID=\"0000-0002-2137-1391\")),\n person(\"Matt\",\"Dowle\", role=\"aut\", email=\"mattjdowle@gmail.com\"),\n person(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"asrini@pm.me\"),\n person(\"Jan\",\"Gorecki\", role=\"aut\"),\n person(\"Michael\",\"Chirico\", role=\"aut\", comment = c(ORCID=\"0000-0003-0787-087X\")),\n person(\"Toby\",\"Hocking\", role=\"aut\", comment = c(ORCID=\"0000-0002-3146-0865\")),\n person(\"Benjamin\",\"Schwendinger\",role=\"aut\", comment = c(ORCID=\"0000-0003-3315-8114\")),\n person(\"Ivan\", \"Krylov\", role=\"aut\", email=\"ikrylov@disroot.org\", comment = c(ORCID=\"0000-0002-0172-3812\")),\n person(\"Pasha\",\"Stetsenko\", role=\"ctb\"),\n person(\"Tom\",\"Short\", role=\"ctb\"),\n person(\"Steve\",\"Lianoglou\", role=\"ctb\"),\n person(\"Eduard\",\"Antonyan\", role=\"ctb\"),\n person(\"Markus\",\"Bonsch\", role=\"ctb\"),\n person(\"Hugh\",\"Parsonage\", role=\"ctb\"),\n person(\"Scott\",\"Ritchie\", role=\"ctb\"),\n person(\"Kun\",\"Ren\", role=\"ctb\"),\n person(\"Xianying\",\"Tan\", role=\"ctb\"),\n person(\"Rick\",\"Saporta\", role=\"ctb\"),\n person(\"Otto\",\"Seiskari\", role=\"ctb\"),\n person(\"Xianghui\",\"Dong\", role=\"ctb\"),\n person(\"Michel\",\"Lang\", role=\"ctb\"),\n person(\"Watal\",\"Iwasaki\", role=\"ctb\"),\n person(\"Seth\",\"Wenchel\", role=\"ctb\"),\n person(\"Karl\",\"Broman\", role=\"ctb\"),\n person(\"Tobias\",\"Schmidt\", role=\"ctb\"),\n person(\"David\",\"Arenburg\", role=\"ctb\"),\n person(\"Ethan\",\"Smith\", role=\"ctb\"),\n person(\"Francois\",\"Cocquemas\", role=\"ctb\"),\n person(\"Matthieu\",\"Gomez\", role=\"ctb\"),\n person(\"Philippe\",\"Chataignon\", role=\"ctb\"),\n person(\"Nello\",\"Blaser\", role=\"ctb\"),\n person(\"Dmitry\",\"Selivanov\", role=\"ctb\"),\n person(\"Andrey\",\"Riabushenko\", role=\"ctb\"),\n person(\"Cheng\",\"Lee\", role=\"ctb\"),\n person(\"Declan\",\"Groves\", role=\"ctb\"),\n person(\"Daniel\",\"Possenriede\", role=\"ctb\"),\n person(\"Felipe\",\"Parages\", role=\"ctb\"),\n person(\"Denes\",\"Toth\", role=\"ctb\"),\n person(\"Mus\",\"Yaramaz-David\", role=\"ctb\"),\n person(\"Ayappan\",\"Perumal\", role=\"ctb\"),\n person(\"James\",\"Sams\", role=\"ctb\"),\n person(\"Martin\",\"Morgan\", role=\"ctb\"),\n person(\"Michael\",\"Quinn\", role=\"ctb\"),\n person(\"@javrucebo\",\"\", role=\"ctb\"),\n person(\"@marc-outins\",\"\", role=\"ctb\"),\n person(\"Roy\",\"Storey\", role=\"ctb\"),\n person(\"Manish\",\"Saraswat\", role=\"ctb\"),\n person(\"Morgan\",\"Jacob\", role=\"ctb\"),\n person(\"Michael\",\"Schubmehl\", role=\"ctb\"),\n person(\"Davis\",\"Vaughan\", role=\"ctb\"),\n person(\"Leonardo\",\"Silvestri\", role=\"ctb\"),\n person(\"Jim\",\"Hester\", role=\"ctb\"),\n person(\"Anthony\",\"Damico\", role=\"ctb\"),\n person(\"Sebastian\",\"Freundt\", role=\"ctb\"),\n person(\"David\",\"Simons\", role=\"ctb\"),\n person(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"),\n person(\"Cole\",\"Miller\", role=\"ctb\"),\n person(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"),\n person(\"Vaclav\",\"Tlapak\", role=\"ctb\"),\n person(\"Kevin\",\"Ushey\", role=\"ctb\"),\n person(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"),\n person(\"Tony\",\"Fischetti\", role=\"ctb\"),\n person(\"Ofek\",\"Shilon\", role=\"ctb\"),\n person(\"Vadim\",\"Khotilovich\", role=\"ctb\"),\n person(\"Hadley\",\"Wickham\", role=\"ctb\"),\n person(\"Bennet\",\"Becker\", role=\"ctb\"),\n person(\"Kyle\",\"Haynes\", role=\"ctb\"),\n person(\"Boniface Christian\",\"Kamgang\", role=\"ctb\"),\n person(\"Olivier\",\"Delmarcell\", role=\"ctb\"),\n person(\"Josh\",\"O'Brien\", role=\"ctb\"),\n person(\"Dereck\",\"de Mezquita\", role=\"ctb\"),\n person(\"Michael\",\"Czekanski\", role=\"ctb\"),\n person(\"Dmitry\", \"Shemetov\", role=\"ctb\"),\n person(\"Nitish\", \"Jha\", role=\"ctb\"),\n person(\"Joshua\", \"Wu\", role=\"ctb\"),\n person(\"Iago\", \"Giné-Vázquez\", role=\"ctb\"),\n person(\"Anirban\", \"Chetia\", role=\"ctb\"),\n person(\"Doris\", \"Amoakohene\", role=\"ctb\"),\n person(\"Angel\", \"Feliz\", role=\"ctb\"),\n person(\"Michael\",\"Young\", role=\"ctb\"),\n person(\"Mark\", \"Seeto\", role=\"ctb\"),\n person(\"Philippe\", \"Grosjean\", role=\"ctb\"),\n person(\"Vincent\", \"Runge\", role=\"ctb\"),\n person(\"Christian\", \"Wia\", role=\"ctb\"),\n person(\"Elise\", \"Maigné\", role=\"ctb\"),\n person(\"Vincent\", \"Rocher\", role=\"ctb\"),\n person(\"Vijay\", \"Lulla\", role=\"ctb\"),\n person(\"Aljaž\", \"Sluga\", role=\"ctb\"),\n person(\"Bill\", \"Evans\", role=\"ctb\")\n )", "NeedsCompilation": "yes", - "Packaged": "2024-12-04 23:18:02 UTC; tysonbarrett", - "Author": "Tyson Barrett [aut, cre] (),\n Matt Dowle [aut],\n Arun Srinivasan [aut],\n Jan Gorecki [aut],\n Michael Chirico [aut] (),\n Toby Hocking [aut] (),\n Benjamin Schwendinger [aut] (),\n Pasha Stetsenko [ctb],\n Tom Short [ctb],\n Steve Lianoglou [ctb],\n Eduard Antonyan [ctb],\n Markus Bonsch [ctb],\n Hugh Parsonage [ctb],\n Scott Ritchie [ctb],\n Kun Ren [ctb],\n Xianying Tan [ctb],\n Rick Saporta [ctb],\n Otto Seiskari [ctb],\n Xianghui Dong [ctb],\n Michel Lang [ctb],\n Watal Iwasaki [ctb],\n Seth Wenchel [ctb],\n Karl Broman [ctb],\n Tobias Schmidt [ctb],\n David Arenburg [ctb],\n Ethan Smith [ctb],\n Francois Cocquemas [ctb],\n Matthieu Gomez [ctb],\n Philippe Chataignon [ctb],\n Nello Blaser [ctb],\n Dmitry Selivanov [ctb],\n Andrey Riabushenko [ctb],\n Cheng Lee [ctb],\n Declan Groves [ctb],\n Daniel Possenriede [ctb],\n Felipe Parages [ctb],\n Denes Toth [ctb],\n Mus Yaramaz-David [ctb],\n Ayappan Perumal [ctb],\n James Sams [ctb],\n Martin Morgan [ctb],\n Michael Quinn [ctb],\n @javrucebo [ctb],\n @marc-outins [ctb],\n Roy Storey [ctb],\n Manish Saraswat [ctb],\n Morgan Jacob [ctb],\n Michael Schubmehl [ctb],\n Davis Vaughan [ctb],\n Leonardo Silvestri [ctb],\n Jim Hester [ctb],\n Anthony Damico [ctb],\n Sebastian Freundt [ctb],\n David Simons [ctb],\n Elliott Sales de Andrade [ctb],\n Cole Miller [ctb],\n Jens Peder Meldgaard [ctb],\n Vaclav Tlapak [ctb],\n Kevin Ushey [ctb],\n Dirk Eddelbuettel [ctb],\n Tony Fischetti [ctb],\n Ofek Shilon [ctb],\n Vadim Khotilovich [ctb],\n Hadley Wickham [ctb],\n Bennet Becker [ctb],\n Kyle Haynes [ctb],\n Boniface Christian Kamgang [ctb],\n Olivier Delmarcell [ctb],\n Josh O'Brien [ctb],\n Dereck de Mezquita [ctb],\n Michael Czekanski [ctb],\n Dmitry Shemetov [ctb],\n Nitish Jha [ctb],\n Joshua Wu [ctb],\n Iago Giné-Vázquez [ctb],\n Anirban Chetia [ctb],\n Doris Amoakohene [ctb],\n Ivan Krylov [ctb]", + "Packaged": "2025-07-07 16:02:15 UTC; root", + "Author": "Tyson Barrett [aut, cre] (ORCID:\n ),\n Matt Dowle [aut],\n Arun Srinivasan [aut],\n Jan Gorecki [aut],\n Michael Chirico [aut] (ORCID: ),\n Toby Hocking [aut] (ORCID: ),\n Benjamin Schwendinger [aut] (ORCID:\n ),\n Ivan Krylov [aut] (ORCID: ),\n Pasha Stetsenko [ctb],\n Tom Short [ctb],\n Steve Lianoglou [ctb],\n Eduard Antonyan [ctb],\n Markus Bonsch [ctb],\n Hugh Parsonage [ctb],\n Scott Ritchie [ctb],\n Kun Ren [ctb],\n Xianying Tan [ctb],\n Rick Saporta [ctb],\n Otto Seiskari [ctb],\n Xianghui Dong [ctb],\n Michel Lang [ctb],\n Watal Iwasaki [ctb],\n Seth Wenchel [ctb],\n Karl Broman [ctb],\n Tobias Schmidt [ctb],\n David Arenburg [ctb],\n Ethan Smith [ctb],\n Francois Cocquemas [ctb],\n Matthieu Gomez [ctb],\n Philippe Chataignon [ctb],\n Nello Blaser [ctb],\n Dmitry Selivanov [ctb],\n Andrey Riabushenko [ctb],\n Cheng Lee [ctb],\n Declan Groves [ctb],\n Daniel Possenriede [ctb],\n Felipe Parages [ctb],\n Denes Toth [ctb],\n Mus Yaramaz-David [ctb],\n Ayappan Perumal [ctb],\n James Sams [ctb],\n Martin Morgan [ctb],\n Michael Quinn [ctb],\n @javrucebo [ctb],\n @marc-outins [ctb],\n Roy Storey [ctb],\n Manish Saraswat [ctb],\n Morgan Jacob [ctb],\n Michael Schubmehl [ctb],\n Davis Vaughan [ctb],\n Leonardo Silvestri [ctb],\n Jim Hester [ctb],\n Anthony Damico [ctb],\n Sebastian Freundt [ctb],\n David Simons [ctb],\n Elliott Sales de Andrade [ctb],\n Cole Miller [ctb],\n Jens Peder Meldgaard [ctb],\n Vaclav Tlapak [ctb],\n Kevin Ushey [ctb],\n Dirk Eddelbuettel [ctb],\n Tony Fischetti [ctb],\n Ofek Shilon [ctb],\n Vadim Khotilovich [ctb],\n Hadley Wickham [ctb],\n Bennet Becker [ctb],\n Kyle Haynes [ctb],\n Boniface Christian Kamgang [ctb],\n Olivier Delmarcell [ctb],\n Josh O'Brien [ctb],\n Dereck de Mezquita [ctb],\n Michael Czekanski [ctb],\n Dmitry Shemetov [ctb],\n Nitish Jha [ctb],\n Joshua Wu [ctb],\n Iago Giné-Vázquez [ctb],\n Anirban Chetia [ctb],\n Doris Amoakohene [ctb],\n Angel Feliz [ctb],\n Michael Young [ctb],\n Mark Seeto [ctb],\n Philippe Grosjean [ctb],\n Vincent Runge [ctb],\n Christian Wia [ctb],\n Elise Maigné [ctb],\n Vincent Rocher [ctb],\n Vijay Lulla [ctb],\n Aljaž Sluga [ctb],\n Bill Evans [ctb]", "Maintainer": "Tyson Barrett ", - "Repository": "CRAN", - "Date/Publication": "2024-12-06 15:10:10 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:53:00 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-10 10:30:05 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-11 05:04:47 UTC; unix" } }, "desc": { @@ -1425,9 +1410,9 @@ "NeedsCompilation": "no", "Packaged": "2023-12-10 11:07:50 UTC; gaborcsardi", "Author": "Gábor Csárdi [aut, cre],\n Kirill Müller [aut],\n Jim Hester [aut],\n Maëlle Salmon [ctb] (),\n Posit Software, PBC [cph, fnd]", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-12-10 11:40:08 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:48:43 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:42:51 UTC; unix" } }, "diagram": { @@ -1446,9 +1431,10 @@ "LazyData": "yes", "NeedsCompilation": "no", "Packaged": "2020-09-29 06:59:04 UTC; karlines", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2020-09-30 07:20:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:53:11 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-08 03:11:17 UTC; unix" } }, "diffobj": { @@ -1459,25 +1445,25 @@ "Type": "Package", "Title": "Diffs for R Objects", "Description": "Generate a colorized diff of two R objects for an intuitive\n visualization of their differences.", - "Version": "0.3.5", + "Version": "0.3.6", "Authors@R": "c(\n person(\n \"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\n role=c(\"aut\", \"cre\")),\n person(\n \"Michael B.\", \"Allen\", email=\"ioplex@gmail.com\",\n role=c(\"ctb\", \"cph\"),\n comment=\"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", + "RoxygenNote": "7.2.3", "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", + "Packaged": "2025-04-21 00:11:01 UTC; brodie", "Author": "Brodie Gaslam [aut, cre],\n Michael B. Allen [ctb, cph] (Original C implementation of Myers Diff\n Algorithm)", "Maintainer": "Brodie Gaslam ", - "Repository": "CRAN", - "Date/Publication": "2021-10-05 07:10:17 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:53:11 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-21 08:30:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-22 04:37:03 UTC; unix" } }, "digest": { @@ -1502,9 +1488,9 @@ "Packaged": "2024-08-19 12:16:05 UTC; edd", "Author": "Dirk Eddelbuettel [aut, cre] (),\n Antoine Lucas [ctb],\n Jarek Tuszynski [ctb],\n Henrik Bengtsson [ctb] (),\n Simon Urbanek [ctb] (),\n Mario Frasca [ctb],\n Bryan Lewis [ctb],\n Murray Stokely [ctb],\n Hannes Muehleisen [ctb],\n Duncan Murdoch [ctb],\n Jim Hester [ctb],\n Wush Wu [ctb] (),\n Qiang Kou [ctb] (),\n Thierry Onkelinx [ctb] (),\n Michel Lang [ctb] (),\n Viliam Simko [ctb],\n Kurt Hornik [ctb] (),\n Radford Neal [ctb] (),\n Kendon Bell [ctb] (),\n Matthew de Queljoe [ctb],\n Dmitry Selivanov [ctb],\n Ion Suruceanu [ctb],\n Bill Denney [ctb],\n Dirk Schumacher [ctb],\n András Svraka [ctb],\n Sergey Fedorov [ctb],\n Will Landau [ctb] (),\n Floris Vanderhaeghe [ctb] (),\n Kevin Tappe [ctb],\n Harris McGehee [ctb],\n Tim Mastny [ctb],\n Aaron Peikert [ctb] (),\n Mark van der Loo [ctb] (),\n Chris Muir [ctb] (),\n Moritz Beller [ctb] (),\n Sebastian Campbell [ctb],\n Winston Chang [ctb] (),\n Dean Attali [ctb] (),\n Michael Chirico [ctb] (),\n Kevin Ushey [ctb]", "Maintainer": "Dirk Eddelbuettel ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-08-19 14:10:07 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:22 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:34 UTC; unix" } }, "dplyr": { @@ -1533,9 +1519,9 @@ "Packaged": "2023-11-16 21:48:56 UTC; hadleywickham", "Author": "Hadley Wickham [aut, cre] (),\n Romain François [aut] (),\n Lionel Henry [aut],\n Kirill Müller [aut] (),\n Davis Vaughan [aut] (),\n Posit Software, PBC [cph, fnd]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-11-17 16:50:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:07 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:44:32 UTC; unix" } }, "echarts4r": { @@ -1560,9 +1546,9 @@ "Packaged": "2023-06-16 14:02:03 UTC; david", "Author": "John Coene [aut, cph],\n David Munoz Tord [cre, ctb] (),\n Wei Su [ctb],\n Helgasoft [ctb],\n Xianying Tan [ctb] (),\n Robin Cura [ctb] (),\n Mathida Chuk [ctb],\n Robert Koetsier [ctb] (),\n Jelle Geertsma [ctb]", "Maintainer": "David Munoz Tord ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-06-16 23:30:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:54:20 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-09 07:12:43 UTC; unix" } }, "evaluate": { @@ -1572,53 +1558,25 @@ "Type": "Package", "Package": "evaluate", "Title": "Parsing and Evaluation Tools that Provide More Details than the\nDefault", - "Version": "1.0.3", + "Version": "1.0.4", "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Yihui\", \"Xie\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Michael\", \"Lawrence\", role = \"ctb\"),\n person(\"Thomas\", \"Kluyver\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Barret\", \"Schloerke\", role = \"ctb\"),\n person(\"Adam\", \"Ryczkowski\", role = \"ctb\"),\n person(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\n person(\"Michel\", \"Lang\", role = \"ctb\"),\n person(\"Karolis\", \"Koncevičius\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", "Description": "Parsing and evaluation tools that make it easy to recreate\n the command line behaviour of R.", "License": "MIT + file LICENSE", "URL": "https://evaluate.r-lib.org/, https://github.com/r-lib/evaluate", "BugReports": "https://github.com/r-lib/evaluate/issues", "Depends": "R (>= 3.6.0)", - "Suggests": "callr, covr, ggplot2 (>= 3.3.6), lattice, methods, pkgload,\nrlang, knitr, testthat (>= 3.0.0), withr", + "Suggests": "callr, covr, ggplot2 (>= 3.3.6), lattice, methods, pkgload,\nragg (>= 1.4.0), rlang (>= 1.1.5), knitr, testthat (>= 3.0.0),\nwithr", "Config/Needs/website": "tidyverse/tidytemplate", "Config/testthat/edition": "3", "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2025-01-10 22:27:28 UTC; hadleywickham", - "Author": "Hadley Wickham [aut, cre],\n Yihui Xie [aut] (),\n Michael Lawrence [ctb],\n Thomas Kluyver [ctb],\n Jeroen Ooms [ctb],\n Barret Schloerke [ctb],\n Adam Ryczkowski [ctb],\n Hiroaki Yutani [ctb],\n Michel Lang [ctb],\n Karolis Koncevičius [ctb],\n Posit Software, PBC [cph, fnd]", + "Packaged": "2025-06-17 18:21:29 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre],\n Yihui Xie [aut] (ORCID: ),\n Michael Lawrence [ctb],\n Thomas Kluyver [ctb],\n Jeroen Ooms [ctb],\n Barret Schloerke [ctb],\n Adam Ryczkowski [ctb],\n Hiroaki Yutani [ctb],\n Michel Lang [ctb],\n Karolis Koncevičius [ctb],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", - "Date/Publication": "2025-01-10 23:00:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:48:47 UTC; unix" - } - }, - "fansi": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Package": "fansi", - "Title": "ANSI Control Sequence Aware String Functions", - "Description": "Counterparts to R string manipulation functions that account for\n the effects of ANSI text formatting control sequences.", - "Version": "1.0.6", - "Authors@R": "c(\n person(\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\n role=c(\"aut\", \"cre\")),\n person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"),\n person(family=\"R Core Team\",\n email=\"R-core@r-project.org\", role=\"cph\",\n comment=\"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-12-06 00:59:41 UTC; bg", - "Author": "Brodie Gaslam [aut, cre],\n Elliott Sales De Andrade [ctb],\n R Core Team [cph] (UTF8 byte length calcs from src/util.c)", - "Maintainer": "Brodie Gaslam ", - "Repository": "CRAN", - "Date/Publication": "2023-12-08 03:30:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:01 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-06-18 04:40:16 UTC", + "Built": "R 4.5.0; ; 2025-06-19 04:31:35 UTC; unix" } }, "farver": { @@ -1642,9 +1600,9 @@ "Packaged": "2024-05-13 08:31:27 UTC; thomas", "Author": "Thomas Lin Pedersen [cre, aut]\n (),\n Berendea Nicolae [aut] (Author of the ColorSpace C++ library),\n Romain François [aut] (),\n Posit, PBC [cph, fnd]", "Maintainer": "Thomas Lin Pedersen ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-05-13 09:33:09 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:05 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:39 UTC; unix" } }, "fastmap": { @@ -1666,9 +1624,9 @@ "Packaged": "2024-05-14 17:54:13 UTC; winston", "Author": "Winston Chang [aut, cre],\n Posit Software, PBC [cph, fnd],\n Tessil [cph] (hopscotch_map library)", "Maintainer": "Winston Chang ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-05-15 09:00:07 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:19 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:22 UTC; unix" } }, "fontawesome": { @@ -1695,9 +1653,9 @@ "Packaged": "2024-11-16 17:06:16 UTC; riannone", "Author": "Richard Iannone [aut, cre] (),\n Christophe Dervieux [ctb] (),\n Winston Chang [ctb],\n Dave Gandy [ctb, cph] (Font-Awesome font),\n Posit Software, PBC [cph, fnd]", "Maintainer": "Richard Iannone ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-11-16 17:30:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:53:15 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:43:09 UTC; unix" } }, "forcats": { @@ -1725,9 +1683,9 @@ "Packaged": "2023-01-27 14:11:11 UTC; hadleywickham", "Author": "Hadley Wickham [aut, cre],\n RStudio [cph, fnd]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-01-29 22:20:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:54:23 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:44:24 UTC; unix" } }, "forecast": { @@ -1735,7 +1693,7 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "forecast", - "Version": "8.23.0", + "Version": "8.24.0", "Title": "Forecasting Functions for Time Series and Linear Models", "Description": "Methods and tools for displaying and analysing\n univariate time series forecasts including exponential smoothing\n via state space models and automatic ARIMA modelling.", "Depends": "R (>= 3.5.0),", @@ -1750,15 +1708,15 @@ "URL": "https://pkg.robjhyndman.com/forecast/,\nhttps://github.com/robjhyndman/forecast", "VignetteBuilder": "knitr", "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "Config/testthat/edition": "3", "NeedsCompilation": "yes", - "Packaged": "2024-06-20 01:21:29 UTC; hyndman", + "Packaged": "2025-04-08 05:47:31 UTC; hyndman", "Author": "Rob Hyndman [aut, cre, cph] (),\n George Athanasopoulos [aut] (),\n Christoph Bergmeir [aut] (),\n Gabriel Caceres [aut] (),\n Leanne Chhay [aut],\n Kirill Kuroptev [aut],\n Mitchell O'Hara-Wild [aut] (),\n Fotios Petropoulos [aut] (),\n Slava Razbash [aut],\n Earo Wang [aut] (),\n Farah Yasmeen [aut] (),\n Federico Garza [ctb],\n Daniele Girolimetto [ctb],\n Ross Ihaka [ctb, cph],\n R Core Team [ctb, cph],\n Daniel Reid [ctb],\n David Shaub [ctb],\n Yuan Tang [ctb] (),\n Xiaoqian Wang [ctb],\n Zhenyu Zhou [ctb]", "Maintainer": "Rob Hyndman ", - "Repository": "CRAN", - "Date/Publication": "2024-06-20 03:10:06 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:49 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-08 06:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 14:16:27 UTC; unix" } }, "fracdiff": { @@ -1782,9 +1740,9 @@ "Packaged": "2024-02-01 08:45:38 UTC; maechler", "Author": "Martin Maechler [aut, cre] (),\n Chris Fraley [ctb, cph] (S original; Fortran code),\n Friedrich Leisch [ctb] (R port,\n ),\n Valderio Reisen [ctb] (fdGPH() & fdSperio()),\n Artur Lemonte [ctb] (fdGPH() & fdSperio()),\n Rob Hyndman [ctb] (residuals() & fitted(),\n )", "Maintainer": "Martin Maechler ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-02-01 10:00:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:24 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-08 03:10:20 UTC; unix" } }, "fs": { @@ -1793,7 +1751,7 @@ "description": { "Package": "fs", "Title": "Cross-Platform File System Operations Based on 'libuv'", - "Version": "1.6.5", + "Version": "1.6.6", "Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"libuv project contributors\", role = \"cph\",\n comment = \"libuv library\"),\n person(\"Joyent, Inc. and other Node contributors\", role = \"cph\",\n comment = \"libuv library\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", "Description": "A cross-platform interface to file system operations, built\n on top of the 'libuv' C library.", "License": "MIT + file LICENSE", @@ -1812,12 +1770,12 @@ "RoxygenNote": "7.2.3", "SystemRequirements": "GNU make", "NeedsCompilation": "yes", - "Packaged": "2024-10-28 22:30:40 UTC; gaborcsardi", + "Packaged": "2025-04-12 09:39:13 UTC; gaborcsardi", "Author": "Jim Hester [aut],\n Hadley Wickham [aut],\n Gábor Csárdi [aut, cre],\n libuv project contributors [cph] (libuv library),\n Joyent, Inc. and other Node contributors [cph] (libuv library),\n Posit Software, PBC [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN", - "Date/Publication": "2024-10-30 08:40:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:21 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-12 10:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-14 17:54:09 UTC; unix" } }, "furrr": { @@ -1843,9 +1801,9 @@ "Packaged": "2022-08-15 19:00:06 UTC; davis", "Author": "Davis Vaughan [aut, cre],\n Matt Dancho [aut],\n RStudio [cph, fnd]", "Maintainer": "Davis Vaughan ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2022-08-15 19:40:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:16 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:44:02 UTC; unix" } }, "future": { @@ -1853,9 +1811,10 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "future", - "Version": "1.34.0", + "Version": "1.67.0", "Title": "Unified Parallel and Distributed Processing in R for Everyone", - "Imports": "digest, globals (>= 0.16.1), listenv (>= 0.8.0), parallel,\nparallelly (>= 1.38.0), utils", + "Depends": "R (>= 3.2.0)", + "Imports": "digest, globals (>= 0.18.0), listenv (>= 0.8.0), parallel,\nparallelly (>= 1.44.0), utils", "Suggests": "methods, RhpcBLASctl, R.rsp, markdown", "VignetteBuilder": "R.rsp", "Authors@R": "c(person(\"Henrik\", \"Bengtsson\",\n role = c(\"aut\", \"cre\", \"cph\"),\n email = \"henrikb@braju.com\",\n comment = c(ORCID = \"0000-0002-7579-5165\")))", @@ -1863,17 +1822,19 @@ "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", + "URL": "https://future.futureverse.org,\nhttps://github.com/futureverse/future", + "BugReports": "https://github.com/futureverse/future/issues", + "Language": "en-US", "Encoding": "UTF-8", "RoxygenNote": "7.3.2", + "Collate": "'000.bquote.R' '000.import.R' '000.re-exports.R'\n'010.tweakable.R' '010.utils-parallelly.R'\n'backend_api-01-FutureBackend-class.R'\n'backend_api-03.MultiprocessFutureBackend-class.R'\n'backend_api-11.ClusterFutureBackend-class.R'\n'backend_api-11.MulticoreFutureBackend-class.R'\n'backend_api-11.SequentialFutureBackend-class.R'\n'backend_api-13.MultisessionFutureBackend-class.R'\n'backend_api-ConstantFuture-class.R'\n'backend_api-Future-class.R' 'backend_api-FutureRegistry.R'\n'backend_api-UniprocessFuture-class.R'\n'backend_api-evalFuture.R' 'core_api-cancel.R'\n'core_api-future.R' 'core_api-reset.R' 'core_api-resolved.R'\n'core_api-value.R' 'delayed_api-futureAssign.R'\n'delayed_api-futureOf.R' 'demo_api-mandelbrot.R'\n'infix_api-01-futureAssign_OP.R' 'infix_api-02-globals_OP.R'\n'infix_api-03-seed_OP.R' 'infix_api-04-stdout_OP.R'\n'infix_api-05-conditions_OP.R' 'infix_api-06-lazy_OP.R'\n'infix_api-07-label_OP.R' 'infix_api-08-plan_OP.R'\n'infix_api-09-tweak_OP.R'\n'protected_api-FutureCondition-class.R'\n'protected_api-FutureGlobals-class.R'\n'protected_api-FutureResult-class.R' 'protected_api-futures.R'\n'protected_api-globals.R' 'protected_api-journal.R'\n'protected_api-resolve.R' 'protected_api-signalConditions.R'\n'testme.R' 'utils-basic.R' 'utils-conditions.R'\n'utils-connections.R' 'utils-debug.R'\n'utils-immediateCondition.R' 'utils-marshalling.R'\n'utils-objectSize.R' 'utils-options.R' 'utils-prune_pkg_code.R'\n'utils-registerClusterTypes.R' 'utils-rng_utils.R'\n'utils-signalEarly.R' 'utils-stealth_sample.R'\n'utils-sticky_globals.R' 'utils-tweakExpression.R'\n'utils-uuid.R' 'utils-whichIndex.R' 'utils_api-backtrace.R'\n'utils_api-capture_journals.R' 'utils_api-futureCall.R'\n'utils_api-futureSessionInfo.R' 'utils_api-makeClusterFuture.R'\n'utils_api-minifuture.R' 'utils_api-nbrOfWorkers.R'\n'utils_api-plan.R' 'utils_api-plan-with.R'\n'utils_api-sessionDetails.R' 'utils_api-tweak.R' 'zzz.R'", "NeedsCompilation": "no", - "Packaged": "2024-07-29 15:02:12 UTC; henrik", - "Author": "Henrik Bengtsson [aut, cre, cph]\n ()", + "Packaged": "2025-07-29 10:07:18 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph] (ORCID:\n )", "Maintainer": "Henrik Bengtsson ", - "Repository": "CRAN", - "Date/Publication": "2024-07-29 16:50:05 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:14 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-29 12:50:07 UTC", + "Built": "R 4.5.1; ; 2025-07-31 10:41:33 UTC; unix" } }, "future.apply": { @@ -1881,11 +1842,11 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "future.apply", - "Version": "1.11.3", + "Version": "1.20.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", + "Depends": "R (>= 3.2.0), future (>= 1.49.0)", + "Imports": "globals, parallel, utils", + "Suggests": "datasets, stats, tools, listenv, R.rsp, markdown", "VignetteBuilder": "R.rsp", "Authors@R": "c(person(\"Henrik\", \"Bengtsson\",\n role = c(\"aut\", \"cre\", \"cph\"),\n email = \"henrikb@braju.com\",\n comment = c(ORCID = \"0000-0002-7579-5165\")),\n person(\"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 .", @@ -1893,14 +1854,16 @@ "LazyLoad": "TRUE", "URL": "https://future.apply.futureverse.org,\nhttps://github.com/futureverse/future.apply", "BugReports": "https://github.com/futureverse/future.apply/issues", + "Language": "en-US", + "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2024-10-27 17:30:11 UTC; henrik", - "Author": "Henrik Bengtsson [aut, cre, cph]\n (),\n R Core Team [cph, ctb]", + "Packaged": "2025-06-06 06:39:06 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph] (ORCID:\n ),\n R Core Team [cph, ctb]", "Maintainer": "Henrik Bengtsson ", - "Repository": "CRAN", - "Date/Publication": "2024-10-27 18:50:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:17 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-06-06 08:00:02 UTC", + "Built": "R 4.5.0; ; 2025-06-07 04:39:13 UTC; unix" } }, "generics": { @@ -1909,26 +1872,26 @@ "description": { "Package": "generics", "Title": "Common S3 Generics not Provided by Base R Methods Related to\nModel Fitting", - "Version": "0.1.3", - "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")),\n person(\"Max\", \"Kuhn\", , \"max@rstudio.com\", role = \"aut\"),\n person(\"Davis\", \"Vaughan\", , \"davis@rstudio.com\", role = \"aut\"),\n person(\"RStudio\", role = \"cph\")\n )", + "Version": "0.1.4", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"),\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"),\n comment = c(ROR = \"https://ror.org/03wc8by49\"))\n )", "Description": "In order to reduce potential package dependencies and\n conflicts, 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)", + "Depends": "R (>= 3.6)", "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", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2022-07-05 14:52:13 UTC; davis", - "Author": "Hadley Wickham [aut, cre],\n Max Kuhn [aut],\n Davis Vaughan [aut],\n RStudio [cph]", - "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", - "Date/Publication": "2022-07-05 19:40:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:49:57 UTC; unix" + "Packaged": "2025-05-09 18:17:41 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre] (ORCID:\n ),\n Max Kuhn [aut],\n Davis Vaughan [aut],\n Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2025-05-09 23:50:06 UTC", + "Built": "R 4.5.0; ; 2025-05-10 11:00:35 UTC; unix" } }, "ggplot2": { @@ -1936,7 +1899,7 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "ggplot2", - "Version": "3.5.1", + "Version": "3.5.2", "Title": "Create Elegant Data Visualisations Using the Grammar of Graphics", "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Winston\", \"Chang\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Lionel\", \"Henry\", role = \"aut\"),\n person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-5147-4711\")),\n person(\"Kohske\", \"Takahashi\", role = \"aut\"),\n person(\"Claus\", \"Wilke\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-7470-9261\")),\n person(\"Kara\", \"Woo\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-5125-4188\")),\n person(\"Hiroaki\", \"Yutani\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-3385-7233\")),\n person(\"Dewey\", \"Dunnington\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-9415-4582\")),\n person(\"Teun\", \"van den Brand\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-9335-7468\")),\n person(\"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n )", "Description": "A system for 'declaratively' creating graphics, based on \"The\n Grammar of Graphics\". You provide the data, tell 'ggplot2' how to map\n variables to aesthetics, what graphical primitives to use, and it\n takes care of the details.", @@ -1952,15 +1915,15 @@ "Config/testthat/edition": "3", "Encoding": "UTF-8", "LazyData": "true", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "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-radial.R' 'coord-sf.R'\n'coord-transform.R' 'data.R' 'docs_layer.R' 'facet-.R'\n'facet-grid-.R' 'facet-null.R' 'facet-wrap.R' 'fortify-lm.R'\n'fortify-map.R' 'fortify-multcomp.R' 'fortify-spatial.R'\n'fortify.R' 'stat-.R' 'geom-abline.R' 'geom-rect.R'\n'geom-bar.R' 'geom-bin2d.R' 'geom-blank.R' 'geom-boxplot.R'\n'geom-col.R' 'geom-path.R' 'geom-contour.R' 'geom-count.R'\n'geom-crossbar.R' 'geom-segment.R' 'geom-curve.R'\n'geom-defaults.R' 'geom-ribbon.R' 'geom-density.R'\n'geom-density2d.R' 'geom-dotplot.R' 'geom-errorbar.R'\n'geom-errorbarh.R' 'geom-freqpoly.R' 'geom-function.R'\n'geom-hex.R' 'geom-histogram.R' 'geom-hline.R' 'geom-jitter.R'\n'geom-label.R' 'geom-linerange.R' 'geom-point.R'\n'geom-pointrange.R' 'geom-quantile.R' 'geom-rug.R' 'geom-sf.R'\n'geom-smooth.R' 'geom-spoke.R' 'geom-text.R' 'geom-tile.R'\n'geom-violin.R' 'geom-vline.R' 'ggplot2-package.R'\n'grob-absolute.R' 'grob-dotstack.R' 'grob-null.R' 'grouping.R'\n'theme-elements.R' 'guide-.R' 'guide-axis.R'\n'guide-axis-logticks.R' 'guide-axis-stack.R'\n'guide-axis-theta.R' 'guide-legend.R' 'guide-bins.R'\n'guide-colorbar.R' 'guide-colorsteps.R' 'guide-custom.R'\n'layer.R' 'guide-none.R' 'guide-old.R' 'guides-.R'\n'guides-grid.R' 'hexbin.R' 'import-standalone-obj-type.R'\n'import-standalone-types-check.R' 'labeller.R' 'labels.R'\n'layer-sf.R' 'layout.R' 'limits.R' 'margins.R' 'performance.R'\n'plot-build.R' 'plot-construction.R' 'plot-last.R' 'plot.R'\n'position-.R' 'position-collide.R' 'position-dodge.R'\n'position-dodge2.R' 'position-identity.R' 'position-jitter.R'\n'position-jitterdodge.R' 'position-nudge.R' 'position-stack.R'\n'quick-plot.R' 'reshape-add-margins.R' 'save.R' 'scale-.R'\n'scale-alpha.R' 'scale-binned.R' 'scale-brewer.R'\n'scale-colour.R' 'scale-continuous.R' 'scale-date.R'\n'scale-discrete-.R' 'scale-expansion.R' 'scale-gradient.R'\n'scale-grey.R' 'scale-hue.R' 'scale-identity.R'\n'scale-linetype.R' 'scale-linewidth.R' 'scale-manual.R'\n'scale-shape.R' 'scale-size.R' 'scale-steps.R' 'scale-type.R'\n'scale-view.R' 'scale-viridis.R' 'scales-.R' 'stat-align.R'\n'stat-bin.R' 'stat-bin2d.R' 'stat-bindot.R' 'stat-binhex.R'\n'stat-boxplot.R' 'stat-contour.R' 'stat-count.R'\n'stat-density-2d.R' 'stat-density.R' 'stat-ecdf.R'\n'stat-ellipse.R' 'stat-function.R' 'stat-identity.R'\n'stat-qq-line.R' 'stat-qq.R' 'stat-quantilemethods.R'\n'stat-sf-coordinates.R' 'stat-sf.R' 'stat-smooth-methods.R'\n'stat-smooth.R' 'stat-sum.R' 'stat-summary-2d.R'\n'stat-summary-bin.R' 'stat-summary-hex.R' 'stat-summary.R'\n'stat-unique.R' 'stat-ydensity.R' 'summarise-plot.R'\n'summary.R' 'theme.R' 'theme-defaults.R' 'theme-current.R'\n'utilities-break.R' 'utilities-grid.R' 'utilities-help.R'\n'utilities-matrix.R' 'utilities-patterns.R'\n'utilities-resolution.R' 'utilities-tidy-eval.R' 'zxx.R'\n'zzz.R'", "NeedsCompilation": "no", - "Packaged": "2024-04-22 10:39:16 UTC; thomas", + "Packaged": "2025-04-08 10:58:01 UTC; thomas", "Author": "Hadley Wickham [aut] (),\n Winston Chang [aut] (),\n Lionel Henry [aut],\n Thomas Lin Pedersen [aut, cre]\n (),\n Kohske Takahashi [aut],\n Claus Wilke [aut] (),\n Kara Woo [aut] (),\n Hiroaki Yutani [aut] (),\n Dewey Dunnington [aut] (),\n Teun van den Brand [aut] (),\n Posit, PBC [cph, fnd]", "Maintainer": "Thomas Lin Pedersen ", - "Repository": "CRAN", - "Date/Publication": "2024-04-23 08:00:08 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:54:29 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-09 09:40:10 UTC", + "Built": "R 4.5.0; ; 2025-04-10 19:44:07 UTC; unix" } }, "globals": { @@ -1968,25 +1931,27 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "globals", - "Version": "0.16.3", + "Version": "0.18.0", "Depends": "R (>= 3.1.2)", "Imports": "codetools", "Title": "Identify Global Objects in R Expressions", - "Authors@R": "c(\n person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\n email=\"henrikb@braju.com\"),\n person(\"Davis\",\"Vaughan\", role=\"ctb\",\n email=\"davis@rstudio.com\"))", - "Description": "Identifies global (\"unknown\" or \"free\") objects in R expressions\n by code inspection using various strategies (ordered, liberal, or\n conservative). The objective of this package is to make it as simple as\n possible to identify global objects for the purpose of exporting them in\n parallel, distributed compute environments.", + "Authors@R": "c(\n person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\n email=\"henrikb@braju.com\"),\n person(\"Davis\",\"Vaughan\", role=\"ctb\",\n email=\"davis@posit.co\"))", + "Description": "Identifies global (\"unknown\" or \"free\") objects in R expressions\n by code inspection using various strategies (ordered, liberal,\n conservative, or deep-first search). The objective of this package is to\n make it as simple as possible to identify global objects for the purpose\n of exporting them in parallel, 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.3.1", + "Language": "en-US", + "Encoding": "UTF-8", + "URL": "https://globals.futureverse.org,\nhttps://github.com/futureverse/globals", + "BugReports": "https://github.com/futureverse/globals/issues", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2024-03-07 23:38:30 UTC; henrik", + "Packaged": "2025-05-08 08:30:29 UTC; henrik", "Author": "Henrik Bengtsson [aut, cre, cph],\n Davis Vaughan [ctb]", "Maintainer": "Henrik Bengtsson ", - "Repository": "CRAN", - "Date/Publication": "2024-03-08 00:00:03 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:11 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-05-08 09:00:03 UTC", + "Built": "R 4.5.0; ; 2025-05-09 05:02:41 UTC; unix" } }, "glue": { @@ -2014,9 +1979,9 @@ "Packaged": "2024-09-27 16:00:45 UTC; jenny", "Author": "Jim Hester [aut] (),\n Jennifer Bryan [aut, cre] (),\n Posit Software, PBC [cph, fnd]", "Maintainer": "Jennifer Bryan ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-09-30 22:30:01 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:34 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:08 UTC; unix" } }, "gower": { @@ -2039,9 +2004,10 @@ "NeedsCompilation": "yes", "Packaged": "2024-12-16 15:36:14 UTC; mark", "Author": "Mark van der Loo [aut, cre],\n David Turner [ctb]", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-12-17 08:10:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:18 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-08 03:13:02 UTC; unix" } }, "gtable": { @@ -2069,9 +2035,9 @@ "Packaged": "2024-10-25 12:42:05 UTC; thomas", "Author": "Hadley Wickham [aut],\n Thomas Lin Pedersen [aut, cre],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Thomas Lin Pedersen ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-10-25 13:20:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:54:26 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:43:03 UTC; unix" } }, "hardhat": { @@ -2099,9 +2065,9 @@ "Packaged": "2025-01-29 15:09:25 UTC; hannah", "Author": "Hannah Frick [aut, cre] (),\n Davis Vaughan [aut],\n Max Kuhn [aut],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Hannah Frick ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2025-01-31 15:20:05 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:20 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-08 03:12:16 UTC; unix" } }, "here": { @@ -2128,9 +2094,9 @@ "Packaged": "2020-12-13 06:59:33 UTC; kirill", "Author": "Kirill Müller [aut, cre] (),\n Jennifer Bryan [ctb] ()", "Maintainer": "Kirill Müller ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2020-12-13 07:30:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:22 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-09 06:16:24 UTC; unix" } }, "highr": { @@ -2156,9 +2122,9 @@ "Packaged": "2024-05-26 19:27:21 UTC; yihui", "Author": "Yihui Xie [aut, cre] (),\n Yixuan Qiu [aut],\n Christopher Gandrud [ctb],\n Qiang Li [ctb]", "Maintainer": "Yihui Xie ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-05-26 20:00:03 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:48:49 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:42:22 UTC; unix" } }, "hms": { @@ -2186,9 +2152,9 @@ "Packaged": "2023-03-21 16:52:11 UTC; kirill", "Author": "Kirill Müller [aut, cre] (),\n R Consortium [fnd],\n RStudio [fnd]", "Maintainer": "Kirill Müller ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-03-21 18:10:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:23 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:43:37 UTC; unix" } }, "htmltools": { @@ -2217,9 +2183,9 @@ "Packaged": "2024-04-02 14:26:15 UTC; cpsievert", "Author": "Joe Cheng [aut],\n Carson Sievert [aut, cre] (),\n Barret Schloerke [aut] (),\n Winston Chang [aut] (),\n Yihui Xie [aut],\n Jeff Allen [aut],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Carson Sievert ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-04-04 05:03:00 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:21 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:53 UTC; unix" } }, "htmlwidgets": { @@ -2245,9 +2211,9 @@ "Packaged": "2023-12-06 00:11:16 UTC; cpsievert", "Author": "Ramnath Vaidyanathan [aut, cph],\n Yihui Xie [aut],\n JJ Allaire [aut],\n Joe Cheng [aut],\n Carson Sievert [aut, cre] (),\n Kenton Russell [aut, cph],\n Ellis Hughes [ctb],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Carson Sievert ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-12-06 06:00:06 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:53:19 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:47:46 UTC; unix" } }, "httpuv": { @@ -2257,7 +2223,7 @@ "Type": "Package", "Package": "httpuv", "Title": "HTTP and WebSocket Server Library", - "Version": "1.6.15", + "Version": "1.6.16", "Authors@R": "c(\n person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"),\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit, PBC\", \"fnd\", role = \"cph\"),\n person(\"Hector\", \"Corrada Bravo\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Andrzej\", \"Krzemienski\", role = \"cph\",\n comment = \"optional.hpp\"),\n person(\"libuv project contributors\", role = \"cph\",\n comment = \"libuv library, see src/libuv/AUTHORS file\"),\n person(\"Joyent, Inc. and other Node contributors\", role = \"cph\",\n comment = \"libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file\"),\n person(\"Niels\", \"Provos\", role = \"cph\",\n comment = \"libuv subcomponent: tree.h\"),\n person(\"Internet Systems Consortium, Inc.\", role = \"cph\",\n comment = \"libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c\"),\n person(\"Alexander\", \"Chemeris\", role = \"cph\",\n comment = \"libuv subcomponent: stdint-msvc2008.h (from msinttypes)\"),\n person(\"Google, Inc.\", role = \"cph\",\n comment = \"libuv subcomponent: pthread-fixes.c\"),\n person(\"Sony Mobile Communcations AB\", role = \"cph\",\n comment = \"libuv subcomponent: pthread-fixes.c\"),\n person(\"Berkeley Software Design Inc.\", role = \"cph\",\n comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"),\n person(\"Kenneth\", \"MacKay\", role = \"cph\",\n comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"),\n person(\"Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016)\", role = \"cph\",\n comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"),\n person(\"Steve\", \"Reid\", role = \"aut\",\n comment = \"SHA-1 implementation\"),\n person(\"James\", \"Brown\", role = \"aut\",\n comment = \"SHA-1 implementation\"),\n person(\"Bob\", \"Trower\", role = \"aut\",\n comment = \"base64 implementation\"),\n person(\"Alexander\", \"Peslyak\", role = \"aut\",\n comment = \"MD5 implementation\"),\n person(\"Trantor Standard Systems\", role = \"cph\",\n comment = \"base64 implementation\"),\n person(\"Igor\", \"Sysoev\", role = \"cph\",\n comment = \"http-parser\")\n )", "Description": "Provides low-level socket and protocol support for handling\n HTTP and WebSocket requests directly from within R. It is primarily\n intended as a building block for other packages, rather than making it\n particularly easy to create complete web applications using httpuv\n alone. httpuv is built on top of the libuv and http-parser C\n libraries, both of which were developed by Joyent, Inc. (See LICENSE\n file for libuv and http-parser license information.)", "License": "GPL (>= 2) | file LICENSE", @@ -2265,19 +2231,19 @@ "BugReports": "https://github.com/rstudio/httpuv/issues", "Depends": "R (>= 2.15.1)", "Imports": "later (>= 0.8.0), promises, R6, Rcpp (>= 1.0.7), utils", - "Suggests": "callr, curl, testthat, websocket", + "Suggests": "callr, curl, jsonlite, testthat, websocket", "LinkingTo": "later, Rcpp", "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "SystemRequirements": "GNU make, zlib", "Collate": "'RcppExports.R' 'httpuv.R' 'random_port.R' 'server.R'\n'staticServer.R' 'static_paths.R' 'utils.R'", "NeedsCompilation": "yes", - "Packaged": "2024-03-25 21:06:08 UTC; cpsievert", + "Packaged": "2025-04-15 17:47:41 UTC; cg334", "Author": "Joe Cheng [aut],\n Winston Chang [aut, cre],\n Posit, PBC fnd [cph],\n Hector Corrada Bravo [ctb],\n Jeroen Ooms [ctb],\n Andrzej Krzemienski [cph] (optional.hpp),\n libuv project contributors [cph] (libuv library, see src/libuv/AUTHORS\n file),\n Joyent, Inc. and other Node contributors [cph] (libuv library, see\n src/libuv/AUTHORS file; and http-parser library, see\n src/http-parser/AUTHORS file),\n Niels Provos [cph] (libuv subcomponent: tree.h),\n Internet Systems Consortium, Inc. [cph] (libuv subcomponent: inet_pton\n and inet_ntop, contained in src/libuv/src/inet.c),\n Alexander Chemeris [cph] (libuv subcomponent: stdint-msvc2008.h (from\n msinttypes)),\n Google, Inc. [cph] (libuv subcomponent: pthread-fixes.c),\n Sony Mobile Communcations AB [cph] (libuv subcomponent:\n pthread-fixes.c),\n Berkeley Software Design Inc. [cph] (libuv subcomponent:\n android-ifaddrs.h, android-ifaddrs.c),\n Kenneth MacKay [cph] (libuv subcomponent: android-ifaddrs.h,\n android-ifaddrs.c),\n Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016) [cph]\n (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c),\n Steve Reid [aut] (SHA-1 implementation),\n James Brown [aut] (SHA-1 implementation),\n Bob Trower [aut] (base64 implementation),\n Alexander Peslyak [aut] (MD5 implementation),\n Trantor Standard Systems [cph] (base64 implementation),\n Igor Sysoev [cph] (http-parser)", "Maintainer": "Winston Chang ", - "Repository": "CRAN", - "Date/Publication": "2024-03-26 05:50:06 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:53:20 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-16 08:00:06 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 14:37:25 UTC; unix" } }, "httr": { @@ -2303,9 +2269,9 @@ "Packaged": "2023-08-15 02:56:56 UTC; hadleywickham", "Author": "Hadley Wickham [aut, cre],\n Posit, PBC [cph, fnd]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-08-15 09:00:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:52:48 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:43:05 UTC; unix" } }, "imola": { @@ -2331,9 +2297,9 @@ "Packaged": "2022-04-10 17:12:00 UTC; spark", "Author": "Pedro Silva [aut, cre]", "Maintainer": "Pedro Silva ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2022-04-19 09:32:30 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:24 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-09 06:30:37 UTC; unix" } }, "ipred": { @@ -2354,9 +2320,10 @@ "Packaged": "2024-07-18 11:48:25 UTC; hothorn", "Author": "Andrea Peters [aut],\n Torsten Hothorn [aut, cre],\n Brian D. Ripley [ctb],\n Terry Therneau [ctb],\n Beth Atkinson [ctb]", "Maintainer": "Torsten Hothorn ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-18 13:00:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:40 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-08 03:13:15 UTC; unix" } }, "isoband": { @@ -2383,45 +2350,9 @@ "Packaged": "2022-12-19 20:10:02 UTC; hadleywickham", "Author": "Hadley Wickham [aut, cre] (),\n Claus O. Wilke [aut] (Original author,\n ),\n Thomas Lin Pedersen [aut] ()", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2022-12-20 10:00:13 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:27 UTC; unix" - } - }, - "jose": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Package": "jose", - "Type": "Package", - "Title": "JavaScript Object Signing and Encryption", - "Version": "1.2.1", - "Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), \n email = \"jeroenooms@gmail.com\", comment = c(ORCID = \"0000-0002-4035-0289\"))", - "Description": "Read and write JSON Web Keys (JWK, rfc7517), generate and verify JSON\n Web Signatures (JWS, rfc7515) and encode/decode JSON Web Tokens (JWT, rfc7519)\n . These standards provide \n modern signing and encryption formats that are natively supported by browsers\n via the JavaScript WebCryptoAPI , \n and used by services like OAuth 2.0, LetsEncrypt, and Github Apps.", - "License": "MIT + file LICENSE", - "URL": "https://r-lib.r-universe.dev/jose", - "BugReports": "https://github.com/r-lib/jose/issues", - "Depends": "openssl (>= 1.2.1)", - "Imports": "jsonlite", - "RoxygenNote": "7.1.2", - "VignetteBuilder": "knitr", - "Suggests": "spelling, testthat, knitr, rmarkdown", - "Encoding": "UTF-8", - "Language": "en-US", - "NeedsCompilation": "no", - "Packaged": "2024-10-03 14:12:53 UTC; jeroen", - "Author": "Jeroen Ooms [aut, cre] ()", - "Maintainer": "Jeroen Ooms ", - "Repository": "CRAN", - "Date/Publication": "2024-10-04 12:20:01 UTC", - "Built": "R 4.5.0; ; 2025-05-21 18:57:26 UTC; unix", - "RemoteType": "standard", - "RemoteRef": "jose", - "RemotePkgRef": "jose", - "RemoteRepos": "https://cran.rstudio.com", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "source", - "RemoteSha": "1.2.1" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:33 UTC; unix" } }, "jquerylib": { @@ -2443,9 +2374,9 @@ "Packaged": "2021-04-26 16:40:21 UTC; cpsievert", "Author": "Carson Sievert [aut, cre] (),\n Joe Cheng [aut],\n RStudio [cph],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/lib/jquery-AUTHORS.txt)", "Maintainer": "Carson Sievert ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2021-04-26 17:10:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:50:23 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:43:09 UTC; unix" } }, "jsonlite": { @@ -2453,7 +2384,7 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "jsonlite", - "Version": "1.8.9", + "Version": "2.0.0", "Title": "A Simple and Robust JSON Parser and Generator for R", "License": "MIT + file LICENSE", "Depends": "methods", @@ -2464,14 +2395,14 @@ "VignetteBuilder": "knitr, R.rsp", "Description": "A reasonably fast JSON parser and generator, optimized for statistical \n data and the web. Offers simple, flexible tools for working with JSON in R, and\n is particularly powerful for building pipelines and interacting with a web API. \n The implementation is based on the mapping described in the vignette (Ooms, 2014).\n In addition to converting JSON data from/to R objects, 'jsonlite' contains \n functions to stream, validate, and prettify JSON data. The unit tests included \n with the package verify that all edge cases are encoded and decoded consistently \n for use with dynamic data in systems and applications.", "Suggests": "httr, vctrs, testthat, knitr, rmarkdown, R.rsp, sf", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Packaged": "2024-09-19 15:41:06 UTC; jeroen", + "Packaged": "2025-03-26 11:36:10 UTC; jeroen", "Author": "Jeroen Ooms [aut, cre] (),\n Duncan Temple Lang [ctb],\n Lloyd Hilaiel [cph] (author of bundled libyajl)", - "Repository": "CRAN", - "Date/Publication": "2024-09-20 08:40:14 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:24 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-03-27 06:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:10 UTC; unix" } }, "knitr": { @@ -2481,27 +2412,27 @@ "Package": "knitr", "Type": "Package", "Title": "A General-Purpose Package for Dynamic Report Generation in R", - "Version": "1.49", - "Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Abhraneel\", \"Sarma\", role = \"ctb\"),\n person(\"Adam\", \"Vogt\", role = \"ctb\"),\n person(\"Alastair\", \"Andrew\", role = \"ctb\"),\n person(\"Alex\", \"Zvoleff\", role = \"ctb\"),\n person(\"Amar\", \"Al-Zubaidi\", role = \"ctb\"),\n person(\"Andre\", \"Simon\", role = \"ctb\", comment = \"the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de\"),\n person(\"Aron\", \"Atkins\", role = \"ctb\"),\n person(\"Aaron\", \"Wolen\", role = \"ctb\"),\n person(\"Ashley\", \"Manton\", role = \"ctb\"),\n person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")),\n person(\"Ben\", \"Baumer\", role = \"ctb\"),\n person(\"Brian\", \"Diggs\", role = \"ctb\"),\n person(\"Brian\", \"Zhang\", role = \"ctb\"),\n person(\"Bulat\", \"Yapparov\", role = \"ctb\"),\n person(\"Cassio\", \"Pereira\", role = \"ctb\"),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\"),\n person(\"David\", \"Hall\", role = \"ctb\"),\n person(\"David\", \"Hugh-Jones\", role = \"ctb\"),\n person(\"David\", \"Robinson\", role = \"ctb\"),\n person(\"Doug\", \"Hemken\", role = \"ctb\"),\n person(\"Duncan\", \"Murdoch\", role = \"ctb\"),\n person(\"Elio\", \"Campitelli\", role = \"ctb\"),\n person(\"Ellis\", \"Hughes\", role = \"ctb\"),\n person(\"Emily\", \"Riederer\", role = \"ctb\"),\n person(\"Fabian\", \"Hirschmann\", role = \"ctb\"),\n person(\"Fitch\", \"Simeon\", role = \"ctb\"),\n person(\"Forest\", \"Fang\", role = \"ctb\"),\n person(c(\"Frank\", \"E\", \"Harrell\", \"Jr\"), role = \"ctb\", comment = \"the Sweavel package at inst/misc/Sweavel.sty\"),\n person(\"Garrick\", \"Aden-Buie\", role = \"ctb\"),\n person(\"Gregoire\", \"Detrez\", role = \"ctb\"),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Hao\", \"Zhu\", role = \"ctb\"),\n person(\"Heewon\", \"Jeon\", role = \"ctb\"),\n person(\"Henrik\", \"Bengtsson\", role = \"ctb\"),\n person(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\n person(\"Ian\", \"Lyttle\", role = \"ctb\"),\n person(\"Hodges\", \"Daniel\", role = \"ctb\"),\n person(\"Jacob\", \"Bien\", role = \"ctb\"),\n person(\"Jake\", \"Burkhead\", role = \"ctb\"),\n person(\"James\", \"Manton\", role = \"ctb\"),\n person(\"Jared\", \"Lander\", role = \"ctb\"),\n person(\"Jason\", \"Punyon\", role = \"ctb\"),\n person(\"Javier\", \"Luraschi\", role = \"ctb\"),\n person(\"Jeff\", \"Arnold\", role = \"ctb\"),\n person(\"Jenny\", \"Bryan\", role = \"ctb\"),\n person(\"Jeremy\", \"Ashkenas\", role = c(\"ctb\", \"cph\"), comment = \"the CSS file at inst/misc/docco-classic.css\"),\n person(\"Jeremy\", \"Stephens\", role = \"ctb\"),\n person(\"Jim\", \"Hester\", role = \"ctb\"),\n person(\"Joe\", \"Cheng\", role = \"ctb\"),\n person(\"Johannes\", \"Ranke\", role = \"ctb\"),\n person(\"John\", \"Honaker\", role = \"ctb\"),\n person(\"John\", \"Muschelli\", role = \"ctb\"),\n person(\"Jonathan\", \"Keane\", role = \"ctb\"),\n person(\"JJ\", \"Allaire\", role = \"ctb\"),\n person(\"Johan\", \"Toloe\", role = \"ctb\"),\n person(\"Jonathan\", \"Sidi\", role = \"ctb\"),\n person(\"Joseph\", \"Larmarange\", role = \"ctb\"),\n person(\"Julien\", \"Barnier\", role = \"ctb\"),\n person(\"Kaiyin\", \"Zhong\", role = \"ctb\"),\n person(\"Kamil\", \"Slowikowski\", role = \"ctb\"),\n person(\"Karl\", \"Forner\", role = \"ctb\"),\n person(c(\"Kevin\", \"K.\"), \"Smith\", role = \"ctb\"),\n person(\"Kirill\", \"Mueller\", role = \"ctb\"),\n person(\"Kohske\", \"Takahashi\", role = \"ctb\"),\n person(\"Lorenz\", \"Walthert\", role = \"ctb\"),\n person(\"Lucas\", \"Gallindo\", role = \"ctb\"),\n person(\"Marius\", \"Hofert\", role = \"ctb\"),\n person(\"Martin\", \"Modrák\", role = \"ctb\"),\n person(\"Michael\", \"Chirico\", role = \"ctb\"),\n person(\"Michael\", \"Friendly\", role = \"ctb\"),\n person(\"Michal\", \"Bojanowski\", role = \"ctb\"),\n person(\"Michel\", \"Kuhlmann\", role = \"ctb\"),\n person(\"Miller\", \"Patrick\", role = \"ctb\"),\n person(\"Nacho\", \"Caballero\", role = \"ctb\"),\n person(\"Nick\", \"Salkowski\", role = \"ctb\"),\n person(\"Niels Richard\", \"Hansen\", role = \"ctb\"),\n person(\"Noam\", \"Ross\", role = \"ctb\"),\n person(\"Obada\", \"Mahdi\", role = \"ctb\"),\n person(\"Pavel N.\", \"Krivitsky\", role = \"ctb\", comment=c(ORCID = \"0000-0002-9101-3362\")),\n person(\"Pedro\", \"Faria\", role = \"ctb\"),\n person(\"Qiang\", \"Li\", role = \"ctb\"),\n person(\"Ramnath\", \"Vaidyanathan\", role = \"ctb\"),\n person(\"Richard\", \"Cotton\", role = \"ctb\"),\n person(\"Robert\", \"Krzyzanowski\", role = \"ctb\"),\n person(\"Rodrigo\", \"Copetti\", role = \"ctb\"),\n person(\"Romain\", \"Francois\", role = \"ctb\"),\n person(\"Ruaridh\", \"Williamson\", role = \"ctb\"),\n person(\"Sagiru\", \"Mati\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1413-3974\")),\n person(\"Scott\", \"Kostyshak\", role = \"ctb\"),\n person(\"Sebastian\", \"Meyer\", role = \"ctb\"),\n person(\"Sietse\", \"Brouwer\", role = \"ctb\"),\n person(c(\"Simon\", \"de\"), \"Bernard\", role = \"ctb\"),\n person(\"Sylvain\", \"Rousseau\", role = \"ctb\"),\n person(\"Taiyun\", \"Wei\", role = \"ctb\"),\n person(\"Thibaut\", \"Assus\", role = \"ctb\"),\n person(\"Thibaut\", \"Lamadon\", role = \"ctb\"),\n person(\"Thomas\", \"Leeper\", role = \"ctb\"),\n person(\"Tim\", \"Mastny\", role = \"ctb\"),\n person(\"Tom\", \"Torsney-Weir\", role = \"ctb\"),\n person(\"Trevor\", \"Davis\", role = \"ctb\"),\n person(\"Viktoras\", \"Veitas\", role = \"ctb\"),\n person(\"Weicheng\", \"Zhu\", role = \"ctb\"),\n person(\"Wush\", \"Wu\", role = \"ctb\"),\n person(\"Zachary\", \"Foster\", role = \"ctb\"),\n person(\"Zhian N.\", \"Kamvar\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1458-7108\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Version": "1.50", + "Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")),\n person(\"Abhraneel\", \"Sarma\", role = \"ctb\"),\n person(\"Adam\", \"Vogt\", role = \"ctb\"),\n person(\"Alastair\", \"Andrew\", role = \"ctb\"),\n person(\"Alex\", \"Zvoleff\", role = \"ctb\"),\n person(\"Amar\", \"Al-Zubaidi\", role = \"ctb\"),\n person(\"Andre\", \"Simon\", role = \"ctb\", comment = \"the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de\"),\n person(\"Aron\", \"Atkins\", role = \"ctb\"),\n person(\"Aaron\", \"Wolen\", role = \"ctb\"),\n person(\"Ashley\", \"Manton\", role = \"ctb\"),\n person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")),\n person(\"Ben\", \"Baumer\", role = \"ctb\"),\n person(\"Brian\", \"Diggs\", role = \"ctb\"),\n person(\"Brian\", \"Zhang\", role = \"ctb\"),\n person(\"Bulat\", \"Yapparov\", role = \"ctb\"),\n person(\"Cassio\", \"Pereira\", role = \"ctb\"),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\"),\n person(\"David\", \"Hall\", role = \"ctb\"),\n person(\"David\", \"Hugh-Jones\", role = \"ctb\"),\n person(\"David\", \"Robinson\", role = \"ctb\"),\n person(\"Doug\", \"Hemken\", role = \"ctb\"),\n person(\"Duncan\", \"Murdoch\", role = \"ctb\"),\n person(\"Elio\", \"Campitelli\", role = \"ctb\"),\n person(\"Ellis\", \"Hughes\", role = \"ctb\"),\n person(\"Emily\", \"Riederer\", role = \"ctb\"),\n person(\"Fabian\", \"Hirschmann\", role = \"ctb\"),\n person(\"Fitch\", \"Simeon\", role = \"ctb\"),\n person(\"Forest\", \"Fang\", role = \"ctb\"),\n person(c(\"Frank\", \"E\", \"Harrell\", \"Jr\"), role = \"ctb\", comment = \"the Sweavel package at inst/misc/Sweavel.sty\"),\n person(\"Garrick\", \"Aden-Buie\", role = \"ctb\"),\n person(\"Gregoire\", \"Detrez\", role = \"ctb\"),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Hao\", \"Zhu\", role = \"ctb\"),\n person(\"Heewon\", \"Jeon\", role = \"ctb\"),\n person(\"Henrik\", \"Bengtsson\", role = \"ctb\"),\n person(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\n person(\"Ian\", \"Lyttle\", role = \"ctb\"),\n person(\"Hodges\", \"Daniel\", role = \"ctb\"),\n person(\"Jacob\", \"Bien\", role = \"ctb\"),\n person(\"Jake\", \"Burkhead\", role = \"ctb\"),\n person(\"James\", \"Manton\", role = \"ctb\"),\n person(\"Jared\", \"Lander\", role = \"ctb\"),\n person(\"Jason\", \"Punyon\", role = \"ctb\"),\n person(\"Javier\", \"Luraschi\", role = \"ctb\"),\n person(\"Jeff\", \"Arnold\", role = \"ctb\"),\n person(\"Jenny\", \"Bryan\", role = \"ctb\"),\n person(\"Jeremy\", \"Ashkenas\", role = c(\"ctb\", \"cph\"), comment = \"the CSS file at inst/misc/docco-classic.css\"),\n person(\"Jeremy\", \"Stephens\", role = \"ctb\"),\n person(\"Jim\", \"Hester\", role = \"ctb\"),\n person(\"Joe\", \"Cheng\", role = \"ctb\"),\n person(\"Johannes\", \"Ranke\", role = \"ctb\"),\n person(\"John\", \"Honaker\", role = \"ctb\"),\n person(\"John\", \"Muschelli\", role = \"ctb\"),\n person(\"Jonathan\", \"Keane\", role = \"ctb\"),\n person(\"JJ\", \"Allaire\", role = \"ctb\"),\n person(\"Johan\", \"Toloe\", role = \"ctb\"),\n person(\"Jonathan\", \"Sidi\", role = \"ctb\"),\n person(\"Joseph\", \"Larmarange\", role = \"ctb\"),\n person(\"Julien\", \"Barnier\", role = \"ctb\"),\n person(\"Kaiyin\", \"Zhong\", role = \"ctb\"),\n person(\"Kamil\", \"Slowikowski\", role = \"ctb\"),\n person(\"Karl\", \"Forner\", role = \"ctb\"),\n person(c(\"Kevin\", \"K.\"), \"Smith\", role = \"ctb\"),\n person(\"Kirill\", \"Mueller\", role = \"ctb\"),\n person(\"Kohske\", \"Takahashi\", role = \"ctb\"),\n person(\"Lorenz\", \"Walthert\", role = \"ctb\"),\n person(\"Lucas\", \"Gallindo\", role = \"ctb\"),\n person(\"Marius\", \"Hofert\", role = \"ctb\"),\n person(\"Martin\", \"Modrák\", role = \"ctb\"),\n person(\"Michael\", \"Chirico\", role = \"ctb\"),\n person(\"Michael\", \"Friendly\", role = \"ctb\"),\n person(\"Michal\", \"Bojanowski\", role = \"ctb\"),\n person(\"Michel\", \"Kuhlmann\", role = \"ctb\"),\n person(\"Miller\", \"Patrick\", role = \"ctb\"),\n person(\"Nacho\", \"Caballero\", role = \"ctb\"),\n person(\"Nick\", \"Salkowski\", role = \"ctb\"),\n person(\"Niels Richard\", \"Hansen\", role = \"ctb\"),\n person(\"Noam\", \"Ross\", role = \"ctb\"),\n person(\"Obada\", \"Mahdi\", role = \"ctb\"),\n person(\"Pavel N.\", \"Krivitsky\", role = \"ctb\", comment=c(ORCID = \"0000-0002-9101-3362\")),\n person(\"Pedro\", \"Faria\", role = \"ctb\"),\n person(\"Qiang\", \"Li\", role = \"ctb\"),\n person(\"Ramnath\", \"Vaidyanathan\", role = \"ctb\"),\n person(\"Richard\", \"Cotton\", role = \"ctb\"),\n person(\"Robert\", \"Krzyzanowski\", role = \"ctb\"),\n person(\"Rodrigo\", \"Copetti\", role = \"ctb\"),\n person(\"Romain\", \"Francois\", role = \"ctb\"),\n person(\"Ruaridh\", \"Williamson\", role = \"ctb\"),\n person(\"Sagiru\", \"Mati\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1413-3974\")),\n person(\"Scott\", \"Kostyshak\", role = \"ctb\"),\n person(\"Sebastian\", \"Meyer\", role = \"ctb\"),\n person(\"Sietse\", \"Brouwer\", role = \"ctb\"),\n person(c(\"Simon\", \"de\"), \"Bernard\", role = \"ctb\"),\n person(\"Sylvain\", \"Rousseau\", role = \"ctb\"),\n person(\"Taiyun\", \"Wei\", role = \"ctb\"),\n person(\"Thibaut\", \"Assus\", role = \"ctb\"),\n person(\"Thibaut\", \"Lamadon\", role = \"ctb\"),\n person(\"Thomas\", \"Leeper\", role = \"ctb\"),\n person(\"Tim\", \"Mastny\", role = \"ctb\"),\n person(\"Tom\", \"Torsney-Weir\", role = \"ctb\"),\n person(\"Trevor\", \"Davis\", role = \"ctb\"),\n person(\"Viktoras\", \"Veitas\", role = \"ctb\"),\n person(\"Weicheng\", \"Zhu\", role = \"ctb\"),\n person(\"Wush\", \"Wu\", role = \"ctb\"),\n person(\"Zachary\", \"Foster\", role = \"ctb\"),\n person(\"Zhian N.\", \"Kamvar\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1458-7108\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", "Description": "Provides a general-purpose tool for dynamic report generation in R\n using Literate Programming techniques.", "Depends": "R (>= 3.6.0)", - "Imports": "evaluate (>= 0.15), highr (>= 0.11), methods, tools, xfun (>=\n0.48), yaml (>= 2.1.19)", - "Suggests": "bslib, codetools, DBI (>= 0.4-1), digest, formatR, gifski,\ngridSVG, htmlwidgets (>= 0.7), jpeg, JuliaCall (>= 0.11.1),\nmagick, litedown, 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", + "Imports": "evaluate (>= 0.15), highr (>= 0.11), methods, tools, xfun (>=\n0.51), yaml (>= 2.1.19)", + "Suggests": "bslib, codetools, DBI (>= 0.4-1), digest, formatR, gifski,\ngridSVG, htmlwidgets (>= 0.7), jpeg, JuliaCall (>= 0.11.1),\nmagick, litedown, 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.56), webshot, rstudioapi,\nsvglite", "License": "GPL", "URL": "https://yihui.org/knitr/", "BugReports": "https://github.com/yihui/knitr/issues", "Encoding": "UTF-8", "VignetteBuilder": "litedown, 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'", + "Collate": "'block.R' 'cache.R' 'citation.R' 'hooks-html.R' 'plot.R'\n'utils.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.3.2", "NeedsCompilation": "no", - "Packaged": "2024-11-06 23:10:53 UTC; runner", - "Author": "Yihui Xie [aut, cre] (),\n Abhraneel Sarma [ctb],\n Adam Vogt [ctb],\n Alastair Andrew [ctb],\n Alex Zvoleff [ctb],\n Amar Al-Zubaidi [ctb],\n Andre Simon [ctb] (the CSS files under inst/themes/ were derived from\n the Highlight package http://www.andre-simon.de),\n Aron Atkins [ctb],\n Aaron Wolen [ctb],\n Ashley Manton [ctb],\n Atsushi Yasumoto [ctb] (),\n Ben Baumer [ctb],\n Brian Diggs [ctb],\n Brian Zhang [ctb],\n Bulat Yapparov [ctb],\n Cassio Pereira [ctb],\n Christophe Dervieux [ctb],\n David Hall [ctb],\n David Hugh-Jones [ctb],\n David Robinson [ctb],\n Doug Hemken [ctb],\n Duncan Murdoch [ctb],\n Elio Campitelli [ctb],\n Ellis Hughes [ctb],\n Emily Riederer [ctb],\n Fabian Hirschmann [ctb],\n Fitch Simeon [ctb],\n Forest Fang [ctb],\n Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty),\n Garrick Aden-Buie [ctb],\n Gregoire Detrez [ctb],\n Hadley Wickham [ctb],\n Hao Zhu [ctb],\n Heewon Jeon [ctb],\n Henrik Bengtsson [ctb],\n Hiroaki Yutani [ctb],\n Ian Lyttle [ctb],\n Hodges Daniel [ctb],\n Jacob Bien [ctb],\n Jake Burkhead [ctb],\n James Manton [ctb],\n Jared Lander [ctb],\n Jason Punyon [ctb],\n Javier Luraschi [ctb],\n Jeff Arnold [ctb],\n Jenny Bryan [ctb],\n Jeremy Ashkenas [ctb, cph] (the CSS file at\n inst/misc/docco-classic.css),\n Jeremy Stephens [ctb],\n Jim Hester [ctb],\n Joe Cheng [ctb],\n Johannes Ranke [ctb],\n John Honaker [ctb],\n John Muschelli [ctb],\n Jonathan Keane [ctb],\n JJ Allaire [ctb],\n Johan Toloe [ctb],\n Jonathan Sidi [ctb],\n Joseph Larmarange [ctb],\n Julien Barnier [ctb],\n Kaiyin Zhong [ctb],\n Kamil Slowikowski [ctb],\n Karl Forner [ctb],\n Kevin K. Smith [ctb],\n Kirill Mueller [ctb],\n Kohske Takahashi [ctb],\n Lorenz Walthert [ctb],\n Lucas Gallindo [ctb],\n Marius Hofert [ctb],\n Martin Modrák [ctb],\n Michael Chirico [ctb],\n Michael Friendly [ctb],\n Michal Bojanowski [ctb],\n Michel Kuhlmann [ctb],\n Miller Patrick [ctb],\n Nacho Caballero [ctb],\n Nick Salkowski [ctb],\n Niels Richard Hansen [ctb],\n Noam Ross [ctb],\n Obada Mahdi [ctb],\n Pavel N. Krivitsky [ctb] (),\n Pedro Faria [ctb],\n Qiang Li [ctb],\n Ramnath Vaidyanathan [ctb],\n Richard Cotton [ctb],\n Robert Krzyzanowski [ctb],\n Rodrigo Copetti [ctb],\n Romain Francois [ctb],\n Ruaridh Williamson [ctb],\n Sagiru Mati [ctb] (),\n Scott Kostyshak [ctb],\n Sebastian Meyer [ctb],\n Sietse Brouwer [ctb],\n Simon de Bernard [ctb],\n Sylvain Rousseau [ctb],\n Taiyun Wei [ctb],\n Thibaut Assus [ctb],\n Thibaut Lamadon [ctb],\n Thomas Leeper [ctb],\n Tim Mastny [ctb],\n Tom Torsney-Weir [ctb],\n Trevor Davis [ctb],\n Viktoras Veitas [ctb],\n Weicheng Zhu [ctb],\n Wush Wu [ctb],\n Zachary Foster [ctb],\n Zhian N. Kamvar [ctb] (),\n Posit Software, PBC [cph, fnd]", + "Packaged": "2025-03-15 00:17:19 UTC; runner", + "Author": "Yihui Xie [aut, cre] (,\n https://yihui.org),\n Abhraneel Sarma [ctb],\n Adam Vogt [ctb],\n Alastair Andrew [ctb],\n Alex Zvoleff [ctb],\n Amar Al-Zubaidi [ctb],\n Andre Simon [ctb] (the CSS files under inst/themes/ were derived from\n the Highlight package http://www.andre-simon.de),\n Aron Atkins [ctb],\n Aaron Wolen [ctb],\n Ashley Manton [ctb],\n Atsushi Yasumoto [ctb] (),\n Ben Baumer [ctb],\n Brian Diggs [ctb],\n Brian Zhang [ctb],\n Bulat Yapparov [ctb],\n Cassio Pereira [ctb],\n Christophe Dervieux [ctb],\n David Hall [ctb],\n David Hugh-Jones [ctb],\n David Robinson [ctb],\n Doug Hemken [ctb],\n Duncan Murdoch [ctb],\n Elio Campitelli [ctb],\n Ellis Hughes [ctb],\n Emily Riederer [ctb],\n Fabian Hirschmann [ctb],\n Fitch Simeon [ctb],\n Forest Fang [ctb],\n Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty),\n Garrick Aden-Buie [ctb],\n Gregoire Detrez [ctb],\n Hadley Wickham [ctb],\n Hao Zhu [ctb],\n Heewon Jeon [ctb],\n Henrik Bengtsson [ctb],\n Hiroaki Yutani [ctb],\n Ian Lyttle [ctb],\n Hodges Daniel [ctb],\n Jacob Bien [ctb],\n Jake Burkhead [ctb],\n James Manton [ctb],\n Jared Lander [ctb],\n Jason Punyon [ctb],\n Javier Luraschi [ctb],\n Jeff Arnold [ctb],\n Jenny Bryan [ctb],\n Jeremy Ashkenas [ctb, cph] (the CSS file at\n inst/misc/docco-classic.css),\n Jeremy Stephens [ctb],\n Jim Hester [ctb],\n Joe Cheng [ctb],\n Johannes Ranke [ctb],\n John Honaker [ctb],\n John Muschelli [ctb],\n Jonathan Keane [ctb],\n JJ Allaire [ctb],\n Johan Toloe [ctb],\n Jonathan Sidi [ctb],\n Joseph Larmarange [ctb],\n Julien Barnier [ctb],\n Kaiyin Zhong [ctb],\n Kamil Slowikowski [ctb],\n Karl Forner [ctb],\n Kevin K. Smith [ctb],\n Kirill Mueller [ctb],\n Kohske Takahashi [ctb],\n Lorenz Walthert [ctb],\n Lucas Gallindo [ctb],\n Marius Hofert [ctb],\n Martin Modrák [ctb],\n Michael Chirico [ctb],\n Michael Friendly [ctb],\n Michal Bojanowski [ctb],\n Michel Kuhlmann [ctb],\n Miller Patrick [ctb],\n Nacho Caballero [ctb],\n Nick Salkowski [ctb],\n Niels Richard Hansen [ctb],\n Noam Ross [ctb],\n Obada Mahdi [ctb],\n Pavel N. Krivitsky [ctb] (),\n Pedro Faria [ctb],\n Qiang Li [ctb],\n Ramnath Vaidyanathan [ctb],\n Richard Cotton [ctb],\n Robert Krzyzanowski [ctb],\n Rodrigo Copetti [ctb],\n Romain Francois [ctb],\n Ruaridh Williamson [ctb],\n Sagiru Mati [ctb] (),\n Scott Kostyshak [ctb],\n Sebastian Meyer [ctb],\n Sietse Brouwer [ctb],\n Simon de Bernard [ctb],\n Sylvain Rousseau [ctb],\n Taiyun Wei [ctb],\n Thibaut Assus [ctb],\n Thibaut Lamadon [ctb],\n Thomas Leeper [ctb],\n Tim Mastny [ctb],\n Tom Torsney-Weir [ctb],\n Trevor Davis [ctb],\n Viktoras Veitas [ctb],\n Weicheng Zhu [ctb],\n Wush Wu [ctb],\n Zachary Foster [ctb],\n Zhian N. Kamvar [ctb] (),\n Posit Software, PBC [cph, fnd]", "Maintainer": "Yihui Xie ", - "Repository": "CRAN", - "Date/Publication": "2024-11-08 09:30:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:48:52 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-03-16 09:20:02 UTC", + "Built": "R 4.5.0; ; 2025-04-06 04:43:04 UTC; unix" } }, "labeling": { @@ -2521,9 +2452,10 @@ "NeedsCompilation": "no", "Imports": "stats, graphics", "Packaged": "2023-08-29 21:01:57 UTC; loki", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-08-29 22:20:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:54:16 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-06 04:42:04 UTC; unix" } }, "later": { @@ -2533,7 +2465,7 @@ "Package": "later", "Type": "Package", "Title": "Utilities for Scheduling Functions to Execute Later with Event\nLoops", - "Version": "1.4.1", + "Version": "1.4.2", "Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\"),\n person(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"joe@posit.co\"),\n person(\"Charlie\", \"Gao\", role = c(\"aut\"), email = \"charlie.gao@shikokuchuo.net\", comment = c(ORCID = \"0000-0002-0750-061X\")),\n person(family = \"Posit Software, PBC\", role = \"cph\"),\n person(\"Marcus\", \"Geelnard\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\"),\n person(\"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\n time, after the R execution stack has emptied. The functions are scheduled\n in an event loop.", "URL": "https://r-lib.github.io/later/, https://github.com/r-lib/later", @@ -2546,12 +2478,12 @@ "VignetteBuilder": "knitr", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Packaged": "2024-11-27 22:51:17 UTC; jcheng", + "Packaged": "2025-04-07 20:25:00 UTC; cg334", "Author": "Winston Chang [aut, cre],\n Joe Cheng [aut],\n Charlie Gao [aut] (),\n Posit Software, PBC [cph],\n Marcus Geelnard [ctb, cph] (TinyCThread library,\n https://tinycthread.github.io/),\n Evan Nemerson [ctb, cph] (TinyCThread library,\n https://tinycthread.github.io/)", "Maintainer": "Winston Chang ", - "Repository": "CRAN", - "Date/Publication": "2024-11-27 23:40:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:51:19 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-08 08:50:01 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 14:31:14 UTC; unix" } }, "lattice": { @@ -2559,8 +2491,8 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "lattice", - "Version": "0.22-6", - "Date": "2024-03-20", + "Version": "0.22-7", + "Date": "2025-03-31", "Priority": "recommended", "Title": "Trellis Graphics for R", "Authors@R": "c(person(\"Deepayan\", \"Sarkar\", role = c(\"aut\", \"cre\"),\n\t email = \"deepayan.sarkar@r-project.org\",\n\t\t comment = c(ORCID = \"0000-0003-4107-1553\")),\n person(\"Felix\", \"Andrews\", role = \"ctb\"),\n\t person(\"Kevin\", \"Wright\", role = \"ctb\", comment = \"documentation\"),\n\t person(\"Neil\", \"Klepeis\", role = \"ctb\"),\n\t person(\"Johan\", \"Larsson\", role = \"ctb\", comment = \"miscellaneous improvements\"),\n person(\"Zhijian (Jason)\", \"Wen\", role = \"cph\", comment = \"filled contour code\"),\n person(\"Paul\", \"Murrell\", role = \"ctb\", email = \"paul@stat.auckland.ac.nz\"),\n\t person(\"Stefan\", \"Eng\", role = \"ctb\", comment = \"violin plot improvements\"),\n\t person(\"Achim\", \"Zeileis\", role = \"ctb\", comment = \"modern colors\"),\n person(\"Alexandre\", \"Courtiol\", role = \"ctb\", comment = \"generics for larrows, lpolygon, lrect and lsegments\")\n\t )", @@ -2575,12 +2507,12 @@ "URL": "https://lattice.r-forge.r-project.org/", "BugReports": "https://github.com/deepayan/lattice/issues", "NeedsCompilation": "yes", - "Packaged": "2024-03-20 03:08:45 UTC; deepayan", + "Packaged": "2025-04-02 04:55:57 UTC; deepayan", "Author": "Deepayan Sarkar [aut, cre] (),\n Felix Andrews [ctb],\n Kevin Wright [ctb] (documentation),\n Neil Klepeis [ctb],\n Johan Larsson [ctb] (miscellaneous improvements),\n Zhijian (Jason) Wen [cph] (filled contour code),\n Paul Murrell [ctb],\n Stefan Eng [ctb] (violin plot improvements),\n Achim Zeileis [ctb] (modern colors),\n Alexandre Courtiol [ctb] (generics for larrows, lpolygon, lrect and\n lsegments)", "Maintainer": "Deepayan Sarkar ", "Repository": "CRAN", - "Date/Publication": "2024-03-20 06:10:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:45:43 UTC; unix" + "Date/Publication": "2025-04-02 15:40:02 UTC", + "Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:29:47 UTC; unix" } }, "lava": { @@ -2608,9 +2540,9 @@ "RoxygenNote": "7.3.2", "NeedsCompilation": "no", "Packaged": "2025-01-11 22:47:53 UTC; klaus", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2025-01-12 11:40:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:27 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-08 03:11:31 UTC; unix" } }, "lazyeval": { @@ -2632,9 +2564,10 @@ "Packaged": "2019-03-15 14:18:01 UTC; lionel", "Author": "Hadley Wickham [aut, cre],\n RStudio [cph]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2019-03-15 17:50:07 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:55 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-06-22 22:52:02 UTC; unix" } }, "lifecycle": { @@ -2661,9 +2594,9 @@ "Packaged": "2023-11-06 16:07:36 UTC; lionel", "Author": "Lionel Henry [aut, cre],\n Hadley Wickham [aut] (),\n Posit Software, PBC [cph, fnd]", "Maintainer": "Lionel Henry ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-11-07 10:10:10 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:49:09 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:42:52 UTC; unix" } }, "lintr": { @@ -2672,30 +2605,31 @@ "description": { "Package": "lintr", "Title": "A 'Linter' for R Code", - "Version": "3.1.2", + "Version": "3.2.0", "Authors@R": "c(\n person(\"Jim\", \"Hester\", , role = \"aut\"),\n person(\"Florent\", \"Angly\", role = \"aut\",\n comment = \"fangly\"),\n person(\"Russ\", \"Hyde\", role = \"aut\"),\n person(\"Michael\", \"Chirico\", email = \"michaelchirico4@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Kun\", \"Ren\", role = \"aut\"),\n person(\"Alexander\", \"Rosenstock\", role = \"aut\",\n comment = \"AshesITR\"),\n person(\"Indrajeet\", \"Patil\", , \"patilindrajeet.science@gmail.com\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-1995-6531\", Twitter = \"@patilindrajeets\"))\n )", "Description": "Checks adherence to a given style, syntax errors and possible\n semantic issues. Supports on the fly checking of R code edited with\n 'RStudio IDE', 'Emacs', 'Vim', 'Sublime Text', 'Atom' and 'Visual\n Studio Code'.", "License": "MIT + file LICENSE", - "URL": "https://github.com/r-lib/lintr, https://lintr.r-lib.org", + "URL": "https://lintr.r-lib.org, https://github.com/r-lib/lintr", "BugReports": "https://github.com/r-lib/lintr/issues", - "Depends": "R (>= 3.5)", - "Imports": "backports (>= 1.1.7), codetools, cyclocomp, digest, glue,\nknitr, rex, stats, utils, xml2 (>= 1.0.0), xmlparsedata (>=\n1.0.5)", - "Suggests": "bookdown, crayon, httr (>= 1.2.1), jsonlite, mockery,\npatrick, rlang, rmarkdown, rstudioapi (>= 0.2), testthat (>=\n3.1.5), tibble, tufte, withr (>= 2.5.0)", + "Depends": "R (>= 4.0)", + "Imports": "backports (>= 1.4.0), cli (>= 3.4.0), codetools, digest, glue,\nknitr, rex, stats, utils, xml2 (>= 1.0.0), xmlparsedata (>=\n1.0.5)", + "Suggests": "bookdown, cyclocomp, jsonlite, patrick (>= 0.2.0), rlang,\nrmarkdown, rstudioapi (>= 0.2), testthat (>= 3.2.1), tibble,\ntufte, withr (>= 2.5.0)", "Enhances": "data.table", "VignetteBuilder": "knitr", "Config/Needs/website": "tidyverse/tidytemplate", + "Config/Needs/development": "pkgload, cli, testthat, patrick", "Config/testthat/edition": "3", "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", - "Collate": "'make_linter_from_xpath.R' 'xp_utils.R' 'utils.R' 'AAA.R'\n'T_and_F_symbol_linter.R' 'absolute_path_linter.R' 'actions.R'\n'addins.R' 'any_duplicated_linter.R' 'any_is_na_linter.R'\n'assignment_linter.R' 'backport_linter.R'\n'boolean_arithmetic_linter.R' 'brace_linter.R' 'cache.R'\n'class_equals_linter.R' 'commas_linter.R' 'comment_linters.R'\n'comments.R' 'condition_message_linter.R'\n'conjunct_test_linter.R' 'consecutive_assertion_linter.R'\n'cyclocomp_linter.R' 'declared_functions.R' 'deprecated.R'\n'duplicate_argument_linter.R' 'empty_assignment_linter.R'\n'equals_na_linter.R' 'exclude.R' 'expect_comparison_linter.R'\n'expect_identical_linter.R' 'expect_length_linter.R'\n'expect_lint.R' 'expect_named_linter.R' 'expect_not_linter.R'\n'expect_null_linter.R' 'expect_s3_class_linter.R'\n'expect_s4_class_linter.R' 'expect_true_false_linter.R'\n'expect_type_linter.R' 'extract.R'\n'extraction_operator_linter.R' 'fixed_regex_linter.R'\n'for_loop_index_linter.R' 'function_argument_linter.R'\n'function_left_parentheses_linter.R' 'function_return_linter.R'\n'get_source_expressions.R' 'ids_with_token.R'\n'if_not_else_linter.R' 'ifelse_censor_linter.R'\n'implicit_assignment_linter.R' 'implicit_integer_linter.R'\n'indentation_linter.R' 'infix_spaces_linter.R'\n'inner_combine_linter.R' 'is_lint_level.R'\n'is_numeric_linter.R' 'keyword_quote_linter.R'\n'length_levels_linter.R' 'length_test_linter.R'\n'lengths_linter.R' 'library_call_linter.R'\n'line_length_linter.R' 'lint.R' 'linter_tag_docs.R'\n'linter_tags.R' 'lintr-deprecated.R' 'lintr-package.R'\n'literal_coercion_linter.R' 'make_linter_from_regex.R'\n'matrix_apply_linter.R' 'methods.R' 'missing_argument_linter.R'\n'missing_package_linter.R' 'namespace.R' 'namespace_linter.R'\n'nested_ifelse_linter.R' 'nonportable_path_linter.R'\n'numeric_leading_zero_linter.R' 'object_length_linter.R'\n'object_name_linter.R' 'object_usage_linter.R'\n'outer_negation_linter.R' 'package_hooks_linter.R'\n'paren_body_linter.R' 'paste_linter.R' 'path_utils.R'\n'pipe_call_linter.R' 'pipe_consistency_linter.R'\n'pipe_continuation_linter.R' 'quotes_linter.R'\n'redundant_equals_linter.R' 'redundant_ifelse_linter.R'\n'regex_subset_linter.R' 'repeat_linter.R'\n'routine_registration_linter.R' 'scalar_in_linter.R'\n'semicolon_linter.R' 'seq_linter.R' 'settings.R'\n'settings_utils.R' 'shared_constants.R' 'sort_linter.R'\n'spaces_inside_linter.R' 'spaces_left_parentheses_linter.R'\n'sprintf_linter.R' 'string_boundary_linter.R'\n'strings_as_factors_linter.R' 'system_file_linter.R'\n'trailing_blank_lines_linter.R' 'trailing_whitespace_linter.R'\n'tree_utils.R' 'undesirable_function_linter.R'\n'undesirable_operator_linter.R'\n'unnecessary_concatenation_linter.R'\n'unnecessary_lambda_linter.R' 'unnecessary_nested_if_linter.R'\n'unnecessary_placeholder_linter.R' 'unreachable_code_linter.R'\n'unused_import_linter.R' 'use_lintr.R' 'vector_logic_linter.R'\n'whitespace_linter.R' 'with.R' 'with_id.R'\n'xml_nodes_to_lints.R' 'yoda_test_linter.R' 'zzz.R'", + "RoxygenNote": "7.3.2", + "Collate": "'make_linter_from_xpath.R' 'xp_utils.R' 'utils.R' 'AAA.R'\n'T_and_F_symbol_linter.R' 'absolute_path_linter.R' 'actions.R'\n'addins.R' 'any_duplicated_linter.R' 'any_is_na_linter.R'\n'assignment_linter.R' 'backport_linter.R'\n'boolean_arithmetic_linter.R' 'brace_linter.R' 'cache.R'\n'class_equals_linter.R' 'commas_linter.R'\n'commented_code_linter.R' 'comparison_negation_linter.R'\n'condition_call_linter.R' 'condition_message_linter.R'\n'conjunct_test_linter.R' 'consecutive_assertion_linter.R'\n'consecutive_mutate_linter.R' 'cyclocomp_linter.R'\n'declared_functions.R' 'deprecated.R'\n'duplicate_argument_linter.R' 'empty_assignment_linter.R'\n'equals_na_linter.R' 'exclude.R' 'expect_comparison_linter.R'\n'expect_identical_linter.R' 'expect_length_linter.R'\n'expect_lint.R' 'expect_named_linter.R' 'expect_not_linter.R'\n'expect_null_linter.R' 'expect_s3_class_linter.R'\n'expect_s4_class_linter.R' 'expect_true_false_linter.R'\n'expect_type_linter.R' 'extract.R' 'fixed_regex_linter.R'\n'for_loop_index_linter.R' 'function_argument_linter.R'\n'function_left_parentheses_linter.R' 'function_return_linter.R'\n'get_source_expressions.R' 'ids_with_token.R'\n'if_not_else_linter.R' 'if_switch_linter.R'\n'ifelse_censor_linter.R' 'implicit_assignment_linter.R'\n'implicit_integer_linter.R' 'indentation_linter.R'\n'infix_spaces_linter.R' 'inner_combine_linter.R'\n'is_lint_level.R' 'is_numeric_linter.R'\n'keyword_quote_linter.R' 'length_levels_linter.R'\n'length_test_linter.R' 'lengths_linter.R'\n'library_call_linter.R' 'line_length_linter.R' 'lint.R'\n'linter_tag_docs.R' 'linter_tags.R' 'lintr-deprecated.R'\n'lintr-package.R' 'list_comparison_linter.R'\n'literal_coercion_linter.R' 'make_linter_from_regex.R'\n'matrix_apply_linter.R' 'methods.R' 'missing_argument_linter.R'\n'missing_package_linter.R' 'namespace.R' 'namespace_linter.R'\n'nested_ifelse_linter.R' 'nested_pipe_linter.R'\n'nonportable_path_linter.R' 'shared_constants.R'\n'nrow_subset_linter.R' 'numeric_leading_zero_linter.R'\n'nzchar_linter.R' 'object_length_linter.R'\n'object_name_linter.R' 'object_overwrite_linter.R'\n'object_usage_linter.R' 'one_call_pipe_linter.R'\n'outer_negation_linter.R' 'package_hooks_linter.R'\n'paren_body_linter.R' 'paste_linter.R' 'path_utils.R'\n'pipe_call_linter.R' 'pipe_consistency_linter.R'\n'pipe_continuation_linter.R' 'pipe_return_linter.R'\n'print_linter.R' 'quotes_linter.R' 'redundant_equals_linter.R'\n'redundant_ifelse_linter.R' 'regex_subset_linter.R'\n'rep_len_linter.R' 'repeat_linter.R' 'return_linter.R'\n'routine_registration_linter.R' 'sample_int_linter.R'\n'scalar_in_linter.R' 'semicolon_linter.R' 'seq_linter.R'\n'settings.R' 'settings_utils.R' 'sort_linter.R'\n'source_utils.R' 'spaces_inside_linter.R'\n'spaces_left_parentheses_linter.R' 'sprintf_linter.R'\n'stopifnot_all_linter.R' 'string_boundary_linter.R'\n'strings_as_factors_linter.R' 'system_file_linter.R'\n'terminal_close_linter.R' 'todo_comment_linter.R'\n'trailing_blank_lines_linter.R' 'trailing_whitespace_linter.R'\n'tree_utils.R' 'undesirable_function_linter.R'\n'undesirable_operator_linter.R'\n'unnecessary_concatenation_linter.R'\n'unnecessary_lambda_linter.R' 'unnecessary_nesting_linter.R'\n'unnecessary_placeholder_linter.R' 'unreachable_code_linter.R'\n'unused_import_linter.R' 'use_lintr.R' 'vector_logic_linter.R'\n'which_grepl_linter.R' 'whitespace_linter.R' 'with.R'\n'with_id.R' 'xml_nodes_to_lints.R' 'xml_utils.R'\n'yoda_test_linter.R' 'zzz.R'", "Language": "en-US", "NeedsCompilation": "no", - "Packaged": "2024-03-24 22:09:44 UTC; michael", + "Packaged": "2025-02-12 00:10:30 UTC; root", "Author": "Jim Hester [aut],\n Florent Angly [aut] (fangly),\n Russ Hyde [aut],\n Michael Chirico [aut, cre],\n Kun Ren [aut],\n Alexander Rosenstock [aut] (AshesITR),\n Indrajeet Patil [aut] (,\n @patilindrajeets)", "Maintainer": "Michael Chirico ", - "Repository": "CRAN", - "Date/Publication": "2024-03-25 06:10:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:49:06 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-02-12 15:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-09 06:48:15 UTC; unix" } }, "listenv": { @@ -2719,9 +2653,10 @@ "Packaged": "2024-01-28 20:40:45 UTC; henrik", "Author": "Henrik Bengtsson [aut, cre, cph]", "Maintainer": "Henrik Bengtsson ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-01-29 13:10:06 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:12 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-06 04:42:27 UTC; unix" } }, "lmtest": { @@ -2743,9 +2678,10 @@ "Packaged": "2022-03-21 20:25:17 UTC; zeileis", "Author": "Torsten Hothorn [aut] (),\n Achim Zeileis [aut, cre] (),\n Richard W. Farebrother [aut] (pan.f),\n Clint Cummins [aut] (pan.f),\n Giovanni Millo [ctb],\n David Mitchell [ctb]", "Maintainer": "Achim Zeileis ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2022-03-21 23:00:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:36 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:40 UTC; unix" } }, "logger": { @@ -2775,9 +2711,9 @@ "Packaged": "2024-10-20 22:07:23 UTC; daroczig", "Author": "Gergely Daróczi [aut, cre] (),\n Hadley Wickham [aut] (),\n System1 [fnd]", "Maintainer": "Gergely Daróczi ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-10-22 08:00:07 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:43 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-09 06:04:44 UTC; unix" } }, "lubridate": { @@ -2809,9 +2745,9 @@ "NeedsCompilation": "yes", "Packaged": "2024-12-07 23:41:45 UTC; vitalie", "Author": "Vitalie Spinu [aut, cre],\n Garrett Grolemund [aut],\n Hadley Wickham [aut],\n Davis Vaughan [ctb],\n Ian Lyttle [ctb],\n Imanuel Costigan [ctb],\n Jason Law [ctb],\n Doug Mitarotonda [ctb],\n Joseph Larmarange [ctb],\n Jonathan Boiser [ctb],\n Chel Hee Lee [ctb]", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-12-08 12:10:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:52 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:43:10 UTC; unix" } }, "magrittr": { @@ -2838,9 +2774,9 @@ "Packaged": "2022-03-29 09:34:37 UTC; lionel", "Author": "Stefan Milton Bache [aut, cph] (Original author and creator of\n magrittr),\n Hadley Wickham [aut],\n Lionel Henry [cre],\n RStudio [cph, fnd]", "Maintainer": "Lionel Henry ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2022-03-30 07:30:09 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:10 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:33 UTC; unix" } }, "memoise": { @@ -2863,9 +2799,9 @@ "Packaged": "2021-11-24 21:24:50 UTC; jhester", "Author": "Hadley Wickham [aut],\n Jim Hester [aut],\n Winston Chang [aut, cre],\n Kirill Müller [aut],\n Daniel Cook [aut],\n Mark Edmondson [ctb]", "Maintainer": "Winston Chang ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2021-11-26 16:11:10 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:50:26 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:43:00 UTC; unix" } }, "mgcv": { @@ -2873,9 +2809,8 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "mgcv", - "Version": "1.9-1", - "Author": "Simon Wood ", - "Maintainer": "Simon Wood ", + "Version": "1.9-3", + "Authors@R": "person(given = \"Simon\",\n family = \"Wood\",\n role = c(\"aut\", \"cre\"),\n email = \"simon.wood@r-project.org\")", "Title": "Mixed GAM Computation Vehicle with Automatic Smoothness\nEstimation", "Description": "Generalized additive (mixed) models, some of their extensions and \n other generalized ridge regression with multiple smoothing \n parameter estimation by (Restricted) Marginal Likelihood, \n Generalized Cross Validation and similar, or using iterated \n nested Laplace approximation for fully Bayesian inference. See \n Wood (2017) for an overview. \n Includes a gam() function, a wide variety of smoothers, 'JAGS' \n support and distributions beyond the exponential family. ", "Priority": "recommended", @@ -2886,10 +2821,12 @@ "ByteCompile": "yes", "License": "GPL (>= 2)", "NeedsCompilation": "yes", - "Packaged": "2023-12-20 10:39:06 UTC; sw283", + "Packaged": "2025-04-03 13:22:13 UTC; sw283", + "Author": "Simon Wood [aut, cre]", + "Maintainer": "Simon Wood ", "Repository": "CRAN", - "Date/Publication": "2023-12-21 00:30:02 UTC", - "Built": "R 4.3.2; x86_64-pc-linux-gnu; 'Thu, 21 Dec 2023 07:15:57 -0600'; unix" + "Date/Publication": "2025-04-04 05:40:02 UTC", + "Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:30:21 UTC; unix" } }, "mime": { @@ -2899,106 +2836,86 @@ "Package": "mime", "Type": "Package", "Title": "Map Filenames to MIME Types", - "Version": "0.12", - "Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Jeffrey\", \"Horner\", role = \"ctb\"),\n person(\"Beilei\", \"Bian\", role = \"ctb\")\n )", + "Version": "0.13", + "Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")),\n person(\"Jeffrey\", \"Horner\", role = \"ctb\"),\n person(\"Beilei\", \"Bian\", role = \"ctb\")\n )", "Description": "Guesses the MIME type from a filename extension using the data\n derived 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", + "RoxygenNote": "7.3.2", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Packaged": "2021-09-28 02:06:04 UTC; yihui", - "Author": "Yihui Xie [aut, cre] (),\n Jeffrey Horner [ctb],\n Beilei Bian [ctb]", + "Packaged": "2025-03-17 19:54:24 UTC; runner", + "Author": "Yihui Xie [aut, cre] (,\n https://yihui.org),\n Jeffrey Horner [ctb],\n Beilei Bian [ctb]", "Maintainer": "Yihui Xie ", - "Repository": "CRAN", - "Date/Publication": "2021-09-28 05:00:05 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:27 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-03-17 20:20:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:22 UTC; unix" } }, "mirai": { "Source": "CRAN", "Repository": "https://packagemanager.posit.co/cran/latest", "description": { - "Package": "mirai", "Type": "Package", + "Package": "mirai", "Title": "Minimalist Async Evaluation Framework for R", - "Version": "2.1.0", - "Description": "Designed for simplicity, a 'mirai' evaluates an R expression\n asynchronously in a parallel process, locally or distributed over the\n network. The result is automatically available upon completion. Modern\n networking and concurrency, built on 'nanonext' and 'NNG' (Nanomsg Next\n Gen), ensures reliable and efficient scheduling over fast inter-process\n communications or TCP/IP secured by TLS. Distributed computing can launch\n remote resources via SSH or cluster managers. An inherently queued\n architecture handles many more tasks than available processes, and requires\n no storage on the file system. Innovative features include support for\n otherwise non-exportable reference objects, event-driven promises, and\n asynchronous parallel map.", - "Authors@R": "\n c(person(given = \"Charlie\",\n family = \"Gao\",\n role = c(\"aut\", \"cre\"),\n email = \"charlie.gao@shikokuchuo.net\",\n comment = c(ORCID = \"0000-0002-0750-061X\")),\n person(given = \"Joe\",\n family = \"Cheng\",\n role = \"ctb\",\n email = \"joe@posit.co\"),\n person(given = \"Hibiki AI Limited\",\n role = \"cph\"),\n person(given = \"Posit Software, PBC\",\n role = \"cph\"))", - "License": "GPL (>= 3)", - "BugReports": "https://github.com/shikokuchuo/mirai/issues", - "URL": "https://shikokuchuo.net/mirai/,\nhttps://github.com/shikokuchuo/mirai/", - "Encoding": "UTF-8", + "Version": "2.4.1", + "Authors@R": "c(\n person(\"Charlie\", \"Gao\", , \"charlie.gao@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-0750-061X\")),\n person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"),\n comment = c(ROR = \"03wc8by49\")),\n person(\"Hibiki AI Limited\", role = \"cph\")\n )", + "Description": "Designed for simplicity, a 'mirai' evaluates an R expression\n asynchronously in a parallel process, locally or distributed over the\n network. Modern networking and concurrency, built on 'nanonext' and\n 'NNG', ensures reliable scheduling over fast inter-process\n communications or TCP/IP secured by TLS. Launch remote resources via\n SSH or cluster managers for distributed computing. Scales efficiently\n to millions of tasks over thousands of connections, requiring no\n storage on the file system due to its inherently queued architecture.\n Innovative features include event-driven promises, asynchronous\n parallel map, and seamless serialization of otherwise non-exportable\n reference objects.", + "License": "MIT + file LICENSE", + "URL": "https://mirai.r-lib.org, https://github.com/r-lib/mirai", + "BugReports": "https://github.com/r-lib/mirai/issues", "Depends": "R (>= 3.6)", - "Imports": "nanonext (>= 1.5.0)", - "Enhances": "parallel, promises", + "Imports": "nanonext (>= 1.6.2)", "Suggests": "cli, litedown", + "Enhances": "parallel, promises", "VignetteBuilder": "litedown", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/usethis/last-upkeep": "2025-04-23", + "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2025-02-07 09:05:24 UTC; cg334", - "Author": "Charlie Gao [aut, cre] (),\n Joe Cheng [ctb],\n Hibiki AI Limited [cph],\n Posit Software, PBC [cph]", - "Maintainer": "Charlie Gao ", - "Repository": "CRAN", - "Date/Publication": "2025-02-07 09:30:03 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:56:05 UTC; unix" + "Packaged": "2025-07-15 07:40:16 UTC; cg334", + "Author": "Charlie Gao [aut, cre] (ORCID: ),\n Joe Cheng [ctb],\n Posit Software, PBC [cph, fnd] (ROR: ),\n Hibiki AI Limited [cph]", + "Maintainer": "Charlie Gao ", + "Repository": "RSPM", + "Date/Publication": "2025-07-15 08:10:02 UTC", + "Built": "R 4.5.0; ; 2025-07-16 11:15:08 UTC; unix" } }, - "munsell": { + "nanonext": { "Source": "CRAN", "Repository": "https://packagemanager.posit.co/cran/latest", "description": { - "Package": "munsell", "Type": "Package", - "Title": "Utilities for Using Munsell Colours", - "Version": "0.5.1", - "Author": "Charlotte Wickham ", - "Maintainer": "Charlotte Wickham ", - "Description": "Provides easy access to, and manipulation of, the Munsell \n colours. Provides a mapping between Munsell's \n original notation (e.g. \"5R 5/10\") and hexadecimal strings suitable \n for use directly in R graphics. Also provides utilities \n to explore slices through the Munsell colour tree, to transform \n Munsell 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": "7.3.1", - "Encoding": "UTF-8", - "BugReports": "https://github.com/cwickham/munsell/issues", - "NeedsCompilation": "no", - "Packaged": "2024-04-01 20:42:09 UTC; charlottewickham", - "Repository": "CRAN", - "Date/Publication": "2024-04-01 23:40:10 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:54:16 UTC; unix" - } - }, - "nanonext": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { "Package": "nanonext", - "Type": "Package", "Title": "NNG (Nanomsg Next Gen) Lightweight Messaging Library", - "Version": "1.5.2", - "Description": "R binding for NNG (Nanomsg Next Gen), a successor to ZeroMQ. NNG is\n a socket library for reliable, high-performance messaging over in-process,\n IPC, TCP, WebSocket and secure TLS transports. Implements 'Scalability\n Protocols', a standard for common communications patterns including\n publish/subscribe, request/reply and service discovery. As its own threaded\n concurrency framework, provides a toolkit for asynchronous programming and\n distributed computing. Intuitive 'aio' objects resolve automatically when\n asynchronous operations complete, and synchronisation primitives allow R to\n wait upon events signalled by concurrent threads.", - "Authors@R": "\n c(person(given = \"Charlie\",\n family = \"Gao\",\n role = c(\"aut\", \"cre\"),\n email = \"charlie.gao@shikokuchuo.net\",\n comment = c(ORCID = \"0000-0002-0750-061X\")),\n person(given = \"Hibiki AI Limited\",\n role = \"cph\"),\n person(given = \"R Consortium\",\n role = \"fnd\"))", - "License": "GPL (>= 3)", - "BugReports": "https://github.com/shikokuchuo/nanonext/issues", - "URL": "https://shikokuchuo.net/nanonext/,\nhttps://github.com/shikokuchuo/nanonext/", - "Encoding": "UTF-8", - "SystemRequirements": "'libnng' >= 1.9 and 'libmbedtls' >= 2.5, or 'cmake'\nand 'xz' to compile NNG and/or Mbed TLS included in package\nsources", + "Version": "1.6.2", + "Authors@R": "c(\n person(\"Charlie\", \"Gao\", , \"charlie.gao@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-0750-061X\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"),\n comment = c(ROR = \"03wc8by49\")),\n person(\"Hibiki AI Limited\", role = \"cph\"),\n person(\"R Consortium\", role = \"fnd\")\n )", + "Description": "R binding for NNG (Nanomsg Next Gen), a successor to ZeroMQ.\n NNG is a socket library for reliable, high-performance messaging over\n in-process, IPC, TCP, WebSocket and secure TLS transports. Implements\n 'Scalability Protocols', a standard for common communications patterns\n including publish/subscribe, request/reply and service discovery. As\n its own threaded concurrency framework, provides a toolkit for\n asynchronous programming and distributed computing. Intuitive 'aio'\n objects resolve automatically when asynchronous operations complete,\n and synchronisation primitives allow R to wait upon events signalled\n by concurrent threads.", + "License": "MIT + file LICENSE", + "URL": "https://nanonext.r-lib.org, https://github.com/r-lib/nanonext", + "BugReports": "https://github.com/r-lib/nanonext/issues", "Depends": "R (>= 3.6)", - "Enhances": "promises", "Suggests": "later, litedown", + "Enhances": "promises", "VignetteBuilder": "litedown", - "RoxygenNote": "7.3.2", + "Biarch": "true", "Config/build/compilation-database": "true", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/usethis/last-upkeep": "2025-04-23", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", + "SystemRequirements": "'libnng' >= 1.9 and 'libmbedtls' >= 2.5, or 'cmake'\nand 'xz' to compile NNG and/or Mbed TLS included in package\nsources", "NeedsCompilation": "yes", - "Packaged": "2025-03-18 15:43:55 UTC; cg334", - "Author": "Charlie Gao [aut, cre] (),\n Hibiki AI Limited [cph],\n R Consortium [fnd]", - "Maintainer": "Charlie Gao ", - "Repository": "CRAN", - "Date/Publication": "2025-03-18 16:40:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:56:03 UTC; unix" + "Packaged": "2025-07-14 07:19:05 UTC; cg334", + "Author": "Charlie Gao [aut, cre] (ORCID: ),\n Posit Software, PBC [cph, fnd] (ROR: ),\n Hibiki AI Limited [cph],\n R Consortium [fnd]", + "Maintainer": "Charlie Gao ", + "Repository": "RSPM", + "Date/Publication": "2025-07-14 07:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-15 04:44:43 UTC; unix" } }, "nlme": { @@ -3006,8 +2923,8 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "nlme", - "Version": "3.1-167", - "Date": "2025-01-27", + "Version": "3.1-168", + "Date": "2025-03-31", "Priority": "recommended", "Title": "Linear and Nonlinear Mixed Effects Models", "Authors@R": "c(person(\"José\", \"Pinheiro\", role = \"aut\", comment = \"S version\"),\n person(\"Douglas\", \"Bates\", role = \"aut\", comment = \"up to 2007\"),\n person(\"Saikat\", \"DebRoy\", role = \"ctb\", comment = \"up to 2002\"),\n person(\"Deepayan\", \"Sarkar\", role = \"ctb\", comment = \"up to 2005\"),\n person(\"EISPACK authors\", role = \"ctb\", comment = \"src/rs.f\"),\n\t person(\"Siem\", \"Heisterkamp\", role = \"ctb\", comment = \"Author fixed sigma\"),\n person(\"Bert\", \"Van Willigen\",role = \"ctb\", comment = \"Programmer fixed sigma\"),\n person(\"Johannes\", \"Ranke\", role = \"ctb\", comment = \"varConstProp()\"),\n\t person(\"R Core Team\", email = \"R-core@R-project.org\",\n role = c(\"aut\", \"cre\"), comment = c(ROR = \"02zz1nj61\")))", @@ -3023,12 +2940,12 @@ "MailingList": "R-help@r-project.org", "URL": "https://svn.r-project.org/R-packages/trunk/nlme/", "NeedsCompilation": "yes", - "Packaged": "2025-01-27 14:18:44 UTC; hornik", + "Packaged": "2025-03-31 11:19:09 UTC; ripley", "Author": "José Pinheiro [aut] (S version),\n Douglas Bates [aut] (up to 2007),\n Saikat DebRoy [ctb] (up to 2002),\n Deepayan Sarkar [ctb] (up to 2005),\n EISPACK authors [ctb] (src/rs.f),\n Siem Heisterkamp [ctb] (Author fixed sigma),\n Bert Van Willigen [ctb] (Programmer fixed sigma),\n Johannes Ranke [ctb] (varConstProp()),\n R Core Team [aut, cre] (02zz1nj61)", "Maintainer": "R Core Team ", "Repository": "CRAN", - "Date/Publication": "2025-01-27 16:04:27 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:06 UTC; unix" + "Date/Publication": "2025-03-31 11:21:01 UTC", + "Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:29:51 UTC; unix" } }, "nnet": { @@ -3053,7 +2970,7 @@ "Maintainer": "Brian Ripley ", "Repository": "CRAN", "Date/Publication": "2025-01-01 10:25:43 UTC", - "Built": "R 4.4.2; x86_64-pc-linux-gnu; 'Mon, 06 Jan 2025 02:02:43 +0000'; unix" + "Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:29:47 UTC; unix" } }, "numDeriv": { @@ -3074,9 +2991,10 @@ "URL": "http://optimizer.r-forge.r-project.org/", "NeedsCompilation": "no", "Packaged": "2019-06-04 11:04:44 UTC; hornik", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2019-06-06 09:51:09 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:25 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-06 04:42:06 UTC; unix" } }, "openssl": { @@ -3086,7 +3004,7 @@ "Package": "openssl", "Type": "Package", "Title": "Toolkit for Encryption, Signatures and Certificates Based on\nOpenSSL", - "Version": "2.3.2", + "Version": "2.3.3", "Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"jeroenooms@gmail.com\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Oliver\", \"Keyes\", role = \"ctb\"))", "Description": "Bindings to OpenSSL libssl and libcrypto, plus custom SSH key parsers.\n Supports RSA, DSA and EC curves P-256, P-384, P-521, and curve25519. Cryptographic\n signatures can either be created and verified manually or via x509 certificates. \n AES 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 \n combine RSA and AES for encrypting arbitrary sized data. Other utilities include key\n generators, hash functions (md5, sha1, sha256, etc), base64 encoder, a secure random\n number generator, and 'bignum' math methods for manually performing crypto \n calculations on large multibyte integers.", "License": "MIT + file LICENSE", @@ -3099,12 +3017,12 @@ "RoxygenNote": "7.3.2", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Packaged": "2025-02-03 10:27:29 UTC; jeroen", - "Author": "Jeroen Ooms [aut, cre] (),\n Oliver Keyes [ctb]", + "Packaged": "2025-05-26 09:13:50 UTC; jeroen", + "Author": "Jeroen Ooms [aut, cre] (ORCID: ),\n Oliver Keyes [ctb]", "Maintainer": "Jeroen Ooms ", - "Repository": "CRAN", - "Date/Publication": "2025-02-03 14:20:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:52:46 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-05-26 13:00:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-05-27 04:55:44 UTC; unix" } }, "packrat": { @@ -3114,7 +3032,7 @@ "Type": "Package", "Package": "packrat", "Title": "A Dependency Management System for Projects and their R Package\nDependencies", - "Version": "0.9.2", + "Version": "0.9.3", "Authors@R": "c(\n person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Toph\", \"Allen\", role = \"aut\"),\n person(\"Kevin\", \"Ushey\", role = \"aut\"),\n person(\"Jonathan\", \"McPherson\", role = \"aut\"),\n person(\"Joe\", \"Cheng\", role = \"aut\"),\n person(\"JJ\", \"Allaire\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", "Description": "Manage the R packages your project depends on in an isolated,\n portable, and reproducible way.", "License": "GPL-2", @@ -3122,24 +3040,24 @@ "BugReports": "https://github.com/rstudio/packrat/issues", "Depends": "R (>= 3.0.0)", "Imports": "tools, utils", - "Suggests": "devtools, httr, knitr, mockery, rmarkdown, testthat (>=\n3.0.0)", + "Suggests": "devtools, httr, knitr, mockery, rmarkdown, testthat (>=\n3.0.0), webfakes, withr", "Config/testthat/edition": "3", "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2023-09-05 11:45:33 UTC; aron", + "Packaged": "2025-06-16 19:37:19 UTC; aron", "Author": "Aron Atkins [aut, cre],\n Toph Allen [aut],\n Kevin Ushey [aut],\n Jonathan McPherson [aut],\n Joe Cheng [aut],\n JJ Allaire [aut],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Aron Atkins ", - "Repository": "CRAN", - "Date/Publication": "2023-09-05 13:00:02 UTC", - "Built": "R 4.5.0; ; 2025-04-17 13:47:27 UTC; unix", + "Repository": "RSPM", + "Date/Publication": "2025-06-16 20:00:02 UTC", + "Built": "R 4.5.0; ; 2025-06-17 04:39:30 UTC; unix", "RemoteType": "standard", "RemoteRef": "packrat", "RemotePkgRef": "packrat", - "RemoteRepos": "https://cloud.r-project.org", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", "RemoteReposName": "CRAN", - "RemotePkgPlatform": "source", - "RemoteSha": "0.9.2" + "RemotePkgPlatform": "aarch64-apple-darwin20", + "RemoteSha": "0.9.3" } }, "padr": { @@ -3168,9 +3086,9 @@ "Packaged": "2024-11-21 15:48:04 UTC; edwinthoen", "Author": "Edwin Thoen [aut, cre]", "Maintainer": "Edwin Thoen ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-11-21 18:10:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:56:06 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 14:42:08 UTC; unix" } }, "parallelly": { @@ -3178,7 +3096,7 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "parallelly", - "Version": "1.42.0", + "Version": "1.45.1", "Title": "Enhancing the 'parallel' Package", "Imports": "parallel, tools, utils", "Suggests": "commonmark, base64enc", @@ -3190,15 +3108,16 @@ "ByteCompile": "TRUE", "URL": "https://parallelly.futureverse.org,\nhttps://github.com/futureverse/parallelly", "BugReports": "https://github.com/futureverse/parallelly/issues", + "Language": "en-US", "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", - "Packaged": "2025-01-30 15:20:15 UTC; henrik", - "Author": "Henrik Bengtsson [aut, cre, cph]\n (),\n Mike Cheng [ctb]", + "Packaged": "2025-07-24 14:11:31 UTC; henrik", + "Author": "Henrik Bengtsson [aut, cre, cph] (ORCID:\n ),\n Mike Cheng [ctb]", "Maintainer": "Henrik Bengtsson ", - "Repository": "CRAN", - "Date/Publication": "2025-01-30 16:20:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:12 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-24 15:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-25 05:16:49 UTC; unix" } }, "pillar": { @@ -3207,7 +3126,7 @@ "description": { "Package": "pillar", "Title": "Coloured Formatting for Columns", - "Version": "1.10.1", + "Version": "1.11.0", "Authors@R": "\n c(person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = c(\"aut\", \"cre\"),\n email = \"kirill@cynkra.com\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\"),\n person(given = \"RStudio\",\n role = \"cph\"))", "Description": "Provides 'pillar' and 'colonnade' generics designed\n for formatting columns of data using the full range of colours\n provided by modern terminals.", "License": "MIT + file LICENSE", @@ -3223,15 +3142,15 @@ "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/gha/extra-packages": "units=?ignore-before-r=4.3.0", "Config/Needs/website": "tidyverse/tidytemplate", "NeedsCompilation": "no", - "Packaged": "2025-01-07 10:10:11 UTC; kirill", - "Author": "Kirill Müller [aut, cre] (),\n Hadley Wickham [aut],\n RStudio [cph]", + "Packaged": "2025-07-04 18:25:31 UTC; kirill", + "Author": "Kirill Müller [aut, cre] (ORCID:\n ),\n Hadley Wickham [aut],\n RStudio [cph]", "Maintainer": "Kirill Müller ", - "Repository": "CRAN", - "Date/Publication": "2025-01-07 11:10:06 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:49:59 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-04 19:20:02 UTC", + "Built": "R 4.5.0; ; 2025-07-05 04:41:15 UTC; unix" } }, "pingr": { @@ -3258,9 +3177,9 @@ "Packaged": "2024-12-12 09:19:43 UTC; gaborcsardi", "Author": "Gábor Csárdi [aut, cre],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-12-12 10:10:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:56:11 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-09 06:12:26 UTC; unix" } }, "pkgbuild": { @@ -3269,8 +3188,8 @@ "description": { "Package": "pkgbuild", "Title": "Find Tools Needed to Build R Packages", - "Version": "1.4.6", - "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Version": "1.4.8", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"),\n comment = c(ROR = \"03wc8by49\"))\n )", "Description": "Provides functions used to build R packages. Locates\n compilers needed to build R packages on various platforms and ensures\n the 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", @@ -3280,15 +3199,16 @@ "Suggests": "covr, cpp11, knitr, Rcpp, rmarkdown, testthat (>= 3.2.0),\nwithr (>= 2.3.0)", "Config/Needs/website": "tidyverse/tidytemplate", "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-30", "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2025-01-16 17:45:57 UTC; gaborcsardi", - "Author": "Hadley Wickham [aut],\n Jim Hester [aut],\n Gábor Csárdi [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Packaged": "2025-05-26 10:36:48 UTC; gaborcsardi", + "Author": "Hadley Wickham [aut],\n Jim Hester [aut],\n Gábor Csárdi [aut, cre],\n Posit Software, PBC [cph, fnd] (ROR: )", "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN", - "Date/Publication": "2025-01-16 19:00:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:56:12 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-05-26 14:10:06 UTC", + "Built": "R 4.5.0; ; 2025-05-27 04:57:01 UTC; unix" } }, "pkgconfig": { @@ -3310,9 +3230,9 @@ "Encoding": "UTF-8", "NeedsCompilation": "no", "Packaged": "2019-09-22 08:42:40 UTC; gaborcsardi", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2019-09-22 09:20:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:50:03 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:41:32 UTC; unix" } }, "pkgload": { @@ -3340,9 +3260,9 @@ "Packaged": "2024-06-28 10:36:56 UTC; lionel", "Author": "Hadley Wickham [aut],\n Winston Chang [aut],\n Jim Hester [aut],\n Lionel Henry [aut, cre],\n Posit Software, PBC [cph, fnd],\n R Core team [ctb] (Some namespace and vignette code extracted from base\n R)", "Maintainer": "Lionel Henry ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-06-28 11:30:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:56:13 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:43:53 UTC; unix" } }, "plotly": { @@ -3351,26 +3271,26 @@ "description": { "Package": "plotly", "Title": "Create Interactive Web Graphics via 'plotly.js'", - "Version": "4.10.4", + "Version": "4.11.0", "Authors@R": "c(person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"),\n email = \"cpsievert1@gmail.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Chris\", \"Parmer\", role = \"aut\",\n email = \"chris@plot.ly\"),\n person(\"Toby\", \"Hocking\", role = \"aut\",\n email = \"tdhock5@gmail.com\"),\n person(\"Scott\", \"Chamberlain\", role = \"aut\",\n email = \"myrmecocystus@gmail.com\"),\n person(\"Karthik\", \"Ram\", role = \"aut\",\n email = \"karthik.ram@gmail.com\"),\n person(\"Marianne\", \"Corvellec\", role = \"aut\",\n email = \"marianne.corvellec@igdore.org\", comment = c(ORCID = \"0000-0002-1994-3581\")),\n person(\"Pedro\", \"Despouy\", role = \"aut\",\n email = \"pedro@plot.ly\"),\n person(\"Salim\", \"Brüggemann\", role = \"ctb\",\n email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")),\n person(\"Plotly Technologies Inc.\", role = \"cph\"))", "License": "MIT + file LICENSE", "Description": "Create interactive web graphics from 'ggplot2' graphs and/or a custom interface to the (MIT-licensed) JavaScript library 'plotly.js' inspired by the grammar of graphics.", "URL": "https://plotly-r.com, https://github.com/plotly/plotly.R,\nhttps://plotly.com/r/", "BugReports": "https://github.com/plotly/plotly.R/issues", "Depends": "R (>= 3.2.0), ggplot2 (>= 3.0.0)", - "Imports": "tools, scales, httr (>= 1.3.0), jsonlite (>= 1.6), magrittr,\ndigest, viridisLite, base64enc, htmltools (>= 0.3.6),\nhtmlwidgets (>= 1.5.2.9001), tidyr (>= 1.0.0), RColorBrewer,\ndplyr, vctrs, tibble, lazyeval (>= 0.2.0), rlang (>= 0.4.10),\ncrosstalk, purrr, data.table, promises", - "Suggests": "MASS, maps, hexbin, ggthemes, GGally, ggalluvial, testthat,\nknitr, shiny (>= 1.1.0), shinytest (>= 1.3.0), curl, rmarkdown,\nCairo, broom, webshot, listviewer, dendextend, sf, png,\nIRdisplay, processx, plotlyGeoAssets, forcats, withr,\npalmerpenguins, rversions, reticulate, rsvg", + "Imports": "tools, scales, httr (>= 1.3.0), jsonlite (>= 1.6), magrittr,\ndigest, viridisLite, base64enc, htmltools (>= 0.3.6),\nhtmlwidgets (>= 1.5.2.9001), tidyr (>= 1.0.0), RColorBrewer,\ndplyr, vctrs, tibble, lazyeval (>= 0.2.0), rlang (>= 1.0.0),\ncrosstalk, purrr, data.table, promises", + "Suggests": "MASS, maps, hexbin, ggthemes, GGally, ggalluvial, testthat,\nknitr, shiny (>= 1.1.0), shinytest2, curl, rmarkdown, Cairo,\nbroom, webshot, listviewer, dendextend, sf, png, IRdisplay,\nprocessx, plotlyGeoAssets, forcats, withr, palmerpenguins,\nrversions, reticulate, rsvg, ggridges", "LazyData": "true", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2", "Encoding": "UTF-8", - "Config/Needs/check": "tidyverse/ggplot2, rcmdcheck, devtools, reshape2", + "Config/Needs/check": "tidyverse/ggplot2, ggobi/GGally, rcmdcheck,\ndevtools, reshape2, s2", "NeedsCompilation": "no", - "Packaged": "2024-01-13 20:51:33 UTC; cpsievert", - "Author": "Carson Sievert [aut, cre] (),\n Chris Parmer [aut],\n Toby Hocking [aut],\n Scott Chamberlain [aut],\n Karthik Ram [aut],\n Marianne Corvellec [aut] (),\n Pedro Despouy [aut],\n Salim Brüggemann [ctb] (),\n Plotly Technologies Inc. [cph]", + "Packaged": "2025-06-19 15:43:06 UTC; cpsievert", + "Author": "Carson Sievert [aut, cre] (ORCID:\n ),\n Chris Parmer [aut],\n Toby Hocking [aut],\n Scott Chamberlain [aut],\n Karthik Ram [aut],\n Marianne Corvellec [aut] (ORCID:\n ),\n Pedro Despouy [aut],\n Salim Brüggemann [ctb] (ORCID: ),\n Plotly Technologies Inc. [cph]", "Maintainer": "Carson Sievert ", - "Repository": "CRAN", - "Date/Publication": "2024-01-13 22:40:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:56:15 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-06-19 18:30:02 UTC", + "Built": "R 4.5.0; ; 2025-06-20 04:59:42 UTC; unix" } }, "praise": { @@ -3391,9 +3311,10 @@ "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": "CRAN", + "Repository": "RSPM", "Date/Publication": "2015-08-11 08:22:28", - "Built": "R 4.5.0; ; 2025-04-16 13:56:18 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-06 04:41:34 UTC; unix" } }, "prettyunits": { @@ -3416,9 +3337,9 @@ "Packaged": "2023-09-24 10:53:19 UTC; gaborcsardi", "Author": "Gabor Csardi [aut, cre],\n Bill Denney [ctb] (),\n Christophe Regouby [ctb]", "Maintainer": "Gabor Csardi ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-09-24 21:10:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:56:19 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:41:38 UTC; unix" } }, "processx": { @@ -3427,7 +3348,7 @@ "description": { "Package": "processx", "Title": "Execute and Control System Processes", - "Version": "3.8.5", + "Version": "3.8.6", "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\", \"cph\"),\n comment = c(ORCID = \"0000-0001-7098-9676\")),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\"))\n )", "Description": "Tools to run system processes in the background. It can\n check if a background process is running; wait on a background process\n to finish; get the exit status of finished processes; kill background\n processes. It can read the standard output and error of the processes,\n using non-blocking connections. 'processx' can poll a process for\n standard output or error, with a timeout. It can also poll several\n processes at once.", "License": "MIT + file LICENSE", @@ -3441,12 +3362,12 @@ "Encoding": "UTF-8", "RoxygenNote": "7.3.1.9000", "NeedsCompilation": "yes", - "Packaged": "2025-01-08 20:40:10 UTC; gaborcsardi", + "Packaged": "2025-02-19 21:20:47 UTC; gaborcsardi", "Author": "Gábor Csárdi [aut, cre, cph] (),\n Winston Chang [aut],\n Posit Software, PBC [cph, fnd],\n Ascent Digital Services [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN", - "Date/Publication": "2025-01-08 21:30:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:37 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-02-21 17:00:01 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:52 UTC; unix" } }, "prodlim": { @@ -3455,21 +3376,24 @@ "description": { "Package": "prodlim", "Title": "Product-Limit Estimation for Censored Event History Analysis", - "Version": "2024.06.25", - "Author": "Thomas A. Gerds", + "Version": "2025.04.28", + "Authors@R": "person(given = c(\"Thomas\", \"A.\"),\n family = \"Gerds\",\n role = c(\"aut\", \"cre\"),\n email = \"tag@biostat.ku.dk\")", "Description": "Fast and user friendly implementation of nonparametric estimators\n for censored event history (survival) analysis. Kaplan-Meier and\n Aalen-Johansen method.", - "Depends": "R (>= 2.9.0)", - "Imports": "Rcpp (>= 0.11.5), stats, data.table, grDevices, graphics,\ndiagram, survival, KernSmooth, lava", + "Depends": "R (>= 4.1.0)", + "Imports": "Rcpp (>= 0.11.5), stats, rlang, data.table, grDevices,\nggplot2, graphics, diagram, survival, KernSmooth, lava", + "Suggests": "tibble, pammtools, ggthemes", "LinkingTo": "Rcpp", "Maintainer": "Thomas A. Gerds ", "BugReports": "https://github.com/tagteam/prodlim/issues", "License": "GPL (>= 2)", - "Packaged": "2024-06-24 10:50:55 UTC; tag", - "RoxygenNote": "7.3.1", + "Packaged": "2025-04-28 12:08:49 UTC; tag", + "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", - "Repository": "CRAN", - "Date/Publication": "2024-06-24 13:50:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:36 UTC; unix" + "Author": "Thomas A. Gerds [aut, cre]", + "Repository": "RSPM", + "Date/Publication": "2025-04-28 18:40:05 UTC", + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 15:01:08 UTC; unix" } }, "progress": { @@ -3495,9 +3419,9 @@ "Packaged": "2023-12-05 09:33:10 UTC; gaborcsardi", "Author": "Gábor Csárdi [aut, cre],\n Rich FitzJohn [aut],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-12-06 10:30:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:56:20 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:43:57 UTC; unix" } }, "progressr": { @@ -3521,9 +3445,10 @@ "Packaged": "2024-11-21 06:18:27 UTC; henrik", "Author": "Henrik Bengtsson [aut, cre, cph]\n ()", "Maintainer": "Henrik Bengtsson ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-11-22 14:20:06 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:26 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-06 04:42:50 UTC; unix" } }, "promises": { @@ -3533,27 +3458,29 @@ "Type": "Package", "Package": "promises", "Title": "Abstractions for Promise-Based Asynchronous Programming", - "Version": "1.3.2", - "Authors@R": "c(\n person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Version": "1.3.3", + "Authors@R": "c(\n person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\"))\n )", "Description": "Provides fundamental abstractions for doing asynchronous\n programming in R using promises. Asynchronous programming is useful\n for allowing a single R process to orchestrate multiple tasks in the\n background while also attending to something else. Semantics are\n similar to 'JavaScript' promises, but with a syntax that is idiomatic\n R.", "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", + "Suggests": "future (>= 1.21.0), knitr, purrr, rmarkdown, spelling,\ntestthat (>= 3.0.0), vembedr", "LinkingTo": "later, Rcpp", "VignetteBuilder": "knitr", - "Config/Needs/website": "rsconnect", + "Config/Needs/website": "rsconnect, tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-05-27", "Encoding": "UTF-8", "Language": "en-US", "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", - "Packaged": "2024-11-27 23:38:47 UTC; jcheng", - "Author": "Joe Cheng [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Packaged": "2025-05-29 15:29:40 UTC; barret", + "Author": "Joe Cheng [aut, cre],\n Posit Software, PBC [cph, fnd] (ROR: )", "Maintainer": "Joe Cheng ", - "Repository": "CRAN", - "Date/Publication": "2024-11-28 00:40:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:51:26 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-05-29 16:30:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 14:34:39 UTC; unix" } }, "ps": { @@ -3562,7 +3489,7 @@ "description": { "Package": "ps", "Title": "List, Query, Manipulate System Processes", - "Version": "1.8.1", + "Version": "1.9.1", "Authors@R": "c(\n person(\"Jay\", \"Loden\", role = \"aut\"),\n person(\"Dave\", \"Daeschler\", role = \"aut\"),\n person(\"Giampaolo\", \"Rodola'\", role = \"aut\"),\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", "Description": "List, query and manipulate all system processes, on\n 'Windows', 'Linux' and 'macOS'.", "License": "MIT + file LICENSE", @@ -3577,12 +3504,12 @@ "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", - "Packaged": "2024-10-28 21:43:41 UTC; gaborcsardi", + "Packaged": "2025-04-12 09:23:06 UTC; gaborcsardi", "Author": "Jay Loden [aut],\n Dave Daeschler [aut],\n Giampaolo Rodola' [aut],\n Gábor Csárdi [aut, cre],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN", - "Date/Publication": "2024-10-28 22:10:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:35 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-12 09:50:01 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-14 17:54:00 UTC; unix" } }, "purrr": { @@ -3591,29 +3518,31 @@ "description": { "Package": "purrr", "Title": "Functional Programming Tools", - "Version": "1.0.2", - "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Lionel\", \"Henry\", , \"lionel@rstudio.com\", role = \"aut\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )", + "Version": "1.1.0", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Lionel\", \"Henry\", , \"lionel@posit.co\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"),\n comment = c(ROR = \"https://ror.org/03wc8by49\"))\n )", "Description": "A complete and consistent functional programming toolkit for\n R.", "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)", + "Depends": "R (>= 4.1)", "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", + "Suggests": "carrier (>= 0.2.0), covr, dplyr (>= 0.7.8), httr, knitr,\nlubridate, mirai (>= 2.4.0), rmarkdown, testthat (>= 3.0.0),\ntibble, tidyselect", "LinkingTo": "cli", "VignetteBuilder": "knitr", "Biarch": "true", + "Config/build/compilation-database": "true", "Config/Needs/website": "tidyverse/tidytemplate, tidyr", "Config/testthat/edition": "3", + "Config/testthat/parallel": "TRUE", "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", - "Packaged": "2023-08-08 16:13:31 UTC; hadleywickham", - "Author": "Hadley Wickham [aut, cre] (),\n Lionel Henry [aut],\n RStudio [cph, fnd]", - "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", - "Date/Publication": "2023-08-10 08:20:07 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:20 UTC; unix" + "Packaged": "2025-07-10 12:22:53 UTC; hadleywickham", + "Author": "Hadley Wickham [aut, cre] (ORCID:\n ),\n Lionel Henry [aut],\n Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Hadley Wickham ", + "Repository": "RSPM", + "Date/Publication": "2025-07-10 17:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-11 05:05:15 UTC; unix" } }, "quadprog": { @@ -3632,9 +3561,10 @@ "License": "GPL (>= 2)", "NeedsCompilation": "yes", "Packaged": "2019-11-20 06:04:34 UTC; berwin", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2019-11-20 08:20:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:41 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:41:40 UTC; unix" } }, "quantmod": { @@ -3644,23 +3574,24 @@ "Package": "quantmod", "Type": "Package", "Title": "Quantitative Financial Modelling Framework", - "Version": "0.4.26", + "Version": "0.4.28", "Authors@R": "c(\n person(given=c(\"Jeffrey\",\"A.\"), family=\"Ryan\", role=c(\"aut\",\"cph\")),\n person(given=c(\"Joshua\",\"M.\"), family=\"Ulrich\", role=c(\"cre\",\"aut\"), email=\"josh.m.ulrich@gmail.com\"),\n person(given=c(\"Ethan\",\"B.\"), family=\"Smith\", role=\"ctb\"),\n person(given=\"Wouter\", family=\"Thielen\", role=\"ctb\"),\n person(given=\"Paul\", family=\"Teetor\", role=\"ctb\"),\n person(given=\"Steve\", family=\"Bronder\", role=\"ctb\")\n )", "Depends": "R (>= 3.2.0), xts(>= 0.9-0), zoo, TTR(>= 0.2), methods", "Imports": "curl, jsonlite(>= 1.1)", - "Suggests": "DBI,RMySQL,RSQLite,timeSeries,xml2,downloader", + "Suggests": "DBI, RMySQL, RSQLite, timeSeries, xml2, downloader, tinytest", "Description": "Specify, build, trade, and analyse quantitative financial trading strategies.", "LazyLoad": "yes", "License": "GPL-3", "URL": "https://www.quantmod.com/,\nhttps://github.com/joshuaulrich/quantmod", "BugReports": "https://github.com/joshuaulrich/quantmod/issues", "NeedsCompilation": "no", - "Packaged": "2024-02-13 17:49:13 UTC; josh", + "Packaged": "2025-06-18 21:49:58 UTC; josh", "Author": "Jeffrey A. Ryan [aut, cph],\n Joshua M. Ulrich [cre, aut],\n Ethan B. Smith [ctb],\n Wouter Thielen [ctb],\n Paul Teetor [ctb],\n Steve Bronder [ctb]", "Maintainer": "Joshua M. Ulrich ", - "Repository": "CRAN", - "Date/Publication": "2024-02-14 08:20:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:54:42 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-06-19 19:40:06 UTC", + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-06-20 04:58:37 UTC; unix" } }, "rappdirs": { @@ -3686,9 +3617,9 @@ "Packaged": "2021-01-28 22:29:57 UTC; hadley", "Author": "Hadley Wickham [trl, cre, cph],\n RStudio [cph],\n Sridhar Ratnakumar [aut],\n Trent Mick [aut],\n ActiveState [cph] (R/appdir.r, R/cache.r, R/data.r, R/log.r translated\n from appdirs),\n Eddy Petrisor [ctb],\n Trevor Davis [trl, aut],\n Gabor Csardi [ctb],\n Gregory Jefferis [ctb]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2021-01-31 05:40:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:27 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:41:42 UTC; unix" } }, "reactR": { @@ -3714,9 +3645,9 @@ "NeedsCompilation": "no", "Packaged": "2024-09-14 13:24:57 UTC; kentr", "Author": "Facebook Inc [aut, cph] (React library in lib, https://reactjs.org/;\n see AUTHORS for full list of contributors),\n Michel Weststrate [aut, cph] (mobx library in lib,\n https://github.com/mobxjs),\n Kent Russell [aut, cre] (R interface),\n Alan Dipert [aut] (R interface),\n Greg Lin [aut] (R interface)", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-09-14 13:50:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:56:20 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-09 06:14:52 UTC; unix" } }, "reactable": { @@ -3742,9 +3673,9 @@ "Packaged": "2023-03-12 00:59:18 UTC; greg", "Author": "Greg Lin [aut, cre],\n Tanner Linsley [ctb, cph] (React Table library),\n Emotion team and other contributors [ctb, cph] (Emotion library),\n Kent Russell [ctb, cph] (reactR package),\n Ramnath Vaidyanathan [ctb, cph] (htmlwidgets package),\n Joe Cheng [ctb, cph] (htmlwidgets package),\n JJ Allaire [ctb, cph] (htmlwidgets package),\n Yihui Xie [ctb, cph] (htmlwidgets package),\n Kenton Russell [ctb, cph] (htmlwidgets package),\n Facebook, Inc. and its affiliates [ctb, cph] (React library),\n FormatJS [ctb, cph] (FormatJS libraries),\n Feross Aboukhadijeh, and other contributors [ctb, cph] (buffer library),\n Roman Shtylman [ctb, cph] (process library),\n James Halliday [ctb, cph] (stream-browserify library),\n Posit Software, PBC [fnd, cph]", "Maintainer": "Greg Lin ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-03-12 10:00:10 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:56:21 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-09 06:31:16 UTC; unix" } }, "readr": { @@ -3774,9 +3705,9 @@ "Packaged": "2024-01-10 21:03:49 UTC; jenny", "Author": "Hadley Wickham [aut],\n Jim Hester [aut],\n Romain Francois [ctb],\n Jennifer Bryan [aut, cre] (),\n Shelby Bearrows [ctb],\n Posit Software, PBC [cph, fnd],\n https://github.com/mandreyel/ [cph] (mio library),\n Jukka Jylänki [ctb, cph] (grisu3 implementation),\n Mikkel Jørgensen [ctb, cph] (grisu3 implementation)", "Maintainer": "Jennifer Bryan ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-01-10 23:20:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:56:53 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:46:24 UTC; unix" } }, "recipes": { @@ -3785,58 +3716,29 @@ "description": { "Package": "recipes", "Title": "Preprocessing and Feature Engineering Steps for Modeling", - "Version": "1.1.0", - "Authors@R": "c(\n person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = \"aut\"),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Version": "1.3.1", + "Authors@R": "c(\n person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"),\n comment = c(ROR = \"03wc8by49\"))\n )", "Description": "A recipe prepares your data for modeling. We provide an\n extensible framework for pipeable sequences of feature engineering\n steps provides preprocessing tools to be applied to data. Statistical\n parameters for the steps can be estimated from an initial data set and\n then applied to other data sets. The resulting processed output can\n then 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), generics (>= 0.1.2), glue, gower,\nhardhat (>= 1.4.0), ipred (>= 0.9-12), lifecycle (>= 1.0.3),\nlubridate (>= 1.8.0), magrittr, Matrix, purrr (>= 1.0.0), rlang\n(>= 1.1.0), stats, tibble, tidyr (>= 1.0.0), tidyselect (>=\n1.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 (>= 1.2.0), RANN,\nRcppRoll, rmarkdown, rpart, rsample, RSpectra, splines2,\ntestthat (>= 3.0.0), workflows, xml2", + "Depends": "dplyr (>= 1.1.0), R (>= 4.1)", + "Imports": "cli, clock (>= 0.6.1), generics (>= 0.1.2), glue, gower,\nhardhat (>= 1.4.1), ipred (>= 0.9-12), lifecycle (>= 1.0.3),\nlubridate (>= 1.8.0), magrittr, Matrix, purrr (>= 1.0.0), rlang\n(>= 1.1.0), sparsevctrs (>= 0.3.3), stats, tibble, tidyr (>=\n1.0.0), tidyselect (>= 1.2.0), timeDate, utils, vctrs (>=\n0.5.0), withr", + "Suggests": "covr, ddalpha, dials (>= 1.2.0), ggplot2, igraph, kernlab,\nknitr, methods, modeldata (>= 0.1.1), parsnip (>= 1.2.0), RANN,\nRcppRoll, rmarkdown, rpart, rsample, RSpectra, splines2,\ntestthat (>= 3.0.0), workflows, xml2", "VignetteBuilder": "knitr", "RdMacros": "lifecycle", - "Config/Needs/website": "tidyverse/tidytemplate", + "Config/Needs/website": "tidyverse/tidytemplate, rmarkdown", "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-23", "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2024-07-03 11:51:03 UTC; max", - "Author": "Max Kuhn [aut, cre],\n Hadley Wickham [aut],\n Emil Hvitfeldt [aut],\n Posit Software, PBC [cph, fnd]", + "Packaged": "2025-05-21 12:07:52 UTC; max", + "Author": "Max Kuhn [aut, cre],\n Hadley Wickham [aut],\n Emil Hvitfeldt [aut],\n Posit Software, PBC [cph, fnd] (ROR: )", "Maintainer": "Max Kuhn ", - "Repository": "CRAN", - "Date/Publication": "2024-07-04 05:10:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:57:09 UTC; unix" - } - }, - "remotes": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Package": "remotes", - "Title": "R Package Installation from Remote Repositories, Including\n'GitHub'", - "Version": "2.5.0", - "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"Martin\", \"Morgan\", role = \"aut\"),\n person(\"Dan\", \"Tenenbaum\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Ascent Digital Services\", role = \"cph\")\n )", - "Description": "Download and install R packages stored in 'GitHub', 'GitLab',\n 'Bitbucket', 'Bioconductor', or plain 'subversion' or 'git'\n repositories. This package provides the 'install_*' functions in\n 'devtools'. Indeed most of the code was copied over from 'devtools'.", - "License": "MIT + file LICENSE", - "URL": "https://remotes.r-lib.org, https://github.com/r-lib/remotes#readme", - "BugReports": "https://github.com/r-lib/remotes/issues", - "Depends": "R (>= 3.0.0)", - "Imports": "methods, stats, tools, utils", - "Suggests": "brew, callr, codetools, covr, curl, git2r (>= 0.23.0), knitr,\nmockery, pingr, pkgbuild (>= 1.0.1), rmarkdown, rprojroot,\ntestthat (>= 3.0.0), webfakes, withr", - "VignetteBuilder": "knitr", - "Config/Needs/website": "tidyverse/tidytemplate", - "Config/testthat/edition": "3", - "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", - "SystemRequirements": "Subversion for install_svn, git for install_git", - "NeedsCompilation": "no", - "Packaged": "2024-03-17 12:41:55 UTC; gaborcsardi", - "Author": "Gábor Csárdi [aut, cre],\n Jim Hester [aut],\n Hadley Wickham [aut],\n Winston Chang [aut],\n Martin Morgan [aut],\n Dan Tenenbaum [aut],\n Posit Software, PBC [cph, fnd],\n Ascent Digital Services [cph]", - "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN", - "Date/Publication": "2024-03-17 13:20:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:48:44 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-05-21 13:00:02 UTC", + "Built": "R 4.5.0; ; 2025-05-22 13:03:59 UTC; unix" } }, "renv": { @@ -3865,15 +3767,9 @@ "Packaged": "2025-03-20 16:43:40 UTC; kevin", "Author": "Kevin Ushey [aut, cre] (),\n Hadley Wickham [aut] (),\n Posit Software, PBC [cph, fnd]", "Maintainer": "Kevin Ushey ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2025-03-20 18:10:01 UTC", - "Built": "R 4.5.0; ; 2025-04-15 21:02:41 UTC; unix", - "RemoteType": "standard", - "RemotePkgRef": "renv", - "RemoteRef": "renv", - "RemoteRepos": "https://cloud.r-project.org", - "RemotePkgPlatform": "source", - "RemoteSha": "1.1.4" + "Built": "R 4.5.1; ; 2025-07-31 10:14:31 UTC; unix" } }, "rex": { @@ -3899,9 +3795,9 @@ "Packaged": "2021-11-24 20:51:05 UTC; jhester", "Author": "Kevin Ushey [aut, cre],\n Jim Hester [aut],\n Robert Krzyzanowski [aut]", "Maintainer": "Kevin Ushey ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2021-11-26 16:11:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:48:55 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-09 06:03:59 UTC; unix" } }, "rhino": { @@ -3910,7 +3806,7 @@ "description": { "Package": "rhino", "Title": "A Framework for Enterprise Shiny Applications", - "Version": "1.10.1", + "Version": "1.11.0", "Authors@R": "\n c(\n person(\"Kamil\", \"Żyła\", role = c(\"aut\", \"cre\"), email = \"opensource+kamil@appsilon.com\"),\n person(\"Jakub\", \"Nowicki\", role = \"aut\", email = \"kuba@appsilon.com\"),\n person(\"Leszek\", \"Siemiński\", role = \"aut\", email = \"leszek.sieminski@appsilon.com\"),\n person(\"Marek\", \"Rogala\", role = \"aut\", email = \"marek@appsilon.com\"),\n person(\"Recle\", \"Vibal\", role = \"aut\", email = \"recle.vibal@appsilon.com\"),\n person(\"Tymoteusz\", \"Makowski\", role = \"aut\", email = \"tymoteusz@appsilon.com\"),\n person(\"Rodrigo\", \"Basa\", role = \"aut\", email = \"rodrigo@appsilon.com\"),\n person(\"Eduardo\", \"Almeida\", role = \"ctb\", email = \"eduardo@appsilon.com\"),\n person(\"Appsilon Sp. z o.o.\", role = \"cph\", email = \"opensource@appsilon.com\")\n )", "Description": "A framework that supports creating and extending enterprise Shiny applications using best practices.", "URL": "https://appsilon.github.io/rhino/,\nhttps://github.com/Appsilon/rhino", @@ -3919,19 +3815,19 @@ "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "Depends": "R (>= 2.10)", - "Imports": "box (>= 1.1.3), box.linters (>= 0.10.5), box.lsp, cli, config,\nfs, glue, lintr (>= 3.0.0), logger, purrr, renv, rstudioapi,\nsass, shiny, styler, testthat (>= 3.0.0), utils, withr, yaml", - "Suggests": "covr, knitr, mockery, rcmdcheck, rex, rlang, rmarkdown,\nshiny.react, spelling", + "Imports": "box (>= 1.1.3), box.linters (>= 0.10.5), box.lsp, callr, cli,\nconfig, fs, glue, lintr (>= 3.0.0), logger, purrr, renv,\nrstudioapi, sass, shiny, styler, testthat (>= 3.0.0), utils,\nwithr, yaml", + "Suggests": "covr, knitr, lifecycle, mockery, rcmdcheck, rex, rlang,\nrmarkdown, shiny.react, spelling", "LazyData": "true", "Config/testthat/edition": "3", "Config/testthat/parallel": "true", "Language": "en-US", "NeedsCompilation": "no", - "Packaged": "2024-09-19 07:05:37 UTC; kuba", + "Packaged": "2025-04-02 07:15:43 UTC; kuba", "Author": "Kamil Żyła [aut, cre],\n Jakub Nowicki [aut],\n Leszek Siemiński [aut],\n Marek Rogala [aut],\n Recle Vibal [aut],\n Tymoteusz Makowski [aut],\n Rodrigo Basa [aut],\n Eduardo Almeida [ctb],\n Appsilon Sp. z o.o. [cph]", "Maintainer": "Kamil Żyła ", - "Repository": "CRAN", - "Date/Publication": "2024-09-20 11:50:06 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:57:31 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-02 07:30:02 UTC", + "Built": "R 4.5.0; ; 2025-04-09 06:51:32 UTC; unix" } }, "rlang": { @@ -3939,30 +3835,31 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "rlang", - "Version": "1.1.5", + "Version": "1.1.6", "Title": "Functions for Base Types and Core R and 'Tidyverse' Features", "Description": "A toolbox for working with base types, core R features\n like the condition system, and core 'Tidyverse' features like tidy\n evaluation.", - "Authors@R": "c(\n person(\"Lionel\", \"Henry\", ,\"lionel@posit.co\", c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", ,\"hadley@posit.co\", \"aut\"),\n person(given = \"mikefc\",\n email = \"mikefc@coolbutuseless.com\", \n role = \"cph\", \n comment = \"Hash implementation based on Mike's xxhashlite\"),\n person(given = \"Yann\",\n family = \"Collet\",\n role = \"cph\", \n comment = \"Author of the embedded xxHash library\"),\n person(given = \"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Authors@R": "c(\n person(\"Lionel\", \"Henry\", ,\"lionel@posit.co\", c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", ,\"hadley@posit.co\", \"aut\"),\n person(given = \"mikefc\",\n email = \"mikefc@coolbutuseless.com\",\n role = \"cph\",\n comment = \"Hash implementation based on Mike's xxhashlite\"),\n person(given = \"Yann\",\n family = \"Collet\",\n role = \"cph\",\n comment = \"Author of the embedded xxHash library\"),\n person(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", + "Suggests": "cli (>= 3.1.0), covr, crayon, desc, fs, glue, knitr,\nmagrittr, methods, pillar, pkgload, rmarkdown, stats, testthat\n(>= 3.2.0), tibble, usethis, vctrs (>= 0.2.3), withr", "Enhances": "winch", "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "URL": "https://rlang.r-lib.org, https://github.com/r-lib/rlang", "BugReports": "https://github.com/r-lib/rlang/issues", + "Config/build/compilation-database": "true", "Config/testthat/edition": "3", "Config/Needs/website": "dplyr, tidyverse/tidytemplate", "NeedsCompilation": "yes", - "Packaged": "2025-01-17 08:43:17 UTC; lionel", + "Packaged": "2025-04-10 09:25:27 UTC; lionel", "Author": "Lionel Henry [aut, cre],\n Hadley Wickham [aut],\n mikefc [cph] (Hash implementation based on Mike's xxhashlite),\n Yann Collet [cph] (Author of the embedded xxHash library),\n Posit, PBC [cph, fnd]", "Maintainer": "Lionel Henry ", - "Repository": "CRAN", - "Date/Publication": "2025-01-17 14:30:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:56 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-11 08:40:10 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-14 17:54:05 UTC; unix" } }, "rmarkdown": { @@ -3991,9 +3888,9 @@ "Packaged": "2024-11-01 19:32:48 UTC; runner", "Author": "JJ Allaire [aut],\n Yihui Xie [aut, cre] (),\n Christophe Dervieux [aut] (),\n Jonathan McPherson [aut],\n Javier Luraschi [aut],\n Kevin Ushey [aut],\n Aron Atkins [aut],\n Hadley Wickham [aut],\n Joe Cheng [aut],\n Winston Chang [aut],\n Richard Iannone [aut] (),\n Andrew Dunning [ctb] (),\n Atsushi Yasumoto [ctb, cph] (,\n Number sections Lua filter),\n Barret Schloerke [ctb],\n Carson Sievert [ctb] (),\n Devon Ryan [ctb] (),\n Frederik Aust [ctb] (),\n Jeff Allen [ctb],\n JooYoung Seo [ctb] (),\n Malcolm Barrett [ctb],\n Rob Hyndman [ctb],\n Romain Lesur [ctb],\n Roy Storey [ctb],\n Ruben Arslan [ctb],\n Sergio Oller [ctb],\n Posit Software, PBC [cph, fnd],\n jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\n inst/rmd/h/jqueryui/AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Alexander Farkas [ctb, cph] (html5shiv library),\n Scott Jehl [ctb, cph] (Respond.js library),\n Ivan Sagalaev [ctb, cph] (highlight.js library),\n Greg Franko [ctb, cph] (tocify library),\n John MacFarlane [ctb, cph] (Pandoc templates),\n Google, Inc. [ctb, cph] (ioslides library),\n Dave Raggett [ctb] (slidy library),\n W3C [cph] (slidy library),\n Dave Gandy [ctb, cph] (Font-Awesome),\n Ben Sperry [ctb] (Ionicons),\n Drifty [cph] (Ionicons),\n Aidan Lister [ctb, cph] (jQuery StickyTabs),\n Benct Philip Jonsson [ctb, cph] (pagebreak Lua filter),\n Albert Krewinkel [ctb, cph] (pagebreak Lua filter)", "Maintainer": "Yihui Xie ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-11-04 12:30:09 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:53:17 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:46:54 UTC; unix" } }, "rpart": { @@ -4020,7 +3917,7 @@ "BugReports": "https://github.com/bethatkinson/rpart/issues", "Packaged": "2025-01-06 13:26:22 UTC; ripley", "Date/Publication": "2025-01-07 07:30:14 UTC", - "Built": "R 4.4.2; x86_64-pc-linux-gnu; 'Thu, 16 Jan 2025 02:11:15 +0000'; unix" + "Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:29:47 UTC; unix" } }, "rprojroot": { @@ -4029,25 +3926,28 @@ "description": { "Package": "rprojroot", "Title": "Finding Files in Project Subdirectories", - "Version": "2.0.4", + "Version": "2.1.0", "Authors@R": "\n person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = c(\"aut\", \"cre\"),\n email = \"kirill@cynkra.com\",\n comment = c(ORCID = \"0000-0002-1416-3412\"))", "Description": "Robust, reliable and flexible paths to files below\n a project root. The 'root' of a project is defined as a directory that\n matches 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, rlang, rmarkdown, testthat (>=\n3.0.0), withr", + "Suggests": "covr, knitr, lifecycle, rlang, rmarkdown, testthat (>=\n3.2.0), withr", "VignetteBuilder": "knitr", "Config/testthat/edition": "3", "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2.9000", + "Config/autostyle/scope": "line_breaks", + "Config/autostyle/strict": "true", + "Config/Needs/website": "tidyverse/tidytemplate", "NeedsCompilation": "no", - "Packaged": "2023-11-05 06:47:23 UTC; kirill", - "Author": "Kirill Müller [aut, cre] ()", + "Packaged": "2025-07-12 07:59:07 UTC; kirill", + "Author": "Kirill Müller [aut, cre] (ORCID:\n )", "Maintainer": "Kirill Müller ", - "Repository": "CRAN", - "Date/Publication": "2023-11-05 10:20:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:55:22 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-12 09:00:02 UTC", + "Built": "R 4.5.0; ; 2025-07-13 04:34:22 UTC; unix" } }, "rsample": { @@ -4056,27 +3956,28 @@ "description": { "Package": "rsample", "Title": "General Resampling Infrastructure", - "Version": "1.2.1", - "Authors@R": "c(\n person(\"Hannah\", \"Frick\", , \"hannah@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-6049-5258\")),\n person(\"Fanny\", \"Chow\", , \"fannybchow@gmail.com\", role = \"aut\"),\n person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"),\n person(\"Michael\", \"Mahoney\", , \"mike.mahoney.218@gmail.com\", role = c(\"aut\"),\n comment = c(ORCID = \"0000-0003-2402-304X\")),\n person(\"Julia\", \"Silge\", , \"julia.silge@posit.co\", role = c(\"aut\"),\n comment = c(ORCID = \"0000-0002-3671-836X\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Version": "1.3.1", + "Authors@R": "c(\n person(\"Hannah\", \"Frick\", , \"hannah@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-6049-5258\")),\n person(\"Fanny\", \"Chow\", , \"fannybchow@gmail.com\", role = \"aut\"),\n person(\"Max\", \"Kuhn\", , \"max@posit.co\", role = \"aut\"),\n person(\"Michael\", \"Mahoney\", , \"mike.mahoney.218@gmail.com\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-2402-304X\")),\n person(\"Julia\", \"Silge\", , \"julia.silge@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-3671-836X\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"),\n comment = c(ROR = \"03wc8by49\"))\n )", "Description": "Classes and functions to create and summarize different types\n of resampling objects (e.g. bootstrap, cross-validation).", "License": "MIT + file LICENSE", "URL": "https://rsample.tidymodels.org,\nhttps://github.com/tidymodels/rsample", "BugReports": "https://github.com/tidymodels/rsample/issues", - "Depends": "R (>= 3.6)", - "Imports": "cli, dplyr (>= 1.1.1), furrr, generics, glue, lifecycle,\nmethods, pillar, purrr (>= 1.0.0), rlang (>= 0.4.10), slider\n(>= 0.1.5), tibble, tidyr, tidyselect, vctrs (>= 0.5.0)", + "Depends": "R (>= 4.1)", + "Imports": "cli, dplyr (>= 1.1.1), furrr, generics, glue, lifecycle,\nmethods, pillar, purrr (>= 1.0.0), rlang (>= 1.1.0), slider (>=\n0.1.5), tibble, tidyr, tidyselect, vctrs (>= 0.5.0)", "Suggests": "broom, covr, ggplot2, knitr, modeldata, recipes (>= 0.1.4),\nrmarkdown, stats, testthat (>= 3.0.0), utils, whisker, withr,\nxml2", "VignetteBuilder": "knitr", "Config/Needs/website": "GGally, nlstools, tidymodels,\ntidyverse/tidytemplate", - "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-23", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2024-03-25 09:20:45 UTC; hannah", - "Author": "Hannah Frick [aut, cre] (),\n Fanny Chow [aut],\n Max Kuhn [aut],\n Michael Mahoney [aut] (),\n Julia Silge [aut] (),\n Hadley Wickham [aut],\n Posit Software, PBC [cph, fnd]", + "Packaged": "2025-07-29 13:06:28 UTC; hannah", + "Author": "Hannah Frick [aut, cre] (ORCID:\n ),\n Fanny Chow [aut],\n Max Kuhn [aut],\n Michael Mahoney [aut] (ORCID: ),\n Julia Silge [aut] (ORCID: ),\n Hadley Wickham [aut],\n Posit Software, PBC [cph, fnd] (ROR: )", "Maintainer": "Hannah Frick ", - "Repository": "CRAN", - "Date/Publication": "2024-03-25 10:00:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:57:35 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-29 13:50:02 UTC", + "Built": "R 4.5.1; ; 2025-07-31 10:41:40 UTC; unix" } }, "rsconnect": { @@ -4086,14 +3987,14 @@ "Type": "Package", "Package": "rsconnect", "Title": "Deploy Docs, Apps, and APIs to 'Posit Connect', 'shinyapps.io',\nand 'RPubs'", - "Version": "1.4.1", + "Version": "1.5.0", "Authors@R": "c(\n person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Toph\", \"Allen\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Jonathan\", \"McPherson\", role = \"aut\"),\n person(\"JJ\", \"Allaire\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", "Description": "Programmatic deployment interface for 'RPubs',\n 'shinyapps.io', and 'Posit Connect'. Supported content types include R\n Markdown documents, Shiny applications, Plumber APIs, plots, and\n static web content.", "License": "GPL-2", "URL": "https://rstudio.github.io/rsconnect/,\nhttps://github.com/rstudio/rsconnect", "BugReports": "https://github.com/rstudio/rsconnect/issues", "Depends": "R (>= 3.5.0)", - "Imports": "cli, curl, digest, jsonlite, lifecycle, openssl (>= 2.0.0),\nPKI, packrat (>= 0.6), renv (>= 1.0.0), rlang (>= 1.0.0),\nrstudioapi (>= 0.5), tools, yaml (>= 2.1.5), RcppTOML, jose,\nutils", + "Imports": "cli, curl, digest, jsonlite, lifecycle, openssl (>= 2.0.0),\nPKI, packrat (>= 0.6), renv (>= 1.0.0), rlang (>= 1.0.0),\nrstudioapi (>= 0.5), snowflakeauth, tools, yaml (>= 2.1.5),\nutils", "Suggests": "Biobase, BiocManager, foreign, knitr, MASS, plumber (>=\n0.3.2), quarto, RCurl, reticulate, rmarkdown (>= 1.1), shiny,\ntestthat (>= 3.1.9), webfakes, withr", "VignetteBuilder": "knitr, rmarkdown", "Config/Needs/website": "tidyverse/tidytemplate", @@ -4102,12 +4003,19 @@ "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2025-05-21 17:58:06 UTC; aron", + "Packaged": "2025-06-26 15:08:33 UTC; aron", "Author": "Aron Atkins [aut, cre],\n Toph Allen [aut],\n Hadley Wickham [aut],\n Jonathan McPherson [aut],\n JJ Allaire [aut],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Aron Atkins ", - "Repository": "CRAN", - "Date/Publication": "2025-05-22 04:50:01 UTC", - "Built": "R 4.5.0; ; 2025-06-02 13:10:06 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-06-26 15:50:02 UTC", + "Built": "R 4.5.0; ; 2025-06-27 04:39:35 UTC; unix", + "RemoteType": "standard", + "RemoteRef": "rsconnect", + "RemotePkgRef": "rsconnect", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "aarch64-apple-darwin20", + "RemoteSha": "1.5.0" } }, "rstudioapi": { @@ -4130,9 +4038,9 @@ "NeedsCompilation": "no", "Packaged": "2024-10-22 20:55:52 UTC; kevin", "Author": "Kevin Ushey [aut, cre],\n JJ Allaire [aut],\n Hadley Wickham [aut],\n Gary Ritchie [aut],\n RStudio [cph]", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-10-22 22:40:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:54:19 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:41:51 UTC; unix" } }, "sass": { @@ -4141,7 +4049,7 @@ "description": { "Type": "Package", "Package": "sass", - "Version": "0.4.9", + "Version": "0.4.10", "Title": "Syntactically Awesome Style Sheets ('Sass')", "Description": "An 'SCSS' compiler, powered by the 'LibSass' library. With this,\n R developers can use variables, inheritance, and functions to generate\n dynamic style sheets. The package uses the 'Sass CSS' extension language,\n which is stable, powerful, and CSS compatible.", "Authors@R": "c(\n person(\"Joe\", \"Cheng\", , \"joe@rstudio.com\", \"aut\"),\n person(\"Timothy\", \"Mastny\", , \"tim.mastny@gmail.com\", \"aut\"),\n person(\"Richard\", \"Iannone\", , \"rich@rstudio.com\", \"aut\",\n comment = c(ORCID = \"0000-0003-3925-190X\")),\n person(\"Barret\", \"Schloerke\", , \"barret@rstudio.com\", \"aut\",\n comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Carson\", \"Sievert\", , \"carson@rstudio.com\", c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Christophe\", \"Dervieux\", , \"cderv@rstudio.com\", c(\"ctb\"),\n comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(family = \"RStudio\", role = c(\"cph\", \"fnd\")),\n person(family = \"Sass Open Source Foundation\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Greter\", \"Marcel\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Mifsud\", \"Michael\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Hampton\", \"Catlin\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Natalie\", \"Weizenbaum\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Chris\", \"Eppstein\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Adams\", \"Joseph\", role = c(\"ctb\", \"cph\"),\n comment = \"json.cpp\"),\n person(\"Trifunovic\", \"Nemanja\", role = c(\"ctb\", \"cph\"),\n comment = \"utf8.h\")\n )", @@ -4149,19 +4057,19 @@ "URL": "https://rstudio.github.io/sass/, https://github.com/rstudio/sass", "BugReports": "https://github.com/rstudio/sass/issues", "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "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": "2024-03-15 21:58:01 UTC; cpsievert", + "Packaged": "2025-04-11 18:34:19 UTC; cpsievert", "Author": "Joe Cheng [aut],\n Timothy Mastny [aut],\n Richard Iannone [aut] (),\n Barret Schloerke [aut] (),\n Carson Sievert [aut, cre] (),\n Christophe Dervieux [ctb] (),\n RStudio [cph, fnd],\n Sass Open Source Foundation [ctb, cph] (LibSass library),\n Greter Marcel [ctb, cph] (LibSass library),\n Mifsud Michael [ctb, cph] (LibSass library),\n Hampton Catlin [ctb, cph] (LibSass library),\n Natalie Weizenbaum [ctb, cph] (LibSass library),\n Chris Eppstein [ctb, cph] (LibSass library),\n Adams Joseph [ctb, cph] (json.cpp),\n Trifunovic Nemanja [ctb, cph] (utf8.h)", "Maintainer": "Carson Sievert ", - "Repository": "CRAN", - "Date/Publication": "2024-03-15 22:30:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:28 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-11 19:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-14 17:55:05 UTC; unix" } }, "scales": { @@ -4170,27 +4078,28 @@ "description": { "Package": "scales", "Title": "Scale Functions for Visualization", - "Version": "1.3.0", - "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\")),\n person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"),\n comment = c(ORCID = \"0000-0002-5147-4711\")),\n person(\"Dana\", \"Seidel\", role = \"aut\"),\n person(\"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Version": "1.4.0", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"),\n comment = c(ORCID = \"0000-0002-5147-4711\")),\n person(\"Dana\", \"Seidel\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"),\n comment = c(ROR = \"03wc8by49\"))\n )", "Description": "Graphical scales map data to aesthetics, and provide methods\n for 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.6)", - "Imports": "cli, farver (>= 2.0.3), glue, labeling, lifecycle, munsell (>=\n0.5), R6, RColorBrewer, rlang (>= 1.0.0), viridisLite", + "Depends": "R (>= 4.1)", + "Imports": "cli, farver (>= 2.0.3), glue, labeling, lifecycle, R6,\nRColorBrewer, rlang (>= 1.1.0), viridisLite", "Suggests": "bit64, covr, dichromat, ggplot2, hms (>= 0.5.0), stringi,\ntestthat (>= 3.0.0)", "Config/Needs/website": "tidyverse/tidytemplate", "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-04-23", "Encoding": "UTF-8", "LazyLoad": "yes", - "RoxygenNote": "7.2.3", - "NeedsCompilation": "yes", - "Packaged": "2023-11-27 20:27:59 UTC; thomas", - "Author": "Hadley Wickham [aut],\n Thomas Lin Pedersen [cre, aut]\n (),\n Dana Seidel [aut],\n Posit, PBC [cph, fnd]", + "RoxygenNote": "7.3.2", + "NeedsCompilation": "no", + "Packaged": "2025-04-23 18:27:04 UTC; thomas", + "Author": "Hadley Wickham [aut],\n Thomas Lin Pedersen [cre, aut]\n (),\n Dana Seidel [aut],\n Posit Software, PBC [cph, fnd] (03wc8by49)", "Maintainer": "Thomas Lin Pedersen ", - "Repository": "CRAN", - "Date/Publication": "2023-11-28 09:10:06 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:54:17 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-24 11:00:02 UTC", + "Built": "R 4.5.0; ; 2025-04-25 04:52:06 UTC; unix" } }, "shape": { @@ -4208,9 +4117,10 @@ "License": "GPL (>= 3)", "NeedsCompilation": "no", "Packaged": "2024-02-18 12:52:04 UTC; karlines", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-02-23 13:00:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:53:10 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-06 04:41:55 UTC; unix" } }, "shiny": { @@ -4220,55 +4130,27 @@ "Package": "shiny", "Type": "Package", "Title": "Web Application Framework for R", - "Version": "1.10.0", - "Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\", comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"),\n person(\"JJ\", \"Allaire\", role = \"aut\", email = \"jj@posit.co\"),\n person(\"Carson\", \"Sievert\", role = \"aut\", email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Barret\", \"Schloerke\", role = \"aut\", email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Yihui\", \"Xie\", role = \"aut\", email = \"yihui@posit.co\"),\n person(\"Jeff\", \"Allen\", role = \"aut\"),\n person(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"jonathan@posit.co\"),\n person(\"Alan\", \"Dipert\", role = \"aut\"),\n person(\"Barbara\", \"Borges\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(family = \"jQuery Foundation\", role = \"cph\",\n comment = \"jQuery library and jQuery UI library\"),\n person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\n person(family = \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt\"),\n person(\"Mark\", \"Otto\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(\"Jacob\", \"Thornton\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Prem Nawaz\", \"Khan\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Victor\", \"Tsaran\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Dennis\", \"Lembree\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Srinivasu\", \"Chakravarthula\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Cathy\", \"O'Connor\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(family = \"PayPal, Inc\", role = \"cph\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap-datepicker library\"),\n person(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap-datepicker library\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize.js library\"),\n person(\"Salmen\", \"Bejaoui\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize-plugin-a11y library\"),\n person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\n comment = \"ion.rangeSlider library\"),\n person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\n comment = \"Javascript strftime library\"),\n person(family = \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"),\n comment = \"DataTables library\"),\n person(\"John\", \"Fraser\", role = c(\"ctb\", \"cph\"),\n comment = \"showdown.js library\"),\n person(\"John\", \"Gruber\", role = c(\"ctb\", \"cph\"),\n comment = \"showdown.js library\"),\n person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"),\n comment = \"highlight.js library\"),\n person(family = \"R Core Team\", role = c(\"ctb\", \"cph\"),\n comment = \"tar implementation from R\")\n )", + "Version": "1.11.1", + "Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\", comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"),\n person(\"JJ\", \"Allaire\", role = \"aut\", email = \"jj@posit.co\"),\n person(\"Carson\", \"Sievert\", role = \"aut\", email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Barret\", \"Schloerke\", role = \"aut\", email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Yihui\", \"Xie\", role = \"aut\", email = \"yihui@posit.co\"),\n person(\"Jeff\", \"Allen\", role = \"aut\"),\n person(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"jonathan@posit.co\"),\n person(\"Alan\", \"Dipert\", role = \"aut\"),\n person(\"Barbara\", \"Borges\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(family = \"jQuery Foundation\", role = \"cph\",\n comment = \"jQuery library and jQuery UI library\"),\n person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\n person(family = \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt\"),\n person(\"Mark\", \"Otto\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(\"Jacob\", \"Thornton\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Prem Nawaz\", \"Khan\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Victor\", \"Tsaran\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Dennis\", \"Lembree\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Srinivasu\", \"Chakravarthula\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Cathy\", \"O'Connor\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(family = \"PayPal, Inc\", role = \"cph\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap-datepicker library\"),\n person(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap-datepicker library\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize.js library\"),\n person(\"Salmen\", \"Bejaoui\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize-plugin-a11y library\"),\n person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\n comment = \"ion.rangeSlider library\"),\n person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\n comment = \"Javascript strftime library\"),\n person(family = \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"),\n comment = \"DataTables library\"),\n person(\"John\", \"Fraser\", role = c(\"ctb\", \"cph\"),\n comment = \"showdown.js library\"),\n person(\"John\", \"Gruber\", role = c(\"ctb\", \"cph\"),\n comment = \"showdown.js library\"),\n person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"),\n comment = \"highlight.js library\"),\n person(given = \"R Core Team\", role = c(\"ctb\", \"cph\"),\n comment = \"tar implementation from R\")\n )", "Description": "Makes it incredibly easy to build interactive web\n applications with R. Automatic \"reactive\" binding between inputs and\n outputs and extensive prebuilt widgets make it possible to build\n beautiful, 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.3.2), tools, crayon, rlang (>= 0.4.10), fastmap (>=\n1.1.1), withr, commonmark (>= 1.7), glue (>= 1.3.2), bslib (>=\n0.6.0), cachem (>= 1.1.0), lifecycle (>= 0.2.0)", - "Suggests": "coro (>= 1.1.0), datasets, DT, Cairo (>= 1.5-5), testthat (>=\n3.0.0), knitr (>= 1.6), markdown, rmarkdown, ggplot2, reactlog\n(>= 1.0.0), magrittr, yaml, future, dygraphs, ragg, showtext,\nsass", + "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.3.2), tools, cli, rlang (>= 0.4.10), fastmap (>= 1.1.1),\nwithr, commonmark (>= 1.7), glue (>= 1.3.2), bslib (>= 0.6.0),\ncachem (>= 1.1.0), lifecycle (>= 0.2.0)", + "Suggests": "coro (>= 1.1.0), datasets, DT, Cairo (>= 1.5-5), testthat (>=\n3.2.1), knitr (>= 1.6), markdown, rmarkdown, ggplot2, reactlog\n(>= 1.0.0), magrittr, yaml, mirai, future, dygraphs, ragg,\nshowtext, sass, watcher", "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' 'busy-indicators-spinners.R'\n'busy-indicators.R' 'cache-utils.R' 'deprecated.R' 'devmode.R'\n'diagnose.R' 'extended-task.R' 'fileupload.R' 'graph.R'\n'reactives.R' 'reactive-domains.R' 'history.R' 'hooks.R'\n'html-deps.R' 'image-interact-opts.R' 'image-interact.R'\n'imageutils.R' 'input-action.R' 'input-checkbox.R'\n'input-checkboxgroup.R' 'input-date.R' 'input-daterange.R'\n'input-file.R' 'input-numeric.R' 'input-password.R'\n'input-radiobuttons.R' 'input-select.R' 'input-slider.R'\n'input-submit.R' 'input-text.R' 'input-textarea.R'\n'input-utils.R' 'insert-tab.R' 'insert-ui.R' 'jqueryui.R'\n'knitr.R' 'middleware-shiny.R' 'middleware.R' 'timer.R'\n'shiny.R' 'mock-session.R' 'modal.R' 'modules.R'\n'notifications.R' 'priorityqueue.R' 'progress.R' 'react.R'\n'reexports.R' 'render-cached-plot.R' 'render-plot.R'\n'render-table.R' '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.3.2", "Encoding": "UTF-8", - "RdMacros": "lifecycle", "Config/testthat/edition": "3", "Config/Needs/check": "shinytest2", "NeedsCompilation": "no", - "Packaged": "2024-12-13 21:47:15 UTC; cpsievert", - "Author": "Winston Chang [aut, cre] (),\n Joe Cheng [aut],\n JJ Allaire [aut],\n Carson Sievert [aut] (),\n Barret Schloerke [aut] (),\n Yihui Xie [aut],\n Jeff Allen [aut],\n Jonathan McPherson [aut],\n Alan Dipert [aut],\n Barbara Borges [aut],\n Posit Software, PBC [cph, fnd],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/www/shared/jquery-AUTHORS.txt),\n jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\n inst/www/shared/jqueryui/AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Prem Nawaz Khan [ctb] (Bootstrap accessibility plugin),\n Victor Tsaran [ctb] (Bootstrap accessibility plugin),\n Dennis Lembree [ctb] (Bootstrap accessibility plugin),\n Srinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin),\n Cathy O'Connor [ctb] (Bootstrap accessibility plugin),\n PayPal, Inc [cph] (Bootstrap accessibility plugin),\n Stefan Petre [ctb, cph] (Bootstrap-datepicker library),\n Andrew Rowls [ctb, cph] (Bootstrap-datepicker library),\n Brian Reavis [ctb, cph] (selectize.js library),\n Salmen Bejaoui [ctb, cph] (selectize-plugin-a11y library),\n Denis Ineshin [ctb, cph] (ion.rangeSlider library),\n Sami Samhuri [ctb, cph] (Javascript strftime library),\n SpryMedia Limited [ctb, cph] (DataTables library),\n John Fraser [ctb, cph] (showdown.js library),\n John Gruber [ctb, cph] (showdown.js library),\n Ivan Sagalaev [ctb, cph] (highlight.js library),\n R Core Team [ctb, cph] (tar implementation from R)", + "Packaged": "2025-07-03 01:15:18 UTC; cpsievert", + "Author": "Winston Chang [aut, cre] (ORCID:\n ),\n Joe Cheng [aut],\n JJ Allaire [aut],\n Carson Sievert [aut] (ORCID: ),\n Barret Schloerke [aut] (ORCID: ),\n Yihui Xie [aut],\n Jeff Allen [aut],\n Jonathan McPherson [aut],\n Alan Dipert [aut],\n Barbara Borges [aut],\n Posit Software, PBC [cph, fnd],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/www/shared/jquery-AUTHORS.txt),\n jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\n inst/www/shared/jqueryui/AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Prem Nawaz Khan [ctb] (Bootstrap accessibility plugin),\n Victor Tsaran [ctb] (Bootstrap accessibility plugin),\n Dennis Lembree [ctb] (Bootstrap accessibility plugin),\n Srinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin),\n Cathy O'Connor [ctb] (Bootstrap accessibility plugin),\n PayPal, Inc [cph] (Bootstrap accessibility plugin),\n Stefan Petre [ctb, cph] (Bootstrap-datepicker library),\n Andrew Rowls [ctb, cph] (Bootstrap-datepicker library),\n Brian Reavis [ctb, cph] (selectize.js library),\n Salmen Bejaoui [ctb, cph] (selectize-plugin-a11y library),\n Denis Ineshin [ctb, cph] (ion.rangeSlider library),\n Sami Samhuri [ctb, cph] (Javascript strftime library),\n SpryMedia Limited [ctb, cph] (DataTables library),\n John Fraser [ctb, cph] (showdown.js library),\n John Gruber [ctb, cph] (showdown.js library),\n Ivan Sagalaev [ctb, cph] (highlight.js library),\n R Core Team [ctb, cph] (tar implementation from R)", "Maintainer": "Winston Chang ", - "Repository": "CRAN", - "Date/Publication": "2024-12-14 00:10:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:53:57 UTC; unix" - } - }, - "shinyTime": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Package": "shinyTime", - "Type": "Package", - "Title": "A Time Input Widget for Shiny", - "Version": "1.0.3", - "Authors@R": "person(\"Gerhard\", \"Burger\", email = \"burger.ga@gmail.com\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-1062-5576\"))", - "Description": "Provides a time input widget for Shiny. This widget allows intuitive time input in the\n '[hh]:[mm]:[ss]' or '[hh]:[mm]' (24H) format by using a separate numeric input for each time\n component. The interface with R uses date-time objects. See the project page for more\n information and examples.", - "License": "GPL-3 | file LICENSE", - "Imports": "htmltools, shiny", - "URL": "https://burgerga.github.io/shinyTime/,\nhttps://github.com/burgerga/shinyTime", - "BugReports": "https://github.com/burgerga/shinyTime/issues", - "RoxygenNote": "7.2.1", - "Encoding": "UTF-8", - "Language": "en-US", - "Suggests": "testthat (>= 2.1.0), spelling, hms", - "NeedsCompilation": "no", - "Packaged": "2022-08-19 20:56:31 UTC; gerhard", - "Author": "Gerhard Burger [aut, cre] ()", - "Maintainer": "Gerhard Burger ", - "Repository": "CRAN", - "Date/Publication": "2022-08-19 21:30:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:57:37 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-03 06:20:02 UTC", + "Built": "R 4.5.0; ; 2025-07-04 04:45:28 UTC; unix" } }, "shinyWidgets": { @@ -4277,7 +4159,7 @@ "description": { "Package": "shinyWidgets", "Title": "Custom Inputs Widgets for Shiny", - "Version": "0.8.7", + "Version": "0.9.0", "Authors@R": "c(\n person(\"Victor\", \"Perrier\", email = \"victor.perrier@dreamrs.fr\", role = c(\"aut\", \"cre\", \"cph\")),\n person(\"Fanny\", \"Meyer\", role = \"aut\"),\n person(\"David\", \"Granjon\", role = \"aut\"),\n person(\"Ian\", \"Fellows\", role = \"ctb\", comment = \"Methods for mutating vertical tabs & updateMultiInput\"),\n person(\"Wil\", \"Davis\", role = \"ctb\", comment = \"numericRangeInput function\"),\n person(\"Spencer\", \"Matthews\", role = \"ctb\", comment = \"autoNumeric methods\"),\n person(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. \n Give your applications a unique and colorful style !", "URL": "https://github.com/dreamRs/shinyWidgets,\nhttps://dreamrs.github.io/shinyWidgets/", @@ -4290,38 +4172,12 @@ "Imports": "bslib, sass, shiny (>= 1.6.0), htmltools (>= 0.5.1), jsonlite,\ngrDevices, rlang", "Suggests": "testthat, covr, ggplot2, DT, scales, shinydashboard,\nshinydashboardPlus", "NeedsCompilation": "no", - "Packaged": "2024-09-23 06:53:57 UTC; perri", + "Packaged": "2025-02-21 09:09:48 UTC; perri", "Author": "Victor Perrier [aut, cre, cph],\n Fanny Meyer [aut],\n David Granjon [aut],\n Ian Fellows [ctb] (Methods for mutating vertical tabs &\n updateMultiInput),\n Wil Davis [ctb] (numericRangeInput function),\n Spencer Matthews [ctb] (autoNumeric methods),\n JavaScript and CSS libraries authors [ctb, cph] (All authors are listed\n in LICENSE.md)", "Maintainer": "Victor Perrier ", - "Repository": "CRAN", - "Date/Publication": "2024-09-23 07:40:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:57:38 UTC; unix" - } - }, - "shinycssloaders": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Package": "shinycssloaders", - "Title": "Add Loading Animations to a 'shiny' Output While It's\nRecalculating", - "Version": "1.1.0", - "Authors@R": "c(\n person(\"Dean\",\"Attali\",email=\"daattali@gmail.com\",role=c(\"aut\",\"cre\"),\n comment = c(\"Maintainer/developer of shinycssloaders since 2019\", ORCID=\"0000-0002-5645-3493\")),\n person(\"Andras\",\"Sali\",email=\"andras.sali@alphacruncher.hu\",role=c(\"aut\"),comment=\"Original creator of shinycssloaders package\"),\n person(\"Luke\",\"Hass\",role=c(\"ctb\",\"cph\"),comment=\"Author of included CSS loader code\")\n )", - "Description": "When a 'Shiny' output (such as a plot, table, map, etc.) is recalculating, it remains \n visible but gets greyed out. Using 'shinycssloaders', you can add a loading animation (\"spinner\")\n to outputs instead. By wrapping a 'Shiny' output in 'withSpinner()', a spinner will automatically\n appear while the output is recalculating. You can also manually show and hide the spinner, or add\n a full-page spinner to cover the entire page.\n See the demo online at .", - "License": "MIT + file LICENSE", - "URL": "https://github.com/daattali/shinycssloaders,\nhttps://daattali.com/shiny/shinycssloaders-demo/", - "BugReports": "https://github.com/daattali/shinycssloaders/issues", - "Depends": "R (>= 3.1)", - "Imports": "digest, glue, grDevices, htmltools (>= 0.3.5), shiny", - "Suggests": "knitr, shinydisconnect, shinyjs", - "RoxygenNote": "7.2.3", - "Encoding": "UTF-8", - "NeedsCompilation": "no", - "Packaged": "2024-07-30 18:52:48 UTC; Dean", - "Author": "Dean Attali [aut, cre] (Maintainer/developer of shinycssloaders since\n 2019, ),\n Andras Sali [aut] (Original creator of shinycssloaders package),\n Luke Hass [ctb, cph] (Author of included CSS loader code)", - "Maintainer": "Dean Attali ", - "Repository": "CRAN", - "Date/Publication": "2024-07-30 22:30:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:57:40 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-02-21 12:30:02 UTC", + "Built": "R 4.5.0; ; 2025-04-09 06:37:36 UTC; unix" } }, "shinyjs": { @@ -4346,9 +4202,9 @@ "Packaged": "2021-12-21 11:32:22 UTC; Dean-X1C", "Author": "Dean Attali [aut, cre] ()", "Maintainer": "Dean Attali ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2021-12-23 10:10:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:57:41 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:48:03 UTC; unix" } }, "shinytest2": { @@ -4357,31 +4213,31 @@ "description": { "Package": "shinytest2", "Title": "Testing for Shiny Applications", - "Version": "0.3.2", + "Version": "0.4.1", "Authors@R": "\n c(\n person(\"Barret\", \"Schloerke\", role = c(\"cre\", \"aut\"), email = \"barret@posit.co\", comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(family = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Winston\", \"Chang\", role =\"ctb\", email = \"winston@posit.co\", comment = \"Original author to rstudio/shinytest\"),\n person(\"Gábor\", \"Csárdi\", role = \"ctb\", email = \"gabor@posit.co\", comment = \"Original author to rstudio/shinytest\"),\n person(\"Hadley\", \"Wickham\", role = \"ctb\", email = \"hadley@posit.co\", comment = \"Original author to rstudio/shinytest\"),\n person(family = \"Mango Solutions\", role = c(\"cph\", \"ccp\"), comment = \"Original author to rstudio/shinytest\")\n )", "Description": "Automated unit testing of Shiny applications through a headless 'Chromium' browser.", "License": "MIT + file LICENSE", "Encoding": "UTF-8", "Language": "en-US", - "RoxygenNote": "7.3.1", + "RoxygenNote": "7.3.2", "URL": "https://rstudio.github.io/shinytest2/,\nhttps://github.com/rstudio/shinytest2", "BugReports": "https://github.com/rstudio/shinytest2/issues", "VignetteBuilder": "knitr", "Depends": "testthat (>= 3.1.2)", - "Imports": "R6 (>= 2.4.0), callr, checkmate (>= 2.0.0), chromote (>=\n0.1.2), crayon, fs, globals (>= 0.14.0), httr, jsonlite, pingr,\nrlang (>= 1.0.0), rmarkdown, shiny, withr", + "Imports": "R6 (>= 2.4.0), callr, checkmate (>= 2.0.0), chromote (>=\n0.5.0), cli, fs, globals (>= 0.14.0), httr, jsonlite, pingr,\nrlang (>= 1.0.0), rmarkdown, shiny, withr, lifecycle", "Suggests": "deSolve, diffobj, ggplot2, knitr, plotly, png, rstudioapi,\nshinyWidgets, shinytest (>= 1.5.1), shinyvalidate (>= 0.1.2),\nshowimage, usethis, vdiffr (>= 1.0.0), spelling", - "Config/Needs/check": "rstudio/shiny", + "Config/Needs/check": "rstudio/shiny, bslib", "Config/Needs/website": "pkgdown, tidyverse/tidytemplate", "Config/testthat/edition": "3", "Collate": "'R6-helper.R' 'app-driver-chromote.R' 'app-driver-dir.R'\n'app-driver-expect-download.R' 'app-driver-expect-js.R'\n'app-driver-expect-screenshot.R'\n'app-driver-expect-unique-names.R' 'app-driver-expect-values.R'\n'app-driver-get-log.R' 'app-driver-initialize.R'\n'app-driver-log-message.R' 'app-driver-message.R'\n'app-driver-node.R' 'app-driver-set-inputs.R'\n'app-driver-start.R' 'app-driver-stop.R' 'app-driver-timeout.R'\n'app-driver-upload-file.R' 'app-driver-variant.R'\n'app-driver-wait.R' 'app-driver-window.R' 'app-driver.R'\n'chromote-methods.R' 'compare-screenshot-threshold.R' 'cpp11.R'\n'expect-snapshot.R' 'expr-recurse.R' 'httr.R' 'migrate.R'\n'missing-value.R' 'utils.R' 'platform.R'\n'record-test-unique-name.R' 'record-test.R' 'rstudio.R'\n'save-app.R' 'shiny-browser.R' 'shinytest2-logs.R'\n'shinytest2-package.R' 'test-app.R' 'use.R'", "LinkingTo": "cpp11", "NeedsCompilation": "yes", - "Packaged": "2024-04-26 19:24:28 UTC; garrick", + "Packaged": "2025-04-11 21:20:56 UTC; barret", "Author": "Barret Schloerke [cre, aut] (),\n Posit Software, PBC [cph, fnd],\n Winston Chang [ctb] (Original author to rstudio/shinytest),\n Gábor Csárdi [ctb] (Original author to rstudio/shinytest),\n Hadley Wickham [ctb] (Original author to rstudio/shinytest),\n Mango Solutions [cph, ccp] (Original author to rstudio/shinytest)", "Maintainer": "Barret Schloerke ", - "Repository": "CRAN", - "Date/Publication": "2024-04-28 21:40:03 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:57:42 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-11 22:20:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-14 18:00:57 UTC; unix" } }, "slider": { @@ -4412,9 +4268,42 @@ "Packaged": "2024-10-25 17:10:37 UTC; davis", "Author": "Davis Vaughan [aut, cre],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Davis Vaughan ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-10-25 17:40:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:57:33 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-09 06:47:23 UTC; unix" + } + }, + "snowflakeauth": { + "Source": "CRAN", + "Repository": "https://packagemanager.posit.co/cran/latest", + "description": { + "Package": "snowflakeauth", + "Title": "Authentication Helpers for 'Snowflake'", + "Version": "0.1.2", + "Authors@R": "c(\n person(\"Aaron\", \"Jacobs\", , \"aaron.jacobs@posit.co\", role = c(\"aut\")),\n person(\"E. David\", \"Aja\", , \"david@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Description": "Authentication helpers for 'Snowflake'.\n It provides compatibility with authentication approaches supported\n by the 'Snowflake Connector for Python' \n and the 'Snowflake CLI' .", + "License": "MIT + file LICENSE", + "Encoding": "UTF-8", + "Imports": "cli, curl, jsonlite, RcppTOML, rlang", + "Suggests": "jose, openssl, testthat (>= 3.0.0), withr", + "RoxygenNote": "7.3.2", + "Config/testthat/edition": "3", + "URL": "https://posit-dev.github.io/snowflakeauth/,\nhttps://github.com/posit-dev/snowflakeauth", + "BugReports": "https://github.com/posit-dev/snowflakeauth/issues", + "NeedsCompilation": "no", + "Packaged": "2025-06-18 13:05:51 UTC; edavidaja", + "Author": "Aaron Jacobs [aut],\n E. David Aja [aut, cre],\n Posit Software, PBC [cph, fnd]", + "Maintainer": "E. David Aja ", + "Repository": "RSPM", + "Date/Publication": "2025-06-19 15:20:02 UTC", + "Built": "R 4.5.0; ; 2025-06-20 04:55:13 UTC; unix", + "RemoteType": "standard", + "RemoteRef": "snowflakeauth", + "RemotePkgRef": "snowflakeauth", + "RemoteRepos": "https://packagemanager.posit.co/cran/latest", + "RemoteReposName": "CRAN", + "RemotePkgPlatform": "aarch64-apple-darwin20", + "RemoteSha": "0.1.2" } }, "sourcetools": { @@ -4436,9 +4325,9 @@ "Encoding": "UTF-8", "NeedsCompilation": "yes", "Packaged": "2023-01-31 18:03:04 UTC; kevin", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-02-01 10:10:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:53:56 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:41:58 UTC; unix" } }, "sparsevctrs": { @@ -4447,13 +4336,13 @@ "description": { "Package": "sparsevctrs", "Title": "Sparse Vectors for Use in Data Frames", - "Version": "0.2.0", - "Authors@R": "c(\n person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-0679-1945\")),\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", + "Version": "0.3.4", + "Authors@R": "c(\n person(\"Emil\", \"Hvitfeldt\", , \"emil.hvitfeldt@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-0679-1945\")),\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"), comment = c(ROR = \"03wc8by49\"))\n )", "Description": "Provides sparse vectors powered by ALTREP (Alternative\n Representations for R Objects) that behave like regular vectors, and\n can thus be used in data frames. Also provides tools to convert\n between sparse matrices and data frames with sparse columns and\n functions to interact with sparse vectors.", "License": "MIT + file LICENSE", "URL": "https://github.com/r-lib/sparsevctrs,\nhttps://r-lib.github.io/sparsevctrs/", "BugReports": "https://github.com/r-lib/sparsevctrs/issues", - "Depends": "R (>= 4.0.0)", + "Depends": "R (>= 4.1)", "Imports": "cli (>= 3.4.0), rlang (>= 1.1.0), vctrs", "Suggests": "knitr, Matrix, methods, rmarkdown, testthat (>= 3.0.0),\ntibble, withr", "VignetteBuilder": "knitr", @@ -4461,13 +4350,14 @@ "Config/testthat/edition": "3", "Encoding": "UTF-8", "RoxygenNote": "7.3.2", + "Config/usethis/last-upkeep": "2025-05-25", "NeedsCompilation": "yes", - "Packaged": "2025-01-22 20:43:32 UTC; emilhvitfeldt", - "Author": "Emil Hvitfeldt [aut, cre] (),\n Davis Vaughan [ctb],\n Posit Software, PBC [cph, fnd]", + "Packaged": "2025-05-25 13:57:53 UTC; emilhvitfeldt", + "Author": "Emil Hvitfeldt [aut, cre] (ORCID:\n ),\n Davis Vaughan [ctb],\n Posit Software, PBC [cph, fnd] (ROR: )", "Maintainer": "Emil Hvitfeldt ", - "Repository": "CRAN", - "Date/Publication": "2025-01-22 21:00:01 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:19 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-05-25 14:30:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-05-26 04:47:29 UTC; unix" } }, "stringi": { @@ -4475,8 +4365,8 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "stringi", - "Version": "1.8.4", - "Date": "2024-05-06", + "Version": "1.8.7", + "Date": "2025-03-27", "Title": "Fast and Portable Character String Processing Facilities", "Description": "A collection of character string/text/natural language\n processing tools for pattern searching (e.g., with 'Java'-like regular\n expressions or the 'Unicode' collation algorithm), random string generation,\n case mapping, string transliteration, concatenation, sorting, padding,\n wrapping, Unicode normalisation, date-time formatting and parsing,\n and many more. They are fast, consistent, convenient, and -\n thanks to 'ICU' (International Components for Unicode) -\n portable across all locales and platforms. Documentation about 'stringi' is\n provided via its website at and\n the paper by Gagolewski (2022, ).", "URL": "https://stringi.gagolewski.com/,\nhttps://github.com/gagolews/stringi, https://icu.unicode.org/", @@ -4487,16 +4377,17 @@ "Imports": "tools, utils, stats", "Biarch": "TRUE", "License": "file LICENSE", - "Author": "Marek Gagolewski [aut, cre, cph] (),\n Bartek Tartanus [ctb], and others (stringi source code);\n Unicode, Inc. and others (ICU4C source code, Unicode Character Database)", - "Maintainer": "Marek Gagolewski ", - "RoxygenNote": "7.2.3", + "Authors@R": "c(person(given = \"Marek\",\n family = \"Gagolewski\",\n role = c(\"aut\", \"cre\", \"cph\"),\n email = \"marek@gagolewski.com\",\n comment = c(ORCID = \"0000-0003-0637-6028\")),\n person(given = \"Bartek\",\n family = \"Tartanus\",\n role = \"ctb\"),\n person(\"Unicode, Inc. and others\", role=\"ctb\",\n comment = \"ICU4C source code, Unicode Character Database\")\n )", + "RoxygenNote": "7.3.2", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Packaged": "2024-05-06 12:50:25 UTC; gagolews", + "Packaged": "2025-03-27 10:27:19 UTC; gagolews", + "Author": "Marek Gagolewski [aut, cre, cph]\n (),\n Bartek Tartanus [ctb],\n Unicode, Inc. and others [ctb] (ICU4C source code, Unicode Character\n Database)", + "Maintainer": "Marek Gagolewski ", "License_is_FOSS": "yes", - "Repository": "CRAN", - "Date/Publication": "2024-05-06 15:00:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:24 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-03-27 13:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:16 UTC; unix" } }, "stringr": { @@ -4524,9 +4415,9 @@ "Packaged": "2023-11-14 15:03:52 UTC; hadleywickham", "Author": "Hadley Wickham [aut, cre, cph],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-11-14 23:10:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:49:53 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:43:52 UTC; unix" } }, "styler": { @@ -4555,9 +4446,9 @@ "Packaged": "2024-04-07 19:04:20 UTC; lorenz", "Author": "Kirill Müller [aut] (),\n Lorenz Walthert [cre, aut],\n Indrajeet Patil [ctb] (,\n @patilindrajeets)", "Maintainer": "Lorenz Walthert ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-04-07 23:00:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:57:16 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-09 06:35:31 UTC; unix" } }, "survival": { @@ -4584,7 +4475,7 @@ "Maintainer": "Terry M Therneau ", "Repository": "CRAN", "Date/Publication": "2024-12-17 20:20:02 UTC", - "Built": "R 4.4.2; x86_64-pc-linux-gnu; 'Tue, 07 Jan 2025 00:08:51 +0000'; unix" + "Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:30:21 UTC; unix" } }, "sys": { @@ -4608,9 +4499,9 @@ "Packaged": "2024-10-03 14:13:17 UTC; jeroen", "Author": "Jeroen Ooms [aut, cre] (),\n Gábor Csárdi [ctb]", "Maintainer": "Jeroen Ooms ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-10-04 09:40:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:06 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:01 UTC; unix" } }, "testthat": { @@ -4639,9 +4530,9 @@ "Packaged": "2025-01-11 00:11:30 UTC; hadleywickham", "Author": "Hadley Wickham [aut, cre],\n Posit Software, PBC [cph, fnd],\n R Core team [ctb] (Implementation of utils::recover())", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2025-01-13 11:20:03 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:57:19 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:44:39 UTC; unix" } }, "tibble": { @@ -4650,18 +4541,18 @@ "description": { "Package": "tibble", "Title": "Simple Data Frames", - "Version": "3.2.1", + "Version": "3.3.0", "Authors@R": "\n c(person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = c(\"aut\", \"cre\"),\n email = \"kirill@cynkra.com\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\",\n email = \"hadley@rstudio.com\"),\n person(given = \"Romain\",\n family = \"Francois\",\n role = \"ctb\",\n email = \"romain@r-enthusiasts.com\"),\n person(given = \"Jennifer\",\n family = \"Bryan\",\n role = \"ctb\",\n email = \"jenny@rstudio.com\"),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))", "Description": "Provides a 'tbl_df' class (the 'tibble') with stricter checking and better formatting than the traditional\n data 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", + "Imports": "cli, lifecycle (>= 1.0.0), magrittr, methods, pillar (>=\n1.8.1), pkgconfig, rlang (>= 1.0.2), utils, vctrs (>= 0.5.0)", + "Suggests": "bench, bit64, blob, brio, callr, DiagrammeR, dplyr, evaluate,\nformattable, ggplot2, here, hms, htmltools, knitr, lubridate,\nnycflights13, pkgload, purrr, rmarkdown, stringi, testthat (>=\n3.0.2), tidyr, withr", "VignetteBuilder": "knitr", "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2.9000", "Config/testthat/edition": "3", "Config/testthat/parallel": "true", "Config/testthat/start-first": "vignette-formats, as_tibble, add,\ninvariants", @@ -4670,12 +4561,12 @@ "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] (),\n Hadley Wickham [aut],\n Romain Francois [ctb],\n Jennifer Bryan [ctb],\n RStudio [cph, fnd]", + "Packaged": "2025-06-07 08:54:33 UTC; kirill", + "Author": "Kirill Müller [aut, cre] (ORCID:\n ),\n Hadley Wickham [aut],\n Romain Francois [ctb],\n Jennifer Bryan [ctb],\n RStudio [cph, fnd]", "Maintainer": "Kirill Müller ", - "Repository": "CRAN", - "Date/Publication": "2023-03-20 06:30:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:04 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-06-08 12:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-06-09 04:40:01 UTC; unix" } }, "tidyr": { @@ -4704,9 +4595,9 @@ "Packaged": "2024-01-23 14:27:23 UTC; hadleywickham", "Author": "Hadley Wickham [aut, cre],\n Davis Vaughan [aut],\n Maximilian Girlich [aut],\n Kevin Ushey [ctb],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-01-24 14:50:09 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:50:12 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:45:22 UTC; unix" } }, "tidyselect": { @@ -4734,9 +4625,9 @@ "Packaged": "2024-03-11 11:46:04 UTC; lionel", "Author": "Lionel Henry [aut, cre],\n Hadley Wickham [aut],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Lionel Henry ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-03-11 14:10:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:50:05 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:43:37 UTC; unix" } }, "timeDate": { @@ -4759,9 +4650,9 @@ "Packaged": "2024-09-16 11:17:35 UTC; georgi", "Author": "Diethelm Wuertz [aut] (original code),\n Tobias Setz [aut],\n Yohan Chalabi [aut],\n Martin Maechler [ctb] (),\n Joe W. Byers [ctb],\n Georgi N. Boshnakov [cre, aut]", "Maintainer": "Georgi N. Boshnakov ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-09-22 10:10:17 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:54:38 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-08 03:11:26 UTC; unix" } }, "timechange": { @@ -4786,9 +4677,9 @@ "Packaged": "2024-01-18 08:57:24 UTC; vspinu", "Author": "Vitalie Spinu [aut, cre],\n Google Inc. [ctb, cph]", "Maintainer": "Vitalie Spinu ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-01-18 09:20:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:55:44 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:42 UTC; unix" } }, "timetk": { @@ -4815,9 +4706,9 @@ "Packaged": "2023-10-31 19:15:26 UTC; mdancho", "Author": "Matt Dancho [aut, cre],\n Davis Vaughan [aut]", "Maintainer": "Matt Dancho ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-10-31 22:30:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:57:46 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-09 07:44:50 UTC; unix" } }, "tinytex": { @@ -4827,7 +4718,7 @@ "Package": "tinytex", "Type": "Package", "Title": "Helper Functions to Install and Maintain TeX Live, and Compile\nLaTeX Documents", - "Version": "0.54", + "Version": "0.57", "Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(\"Devon\", \"Ryan\", role = \"ctb\", email = \"dpryan79@gmail.com\", comment = c(ORCID = \"0000-0002-8549-0971\")),\n person(\"Ethan\", \"Heinzen\", role = \"ctb\"),\n person(\"Fernando\", \"Cagua\", role = \"ctb\"),\n person()\n )", "Description": "Helper functions to install and maintain the 'LaTeX' distribution\n named 'TinyTeX' (), a lightweight, cross-platform,\n portable, and easy-to-maintain version of 'TeX Live'. This package also\n contains helper functions to compile 'LaTeX' documents, and install missing\n 'LaTeX' packages automatically.", "Imports": "xfun (>= 0.48)", @@ -4838,68 +4729,12 @@ "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2024-11-01 14:22:24 UTC; yihui", + "Packaged": "2025-04-15 14:48:13 UTC; yihui", "Author": "Yihui Xie [aut, cre, cph] (),\n Posit Software, PBC [cph, fnd],\n Christophe Dervieux [ctb] (),\n Devon Ryan [ctb] (),\n Ethan Heinzen [ctb],\n Fernando Cagua [ctb]", "Maintainer": "Yihui Xie ", - "Repository": "CRAN", - "Date/Publication": "2024-11-01 15:10:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:53:16 UTC; unix" - } - }, - "treesitter": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Package": "treesitter", - "Title": "Bindings to 'Tree-Sitter'", - "Version": "0.1.0", - "Authors@R": "c(\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Tree-sitter authors\", role = \"cph\",\n comment = \"Tree-sitter C library\")\n )", - "Description": "Provides bindings to 'Tree-sitter', an incremental parsing\n system for programming tools. 'Tree-sitter' builds concrete syntax\n trees for source files of any language, and can efficiently update\n those syntax trees as the source file is edited. It also includes a\n robust error recovery system that provides useful parse results even\n in the presence of syntax errors.", - "License": "MIT + file LICENSE", - "URL": "https://github.com/DavisVaughan/r-tree-sitter", - "BugReports": "https://github.com/DavisVaughan/r-tree-sitter/issues", - "Depends": "R (>= 4.3.0)", - "Imports": "cli (>= 3.6.2), R6 (>= 2.5.1), rlang (>= 1.1.3), vctrs (>=\n0.6.5)", - "Suggests": "testthat (>= 3.0.0), treesitter.r", - "Config/Needs/website": "tidyverse/tidytemplate", - "Config/testthat/edition": "3", - "Encoding": "UTF-8", - "RoxygenNote": "7.3.1", - "NeedsCompilation": "yes", - "Packaged": "2024-06-22 00:02:29 UTC; davis", - "Author": "Davis Vaughan [aut, cre],\n Posit Software, PBC [cph, fnd],\n Tree-sitter authors [cph] (Tree-sitter C library)", - "Maintainer": "Davis Vaughan ", - "Repository": "CRAN", - "Date/Publication": "2024-06-24 15:30:05 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:57:52 UTC; unix" - } - }, - "treesitter.r": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Package": "treesitter.r", - "Title": "'R' Grammar for 'Tree-Sitter'", - "Version": "1.1.0", - "Authors@R": "c(\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Tree-sitter authors\", role = \"cph\",\n comment = \"Tree-sitter C headers and parser.c\")\n )", - "Description": "Provides bindings to an 'R' grammar for 'Tree-sitter', to be\n used alongside the 'treesitter' package. 'Tree-sitter' builds concrete\n syntax trees for source files of any language, and can efficiently\n update those syntax trees as the source file is edited.", - "License": "MIT + file LICENSE", - "URL": "https://github.com/r-lib/tree-sitter-r", - "BugReports": "https://github.com/r-lib/tree-sitter-r/issues", - "Depends": "R (>= 4.3.0)", - "Suggests": "testthat (>= 3.0.0), treesitter", - "Config/build/bootstrap": "TRUE", - "Config/Needs/website": "tidyverse/tidytemplate", - "Config/testthat/edition": "3", - "Encoding": "UTF-8", - "RoxygenNote": "7.3.2", - "NeedsCompilation": "yes", - "Packaged": "2024-09-06 20:41:54 UTC; davis", - "Author": "Davis Vaughan [aut, cre],\n Posit Software, PBC [cph, fnd],\n Tree-sitter authors [cph] (Tree-sitter C headers and parser.c)", - "Maintainer": "Davis Vaughan ", - "Repository": "CRAN", - "Date/Publication": "2024-09-06 21:00:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:57:57 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-15 15:50:03 UTC", + "Built": "R 4.5.0; ; 2025-04-16 04:39:53 UTC; unix" } }, "tseries": { @@ -4918,9 +4753,10 @@ "Packaged": "2024-09-23 09:27:59 UTC; hornik", "Author": "Adrian Trapletti [aut],\n Kurt Hornik [aut, cre] (),\n Blake LeBaron [ctb] (BDS test code)", "Maintainer": "Kurt Hornik ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-09-23 10:00:16 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:45 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-08 03:12:51 UTC; unix" } }, "tsfeatures": { @@ -4946,9 +4782,9 @@ "Packaged": "2023-08-28 13:23:56 UTC; robjhyndman", "Author": "Rob Hyndman [aut, cre] (),\n Yanfei Kang [aut] (),\n Pablo Montero-Manso [aut],\n Mitchell O'Hara-Wild [aut] (),\n Thiyanga Talagala [aut] (),\n Earo Wang [aut] (),\n Yangzhuoran Yang [aut],\n Souhaib Ben Taieb [ctb],\n Cao Hanqing [ctb],\n D K Lake [ctb],\n Nikolay Laptev [ctb],\n J R Moorman [ctb],\n Bohan Zhang [ctb]", "Maintainer": "Rob Hyndman ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-08-28 14:00:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:57:44 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-09 06:52:47 UTC; unix" } }, "tzdb": { @@ -4957,27 +4793,27 @@ "description": { "Package": "tzdb", "Title": "Time Zone Database Information", - "Version": "0.4.0", + "Version": "0.5.0", "Authors@R": "c(\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Howard\", \"Hinnant\", role = \"cph\",\n comment = \"Author of the included date library\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", "Description": "Provides an up-to-date copy of the Internet Assigned Numbers\n Authority (IANA) Time Zone Database. It is updated periodically to\n reflect changes made by political bodies to time zone boundaries, UTC\n offsets, and daylight saving time rules. Additionally, this package\n provides a C++ interface for working with the 'date' library. 'date'\n provides comprehensive support for working with dates and date-times,\n which this package exposes to make it easier for other R packages to\n utilize. Headers are provided for calendar specific calculations,\n along 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)", + "Depends": "R (>= 4.0.0)", "Suggests": "covr, testthat (>= 3.0.0)", - "LinkingTo": "cpp11 (>= 0.4.2)", + "LinkingTo": "cpp11 (>= 0.5.2)", "Biarch": "yes", "Config/Needs/website": "tidyverse/tidytemplate", "Config/testthat/edition": "3", "Encoding": "UTF-8", - "RoxygenNote": "7.2.3", + "RoxygenNote": "7.3.2", "NeedsCompilation": "yes", - "Packaged": "2023-05-12 12:40:06 UTC; davis", + "Packaged": "2025-03-14 18:41:13 UTC; davis", "Author": "Davis Vaughan [aut, cre],\n Howard Hinnant [cph] (Author of the included date library),\n Posit Software, PBC [cph, fnd]", "Maintainer": "Davis Vaughan ", - "Repository": "CRAN", - "Date/Publication": "2023-05-12 23:00:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:51:52 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-03-15 22:50:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:42 UTC; unix" } }, "urca": { @@ -4998,9 +4834,10 @@ "Packaged": "2024-05-25 16:28:23 UTC; bp", "Author": "Bernhard Pfaff [aut, cre],\n Eric Zivot [ctb],\n Matthieu Stigler [ctb]", "Maintainer": "Bernhard Pfaff ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-05-27 12:20:03 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:54:47 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:48 UTC; unix" } }, "utf8": { @@ -5009,25 +4846,25 @@ "description": { "Package": "utf8", "Title": "Unicode Text Processing", - "Version": "1.2.4", - "Authors@R": "\n c(person(given = c(\"Patrick\", \"O.\"),\n family = \"Perry\",\n role = c(\"aut\", \"cph\")),\n person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = \"cre\",\n email = \"kirill@cynkra.com\"),\n person(given = \"Unicode, Inc.\",\n role = c(\"cph\", \"dtc\"),\n comment = \"Unicode Character Database\"))", + "Version": "1.2.6", + "Authors@R": "\n c(person(given = c(\"Patrick\", \"O.\"),\n family = \"Perry\",\n role = c(\"aut\", \"cph\")),\n person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = \"cre\",\n email = \"kirill@cynkra.com\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"Unicode, Inc.\",\n role = c(\"cph\", \"dtc\"),\n comment = \"Unicode Character Database\"))", "Description": "Process and print 'UTF-8' encoded international\n text (Unicode). Input, validate, normalize, encode, format, and\n display.", "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", + "URL": "https://krlmlr.github.io/utf8/, https://github.com/krlmlr/utf8", + "BugReports": "https://github.com/krlmlr/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", + "RoxygenNote": "7.3.2.9000", "NeedsCompilation": "yes", - "Packaged": "2023-10-22 13:43:19 UTC; kirill", - "Author": "Patrick O. Perry [aut, cph],\n Kirill Müller [cre],\n Unicode, Inc. [cph, dtc] (Unicode Character Database)", + "Packaged": "2025-06-08 18:28:11 UTC; kirill", + "Author": "Patrick O. Perry [aut, cph],\n Kirill Müller [cre] (ORCID: ),\n Unicode, Inc. [cph, dtc] (Unicode Character Database)", "Maintainer": "Kirill Müller ", - "Repository": "CRAN", - "Date/Publication": "2023-10-22 21:50:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:57 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-06-08 19:00:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-06-09 04:39:33 UTC; unix" } }, "uuid": { @@ -5047,9 +4884,10 @@ "BugReports": "https://github.com/s-u/uuid/issues", "NeedsCompilation": "yes", "Packaged": "2024-07-29 03:16:54 UTC; rforge", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-29 07:09:22 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:52:52 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:12 UTC; unix" } }, "vctrs": { @@ -5077,9 +4915,9 @@ "Packaged": "2023-12-01 16:27:12 UTC; davis", "Author": "Hadley Wickham [aut],\n Lionel Henry [aut],\n Davis Vaughan [aut, cre],\n data.table team [cph] (Radix sort based on data.table's forder() and\n their contribution to R's order()),\n Posit Software, PBC [cph, fnd]", "Maintainer": "Davis Vaughan ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-12-01 23:50:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:10 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:43:04 UTC; unix" } }, "viridisLite": { @@ -5104,9 +4942,9 @@ "NeedsCompilation": "no", "Packaged": "2023-05-02 21:38:46 UTC; simon", "Author": "Simon Garnier [aut, cre],\n Noam Ross [ctb, cph],\n Bob Rudis [ctb, cph],\n Marco Sciaini [ctb, cph],\n Antônio Pedro Camargo [ctb, cph],\n Cédric Scherer [ctb, cph]", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-05-02 23:50:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:54:17 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:42:10 UTC; unix" } }, "vroom": { @@ -5137,9 +4975,9 @@ "Packaged": "2023-12-05 16:46:59 UTC; jenny", "Author": "Jim Hester [aut] (),\n Hadley Wickham [aut] (),\n Jennifer Bryan [aut, cre] (),\n Shelby Bearrows [ctb],\n https://github.com/mandreyel/ [cph] (mio library),\n Jukka Jylänki [cph] (grisu3 implementation),\n Mikkel Jørgensen [cph] (grisu3 implementation),\n Posit Software, PBC [cph, fnd]", "Maintainer": "Jennifer Bryan ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-12-05 23:50:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:56:22 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:44:38 UTC; unix" } }, "waldo": { @@ -5148,7 +4986,7 @@ "description": { "Package": "waldo", "Title": "Find Differences Between R Objects", - "Version": "0.6.1", + "Version": "0.6.2", "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", "Description": "Compare complex R objects and reveal the key differences.\n Designed particularly for use in testing packages where being able to\n quickly isolate key differences makes understanding test failures much\n easier.", "License": "MIT + file LICENSE", @@ -5162,12 +5000,12 @@ "Encoding": "UTF-8", "RoxygenNote": "7.3.2", "NeedsCompilation": "no", - "Packaged": "2024-11-07 15:32:32 UTC; hadleywickham", + "Packaged": "2025-07-11 13:27:03 UTC; hadleywickham", "Author": "Hadley Wickham [aut, cre],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", - "Date/Publication": "2024-11-07 20:50:01 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:57:18 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-07-11 15:20:02 UTC", + "Built": "R 4.5.0; ; 2025-07-12 04:40:17 UTC; unix" } }, "warp": { @@ -5192,9 +5030,9 @@ "Packaged": "2023-11-02 13:46:26 UTC; davis", "Author": "Davis Vaughan [aut, cre],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Davis Vaughan ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2023-11-02 17:40:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:57:32 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-09 06:43:01 UTC; unix" } }, "websocket": { @@ -5202,7 +5040,7 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "websocket", - "Version": "1.4.2", + "Version": "1.4.4", "Title": "'WebSocket' Client Library", "Description": "Provides a 'WebSocket' client interface for R.\n 'WebSocket' is a protocol for low-overhead real-time communication:\n .", "Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@posit.co\"),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"),\n person(\"Alan\", \"Dipert\", role = \"aut\"),\n person(\"Barbara\", \"Borges\", role = \"aut\"),\n person(family = \"Posit, PBC\", role = \"cph\"),\n person(\"Peter\", \"Thorson\", role = c(\"ctb\", \"cph\"), comment = \"WebSocket++ library\"),\n person(\"René\", \"Nyffenegger\", role = c(\"ctb\", \"cph\"), comment = \"Base 64 library\"),\n person(\"Micael\", \"Hildenborg\", role = c(\"ctb\", \"cph\"), comment = \"SHA1 library\"),\n person(family = \"Aladdin Enterprises\", role = \"cph\", comment = \"MD5 library\"),\n person(\"Bjoern\", \"Hoehrmann\", role = c(\"ctb\", \"cph\"), comment = \"UTF8 Validation library\"))", @@ -5217,12 +5055,12 @@ "Suggests": "httpuv, testthat, knitr, rmarkdown", "VignetteBuilder": "knitr", "NeedsCompilation": "yes", - "Packaged": "2024-07-22 17:16:18 UTC; winston", + "Packaged": "2025-04-09 10:46:21 UTC; cg334", "Author": "Winston Chang [aut, cre],\n Joe Cheng [aut],\n Alan Dipert [aut],\n Barbara Borges [aut],\n Posit, PBC [cph],\n Peter Thorson [ctb, cph] (WebSocket++ library),\n René Nyffenegger [ctb, cph] (Base 64 library),\n Micael Hildenborg [ctb, cph] (SHA1 library),\n Aladdin Enterprises [cph] (MD5 library),\n Bjoern Hoehrmann [ctb, cph] (UTF8 Validation library)", "Maintainer": "Winston Chang ", - "Repository": "CRAN", - "Date/Publication": "2024-07-22 22:20:01 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:51:30 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-10 09:00:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 14:38:24 UTC; unix" } }, "withr": { @@ -5250,9 +5088,9 @@ "Packaged": "2024-10-28 10:58:18 UTC; lionel", "Author": "Jim Hester [aut],\n Lionel Henry [aut, cre],\n Kirill Müller [aut],\n Kevin Ushey [aut],\n Hadley Wickham [aut],\n Winston Chang [aut],\n Jennifer Bryan [ctb],\n Richard Cotton [ctb],\n Posit Software, PBC [cph, fnd]", "Maintainer": "Lionel Henry ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-10-28 13:30:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:48:45 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-06 04:42:10 UTC; unix" } }, "xfun": { @@ -5262,12 +5100,12 @@ "Package": "xfun", "Type": "Package", "Title": "Supporting Functions for Packages Maintained by 'Yihui Xie'", - "Version": "0.50", - "Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Wush\", \"Wu\", role = \"ctb\"),\n person(\"Daijiang\", \"Li\", role = \"ctb\"),\n person(\"Xianying\", \"Tan\", role = \"ctb\"),\n person(\"Salim\", \"Brüggemann\", role = \"ctb\", email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\"),\n person()\n )", + "Version": "0.52", + "Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\", \"cph\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\", URL = \"https://yihui.org\")),\n person(\"Wush\", \"Wu\", role = \"ctb\"),\n person(\"Daijiang\", \"Li\", role = \"ctb\"),\n person(\"Xianying\", \"Tan\", role = \"ctb\"),\n person(\"Salim\", \"Brüggemann\", role = \"ctb\", email = \"salim-b@pm.me\", comment = c(ORCID = \"0000-0002-5329-5987\")),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\"),\n person()\n )", "Description": "Miscellaneous functions commonly used in other packages maintained by 'Yihui Xie'.", "Depends": "R (>= 3.2.0)", "Imports": "grDevices, stats, tools", - "Suggests": "testit, parallel, codetools, methods, rstudioapi, tinytex (>=\n0.30), mime, litedown (>= 0.4), commonmark, knitr (>= 1.47),\nremotes, pak, rhub, renv, curl, xml2, jsonlite, magick, yaml,\nqs, rmarkdown", + "Suggests": "testit, parallel, codetools, methods, rstudioapi, tinytex (>=\n0.30), mime, litedown (>= 0.4), commonmark, knitr (>= 1.50),\nremotes, pak, curl, xml2, jsonlite, magick, yaml, qs", "License": "MIT + file LICENSE", "URL": "https://github.com/yihui/xfun", "BugReports": "https://github.com/yihui/xfun/issues", @@ -5275,12 +5113,12 @@ "RoxygenNote": "7.3.2", "VignetteBuilder": "litedown", "NeedsCompilation": "yes", - "Packaged": "2025-01-07 14:01:22 UTC; runner", - "Author": "Yihui Xie [aut, cre, cph] (),\n Wush Wu [ctb],\n Daijiang Li [ctb],\n Xianying Tan [ctb],\n Salim Brüggemann [ctb] (),\n Christophe Dervieux [ctb]", + "Packaged": "2025-04-02 19:53:53 UTC; runner", + "Author": "Yihui Xie [aut, cre, cph] (,\n https://yihui.org),\n Wush Wu [ctb],\n Daijiang Li [ctb],\n Xianying Tan [ctb],\n Salim Brüggemann [ctb] (),\n Christophe Dervieux [ctb]", "Maintainer": "Yihui Xie ", - "Repository": "CRAN", - "Date/Publication": "2025-01-07 15:20:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:47 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-02 20:40:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:12 UTC; unix" } }, "xml2": { @@ -5289,15 +5127,15 @@ "description": { "Package": "xml2", "Title": "Parse XML", - "Version": "1.3.6", - "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Jeroen\", \"Ooms\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"R Foundation\", role = \"ctb\",\n comment = \"Copy of R-project homepage cached as example\")\n )", - "Description": "Work with XML files using a simple, consistent interface.\n Built on top of the 'libxml2' C library.", + "Version": "1.3.8", + "Authors@R": "c(\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Jeroen\", \"Ooms\", email = \"jeroenooms@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"R Foundation\", role = \"ctb\",\n comment = \"Copy of R-project homepage cached as example\")\n )", + "Description": "Bindings to 'libxml2' for working with XML data using a simple, \n consistent interface based on 'XPath' expressions. Also supports XML schema\n validation; for 'XSLT' transformations see the 'xslt' package.", "License": "MIT + file LICENSE", - "URL": "https://xml2.r-lib.org/, https://github.com/r-lib/xml2", + "URL": "https://xml2.r-lib.org, https://r-lib.r-universe.dev/xml2", "BugReports": "https://github.com/r-lib/xml2/issues", "Depends": "R (>= 3.6.0)", "Imports": "cli, methods, rlang (>= 1.1.0)", - "Suggests": "covr, curl, httr, knitr, magrittr, mockery, rmarkdown,\ntestthat (>= 3.0.0)", + "Suggests": "covr, curl, httr, knitr, magrittr, mockery, rmarkdown,\ntestthat (>= 3.2.0), xslt", "VignetteBuilder": "knitr", "Config/Needs/website": "tidyverse/tidytemplate", "Encoding": "UTF-8", @@ -5306,12 +5144,12 @@ "Collate": "'S4.R' 'as_list.R' 'xml_parse.R' 'as_xml_document.R'\n'classes.R' 'format.R' 'import-standalone-obj-type.R'\n'import-standalone-purrr.R' 'import-standalone-types-check.R'\n'init.R' 'nodeset_apply.R' 'paths.R' 'utils.R' 'xml2-package.R'\n'xml_attr.R' 'xml_children.R' 'xml_document.R' 'xml_find.R'\n'xml_missing.R' 'xml_modify.R' 'xml_name.R' 'xml_namespaces.R'\n'xml_node.R' 'xml_nodeset.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'", "Config/testthat/edition": "3", "NeedsCompilation": "yes", - "Packaged": "2023-12-04 14:50:27 UTC; hadleywickham", - "Author": "Hadley Wickham [aut, cre],\n Jim Hester [aut],\n Jeroen Ooms [aut],\n Posit Software, PBC [cph, fnd],\n R Foundation [ctb] (Copy of R-project homepage cached as example)", - "Maintainer": "Hadley Wickham ", - "Repository": "CRAN", - "Date/Publication": "2023-12-04 16:30:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:49:02 UTC; unix" + "Packaged": "2025-03-14 14:37:00 UTC; jeroen", + "Author": "Hadley Wickham [aut],\n Jim Hester [aut],\n Jeroen Ooms [aut, cre],\n Posit Software, PBC [cph, fnd],\n R Foundation [ctb] (Copy of R-project homepage cached as example)", + "Maintainer": "Jeroen Ooms ", + "Repository": "RSPM", + "Date/Publication": "2025-03-14 19:30:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:58 UTC; unix" } }, "xmlparsedata": { @@ -5334,9 +5172,9 @@ "Encoding": "UTF-8", "NeedsCompilation": "no", "Packaged": "2021-03-06 10:52:40 UTC; gaborcsardi", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2021-03-06 11:10:02 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:49:06 UTC; unix" + "Built": "R 4.5.0; ; 2025-04-09 06:28:28 UTC; unix" } }, "xtable": { @@ -5356,12 +5194,13 @@ "URL": "http://xtable.r-forge.r-project.org/", "Depends": "R (>= 2.10.0)", "License": "GPL (>= 2)", - "Repository": "CRAN", + "Repository": "RSPM", "NeedsCompilation": "no", "Packaged": "2019-04-21 10:56:51 UTC; dsco036", "Author": "David B. Dahl [aut],\n David Scott [aut, cre],\n Charles Roosen [aut],\n Arni Magnusson [aut],\n Jonathan Swinton [aut],\n Ajay Shah [ctb],\n Arne Henningsen [ctb],\n Benno Puetz [ctb],\n Bernhard Pfaff [ctb],\n Claudio Agostinelli [ctb],\n Claudius Loehnert [ctb],\n David Mitchell [ctb],\n David Whiting [ctb],\n Fernando da Rosa [ctb],\n Guido Gay [ctb],\n Guido Schulz [ctb],\n Ian Fellows [ctb],\n Jeff Laake [ctb],\n John Walker [ctb],\n Jun Yan [ctb],\n Liviu Andronic [ctb],\n Markus Loecher [ctb],\n Martin Gubri [ctb],\n Matthieu Stigler [ctb],\n Robert Castelo [ctb],\n Seth Falcon [ctb],\n Stefan Edwards [ctb],\n Sven Garbade [ctb],\n Uwe Ligges [ctb]", "Date/Publication": "2019-04-21 12:20:03 UTC", - "Built": "R 4.5.0; ; 2025-04-16 13:53:55 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; ; 2025-04-06 04:42:13 UTC; unix" } }, "xts": { @@ -5387,9 +5226,9 @@ "Packaged": "2024-10-15 15:25:09 UTC; josh", "Author": "Jeffrey A. Ryan [aut, cph],\n Joshua M. Ulrich [cre, aut],\n Ross Bennett [ctb],\n Corwin Joy [ctb]", "Maintainer": "Joshua M. Ulrich ", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-10-15 17:30:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:52 UTC; unix" + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-11 19:14:08 UTC; unix" } }, "yaml": { @@ -5410,9 +5249,37 @@ "BugReports": "https://github.com/vubiostat/r-yaml/issues", "NeedsCompilation": "yes", "Packaged": "2024-07-22 15:44:18 UTC; garbetsp", - "Repository": "CRAN", + "Repository": "RSPM", "Date/Publication": "2024-07-26 15:10:02 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:48:50 UTC; unix" + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-06 04:42:14 UTC; unix" + } + }, + "zip": { + "Source": "CRAN", + "Repository": "https://packagemanager.posit.co/cran/latest", + "description": { + "Package": "zip", + "Title": "Cross-Platform 'zip' Compression", + "Version": "2.3.3", + "Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Kuba\", \"Podgórski\", role = \"ctb\"),\n person(\"Rich\", \"Geldreich\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"),\n comment = c(ROR = \"03wc8by49\"))\n )", + "Description": "Cross-Platform 'zip' Compression Library. A replacement for\n the 'zip' function, that does not require any additional external\n tools on any platform.", + "License": "MIT + file LICENSE", + "URL": "https://github.com/r-lib/zip, https://r-lib.github.io/zip/", + "BugReports": "https://github.com/r-lib/zip/issues", + "Suggests": "covr, pillar, processx, R6, testthat, withr", + "Config/Needs/website": "tidyverse/tidytemplate", + "Config/testthat/edition": "3", + "Config/usethis/last-upkeep": "2025-05-07", + "Encoding": "UTF-8", + "RoxygenNote": "7.3.2.9000", + "NeedsCompilation": "yes", + "Packaged": "2025-05-13 13:31:44 UTC; gaborcsardi", + "Author": "Gábor Csárdi [aut, cre],\n Kuba Podgórski [ctb],\n Rich Geldreich [ctb],\n Posit Software, PBC [cph, fnd] (ROR: )", + "Maintainer": "Gábor Csárdi ", + "Repository": "RSPM", + "Date/Publication": "2025-05-13 14:10:02 UTC", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-05-14 05:26:56 UTC; unix" } }, "zoo": { @@ -5420,32 +5287,33 @@ "Repository": "https://packagemanager.posit.co/cran/latest", "description": { "Package": "zoo", - "Version": "1.8-12", - "Date": "2023-04-11", + "Version": "1.8-14", + "Date": "2025-04-09", "Title": "S3 Infrastructure for Regular and Irregular Time Series (Z's\nOrdered Observations)", "Authors@R": "c(person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\",\n comment = c(ORCID = \"0000-0003-0918-3766\")),\n person(given = \"Gabor\", family = \"Grothendieck\", role = \"aut\", email = \"ggrothendieck@gmail.com\"),\n person(given = c(\"Jeffrey\", \"A.\"), family = \"Ryan\", role = \"aut\", email = \"jeff.a.ryan@gmail.com\"),\n person(given = c(\"Joshua\", \"M.\"), family = \"Ulrich\", role = \"ctb\", email = \"josh.m.ulrich@gmail.com\"),\n person(given = \"Felix\", family = \"Andrews\", role = \"ctb\", email = \"felix@nfrac.org\"))", "Description": "An S3 class with methods for totally ordered indexed\n observations. It is particularly aimed at irregular time series\n of numeric vectors/matrices and factors. zoo's key design goals\n are independence of a particular index/date/time class and\n consistency with ts and base R by providing methods to extend\n standard generics.", "Depends": "R (>= 3.1.0), stats", - "Suggests": "AER, coda, chron, ggplot2 (>= 3.0.0), mondate, scales,\nstinepack, strucchange, timeDate, timeSeries, tis, tseries, xts", + "Suggests": "AER, coda, chron, ggplot2 (>= 3.5.0), mondate, scales,\nstinepack, strucchange, timeDate, timeSeries, tinyplot, tis,\ntseries, xts", "Imports": "utils, graphics, grDevices, lattice (>= 0.20-27)", "License": "GPL-2 | GPL-3", "URL": "https://zoo.R-Forge.R-project.org/", "NeedsCompilation": "yes", - "Packaged": "2023-04-11 21:24:32 UTC; zeileis", + "Packaged": "2025-04-09 16:51:51 UTC; zeileis", "Author": "Achim Zeileis [aut, cre] (),\n Gabor Grothendieck [aut],\n Jeffrey A. Ryan [aut],\n Joshua M. Ulrich [ctb],\n Felix Andrews [ctb]", "Maintainer": "Achim Zeileis ", - "Repository": "CRAN", - "Date/Publication": "2023-04-13 12:13:20 UTC", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-16 13:47:50 UTC; unix" + "Repository": "RSPM", + "Date/Publication": "2025-04-10 06:40:02 UTC", + "Encoding": "UTF-8", + "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-11 19:13:49 UTC; unix" } } }, "files": { "_brand.yml": { - "checksum": "8146f7b0121fb6f39b9e5188b47bcaf2" + "checksum": "fb30c80ac12ab9f012fe104f371b4725" }, ".Rprofile": { - "checksum": "3fc0a77e56693fc392e5158cc2e3ddf2" + "checksum": "f5ef09ada9e46463b287a6adf23b48e4" }, "app.R": { "checksum": "d4103b4dcc8bebfefd99294ba6125f11" @@ -5453,9 +5321,6 @@ "app/constants/filter_users.yml": { "checksum": "72bb5d2d41510ad5b64bb2e3782958bd" }, - "app/js/index.js": { - "checksum": "d41d8cd98f00b204e9800998ecf8427e" - }, "app/logic/__init__.R": { "checksum": "fc31f56f5159ebec4d48b75df266087e" }, @@ -5466,10 +5331,10 @@ "checksum": "20453c65c0d1d3a2128743ec0388c8f0" }, "app/logic/config_settings.R": { - "checksum": "944421d95f64ebb2fe3d5915f8043782" + "checksum": "1eff749b1b258c1a2a0652eea270203d" }, "app/logic/connect-extension.R": { - "checksum": "dcc5badede2ee350af2b68fc724db6ef" + "checksum": "6846bace06b3d72676a80e3e3348d8de" }, "app/logic/data_utils.R": { "checksum": "635bbc125bca53c54f68a434b03a327b" @@ -5481,10 +5346,10 @@ "checksum": "e73947f75ea65817f4f0eb14b0be4d99" }, "app/logic/utils.R": { - "checksum": "ac4acd8bf14d0c1a9c62b63bb63e3249" + "checksum": "1ed9f6470432585e9161250aa0d0be5b" }, "app/main.R": { - "checksum": "0b20a3134e20392907c1b98d66885065" + "checksum": "6717e932a5bca273321e8befd04c020a" }, "app/metrics_theme_template.json": { "checksum": "739a6abf73b5bae26e415f0713215c78" @@ -5493,7 +5358,7 @@ "checksum": "8d5e45f80668c8426c9a225e1b7b69f3" }, "app/static/css/app.min.css": { - "checksum": "a4b4f1514983e6c6f5a56401135c60c2" + "checksum": "210db4c2bcb776001e2eed278e325dc9" }, "app/static/favicon.ico": { "checksum": "e72bfa8bd3d984fc2828c1303e165766" @@ -5508,7 +5373,7 @@ "checksum": "41f146dae174df1670e407e3eb18becc" }, "app/styles/components/_about.scss": { - "checksum": "ea65928d2f7343d3f6f040ab154d2a64" + "checksum": "9cadd5001db169e623f8337e9ee26eb5" }, "app/styles/components/_content.scss": { "checksum": "8dea0a7c7c3434f50cfdbacad50804b1" @@ -5541,34 +5406,34 @@ "checksum": "540e8404d0bf10a8237595023d99f5bb" }, "app/view/about_section.R": { - "checksum": "7d3cd435ac5cd35a659a64cd53e36bf6" + "checksum": "07ff68561bcff17a1b58e8a1a8128659" }, "app/view/footer.R": { "checksum": "18353d22eca20424352f6629b48898e2" }, "app/view/navbar_section.R": { - "checksum": "604ec8ca52135a42ce72eda2ee808509" + "checksum": "2f208ca286eac3d19dc374874ac383f5" }, "app/view/session_duration.R": { - "checksum": "708105a984d06c6a46d0ed773d663622" + "checksum": "3f1621b79db6ef1d49acaa5e7ed7876e" }, "app/view/table.R": { "checksum": "6bea8aa7e6a3dd7c422da0b5d9ae6d54" }, "app/view/ui_components.R": { - "checksum": "7ccb25b8f68f17063cca258d0686fce8" + "checksum": "0fd0f04aad252bbc6e0f437e008fb740" }, "config.yml": { "checksum": "7d6d59a6622045a60df01881177ea207" }, - "dependencies.R": { - "checksum": "3586ff13a526a9f85988f127d732ca7e" + "CONTRIBUTE.md": { + "checksum": "2d8e446a69c77281bc99044135bb0648" }, "README.md": { - "checksum": "6663a206dc811bffc400c108e4af941b" + "checksum": "4688c4bf86f7f5c9c86a5f8d3fce072f" }, "renv.lock": { - "checksum": "cbe91363e312d61a07c7c98f055fab11" + "checksum": "43b3b6877ca399c9ceb9b58b2f734c63" }, "rhino.yml": { "checksum": "4f8295c6437069d07ae84698aca26c76" From 9c357c21b88070e55a414847d16dc0380b8ce03a Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 31 Jul 2025 13:37:31 +0200 Subject: [PATCH 24/31] docs: update dead link --- extensions/connect-user-metrics/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/connect-user-metrics/README.md b/extensions/connect-user-metrics/README.md index 90803323..530737a7 100644 --- a/extensions/connect-user-metrics/README.md +++ b/extensions/connect-user-metrics/README.md @@ -59,7 +59,7 @@ Confirm with your Posit Connect admin that instrumentation is enabled. [User Guide Vars]: https://docs.posit.co/connect/user/content-settings/#content-vars -[rsconnect-auth]: https://go.appsilon.com/why-use-rstudio-connect-authentication-user-metrics-app +[rsconnect-auth]: https://go.appsilon.com/rstudio-connect-authentication-user-metrics-app [Configuration appendix]: https://docs.posit.co/connect/admin/appendix/configuration/ [DefaultServerEnv]: https://docs.posit.co/connect/admin/appendix/configuration/#Applications.DefaultServerEnv [DefaultAPIKeyEnv]: https://docs.posit.co/connect/admin/appendix/configuration/#Applications.DefaultAPIKeyEnv From 7fb37de31aea69b831086078925ea9ecd143bdc6 Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 31 Jul 2025 13:44:19 +0200 Subject: [PATCH 25/31] chore: remove unused file --- .../app/logic/connect-extension.R | 7 - extensions/connect-user-metrics/renv.lock | 178 ------------------ 2 files changed, 185 deletions(-) delete mode 100644 extensions/connect-user-metrics/app/logic/connect-extension.R diff --git a/extensions/connect-user-metrics/app/logic/connect-extension.R b/extensions/connect-user-metrics/app/logic/connect-extension.R deleted file mode 100644 index 794aa49b..00000000 --- a/extensions/connect-user-metrics/app/logic/connect-extension.R +++ /dev/null @@ -1,7 +0,0 @@ -box::use( - rsconnect, -) - -rsconnect$writeManifest( - appMode = "shiny" -) diff --git a/extensions/connect-user-metrics/renv.lock b/extensions/connect-user-metrics/renv.lock index e0860eda..6ccbf257 100644 --- a/extensions/connect-user-metrics/renv.lock +++ b/extensions/connect-user-metrics/renv.lock @@ -152,28 +152,6 @@ "Maintainer": "Martin Maechler ", "Repository": "CRAN" }, - "PKI": { - "Package": "PKI", - "Version": "0.1-14", - "Source": "Repository", - "Title": "Public Key Infrastucture for R Based on the X.509 Standard", - "Author": "Simon Urbanek ", - "Maintainer": "Simon Urbanek ", - "Depends": [ - "R (>= 2.9.0)", - "base64enc" - ], - "Enhances": [ - "gmp" - ], - "Description": "Public Key Infrastucture functions such as verifying certificates, RSA encription and signing which can be used to build PKI infrastructure and perform cryptographic tasks.", - "License": "GPL-2 | GPL-3 | file LICENSE", - "URL": "http://www.rforge.net/PKI", - "SystemRequirements": "OpenSSL library and headers (openssl-dev or similar)", - "NeedsCompilation": "yes", - "Repository": "RSPM", - "Encoding": "UTF-8" - }, "R.cache": { "Package": "R.cache", "Version": "0.17.0", @@ -426,37 +404,6 @@ "Repository": "RSPM", "Encoding": "UTF-8" }, - "RcppTOML": { - "Package": "RcppTOML", - "Version": "0.2.3", - "Source": "Repository", - "Type": "Package", - "Title": "'Rcpp' Bindings to Parser for \"Tom's Obvious Markup Language\"", - "Date": "2025-03-08", - "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Mark\", \"Gillard\", role = \"aut\", comment = \"Author of 'toml++' header library\"))", - "Description": "The configuration format defined by 'TOML' (which expands to \"Tom's Obvious Markup Language\") specifies an excellent format (described at ) suitable for both human editing as well as the common uses of a machine-readable format. This package uses 'Rcpp' to connect to the 'toml++' parser written by Mark Gillard to R.", - "SystemRequirements": "A C++17 compiler", - "BugReports": "https://github.com/eddelbuettel/rcpptoml/issues", - "URL": "http://dirk.eddelbuettel.com/code/rcpp.toml.html", - "Imports": [ - "Rcpp (>= 1.0.8)" - ], - "Depends": [ - "R (>= 3.3.0)" - ], - "LinkingTo": [ - "Rcpp" - ], - "Suggests": [ - "tinytest" - ], - "License": "GPL (>= 2)", - "NeedsCompilation": "yes", - "Author": "Dirk Eddelbuettel [aut, cre] (), Mark Gillard [aut] (Author of 'toml++' header library)", - "Maintainer": "Dirk Eddelbuettel ", - "Repository": "RSPM", - "Encoding": "UTF-8" - }, "SQUAREM": { "Package": "SQUAREM", "Version": "2021.1", @@ -3852,42 +3799,6 @@ "Maintainer": "Jeroen Ooms ", "Repository": "CRAN" }, - "packrat": { - "Package": "packrat", - "Version": "0.9.3", - "Source": "Repository", - "Type": "Package", - "Title": "A Dependency Management System for Projects and their R Package Dependencies", - "Authors@R": "c( person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")), person(\"Toph\", \"Allen\", role = \"aut\"), person(\"Kevin\", \"Ushey\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\"), person(\"Joe\", \"Cheng\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", - "Description": "Manage the R packages your project depends on in an isolated, portable, and reproducible way.", - "License": "GPL-2", - "URL": "https://github.com/rstudio/packrat", - "BugReports": "https://github.com/rstudio/packrat/issues", - "Depends": [ - "R (>= 3.0.0)" - ], - "Imports": [ - "tools", - "utils" - ], - "Suggests": [ - "devtools", - "httr", - "knitr", - "mockery", - "rmarkdown", - "testthat (>= 3.0.0)", - "webfakes", - "withr" - ], - "Config/testthat/edition": "3", - "Encoding": "UTF-8", - "RoxygenNote": "7.3.2", - "NeedsCompilation": "no", - "Author": "Aron Atkins [aut, cre], Toph Allen [aut], Kevin Ushey [aut], Jonathan McPherson [aut], Joe Cheng [aut], JJ Allaire [aut], Posit Software, PBC [cph, fnd]", - "Maintainer": "Aron Atkins ", - "Repository": "CRAN" - }, "padr": { "Package": "padr", "Version": "0.6.3", @@ -5238,64 +5149,6 @@ "Maintainer": "Hannah Frick ", "Repository": "CRAN" }, - "rsconnect": { - "Package": "rsconnect", - "Version": "1.5.0", - "Source": "Repository", - "Type": "Package", - "Title": "Deploy Docs, Apps, and APIs to 'Posit Connect', 'shinyapps.io', and 'RPubs'", - "Authors@R": "c( person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")), person(\"Toph\", \"Allen\", role = \"aut\"), person(\"Hadley\", \"Wickham\", role = \"aut\"), person(\"Jonathan\", \"McPherson\", role = \"aut\"), person(\"JJ\", \"Allaire\", role = \"aut\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", - "Description": "Programmatic deployment interface for 'RPubs', 'shinyapps.io', and 'Posit Connect'. Supported content types include R Markdown documents, Shiny applications, Plumber APIs, plots, and static web content.", - "License": "GPL-2", - "URL": "https://rstudio.github.io/rsconnect/, https://github.com/rstudio/rsconnect", - "BugReports": "https://github.com/rstudio/rsconnect/issues", - "Depends": [ - "R (>= 3.5.0)" - ], - "Imports": [ - "cli", - "curl", - "digest", - "jsonlite", - "lifecycle", - "openssl (>= 2.0.0)", - "PKI", - "packrat (>= 0.6)", - "renv (>= 1.0.0)", - "rlang (>= 1.0.0)", - "rstudioapi (>= 0.5)", - "snowflakeauth", - "tools", - "yaml (>= 2.1.5)", - "utils" - ], - "Suggests": [ - "Biobase", - "BiocManager", - "foreign", - "knitr", - "MASS", - "plumber (>= 0.3.2)", - "quarto", - "RCurl", - "reticulate", - "rmarkdown (>= 1.1)", - "shiny", - "testthat (>= 3.1.9)", - "webfakes", - "withr" - ], - "VignetteBuilder": "knitr, rmarkdown", - "Config/Needs/website": "tidyverse/tidytemplate", - "Config/testthat/edition": "3", - "Config/testthat/parallel": "true", - "Encoding": "UTF-8", - "RoxygenNote": "7.3.2", - "NeedsCompilation": "no", - "Author": "Aron Atkins [aut, cre], Toph Allen [aut], Hadley Wickham [aut], Jonathan McPherson [aut], JJ Allaire [aut], Posit Software, PBC [cph, fnd]", - "Maintainer": "Aron Atkins ", - "Repository": "CRAN" - }, "rstudioapi": { "Package": "rstudioapi", "Version": "0.17.1", @@ -5670,37 +5523,6 @@ "Maintainer": "Davis Vaughan ", "Repository": "CRAN" }, - "snowflakeauth": { - "Package": "snowflakeauth", - "Version": "0.1.2", - "Source": "Repository", - "Title": "Authentication Helpers for 'Snowflake'", - "Authors@R": "c( person(\"Aaron\", \"Jacobs\", , \"aaron.jacobs@posit.co\", role = c(\"aut\")), person(\"E. David\", \"Aja\", , \"david@posit.co\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )", - "Description": "Authentication helpers for 'Snowflake'. It provides compatibility with authentication approaches supported by the 'Snowflake Connector for Python' and the 'Snowflake CLI' .", - "License": "MIT + file LICENSE", - "Encoding": "UTF-8", - "Imports": [ - "cli", - "curl", - "jsonlite", - "RcppTOML", - "rlang" - ], - "Suggests": [ - "jose", - "openssl", - "testthat (>= 3.0.0)", - "withr" - ], - "RoxygenNote": "7.3.2", - "Config/testthat/edition": "3", - "URL": "https://posit-dev.github.io/snowflakeauth/, https://github.com/posit-dev/snowflakeauth", - "BugReports": "https://github.com/posit-dev/snowflakeauth/issues", - "NeedsCompilation": "no", - "Author": "Aaron Jacobs [aut], E. David Aja [aut, cre], Posit Software, PBC [cph, fnd]", - "Maintainer": "E. David Aja ", - "Repository": "CRAN" - }, "sourcetools": { "Package": "sourcetools", "Version": "0.1.7-1", From e3490d207b3006a41583c84df96a9b21a26eb802 Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 31 Jul 2025 13:44:40 +0200 Subject: [PATCH 26/31] chore: update manifest.json --- extensions/connect-user-metrics/manifest.json | 167 +----------------- 1 file changed, 3 insertions(+), 164 deletions(-) diff --git a/extensions/connect-user-metrics/manifest.json b/extensions/connect-user-metrics/manifest.json index d72797b3..82095c16 100644 --- a/extensions/connect-user-metrics/manifest.json +++ b/extensions/connect-user-metrics/manifest.json @@ -151,29 +151,6 @@ "Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:29:52 UTC; unix" } }, - "PKI": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Package": "PKI", - "Version": "0.1-14", - "Title": "Public Key Infrastucture for R Based on the X.509 Standard", - "Author": "Simon Urbanek ", - "Maintainer": "Simon Urbanek ", - "Depends": "R (>= 2.9.0), base64enc", - "Enhances": "gmp", - "Description": "Public Key Infrastucture functions such as verifying certificates, RSA encription and signing which can be used to build PKI infrastructure and perform cryptographic tasks.", - "License": "GPL-2 | GPL-3 | file LICENSE", - "URL": "http://www.rforge.net/PKI", - "SystemRequirements": "OpenSSL library and headers (openssl-dev or\nsimilar)", - "NeedsCompilation": "yes", - "Packaged": "2024-06-15 19:22:05 UTC; rforge", - "Repository": "RSPM", - "Date/Publication": "2024-06-15 19:40:02 UTC", - "Encoding": "UTF-8", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-09 05:57:02 UTC; unix" - } - }, "R.cache": { "Source": "CRAN", "Repository": "https://packagemanager.posit.co/cran/latest", @@ -408,35 +385,6 @@ "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 13:55:20 UTC; unix" } }, - "RcppTOML": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Package": "RcppTOML", - "Type": "Package", - "Title": "'Rcpp' Bindings to Parser for \"Tom's Obvious Markup Language\"", - "Version": "0.2.3", - "Date": "2025-03-08", - "Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Mark\", \"Gillard\", role = \"aut\",\n comment = \"Author of 'toml++' header library\"))", - "Description": "The configuration format defined by 'TOML' (which expands to\n \"Tom's Obvious Markup Language\") specifies an excellent format\n (described at ) suitable for both human editing\n as well as the common uses of a machine-readable format. This package\n uses 'Rcpp' to connect to the 'toml++' parser written by Mark Gillard\n to R.", - "SystemRequirements": "A C++17 compiler", - "BugReports": "https://github.com/eddelbuettel/rcpptoml/issues", - "URL": "http://dirk.eddelbuettel.com/code/rcpp.toml.html", - "Imports": "Rcpp (>= 1.0.8)", - "Depends": "R (>= 3.3.0)", - "LinkingTo": "Rcpp", - "Suggests": "tinytest", - "License": "GPL (>= 2)", - "NeedsCompilation": "yes", - "Packaged": "2025-03-08 13:54:57 UTC; edd", - "Author": "Dirk Eddelbuettel [aut, cre] (),\n Mark Gillard [aut] (Author of 'toml++' header library)", - "Maintainer": "Dirk Eddelbuettel ", - "Repository": "RSPM", - "Date/Publication": "2025-03-08 14:30:06 UTC", - "Encoding": "UTF-8", - "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-07-03 14:00:57 UTC; unix" - } - }, "SQUAREM": { "Source": "CRAN", "Repository": "https://packagemanager.posit.co/cran/latest", @@ -3025,41 +2973,6 @@ "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-05-27 04:55:44 UTC; unix" } }, - "packrat": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Type": "Package", - "Package": "packrat", - "Title": "A Dependency Management System for Projects and their R Package\nDependencies", - "Version": "0.9.3", - "Authors@R": "c(\n person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Toph\", \"Allen\", role = \"aut\"),\n person(\"Kevin\", \"Ushey\", role = \"aut\"),\n person(\"Jonathan\", \"McPherson\", role = \"aut\"),\n person(\"Joe\", \"Cheng\", role = \"aut\"),\n person(\"JJ\", \"Allaire\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", - "Description": "Manage the R packages your project depends on in an isolated,\n portable, and reproducible way.", - "License": "GPL-2", - "URL": "https://github.com/rstudio/packrat", - "BugReports": "https://github.com/rstudio/packrat/issues", - "Depends": "R (>= 3.0.0)", - "Imports": "tools, utils", - "Suggests": "devtools, httr, knitr, mockery, rmarkdown, testthat (>=\n3.0.0), webfakes, withr", - "Config/testthat/edition": "3", - "Encoding": "UTF-8", - "RoxygenNote": "7.3.2", - "NeedsCompilation": "no", - "Packaged": "2025-06-16 19:37:19 UTC; aron", - "Author": "Aron Atkins [aut, cre],\n Toph Allen [aut],\n Kevin Ushey [aut],\n Jonathan McPherson [aut],\n Joe Cheng [aut],\n JJ Allaire [aut],\n Posit Software, PBC [cph, fnd]", - "Maintainer": "Aron Atkins ", - "Repository": "RSPM", - "Date/Publication": "2025-06-16 20:00:02 UTC", - "Built": "R 4.5.0; ; 2025-06-17 04:39:30 UTC; unix", - "RemoteType": "standard", - "RemoteRef": "packrat", - "RemotePkgRef": "packrat", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "aarch64-apple-darwin20", - "RemoteSha": "0.9.3" - } - }, "padr": { "Source": "CRAN", "Repository": "https://packagemanager.posit.co/cran/latest", @@ -3980,44 +3893,6 @@ "Built": "R 4.5.1; ; 2025-07-31 10:41:40 UTC; unix" } }, - "rsconnect": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Type": "Package", - "Package": "rsconnect", - "Title": "Deploy Docs, Apps, and APIs to 'Posit Connect', 'shinyapps.io',\nand 'RPubs'", - "Version": "1.5.0", - "Authors@R": "c(\n person(\"Aron\", \"Atkins\", , \"aron@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Toph\", \"Allen\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Jonathan\", \"McPherson\", role = \"aut\"),\n person(\"JJ\", \"Allaire\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", - "Description": "Programmatic deployment interface for 'RPubs',\n 'shinyapps.io', and 'Posit Connect'. Supported content types include R\n Markdown documents, Shiny applications, Plumber APIs, plots, and\n static web content.", - "License": "GPL-2", - "URL": "https://rstudio.github.io/rsconnect/,\nhttps://github.com/rstudio/rsconnect", - "BugReports": "https://github.com/rstudio/rsconnect/issues", - "Depends": "R (>= 3.5.0)", - "Imports": "cli, curl, digest, jsonlite, lifecycle, openssl (>= 2.0.0),\nPKI, packrat (>= 0.6), renv (>= 1.0.0), rlang (>= 1.0.0),\nrstudioapi (>= 0.5), snowflakeauth, tools, yaml (>= 2.1.5),\nutils", - "Suggests": "Biobase, BiocManager, foreign, knitr, MASS, plumber (>=\n0.3.2), quarto, RCurl, reticulate, rmarkdown (>= 1.1), shiny,\ntestthat (>= 3.1.9), webfakes, withr", - "VignetteBuilder": "knitr, rmarkdown", - "Config/Needs/website": "tidyverse/tidytemplate", - "Config/testthat/edition": "3", - "Config/testthat/parallel": "true", - "Encoding": "UTF-8", - "RoxygenNote": "7.3.2", - "NeedsCompilation": "no", - "Packaged": "2025-06-26 15:08:33 UTC; aron", - "Author": "Aron Atkins [aut, cre],\n Toph Allen [aut],\n Hadley Wickham [aut],\n Jonathan McPherson [aut],\n JJ Allaire [aut],\n Posit Software, PBC [cph, fnd]", - "Maintainer": "Aron Atkins ", - "Repository": "RSPM", - "Date/Publication": "2025-06-26 15:50:02 UTC", - "Built": "R 4.5.0; ; 2025-06-27 04:39:35 UTC; unix", - "RemoteType": "standard", - "RemoteRef": "rsconnect", - "RemotePkgRef": "rsconnect", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "aarch64-apple-darwin20", - "RemoteSha": "1.5.0" - } - }, "rstudioapi": { "Source": "CRAN", "Repository": "https://packagemanager.posit.co/cran/latest", @@ -4273,39 +4148,6 @@ "Built": "R 4.5.0; x86_64-pc-linux-gnu; 2025-04-09 06:47:23 UTC; unix" } }, - "snowflakeauth": { - "Source": "CRAN", - "Repository": "https://packagemanager.posit.co/cran/latest", - "description": { - "Package": "snowflakeauth", - "Title": "Authentication Helpers for 'Snowflake'", - "Version": "0.1.2", - "Authors@R": "c(\n person(\"Aaron\", \"Jacobs\", , \"aaron.jacobs@posit.co\", role = c(\"aut\")),\n person(\"E. David\", \"Aja\", , \"david@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )", - "Description": "Authentication helpers for 'Snowflake'.\n It provides compatibility with authentication approaches supported\n by the 'Snowflake Connector for Python' \n and the 'Snowflake CLI' .", - "License": "MIT + file LICENSE", - "Encoding": "UTF-8", - "Imports": "cli, curl, jsonlite, RcppTOML, rlang", - "Suggests": "jose, openssl, testthat (>= 3.0.0), withr", - "RoxygenNote": "7.3.2", - "Config/testthat/edition": "3", - "URL": "https://posit-dev.github.io/snowflakeauth/,\nhttps://github.com/posit-dev/snowflakeauth", - "BugReports": "https://github.com/posit-dev/snowflakeauth/issues", - "NeedsCompilation": "no", - "Packaged": "2025-06-18 13:05:51 UTC; edavidaja", - "Author": "Aaron Jacobs [aut],\n E. David Aja [aut, cre],\n Posit Software, PBC [cph, fnd]", - "Maintainer": "E. David Aja ", - "Repository": "RSPM", - "Date/Publication": "2025-06-19 15:20:02 UTC", - "Built": "R 4.5.0; ; 2025-06-20 04:55:13 UTC; unix", - "RemoteType": "standard", - "RemoteRef": "snowflakeauth", - "RemotePkgRef": "snowflakeauth", - "RemoteRepos": "https://packagemanager.posit.co/cran/latest", - "RemoteReposName": "CRAN", - "RemotePkgPlatform": "aarch64-apple-darwin20", - "RemoteSha": "0.1.2" - } - }, "sourcetools": { "Source": "CRAN", "Repository": "https://packagemanager.posit.co/cran/latest", @@ -5313,7 +5155,7 @@ "checksum": "fb30c80ac12ab9f012fe104f371b4725" }, ".Rprofile": { - "checksum": "f5ef09ada9e46463b287a6adf23b48e4" + "checksum": "f3a0350397830e42e67166706cd121e5" }, "app.R": { "checksum": "d4103b4dcc8bebfefd99294ba6125f11" @@ -5333,9 +5175,6 @@ "app/logic/config_settings.R": { "checksum": "1eff749b1b258c1a2a0652eea270203d" }, - "app/logic/connect-extension.R": { - "checksum": "6846bace06b3d72676a80e3e3348d8de" - }, "app/logic/data_utils.R": { "checksum": "635bbc125bca53c54f68a434b03a327b" }, @@ -5430,10 +5269,10 @@ "checksum": "2d8e446a69c77281bc99044135bb0648" }, "README.md": { - "checksum": "4688c4bf86f7f5c9c86a5f8d3fce072f" + "checksum": "cad74b4da927ed3b78986036b487c7d8" }, "renv.lock": { - "checksum": "43b3b6877ca399c9ceb9b58b2f734c63" + "checksum": "ea78d481ae93e24b04e1f14a54c683af" }, "rhino.yml": { "checksum": "4f8295c6437069d07ae84698aca26c76" From f31f41894f62ca25bd4ecb7c743deeda145c3f49 Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 21 Aug 2025 09:38:48 +0200 Subject: [PATCH 27/31] style: update wording --- extensions/connect-user-metrics/app/logic/utils.R | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/extensions/connect-user-metrics/app/logic/utils.R b/extensions/connect-user-metrics/app/logic/utils.R index 17051bf8..4584d43e 100644 --- a/extensions/connect-user-metrics/app/logic/utils.R +++ b/extensions/connect-user-metrics/app/logic/utils.R @@ -133,8 +133,8 @@ create_image_path <- function(image_path) { } #' Get titles for applications and replace empty titles with names -#' @param titles Vector of each application title -#' @param names Vector of each application name +#' @param titles Vector of application titles +#' @param names Vector of application names #' @return Vector of non-empty titles #' @export get_app_titles <- function(titles, names) { @@ -150,11 +150,10 @@ get_app_titles <- function(titles, names) { #' @return Date range length in selected units (number) #' @export get_date_range_length_in_units <- function( - start_date, - end_date, - unit = c("day", "week", "month"), - week_start = week_start_id -) { + start_date, + end_date, + unit = c("day", "week", "month"), + week_start = week_start_id) { start_date <- as_date(start_date) end_date <- as_date(end_date) From 78b7868014deea7de3470981401f6ed224b94428 Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 21 Aug 2025 09:49:57 +0200 Subject: [PATCH 28/31] fix: fall back to GUID when both name and title are missing --- .../connect-user-metrics/app/logic/utils.R | 12 ++++++++---- extensions/connect-user-metrics/app/main.R | 4 ++-- .../tests/testthat/test-utils.R | 19 ++++++++++++++++--- 3 files changed, 26 insertions(+), 9 deletions(-) diff --git a/extensions/connect-user-metrics/app/logic/utils.R b/extensions/connect-user-metrics/app/logic/utils.R index 4584d43e..861f5ec0 100644 --- a/extensions/connect-user-metrics/app/logic/utils.R +++ b/extensions/connect-user-metrics/app/logic/utils.R @@ -132,14 +132,18 @@ create_image_path <- function(image_path) { file_path } -#' Get titles for applications and replace empty titles with names +#' Get titles for applications and replace empty titles with names or GUIDs +#' @param guids Vector of application GUIDs #' @param titles Vector of application titles #' @param names Vector of application names #' @return Vector of non-empty titles #' @export -get_app_titles <- function(titles, names) { - has_title <- !is.na(titles) & titles != "" - ifelse(has_title, titles, names) +get_app_titles <- function(guids, titles, names) { + dplyr$case_when( + !is.na(titles) & titles != "" ~ titles, + !is.na(names) & names != "" ~ names, + .default = guids + ) } #' Get date range length in selected units diff --git a/extensions/connect-user-metrics/app/main.R b/extensions/connect-user-metrics/app/main.R index 1202ffdc..92ca9b90 100644 --- a/extensions/connect-user-metrics/app/main.R +++ b/extensions/connect-user-metrics/app/main.R @@ -349,7 +349,7 @@ server <- function(id) { apps_choices <- apps() %>% dplyr$filter(!is.na(guid)) %>% # Use application name if it doesn't have title - dplyr$mutate(display_title = get_app_titles(title, name)) %>% + dplyr$mutate(display_title = get_app_titles(guid, title, name)) %>% { setNames(.$guid, .$display_title) } @@ -557,7 +557,7 @@ server <- function(id) { if (length(unlist(config$apps)) == 0) { selected_apps <- apps()$guid # Use application name if it doesn't have title - names(selected_apps) <- get_app_titles(apps()$title, apps()$name) + names(selected_apps) <- get_app_titles(apps()$guid, apps()$title, apps()$name) } else { selected_app_names <- unlist(config$apps) selected_apps <- diff --git a/extensions/connect-user-metrics/tests/testthat/test-utils.R b/extensions/connect-user-metrics/tests/testthat/test-utils.R index ed5e1da8..2916d380 100644 --- a/extensions/connect-user-metrics/tests/testthat/test-utils.R +++ b/extensions/connect-user-metrics/tests/testthat/test-utils.R @@ -183,7 +183,7 @@ test_that("get_app_titles returns app titles if they exist", { expect_equal( c("test_title_1", "test_title_2", "test_title_3"), - utils$get_app_titles(apps$title, apps$name) + utils$get_app_titles(apps$guid, apps$title, apps$name) ) }) @@ -196,7 +196,7 @@ test_that("get_app_titles returns app names instead of NA titles", { expect_equal( c("test_title_1", "test_name_2", "test_title_3"), - utils$get_app_titles(apps$title, apps$name) + utils$get_app_titles(apps$guid, apps$title, apps$name) ) }) @@ -209,7 +209,20 @@ test_that("get_app_titles returns app names instead of empty titles", { expect_equal( c("test_name_1", "test_title_2", "test_name_3"), - utils$get_app_titles(apps$title, apps$name) + utils$get_app_titles(apps$guid, apps$title, apps$name) + ) +}) + +test_that("get_app_titles returns guid when both name and title is NA or empty", { + apps <- data.frame( + guid = c("test_guid_1", "test_guid_2", "test_guid_3", "test_guid_4", NA), + name = c("test_name_1", NA, "", "test_name_4", NA), + title = c("test_title_1", NA, "", "", NA) + ) + + expect_equal( + c("test_title_1", "test_guid_2", "test_guid_3", "test_name_4", NA), + utils$get_app_titles(apps$guid, apps$title, apps$name) ) }) From 95f7b2036e866a4fe5a92b7457be3f35bd7f08b5 Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 21 Aug 2025 09:56:44 +0200 Subject: [PATCH 29/31] fix: fall back to GUID when username is missing --- extensions/connect-user-metrics/app/main.R | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/extensions/connect-user-metrics/app/main.R b/extensions/connect-user-metrics/app/main.R index 92ca9b90..3eff53b4 100644 --- a/extensions/connect-user-metrics/app/main.R +++ b/extensions/connect-user-metrics/app/main.R @@ -355,7 +355,10 @@ server <- function(id) { } users_choices <- users() %>% - dplyr$filter(!is.na(guid), !is.na(username)) %>% + dplyr$filter(!is.na(guid)) %>% + dplyr$mutate( + username = dplyr$if_else(!is.na(username) & username != "", username, guid) + ) %>% { setNames(.$guid, .$username) } @@ -577,7 +580,10 @@ server <- function(id) { selected_users <- NULL if (length(unlist(config$users)) == 0) { selected_users <- users()$guid - names(selected_users) <- users()$username + usernames <- users()$username + names(selected_users) <- dplyr$if_else( + !is.na(usernames) & usernames != "", usernames, users()$guid + ) } else { selected_user_names <- unlist(config$users) selected_users <- From 583691cb6fd23ed3d560800da35c3975f285a79f Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 21 Aug 2025 10:22:47 +0200 Subject: [PATCH 30/31] fix: handle connection issues gracefully --- extensions/connect-user-metrics/app/main.R | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/extensions/connect-user-metrics/app/main.R b/extensions/connect-user-metrics/app/main.R index 3eff53b4..04ec6674 100644 --- a/extensions/connect-user-metrics/app/main.R +++ b/extensions/connect-user-metrics/app/main.R @@ -232,13 +232,14 @@ server <- function(id) { type = "error", btn_labels = "Close" ) + NULL } ) }) # rendering DateRangeInput with correct range ----------------------------- output$date_range_ui <- shiny$renderUI({ - shiny$req(apps_guids()) + shiny$req(client(), apps_guids()) max_date <- data_utils$get_latest_date_from_client( @@ -258,6 +259,7 @@ server <- function(id) { # Fetching data from client ----------------------------------------------- apps <- shiny$reactive({ + shiny$req(client()) apps <- data_utils$get_apps_from_client(client = client(), guids = guids) |> dplyr$select(guid, name, title) @@ -278,6 +280,7 @@ server <- function(id) { }) users <- shiny$reactive({ + shiny$req(client()) data_utils$get_users_from_client(client = client()) |> dplyr$select(guid, username) %>% add_row(guid = "unknown", username = "unknown") %>% @@ -301,7 +304,7 @@ server <- function(id) { ) shiny$observe({ - shiny$req(input$date_range) + shiny$req(client(), input$date_range) date_range <- input$date_range # add `+ lubridate$days(1)` in `to` to get data from the whole day; From 33fbddf9b0afdfe833a501beb548b39c9fe4fbee Mon Sep 17 00:00:00 2001 From: Tymoteusz Makowski Date: Thu, 21 Aug 2025 10:22:57 +0200 Subject: [PATCH 31/31] build: downgrade to R 4.3.1 --- extensions/connect-user-metrics/renv.lock | 154 +++++++++++----------- 1 file changed, 77 insertions(+), 77 deletions(-) diff --git a/extensions/connect-user-metrics/renv.lock b/extensions/connect-user-metrics/renv.lock index 6ccbf257..1bb45622 100644 --- a/extensions/connect-user-metrics/renv.lock +++ b/extensions/connect-user-metrics/renv.lock @@ -1,6 +1,6 @@ { "R": { - "Version": "4.5.1", + "Version": "4.3.1", "Repositories": [ { "Name": "CRAN", @@ -48,12 +48,12 @@ }, "KernSmooth": { "Package": "KernSmooth", - "Version": "2.23-26", + "Version": "2.23-21", "Source": "Repository", "Priority": "recommended", - "Date": "2024-12-10", + "Date": "2023-05-03", "Title": "Functions for Kernel Smoothing Supporting Wand & Jones (1995)", - "Authors@R": "c(person(\"Matt\", \"Wand\", role = \"aut\", email = \"Matt.Wand@uts.edu.au\"), person(\"Cleve\", \"Moler\", role = \"ctb\", comment = \"LINPACK routines in src/d*\"), person(\"Brian\", \"Ripley\", role = c(\"trl\", \"cre\", \"ctb\"), email = \"Brian.Ripley@R-project.org\", comment = \"R port and updates\"))", + "Authors@R": "c(person(\"Matt\", \"Wand\", role = \"aut\", email = \"Matt.Wand@uts.edu.au\"), person(\"Cleve\", \"Moler\", role = \"ctb\", comment = \"LINPACK routines in src/d*\"), person(\"Brian\", \"Ripley\", role = c(\"trl\", \"cre\", \"ctb\"), email = \"ripley@stats.ox.ac.uk\", comment = \"R port and updates\"))", "Note": "Maintainers are not available to give advice on using a package they did not author.", "Depends": [ "R (>= 2.5.0)", @@ -68,18 +68,18 @@ "ByteCompile": "yes", "NeedsCompilation": "yes", "Author": "Matt Wand [aut], Cleve Moler [ctb] (LINPACK routines in src/d*), Brian Ripley [trl, cre, ctb] (R port and updates)", - "Maintainer": "Brian Ripley ", + "Maintainer": "Brian Ripley ", "Repository": "CRAN" }, "MASS": { "Package": "MASS", - "Version": "7.3-65", + "Version": "7.3-60", "Source": "Repository", "Priority": "recommended", - "Date": "2025-02-19", - "Revision": "$Rev: 3681 $", + "Date": "2023-05-02", + "Revision": "$Rev: 3621 $", "Depends": [ - "R (>= 4.4.0)", + "R (>= 4.0)", "grDevices", "graphics", "stats", @@ -94,7 +94,7 @@ "nnet", "survival" ], - "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"Bill\", \"Venables\", role = c(\"aut\", \"cph\")), person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"), person(\"Kurt\", \"Hornik\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"Albrecht\", \"Gebhardt\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"David\", \"Firth\", role = \"ctb\", comment = \"support functions for polr\"))", + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"ripley@stats.ox.ac.uk\"), person(\"Bill\", \"Venables\", role = \"ctb\"), person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"), person(\"Kurt\", \"Hornik\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"Albrecht\", \"Gebhardt\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"David\", \"Firth\", role = \"ctb\"))", "Description": "Functions and datasets to support Venables and Ripley, \"Modern Applied Statistics with S\" (4th edition, 2002).", "Title": "Support Functions and Datasets for Venables and Ripley's MASS", "LazyData": "yes", @@ -103,30 +103,28 @@ "URL": "http://www.stats.ox.ac.uk/pub/MASS4/", "Contact": "", "NeedsCompilation": "yes", - "Author": "Brian Ripley [aut, cre, cph], Bill Venables [aut, cph], Douglas M. Bates [ctb], Kurt Hornik [trl] (partial port ca 1998), Albrecht Gebhardt [trl] (partial port ca 1998), David Firth [ctb] (support functions for polr)", - "Maintainer": "Brian Ripley ", + "Author": "Brian Ripley [aut, cre, cph], Bill Venables [ctb], Douglas M. Bates [ctb], Kurt Hornik [trl] (partial port ca 1998), Albrecht Gebhardt [trl] (partial port ca 1998), David Firth [ctb]", + "Maintainer": "Brian Ripley ", "Repository": "CRAN" }, "Matrix": { "Package": "Matrix", - "Version": "1.7-3", + "Version": "1.5-4.1", "Source": "Repository", - "VersionNote": "do also bump src/version.h, inst/include/Matrix/version.h", - "Date": "2025-03-05", + "Date": "2023-05-16", "Priority": "recommended", "Title": "Sparse and Dense Matrix Classes and Methods", - "Description": "A rich hierarchy of sparse and dense matrix classes, including general, symmetric, triangular, and diagonal matrices with numeric, logical, or pattern entries. Efficient methods for operating on such matrices, often wrapping the 'BLAS', 'LAPACK', and 'SuiteSparse' libraries.", + "Description": "A rich hierarchy of sparse and dense matrix classes, including general, triangular, symmetric, and diagonal matrices with numeric, logical, or pattern entries. Efficient methods for operating on such matrices, often wrapping the 'BLAS', 'LAPACK', and '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\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"), email = \"mmaechler+Matrix@gmail.com\", comment = c(ORCID = \"0000-0002-8685-9910\")), person(\"Mikael\", \"Jagan\", role = \"aut\", comment = c(ORCID = \"0000-0002-3542-2938\")), person(\"Timothy A.\", \"Davis\", role = \"ctb\", comment = c(ORCID = \"0000-0001-7614-6899\", \"SuiteSparse libraries\", \"collaborators listed in dir(system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"), pattern=\\\"License\\\", full.names=TRUE, recursive=TRUE)\")), person(\"George\", \"Karypis\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2753-1437\", \"METIS library\", \"Copyright: Regents of the University of Minnesota\")), person(\"Jason\", \"Riedy\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4345-4200\", \"GNU Octave's condest() and onenormest()\", \"Copyright: Regents of the University of California\")), person(\"Jens\", \"Oehlschlägel\", role = \"ctb\", comment = \"initial nearPD()\"), person(\"R Core Team\", role = \"ctb\", comment = c(ROR = \"02zz1nj61\", \"base R's matrix implementation\")))", + "Authors@R": "c(person(\"Douglas\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")) , person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"), email = \"mmaechler+Matrix@gmail.com\", comment = c(ORCID = \"0000-0002-8685-9910\")) , person(\"Mikael\", \"Jagan\", role = \"aut\", comment = c(ORCID = \"0000-0002-3542-2938\")) , person(\"Timothy A.\", \"Davis\", role = \"ctb\", comment = c(ORCID = \"0000-0001-7614-6899\", \"SuiteSparse libraries, notably CHOLMOD and AMD\", \"collaborators listed in dir(pattern=\\\"^[A-Z]+[.]txt$\\\", full.names=TRUE, system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"))\")) , person(\"Jens\", \"Oehlschlägel\", role = \"ctb\", comment = \"initial nearPD()\") , person(\"Jason\", \"Riedy\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4345-4200\", \"GNU Octave's condest() and onenormest()\", \"Copyright: Regents of the University of California\")) , person(\"R Core Team\", role = \"ctb\", comment = \"base R's matrix implementation\"))", "Depends": [ - "R (>= 4.4)", + "R (>= 3.5.0)", "methods" ], "Imports": [ - "grDevices", "graphics", "grid", "lattice", @@ -135,20 +133,25 @@ ], "Suggests": [ "MASS", - "datasets", - "sfsmisc", - "tools" + "expm" ], "Enhances": [ + "MatrixModels", "SparseM", - "graph" + "graph", + "igraph", + "maptools", + "sfsmisc", + "sp", + "spdep" ], + "EnhancesNote": "igraph, maptools, sp, spdep for Rd xrefs", "LazyData": "no", "LazyDataNote": "not possible, since we use data/*.R and our S4 classes", "BuildResaveData": "no", "Encoding": "UTF-8", "NeedsCompilation": "yes", - "Author": "Douglas Bates [aut] (), Martin Maechler [aut, cre] (), Mikael Jagan [aut] (), Timothy A. Davis [ctb] (, SuiteSparse libraries, collaborators listed in dir(system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"), pattern=\"License\", full.names=TRUE, recursive=TRUE)), George Karypis [ctb] (, METIS library, Copyright: Regents of the University of Minnesota), Jason Riedy [ctb] (, GNU Octave's condest() and onenormest(), Copyright: Regents of the University of California), Jens Oehlschlägel [ctb] (initial nearPD()), R Core Team [ctb] (02zz1nj61, base R's matrix implementation)", + "Author": "Douglas Bates [aut] (), Martin Maechler [aut, cre] (), Mikael Jagan [aut] (), Timothy A. Davis [ctb] (, SuiteSparse libraries, notably CHOLMOD and AMD, collaborators listed in dir(pattern=\"^[A-Z]+[.]txt$\", full.names=TRUE, system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"))), Jens Oehlschlägel [ctb] (initial nearPD()), Jason Riedy [ctb] (, GNU Octave's condest() and onenormest(), Copyright: Regents of the University of California), R Core Team [ctb] (base R's matrix implementation)", "Maintainer": "Martin Maechler ", "Repository": "CRAN" }, @@ -177,7 +180,7 @@ "BugReports": "https://github.com/HenrikBengtsson/R.cache/issues", "Encoding": "UTF-8", "NeedsCompilation": "no", - "Repository": "CRAN" + "Repository": "https://p3m.dev/cran/latest" }, "R.methodsS3": { "Package": "R.methodsS3", @@ -230,7 +233,7 @@ "URL": "https://henrikbengtsson.github.io/R.oo/, https://github.com/HenrikBengtsson/R.oo", "BugReports": "https://github.com/HenrikBengtsson/R.oo/issues", "NeedsCompilation": "no", - "Repository": "CRAN", + "Repository": "https://p3m.dev/cran/latest", "Encoding": "UTF-8" }, "R.utils": { @@ -261,7 +264,7 @@ "URL": "https://henrikbengtsson.github.io/R.utils/, https://github.com/HenrikBengtsson/R.utils", "BugReports": "https://github.com/HenrikBengtsson/R.utils/issues", "NeedsCompilation": "no", - "Repository": "CRAN", + "Repository": "https://p3m.dev/cran/latest", "Encoding": "UTF-8" }, "R6": { @@ -305,8 +308,7 @@ "Description": "Provides color schemes for maps (and other graphics) designed by Cynthia Brewer as described at http://colorbrewer2.org.", "License": "Apache License 2.0", "NeedsCompilation": "no", - "Repository": "RSPM", - "Encoding": "UTF-8" + "Repository": "CRAN" }, "Rcpp": { "Package": "Rcpp", @@ -1023,7 +1025,7 @@ }, "checkmate": { "Package": "checkmate", - "Version": "2.3.2", + "Version": "2.3.3", "Source": "Repository", "Type": "Package", "Title": "Fast and Versatile Argument Checks", @@ -1060,7 +1062,7 @@ "VignetteBuilder": "knitr", "RoxygenNote": "7.3.2", "Collate": "'AssertCollection.R' 'allMissing.R' 'anyInfinite.R' 'anyMissing.R' 'anyNaN.R' 'asInteger.R' 'assert.R' 'helper.R' 'makeExpectation.R' 'makeTest.R' 'makeAssertion.R' 'checkAccess.R' 'checkArray.R' 'checkAtomic.R' 'checkAtomicVector.R' 'checkCharacter.R' 'checkChoice.R' 'checkClass.R' 'checkComplex.R' 'checkCount.R' 'checkDataFrame.R' 'checkDataTable.R' 'checkDate.R' 'checkDirectoryExists.R' 'checkDisjunct.R' 'checkDouble.R' 'checkEnvironment.R' 'checkFALSE.R' 'checkFactor.R' 'checkFileExists.R' 'checkFlag.R' 'checkFormula.R' 'checkFunction.R' 'checkInt.R' 'checkInteger.R' 'checkIntegerish.R' 'checkList.R' 'checkLogical.R' 'checkMatrix.R' 'checkMultiClass.R' 'checkNamed.R' 'checkNames.R' 'checkNull.R' 'checkNumber.R' 'checkNumeric.R' 'checkOS.R' 'checkPOSIXct.R' 'checkPathForOutput.R' 'checkPermutation.R' 'checkR6.R' 'checkRaw.R' 'checkScalar.R' 'checkScalarNA.R' 'checkSetEqual.R' 'checkString.R' 'checkSubset.R' 'checkTRUE.R' 'checkTibble.R' 'checkVector.R' 'coalesce.R' 'isIntegerish.R' 'matchArg.R' 'qassert.R' 'qassertr.R' 'vname.R' 'wfwl.R' 'zzz.R'", - "Author": "Michel Lang [cre, aut] (), Bernd Bischl [ctb], Dénes Tóth [ctb] ()", + "Author": "Michel Lang [cre, aut] (ORCID: ), Bernd Bischl [ctb], Dénes Tóth [ctb] (ORCID: )", "Maintainer": "Michel Lang ", "Repository": "CRAN" }, @@ -1112,10 +1114,10 @@ }, "class": { "Package": "class", - "Version": "7.3-23", + "Version": "7.3-22", "Source": "Repository", "Priority": "recommended", - "Date": "2025-01-01", + "Date": "2023-05-02", "Depends": [ "R (>= 3.0.0)", "stats", @@ -1124,7 +1126,7 @@ "Imports": [ "MASS" ], - "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"William\", \"Venables\", role = \"cph\"))", + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"ripley@stats.ox.ac.uk\"), person(\"William\", \"Venables\", role = \"cph\"))", "Description": "Various functions for classification, including k-nearest neighbour, Learning Vector Quantization and Self-Organizing Maps.", "Title": "Functions for Classification", "ByteCompile": "yes", @@ -1132,7 +1134,7 @@ "URL": "http://www.stats.ox.ac.uk/pub/MASS4/", "NeedsCompilation": "yes", "Author": "Brian Ripley [aut, cre, cph], William Venables [cph]", - "Maintainer": "Brian Ripley ", + "Maintainer": "Brian Ripley ", "Repository": "CRAN" }, "cli": { @@ -1261,7 +1263,7 @@ }, "codetools": { "Package": "codetools", - "Version": "0.2-20", + "Version": "0.2-19", "Source": "Repository", "Priority": "recommended", "Author": "Luke Tierney ", @@ -1614,7 +1616,7 @@ }, "curl": { "Package": "curl", - "Version": "6.4.0", + "Version": "7.0.0", "Source": "Repository", "Type": "Package", "Title": "A Modern and Flexible Web Client for R", @@ -1638,7 +1640,7 @@ "Depends": [ "R (>= 3.0.0)" ], - "RoxygenNote": "7.3.2.9000", + "RoxygenNote": "7.3.2", "Encoding": "UTF-8", "Language": "en-US", "NeedsCompilation": "yes", @@ -1966,7 +1968,7 @@ "NeedsCompilation": "yes", "Author": "Thomas Lin Pedersen [cre, aut] (), Berendea Nicolae [aut] (Author of the ColorSpace C++ library), Romain François [aut] (), Posit, PBC [cph, fnd]", "Maintainer": "Thomas Lin Pedersen ", - "Repository": "CRAN" + "Repository": "https://p3m.dev/cran/latest" }, "fastmap": { "Package": "fastmap", @@ -3082,8 +3084,7 @@ "stats", "graphics" ], - "Repository": "CRAN", - "Encoding": "UTF-8" + "Repository": "CRAN" }, "later": { "Package": "later", @@ -3120,12 +3121,12 @@ }, "lattice": { "Package": "lattice", - "Version": "0.22-7", + "Version": "0.21-8", "Source": "Repository", - "Date": "2025-03-31", + "Date": "2023-04-05", "Priority": "recommended", "Title": "Trellis Graphics for R", - "Authors@R": "c(person(\"Deepayan\", \"Sarkar\", role = c(\"aut\", \"cre\"), email = \"deepayan.sarkar@r-project.org\", comment = c(ORCID = \"0000-0003-4107-1553\")), person(\"Felix\", \"Andrews\", role = \"ctb\"), person(\"Kevin\", \"Wright\", role = \"ctb\", comment = \"documentation\"), person(\"Neil\", \"Klepeis\", role = \"ctb\"), person(\"Johan\", \"Larsson\", role = \"ctb\", comment = \"miscellaneous improvements\"), person(\"Zhijian (Jason)\", \"Wen\", role = \"cph\", comment = \"filled contour code\"), person(\"Paul\", \"Murrell\", role = \"ctb\", email = \"paul@stat.auckland.ac.nz\"), person(\"Stefan\", \"Eng\", role = \"ctb\", comment = \"violin plot improvements\"), person(\"Achim\", \"Zeileis\", role = \"ctb\", comment = \"modern colors\"), person(\"Alexandre\", \"Courtiol\", role = \"ctb\", comment = \"generics for larrows, lpolygon, lrect and lsegments\") )", + "Authors@R": "c(person(\"Deepayan\", \"Sarkar\", role = c(\"aut\", \"cre\"), email = \"deepayan.sarkar@r-project.org\", comment = c(ORCID = \"0000-0003-4107-1553\")), person(\"Felix\", \"Andrews\", role = \"ctb\"), person(\"Kevin\", \"Wright\", role = \"ctb\", comment = \"documentation\"), person(\"Neil\", \"Klepeis\", role = \"ctb\"), person(\"Johan\", \"Larsson\", role = \"ctb\", comment = \"miscellaneous improvements\"), person(\"Zhijian (Jason)\", \"Wen\", role = \"cph\", comment = \"filled contour code\"), person(\"Paul\", \"Murrell\", role = \"ctb\", email = \"paul@stat.auckland.ac.nz\"), person(\"Stefan\", \"Eng\", role = \"ctb\", comment = \"violin plot improvements\"), person(\"Achim\", \"Zeileis\", role = \"ctb\", comment = \"modern colors\") )", "Description": "A powerful and elegant high-level data visualization system inspired by Trellis graphics, with an emphasis on multivariate data. Lattice is sufficient for typical graphics needs, and is also flexible enough to handle most nonstandard requirements. See ?Lattice for an introduction.", "Depends": [ "R (>= 4.0.0)" @@ -3144,8 +3145,7 @@ "utils" ], "Enhances": [ - "chron", - "zoo" + "chron" ], "LazyLoad": "yes", "LazyData": "yes", @@ -3153,7 +3153,7 @@ "URL": "https://lattice.r-forge.r-project.org/", "BugReports": "https://github.com/deepayan/lattice/issues", "NeedsCompilation": "yes", - "Author": "Deepayan Sarkar [aut, cre] (), Felix Andrews [ctb], Kevin Wright [ctb] (documentation), Neil Klepeis [ctb], Johan Larsson [ctb] (miscellaneous improvements), Zhijian (Jason) Wen [cph] (filled contour code), Paul Murrell [ctb], Stefan Eng [ctb] (violin plot improvements), Achim Zeileis [ctb] (modern colors), Alexandre Courtiol [ctb] (generics for larrows, lpolygon, lrect and lsegments)", + "Author": "Deepayan Sarkar [aut, cre] (), Felix Andrews [ctb], Kevin Wright [ctb] (documentation), Neil Klepeis [ctb], Johan Larsson [ctb] (miscellaneous improvements), Zhijian (Jason) Wen [cph] (filled contour code), Paul Murrell [ctb], Stefan Eng [ctb] (violin plot improvements), Achim Zeileis [ctb] (modern colors)", "Maintainer": "Deepayan Sarkar ", "Repository": "CRAN" }, @@ -3339,7 +3339,7 @@ "NeedsCompilation": "no", "Author": "Jim Hester [aut], Florent Angly [aut] (fangly), Russ Hyde [aut], Michael Chirico [aut, cre], Kun Ren [aut], Alexander Rosenstock [aut] (AshesITR), Indrajeet Patil [aut] (, @patilindrajeets)", "Maintainer": "Michael Chirico ", - "Repository": "CRAN" + "Repository": "https://p3m.dev/cran/latest" }, "listenv": { "Package": "listenv", @@ -3566,9 +3566,10 @@ }, "mgcv": { "Package": "mgcv", - "Version": "1.9-3", + "Version": "1.8-42", "Source": "Repository", - "Authors@R": "person(given = \"Simon\", family = \"Wood\", role = c(\"aut\", \"cre\"), email = \"simon.wood@r-project.org\")", + "Author": "Simon Wood ", + "Maintainer": "Simon Wood ", "Title": "Mixed GAM Computation Vehicle with Automatic Smoothness Estimation", "Description": "Generalized additive (mixed) models, some of their extensions and other generalized ridge regression with multiple smoothing parameter estimation by (Restricted) Marginal Likelihood, Generalized Cross Validation and similar, or using iterated nested Laplace approximation for fully Bayesian inference. See Wood (2017) for an overview. Includes a gam() function, a wide variety of smoothers, 'JAGS' support and distributions beyond the exponential family.", "Priority": "recommended", @@ -3593,8 +3594,6 @@ "ByteCompile": "yes", "License": "GPL (>= 2)", "NeedsCompilation": "yes", - "Author": "Simon Wood [aut, cre]", - "Maintainer": "Simon Wood ", "Repository": "CRAN" }, "mime": { @@ -3689,16 +3688,16 @@ }, "nlme": { "Package": "nlme", - "Version": "3.1-168", + "Version": "3.1-162", "Source": "Repository", - "Date": "2025-03-31", + "Date": "2023-01-30", "Priority": "recommended", "Title": "Linear and Nonlinear Mixed Effects Models", - "Authors@R": "c(person(\"José\", \"Pinheiro\", role = \"aut\", comment = \"S version\"), person(\"Douglas\", \"Bates\", role = \"aut\", comment = \"up to 2007\"), person(\"Saikat\", \"DebRoy\", role = \"ctb\", comment = \"up to 2002\"), person(\"Deepayan\", \"Sarkar\", role = \"ctb\", comment = \"up to 2005\"), person(\"EISPACK authors\", role = \"ctb\", comment = \"src/rs.f\"), person(\"Siem\", \"Heisterkamp\", role = \"ctb\", comment = \"Author fixed sigma\"), person(\"Bert\", \"Van Willigen\",role = \"ctb\", comment = \"Programmer fixed sigma\"), person(\"Johannes\", \"Ranke\", role = \"ctb\", comment = \"varConstProp()\"), person(\"R Core Team\", email = \"R-core@R-project.org\", role = c(\"aut\", \"cre\"), comment = c(ROR = \"02zz1nj61\")))", + "Authors@R": "c(person(\"José\", \"Pinheiro\", role = \"aut\", comment = \"S version\"), person(\"Douglas\", \"Bates\", role = \"aut\", comment = \"up to 2007\"), person(\"Saikat\", \"DebRoy\", role = \"ctb\", comment = \"up to 2002\"), person(\"Deepayan\", \"Sarkar\", role = \"ctb\", comment = \"up to 2005\"), person(\"EISPACK authors\", role = \"ctb\", comment = \"src/rs.f\"), person(\"Siem\", \"Heisterkamp\", role = \"ctb\", comment = \"Author fixed sigma\"), person(\"Bert\", \"Van Willigen\",role = \"ctb\", comment = \"Programmer fixed sigma\"), person(\"Johannes\", \"Ranke\", role = \"ctb\", comment = \"varConstProp()\"), person(\"R Core Team\", email = \"R-core@R-project.org\", role = c(\"aut\", \"cre\")))", "Contact": "see 'MailingList'", "Description": "Fit and compare Gaussian linear and nonlinear mixed-effects models.", "Depends": [ - "R (>= 3.6.0)" + "R (>= 3.5.0)" ], "Imports": [ "graphics", @@ -3707,6 +3706,7 @@ "lattice" ], "Suggests": [ + "Hmisc", "MASS", "SASmixed" ], @@ -3717,16 +3717,16 @@ "MailingList": "R-help@r-project.org", "URL": "https://svn.r-project.org/R-packages/trunk/nlme/", "NeedsCompilation": "yes", - "Author": "José Pinheiro [aut] (S version), Douglas Bates [aut] (up to 2007), Saikat DebRoy [ctb] (up to 2002), Deepayan Sarkar [ctb] (up to 2005), EISPACK authors [ctb] (src/rs.f), Siem Heisterkamp [ctb] (Author fixed sigma), Bert Van Willigen [ctb] (Programmer fixed sigma), Johannes Ranke [ctb] (varConstProp()), R Core Team [aut, cre] (02zz1nj61)", + "Author": "José Pinheiro [aut] (S version), Douglas Bates [aut] (up to 2007), Saikat DebRoy [ctb] (up to 2002), Deepayan Sarkar [ctb] (up to 2005), EISPACK authors [ctb] (src/rs.f), Siem Heisterkamp [ctb] (Author fixed sigma), Bert Van Willigen [ctb] (Programmer fixed sigma), Johannes Ranke [ctb] (varConstProp()), R Core Team [aut, cre]", "Maintainer": "R Core Team ", "Repository": "CRAN" }, "nnet": { "Package": "nnet", - "Version": "7.3-20", + "Version": "7.3-19", "Source": "Repository", "Priority": "recommended", - "Date": "2025-01-01", + "Date": "2023-05-02", "Depends": [ "R (>= 3.0.0)", "stats", @@ -3735,7 +3735,7 @@ "Suggests": [ "MASS" ], - "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"Brian.Ripley@R-project.org\"), person(\"William\", \"Venables\", role = \"cph\"))", + "Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"), email = \"ripley@stats.ox.ac.uk\"), person(\"William\", \"Venables\", role = \"cph\"))", "Description": "Software for feed-forward neural networks with a single hidden layer, and for multinomial log-linear models.", "Title": "Feed-Forward Neural Networks and Multinomial Log-Linear Models", "ByteCompile": "yes", @@ -3743,7 +3743,7 @@ "URL": "http://www.stats.ox.ac.uk/pub/MASS4/", "NeedsCompilation": "yes", "Author": "Brian Ripley [aut, cre, cph], William Venables [cph]", - "Maintainer": "Brian Ripley ", + "Maintainer": "Brian Ripley ", "Repository": "CRAN" }, "numDeriv": { @@ -3763,8 +3763,7 @@ "Maintainer": "Paul Gilbert ", "URL": "http://optimizer.r-forge.r-project.org/", "NeedsCompilation": "no", - "Repository": "CRAN", - "Encoding": "UTF-8" + "Repository": "CRAN" }, "openssl": { "Package": "openssl", @@ -3997,7 +3996,7 @@ "NeedsCompilation": "no", "Author": "Hadley Wickham [aut], Jim Hester [aut], Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd] (ROR: )", "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN" + "Repository": "https://p3m.dev/cran/latest" }, "pkgconfig": { "Package": "pkgconfig", @@ -4070,7 +4069,7 @@ "NeedsCompilation": "no", "Author": "Hadley Wickham [aut], Winston Chang [aut], Jim Hester [aut], Lionel Henry [aut, cre], Posit Software, PBC [cph, fnd], R Core team [ctb] (Some namespace and vignette code extracted from base R)", "Maintainer": "Lionel Henry ", - "Repository": "CRAN" + "Repository": "https://p3m.dev/cran/latest" }, "plotly": { "Package": "plotly", @@ -4232,7 +4231,7 @@ "NeedsCompilation": "yes", "Author": "Gábor Csárdi [aut, cre, cph] (), Winston Chang [aut], Posit Software, PBC [cph, fnd], Ascent Digital Services [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN" + "Repository": "https://p3m.dev/cran/latest" }, "prodlim": { "Package": "prodlim", @@ -4437,7 +4436,7 @@ "NeedsCompilation": "yes", "Author": "Jay Loden [aut], Dave Daeschler [aut], Giampaolo Rodola' [aut], Gábor Csárdi [aut, cre], Posit Software, PBC [cph, fnd]", "Maintainer": "Gábor Csárdi ", - "Repository": "CRAN" + "Repository": "https://p3m.dev/cran/latest" }, "purrr": { "Package": "purrr", @@ -4603,7 +4602,7 @@ "VignetteBuilder": "knitr", "NeedsCompilation": "no", "Author": "Facebook Inc [aut, cph] (React library in lib, https://reactjs.org/; see AUTHORS for full list of contributors), Michel Weststrate [aut, cph] (mobx library in lib, https://github.com/mobxjs), Kent Russell [aut, cre] (R interface), Alan Dipert [aut] (R interface), Greg Lin [aut] (R interface)", - "Repository": "CRAN" + "Repository": "https://p3m.dev/cran/latest" }, "reactable": { "Package": "reactable", @@ -5033,10 +5032,10 @@ }, "rpart": { "Package": "rpart", - "Version": "4.1.24", + "Version": "4.1.19", "Source": "Repository", "Priority": "recommended", - "Date": "2025-01-06", + "Date": "2022-10-21", "Authors@R": "c(person(\"Terry\", \"Therneau\", role = \"aut\", email = \"therneau@mayo.edu\"), person(\"Beth\", \"Atkinson\", role = c(\"aut\", \"cre\"), email = \"atkinson@mayo.edu\"), person(\"Brian\", \"Ripley\", role = \"trl\", email = \"ripley@stats.ox.ac.uk\", comment = \"producer of the initial R port, maintainer 1999-2017\"))", "Description": "Recursive partitioning for classification, regression and survival trees. An implementation of most of the functionality of the 1984 book by Breiman, Friedman, Olshen and Stone.", "Title": "Recursive Partitioning and Regression Trees", @@ -5252,7 +5251,7 @@ "NeedsCompilation": "no", "Author": "Hadley Wickham [aut], Thomas Lin Pedersen [cre, aut] (), Dana Seidel [aut], Posit Software, PBC [cph, fnd] (03wc8by49)", "Maintainer": "Thomas Lin Pedersen ", - "Repository": "CRAN" + "Repository": "https://p3m.dev/cran/latest" }, "shape": { "Package": "shape", @@ -5703,15 +5702,15 @@ "NeedsCompilation": "no", "Author": "Kirill Müller [aut] (), Lorenz Walthert [cre, aut], Indrajeet Patil [ctb] (, @patilindrajeets)", "Maintainer": "Lorenz Walthert ", - "Repository": "CRAN" + "Repository": "https://p3m.dev/cran/latest" }, "survival": { "Package": "survival", - "Version": "3.8-3", + "Version": "3.5-5", "Source": "Repository", "Title": "Survival Analysis", "Priority": "recommended", - "Date": "2024-12-17", + "Date": "2023-03-11", "Depends": [ "R (>= 3.5.0)" ], @@ -6581,7 +6580,7 @@ }, "xfun": { "Package": "xfun", - "Version": "0.52", + "Version": "0.53", "Source": "Repository", "Type": "Package", "Title": "Supporting Functions for Packages Maintained by 'Yihui Xie'", @@ -6603,7 +6602,7 @@ "rstudioapi", "tinytex (>= 0.30)", "mime", - "litedown (>= 0.4)", + "litedown (>= 0.6)", "commonmark", "knitr (>= 1.50)", "remotes", @@ -6613,6 +6612,7 @@ "jsonlite", "magick", "yaml", + "data.table", "qs" ], "License": "MIT + file LICENSE", @@ -6622,7 +6622,7 @@ "RoxygenNote": "7.3.2", "VignetteBuilder": "litedown", "NeedsCompilation": "yes", - "Author": "Yihui Xie [aut, cre, cph] (, https://yihui.org), Wush Wu [ctb], Daijiang Li [ctb], Xianying Tan [ctb], Salim Brüggemann [ctb] (), Christophe Dervieux [ctb]", + "Author": "Yihui Xie [aut, cre, cph] (ORCID: , URL: https://yihui.org), Wush Wu [ctb], Daijiang Li [ctb], Xianying Tan [ctb], Salim Brüggemann [ctb] (ORCID: ), Christophe Dervieux [ctb]", "Maintainer": "Yihui Xie ", "Repository": "CRAN" },