how to read a json file in jupyter notebook code example
Example 1: how to read jason file in jupyter notebook
import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib as plt
import json
%matplotlib inline
with open("pud.json") as datafile:
data = json.load(datafile)
dataframe = pd.DataFrame(data)
Example 2: how to read jason file in jupyter notebook
pandas.read_json("pud.json")