Home

Published

- 1 min read

how to read jason file in jupyter notebook

img of how to read jason file in jupyter notebook

The solution for this is noted below

how to read jason file in jupyter notebook

Solution

   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)

Try other methods by searching on the site. That is if this doesn’t work