An open API service indexing awesome lists of open source software.

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

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%"
)
```

# jsontools

[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![CRAN status](https://www.r-pkg.org/badges/version/jsontools)](https://CRAN.R-project.org/package=jsontools)
[![R-CMD-check](https://github.com/mgirlich/jsontools/actions/workflows/R-CMD-check.yaml/badge.svg)](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'}
```