fromJSON {rjson} | R Documentation |
Convert a JSON object into an R object.
fromJSON( json_str )
json_str |
a JSON object to convert |
R object that corresponds to the JSON object
#watch out for R turning null into FALSE fromJSON( "[true, false, null]" ) ##[1] TRUE FALSE __FALSE__ #but if you use a hash, this will be avoided fromJSON( '{"a":true, "b":false, "c":null}' )