You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
one solution is create a param like nullValue, for exemple: fromJSON(json, nullValue = NA) fromJSON(json, nullValue = "NA")
or fromJSON(json, nullValue = "0")
Hello,
I have embedded data.frame into lists. See example:
toJSON(tests) is OK, "NA" is stored as expected (string)
but back to R with fromJSON will replace "NA" by NA which is not what is expected:
By using simplify "NA" is kept but not the structure:
Any suggestions to keep the string "NA" and the structure?
Thanks
The text was updated successfully, but these errors were encountered: