I have a big dataframe of around 30000 rows and a single column containing a json string. Each json string contains a number of variables and its value I want to break this
with open(json_file) as f: df = pd.DataFrame(json.loads(line) for line in f)