Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A Code Example in Jupyter Notebook:

Code Block
## inheritedcontinue from previous sectionabove ##
import pandas as pd
df = pd.DataFrame(raw_df.objs.toJson())
df.head()
df.drop('meta', axis=1, inplace=True)
df.drop('type', axis=1, inplace=True)
df.drop('version', axis=1, inplace=True)
df.drop('id', axis=1, inplace=True)
df.head()

...