Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.2.4 rc #116

Merged
merged 6 commits into from
Dec 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
Package: tidyjson
Title: Tidy Complex JSON
Version: 0.2.3.9001
Title: Tidy Complex 'JSON'
Version: 0.2.4.9000
Authors@R: c(
person("Jeremy","Stanley",,"[email protected]",c("aut")),
person("Cole","Arendt",, "[email protected]",c("aut", "cre"))
)
Description: Turn complex JSON data into tidy data frames.
Description: Turn complex 'JSON' data into tidy data frames.
Depends:
R (>= 3.1.0)
Imports:
assertthat,
jsonlite,
purrr,
dplyr (>= 0.7.0),
dplyr (>= 0.8.3),
magrittr,
tidyr (>= 0.7.0),
tidyr (>= 1.0.0),
tibble
License: MIT + file LICENSE
LazyData: true
Expand Down
6 changes: 4 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# tidyjson dev
# tidyjson 0.2.4

## New functions

Expand All @@ -12,6 +12,8 @@

## Bug fixes and minor changes

* Improve compatibility with newer `dplyr` and `tidyr`

* `DROP=TRUE` caused an error. Altered behavior to be consistent with `tbl_df`

* Fix `spread_all(recursive=FALSE)` bug that caused an error (#65)
Expand All @@ -25,7 +27,7 @@
* Fix json_structure() failure if `document.id` missing by imputing
the missing `document.id`. (#86)

# tidyjson 0.2.1.9000
# tidyjson 0.2.2

## New functions

Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,15 @@ Status](https://ci.appveyor.com/api/projects/status/github/colearendt/tidyjson?b
[![Coverage
Status](https://codecov.io/github/colearendt/tidyjson/coverage.svg?branch=master)](https://codecov.io/github/colearendt/tidyjson?branch=master)
[![CRAN
Activity](http://cranlogs.r-pkg.org/badges/tidyjson)](https://cran.r-project.org/web/packages/tidyjson/index.html)
Activity](http://cranlogs.r-pkg.org/badges/tidyjson)](https://CRAN.R-project.org/package=tidyjson)
[![CRAN
History](http://cranlogs.r-pkg.org/badges/grand-total/tidyjson)](https://cran.r-project.org/web/packages/tidyjson/index.html)
History](http://cranlogs.r-pkg.org/badges/grand-total/tidyjson)](https://CRAN.R-project.org/package=tidyjson)

![tidyjson
graphs](https://cloud.githubusercontent.com/assets/2284427/18217882/1b3b2db4-7114-11e6-8ba3-07938f1db9af.png)

tidyjson provides tools for turning complex [json](http://www.json.org/)
into
[tidy](https://cran.r-project.org/web/packages/tidyr/vignettes/tidy-data.html)
data.
tidyjson provides tools for turning complex [json](http://www.json.org/) into
tidy data.

Installation
------------
Expand Down