In [1]:
import matplotlib.pyplot as plt
%matplotlib inline
import numpy as np
import pandas as pd
from mpl_toolkits.mplot3d.axes3d import Axes3D
%matplotlib notebook
In [2]:
dsname = './datasets/test.json'
mdsname = './datasets/mtest.json'
ort = 'split'
df = pd.read_json(dsname,typ='frame',orient=ort)
df.columns.name = 'file'
mdf= pd.read_json(mdsname,typ='frame',orient=ort)
mdf.columns.name = 'file'
In [3]:
mdf.head()
Out[3]:
In [ ]: