Skip to content

Commit

Permalink
url change in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sckott committed Sep 20, 2017
1 parent 8f71130 commit 07d1469
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ R interface to jq, a JSON processor http://stedolan.github.io/jq/
convert from json to R, or without using regular expressions. This
means that the eventual loading into R can be quicker.

- [Introduction vignette](https://cran.r-project.org/web/packages/jqr/vignettes/jqr_vignette.html)
- Introduction vignette at <https://cran.r-project.org/package=jqr>

## Installation

Expand Down Expand Up @@ -106,9 +106,9 @@ jq(str, "[.[] | {name: .foo} | keys]")
```

Note that we print the output to look like a valid JSON object to make it
easier to look at. However, it's a simple character string or vector of strings.
A trick you can do is to wrap your jq program in brackets like `[.[]]` instead
of `.[]`, e.g.,
easier to look at. However, it's a simple character string or vector of strings.
A trick you can do is to wrap your jq program in brackets like `[.[]]` instead
of `.[]`, e.g.,

```{r}
jq(str, ".[]") %>% unclass
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ R interface to jq, a JSON processor http://stedolan.github.io/jq/
convert from json to R, or without using regular expressions. This
means that the eventual loading into R can be quicker.

- [Introduction vignette](https://cran.r-project.org/web/packages/jqr/vignettes/jqr_vignette.html)
- Introduction vignette at <https://cran.r-project.org/package=jqr>

## Installation

Expand Down Expand Up @@ -128,9 +128,9 @@ jq(str, "[.[] | {name: .foo} | keys]")
```

Note that we print the output to look like a valid JSON object to make it
easier to look at. However, it's a simple character string or vector of strings.
A trick you can do is to wrap your jq program in brackets like `[.[]]` instead
of `.[]`, e.g.,
easier to look at. However, it's a simple character string or vector of strings.
A trick you can do is to wrap your jq program in brackets like `[.[]]` instead
of `.[]`, e.g.,


```r
Expand Down

0 comments on commit 07d1469

Please sign in to comment.