-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
45 lines (34 loc) · 1.28 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# jsontools
<!-- badges: start -->
[![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)
<!-- badges: end -->
## 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'}
```