I\'m making word frequency tables with R and the preferred output format would be a JSON file. sth like
{
\"word\" : \"dog\",
\"frequency\" : 12
}
Is there any
RJSONIO is a package "that allows conversion to and from data in Javascript object notation (JSON) format". You can use it to export your object as a JSON file.