Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nationalparkservice/qckit
QCkit provides useful functions for data quality control and manipulation including updating data to DarwinCore standards, unit conversions, and data flagging.
https://github.com/nationalparkservice/qckit
darwin-core data-quality data-science npsdataverse quality-control r r-package rstats
Last synced: about 1 month ago
JSON representation
QCkit provides useful functions for data quality control and manipulation including updating data to DarwinCore standards, unit conversions, and data flagging.
- Host: GitHub
- URL: https://github.com/nationalparkservice/qckit
- Owner: nationalparkservice
- License: unlicense
- Created: 2020-04-22T05:38:18.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-11T15:50:13.000Z (3 months ago)
- Last Synced: 2024-09-12T00:19:02.004Z (3 months ago)
- Topics: darwin-core, data-quality, data-science, npsdataverse, quality-control, r, r-package, rstats
- Language: R
- Homepage: https://nationalparkservice.github.io/QCkit/
- Size: 1.81 MB
- Stars: 5
- Watchers: 12
- Forks: 6
- Open Issues: 12
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![CodeFactor](https://www.codefactor.io/repository/github/roblbaker/qckit/badge)](https://www.codefactor.io/repository/github/roblbaker/qckit)
[![R-CMD-check](https://github.com/nationalparkservice/QCkit/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/nationalparkservice/QCkit/actions/workflows/R-CMD-check.yaml)# QCkit
QCkit is a collection of quality control functions to munge, check, flag, correct, and summarize data collected by the U.S. National Park Service Inventory & Monitoring Division. These functions will be particularly useful in preparing data for metadata creation and in writing Data Release Reports, but may include aspects that are more widely applicable outside the National Park Service (such as converting UTMs to Latitude and Longitude).
Functions are typically user generated and so may not have been thoroughly tested for all use cases.
If you would like to contribute useful functions please initiate a pull request.
Please request enhancements and bug fixes through [Issues](https://github.com/nationalparkservice/QCkit/issues).
# Installation
Stand-alone installation:
``` r
# install.packages("devtools")
devtools::install_github("nationalparkservice/QCkit")
library(QCkit)
```QCkit is also part of the [NPSdataverse](https://nationalparkservice.github.io/NPSdataverse/) and can be installed along with the other components of NPSdataverse:
```r
# install.packages("devtools")
devtools::install_github("nationalparkservice/NPSdataverse")
library(NPSdataverse)
```