{"id":28092506,"url":"https://github.com/bouldercodehub/rwdataplyr","last_synced_at":"2026-03-16T11:37:15.069Z","repository":{"id":20830637,"uuid":"24116619","full_name":"BoulderCodeHub/RWDataPlyr","owner":"BoulderCodeHub","description":"R package to read and manipulate data from RiverWareTM","archived":false,"fork":false,"pushed_at":"2025-04-11T20:03:13.000Z","size":8723,"stargazers_count":4,"open_issues_count":28,"forks_count":5,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-13T13:18:37.153Z","etag":null,"topics":["data-manipulation","r","riverware"],"latest_commit_sha":null,"homepage":"","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BoulderCodeHub.png","metadata":{"files":{"readme":"README.md","changelog":"NEWS.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2014-09-16T20:32:49.000Z","updated_at":"2025-04-11T20:03:17.000Z","dependencies_parsed_at":"2022-07-07T20:04:38.510Z","dependency_job_id":"3d1db20c-42a3-4a14-a4b9-143376972fa9","html_url":"https://github.com/BoulderCodeHub/RWDataPlyr","commit_stats":{"total_commits":557,"total_committers":5,"mean_commits":111.4,"dds":0.2028725314183124,"last_synced_commit":"ea6d8c665256135678ecb05dae76a6d1b66d1f48"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/BoulderCodeHub/RWDataPlyr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BoulderCodeHub%2FRWDataPlyr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BoulderCodeHub%2FRWDataPlyr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BoulderCodeHub%2FRWDataPlyr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BoulderCodeHub%2FRWDataPlyr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BoulderCodeHub","download_url":"https://codeload.github.com/BoulderCodeHub/RWDataPlyr/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BoulderCodeHub%2FRWDataPlyr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271143400,"owners_count":24706346,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-manipulation","r","riverware"],"created_at":"2025-05-13T13:18:34.914Z","updated_at":"2026-03-16T11:37:15.003Z","avatar_url":"https://github.com/BoulderCodeHub.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"RWDataPlyr\n=================\n\n\u003c!-- badges: start --\u003e\n[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/RWDataPlyr)](https://cran.r-project.org/package=RWDataPlyr)\n\n[![R build status](https://github.com/BoulderCodeHub/RWDataPlyr/workflows/R-CMD-check/badge.svg)](https://github.com/BoulderCodeHub/RWDataPlyr/actions)\n\n[![codecov](https://codecov.io/gh/BoulderCodeHub/RWDataPlyr/branch/master/graphs/badge.svg)](https://codecov.io/gh/BoulderCodeHub/RWDataPlyr)\n\u003c!-- badges: end --\u003e\n\n## Overview\n\nRWDataPlyr is a tool to read and manipulate data generated from [RiverWare\u003csup\u003eTM\u003c/sup\u003e](http://www.riverware.org) simulations in rdf, csv, and nc formats and work with those data in a dplyr pipeline. It provides functions to gather,  aggregate, and summarize data from multiple RiverWare simulations, i.e., scenarios.\n\n## Installation\n\nRWDataPlyr can be installed from CRAN:\n\n```{r, eval = FALSE}\ninstall.packages(\"RWDataPlyr\")\n```\n\nOr the development version can be installed from GitHub:\n\n```{r, eval=FALSE}\n# install.packages(\"devtools\")\ndevtools::install_github(\"BoulderCodeHub/RWDataPlyr\")\n```\n\n## Usage\n\nRWDataPlyr provides at least three workflows for reading and using RiverWare data:\n\n1. Reading and manipulating a single scenario\n    * Fast\n    * Best for inspecting a single slot\n    * If comparing scenarios, must manually repeat for each scenario\n    * Relies on `read_rdf()` and `read_rw_csv()`\n2. Summarizing multiple slots of data from a single scenario\n    * Repeatable; allows user to process many slots at once\n    * Best for producing \"polished\" analyses of a single scenario\n    * Relies on `rdf_aggregate()` and user specified `rwd_agg` object\n3. Aggregating and summarizing many scenarios\n    * Repeatable; allows user to process many slots for many scenarios at once\n    * Repeats summary of a single scenario on multiple scenarios and combines results together\n    * Relies on `rw_scen_aggregate()` and user specified `rwd_agg` object\n\nCheck out the workflow vignette for more details:\n\n```{r, eval = FALSE}\nvignette(\"rwdataplyr-workflow\", package = \"RWDataPlyr\")\n```\n\n## Log\n* 2020-04-17: version 0.6.4 available\n* 2020-03-03: version 0.6.3 available\n* 2018-08-16: version 0.6.2 available (first version available on CRAN)\n* 2018-06-07: version 0.6.1 available\n* 2018-04-10: version 0.6.0 available\n* 2017-05-26: version 0.5.0 available\n* 2016-11-01: version 0.4.1.1 available. The package is now actually called RWDataPlyr.\n* 2016-10-20: version 0.4.1 available\n* Previous versions were originally available as the `RWDataPlot` package\n  * 2016-07-13: version 0.4 available\n  * 2016-03-22: version 0.3 available\n  * 2015-07-01: version 0.2 available\n  * 2014-09-16: working to create an R Package from existing code.\n  \n## Disclaimer\n\nThis software is in the public domain because it contains materials that originally came from the U.S. Bureau of Reclamation, an agency of the United States Department of Interior. \n\nAlthough this code has been used by Reclamation, no warranty, expressed or implied, is made by Reclamation or the U.S. Government as to the accuracy and functioning of the program and related program material nor shall the fact of distribution constitute any such warranty, and no responsibility is assumed by Reclamation in connection therewith.\n\nThis software is provided \"AS IS.\"\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbouldercodehub%2Frwdataplyr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbouldercodehub%2Frwdataplyr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbouldercodehub%2Frwdataplyr/lists"}