Versions Compared

Key

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

...

A Code Example in Jupyter Notebook:

Code Block
## continue from above ##
import pandas as pd
df = pd.DataFrame(raw_data.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()


Image RemovedImage Added

Users can then manipulate the resulting DataFrame, using common programming libraries and frameworks.

...