I logged a table artifact.
Now I want to analyze it using pd.DataFrame.
I’ve downloaded the artifact.
However, I don’t mange to convert the json into dataframe.
Is there a method for doing so?
Thanks
import wandb
import pandas as pd
import os.path as osp
run = wandb.init()
artifact = run.use_artifact('PATH/run-1n4emfxy-test_table:v19', type='run_table')
artifact_dir = artifact.download()
path_to_json = osp.join( next(iter(artifact._download_roots)), 'test_table.table.json')
pd.read_json(path_to_json)