{"id":39903681,"url":"https://github.com/jentjr/manager","last_synced_at":"2026-01-18T15:32:39.719Z","repository":{"id":12436873,"uuid":"15094004","full_name":"jentjr/manager","owner":"jentjr","description":"Tools for plotting and analyzing environmental data","archived":false,"fork":false,"pushed_at":"2024-01-12T18:35:39.000Z","size":83015,"stargazers_count":6,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-01-14T03:49:02.535Z","etag":null,"topics":["environmental-engineering","environmental-monitoring","groundwater","water-quality"],"latest_commit_sha":null,"homepage":"https://jentjr.github.io/manager/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jentjr.png","metadata":{"files":{"readme":"README.Rmd","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2013-12-11T00:37:55.000Z","updated_at":"2023-02-28T16:31:20.000Z","dependencies_parsed_at":"2024-01-17T05:36:48.667Z","dependency_job_id":"a34cc653-80ac-4fbd-bfae-200979a69c70","html_url":"https://github.com/jentjr/manager","commit_stats":{"total_commits":460,"total_committers":2,"mean_commits":230.0,"dds":"0.034782608695652195","last_synced_commit":"d5ff0abe0466777fef42baa8a779eff349a76a7b"},"previous_names":["jentjr/gwstats"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jentjr/manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jentjr%2Fmanager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jentjr%2Fmanager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jentjr%2Fmanager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jentjr%2Fmanager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jentjr","download_url":"https://codeload.github.com/jentjr/manager/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jentjr%2Fmanager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28539228,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T14:59:57.589Z","status":"ssl_error","status_checked_at":"2026-01-18T14:59:46.540Z","response_time":98,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["environmental-engineering","environmental-monitoring","groundwater","water-quality"],"created_at":"2026-01-18T15:32:39.628Z","updated_at":"2026-01-18T15:32:39.707Z","avatar_url":"https://github.com/jentjr.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\neditor_options: \n  chunk_output_type: console\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, echo = FALSE, message=FALSE}\nlibrary(manager)\n\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\"\n)\n```\n\n[![Build Status](https://travis-ci.org/jentjr/manager.svg?branch=master)](https://travis-ci.org/jentjr/manager)\n[![Build status](https://ci.appveyor.com/api/projects/status/wmatiqqb5e8v01lp/branch/master?svg=true)](https://ci.appveyor.com/project/jentjr/manager/branch/master)\n[![Coverage Status](https://img.shields.io/codecov/c/github/jentjr/manager/master.svg)](https://codecov.io/github/jentjr/manager?branch=master)\n\n## Overview\nThe goal of manager is to provide a set of tools to simplify plotting and\nanalyzing environmental data that is in a [tidy format](https://cran.r-project.org/web/packages/tidyr/vignettes/tidy-data.html). Manager also provides \nfunctions to read data from external sources such as MANAGES and gINT.\n\n## Example\n```{r, eval = FALSE}\nlibrary(manager)\n\n# reading data from external sources\ndata \u003c- read_manages3(\"C:/path/to/Site.mdb\")\n```\n\n```{r, time-series, fig.height=6, fig.width=9, results='hide', warning=FALSE}\n# load example data and plot time series of selected wells and constituents\ndata(\"gw_data\")\n\nwells \u003c- c(\"MW-1\", \"MW-2\")\n\nparams \u003c- c(\"Magnesium, dissolved\", \n            \"Sodium, dissolved\", \n            \"Chloride, total\", \n            \"Sulfate, total\", \n            \"Potassium, dissolved\")\n\ngw_data %\u003e%\n  filter(location_id %in% wells, param_name %in% params) %\u003e%\n  series_plot(., facet_var = \"param_name\", group_var = \"location_id\")\n```\n\n```{r boxplots, fig.height=6, fig.width=9, results='hide'}\n# create boxplots filled by gradient\ngw_data %\u003e%\n  filter(param_name == \"Chloride, total\", \n         location_id %in% c(\"MW-1\", \"MW-2\", \"MW-3\", \"MW-4\", \"MW-5\", \"MW-6\", \"MW-7\", \"MW-8\")) %\u003e%\n  mutate(gradient = if_else(location_id %in% wells, \"upgradient\", \"downgradient\")) %\u003e% \n  boxplot(., fill = \"gradient\")\n```\n\nPiper Diagrams and more...\n```{r, piper-plot, fig.height=6, fig.width=9, results='hide', warning=FALSE}\ngw_data %\u003e%\n  piper_plot()\n```\n\n## Installation\n\nTo install the `manager` package you must first make sure you have a working \ndevelopment environment.\n\n* **Windows**: Install [Rtools](http://cran.r-project.org/bin/windows/Rtools/).  \n* **Mac**: Install Xcode from the Mac App Store.  \n* **Linux**: Install a compiler and various development libraries (details vary across differnet flavors of Linux).  \n\nThen, install the `remotes` package from CRAN with \n```R\ninstall.packages(\"remotes\")\n```\nAfter you have `remotes` installed you can install `manager` using the command \n```R\nremotes::install_github(\"jentjr/manager\")\n```\nEventually, the package might be submitted to CRAN, but until then you'll have\nto install with `remotes`.\n\n## Shiny App\n\nA [shiny app](http://shiny.rstudio.com) is included with the package. It can \nbe launched locally by running `manager::manager()`, or you can browse to the\n[shinyapps.io](http://shinyapps.io) website for \n[manager](http://jentjr.shinyapps.io/manager). In order to read a MANAGES, or \ngINT database you must be running a local server with `RODBC` installed. \n`R` must either be in 32-bit, or 64-bit mode depending on which drivers are installed for microsoft access. MANAGER has only been tested in 32-bit mode.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjentjr%2Fmanager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjentjr%2Fmanager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjentjr%2Fmanager/lists"}