Transform JSON string into a native R object

fromJSON(...)

Arguments

...

Extra arguments passed to this function

Value

a native R data structure

Examples

fromJSON(toJSON(data.frame(a=8:10, b=LETTERS[8:10], stringsAsFactors=FALSE)))
#> a b #> 1 8 H #> 2 9 I #> 3 10 J