Re: [R] jsonlite

2018-11-06 Thread William Dunlap via R-help
It would make helping you easier if you presented your data in a format that others could copy and paste into R. E.g., z <- list(data.frame(favoriteValue=c(23527,21837), Classification=c("","xyxy")), data.frame(favoriteValue=c(25427,21237,21997), Classification=c("","xyxy","xyx

[R] jsonlite

2018-11-06 Thread JEFFERY REICHMAN
r-help Forum With a bit of r-help yesterday I was able to structure a JSON file such that I can read it within the R environment and export what I need except for one list object. So when I run location <- json.raw[["favorites"]] thead(location) # R returns something like ... [[1]] fa

Re: [R] JSONlite import problem

2015-10-25 Thread K. Elo
Hi, thanks to Duncan and Jeroen to quick replies. I was actually my thinking error :) I suppoed 'fromJSON' to cope with a multi-line file or a list, but this seems not to be the case. So I first read the file with 'readLines' into a list and processed all items with 'fromJSON' within a for-lo

Re: [R] JSONlite import problem

2015-10-24 Thread Jeroen Ooms
On Sat, Oct 24, 2015 at 1:35 PM, Duncan Murdoch wrote: > > > However, editing the file with a text editor to create "proper" EOF > > doesn't help. > > The problem is that you have valid-looking JSON objects on each odd > numbered line, separated by single blank lines. The parser expects an > EOF

Re: [R] JSONlite import problem

2015-10-24 Thread Duncan Murdoch
On 24/10/2015 12:11 AM, K. Elo wrote: > Hi! > > You can download the example file with this link: > https://www.dropbox.com/s/tlf1gkym6d83log/example.json?dl=0 > > BTW, I have used a JSON validator and the problem seems to related to > wrong/missing EOF. > > --- snip --- > Error: Parse error on

Re: [R] JSONlite import problem

2015-10-23 Thread K. Elo
Hi! You can download the example file with this link: https://www.dropbox.com/s/tlf1gkym6d83log/example.json?dl=0 BTW, I have used a JSON validator and the problem seems to related to wrong/missing EOF. --- snip --- Error: Parse error on line 1: ...:"1436705823768"} {"created_at":"Sun J -

Re: [R] JSONlite import problem

2015-10-23 Thread Duncan Murdoch
On 23/10/2015 3:44 PM, K. Elo wrote: Hi! I have collected 500.000+ tweets with a Python script using 'tweepy', which stored the data in JSON format. I would like to use R for data analysis, but have encountered problems when trying to import the data file with 'jsonlite'. Here what I have tried

[R] JSONlite import problem

2015-10-23 Thread K. Elo
Hi! I have collected 500.000+ tweets with a Python script using 'tweepy', which stored the data in JSON format. I would like to use R for data analysis, but have encountered problems when trying to import the data file with 'jsonlite'. Here what I have tried: > data.df<-fromJSON("example.js