https://github.com/mgirlich/jsontools
Helpers to work with JSON in R
https://github.com/mgirlich/jsontools
Last synced: about 1 month ago
JSON representation
Helpers to work with JSON in R
- Host: GitHub
- URL: https://github.com/mgirlich/jsontools
- Owner: mgirlich
- License: gpl-3.0
- Created: 2020-01-24T11:12:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-21T06:37:29.000Z (about 2 years ago)
- Last Synced: 2025-02-27T05:51:09.413Z (about 2 months ago)
- Language: R
- Size: 374 KB
- Stars: 66
- Watchers: 3
- Forks: 1
- Open Issues: 16
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Support: .github/SUPPORT.md
Awesome Lists containing this project
- jimsghstars - mgirlich/jsontools - Helpers to work with JSON in R (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# jsontools
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[](https://CRAN.R-project.org/package=jsontools)
[](https://github.com/mgirlich/jsontools/actions/workflows/R-CMD-check.yaml)## Overview
With the increasing support of JSON in databases and since 2016 even support
in the SQL standard, JSON data in vectors become more common.
With jsontools one can easily work with JSON vectors in R.The three main parts are:
1. parsing from JSON and converting to JSON
2. extract data from JSON without parsing everything
3. manipulate JSON directly## Installation
``` r
install.packages("jsontools")# Or the the development version from GitHub:
devtools::install_github("mgirlich/jsontools")
``````{r child='vignettes/got_chars.Rmd'}
```