Hello, I downloaded the JSON data from Kaggle, Rate My Professor Reviews 5C Colleges | Kaggle, and I want to convert it into a standard data frame in .csv format. However, it only returns one row, 28090 columns. Can anyone help me with it? Really appreciate any help and suggestions.
Here is the link for the dataset: https://drive.google.com/file/d/1X8VCXxdvRzRGlnXWjoyz9JwS0fvLFxID/view?usp=sharing
Here is my code
library(rjson)
rmp <- fromJSON(file="all_reviews.json")
print(rmp)
rmp_df <- as.data.frame(rmp)
head(rmp_df)