I scraped a Jason file from web
json_file <- "https://example.com/race=21325&state=declare&advanced_analysis=1&page=1"
json_data <- fromJSON(json_file)
json_data
The data from from json as following link:
https://drive.google.com/file/d/1QZjIEZE4bJx4KZyrsfuSyYbVFsMrJvkn/view?usp=sharing
It shows in console with 315 columns, but when I check it with
name(json_data)
it shows only 64 column in data set, I can't copy, select data in column 65-315. Any ideas about this problem ?