I am attempting to utilize a JSON file as input data. Below is an excerpt of sample data.
[
{
id: 1671349531,
name: "A Wild Restaurant Expansion",
blurb: "We are looking to expand from our current location to a new and better facility...",
goal: 17000,
pledged: 0,
state: "live",
slug: "a-wild-restaurant-expansion",
...
}
Is it feasible to convert this intricate JSON format into a CSV for easier data manipulation in R?
For instance, there are key categories within the data like basic information, photo, creator, location, category, urls.
Would it be practical to create a CSV file with subcategories such as basic_information.id, creator.id, etc.?