Unanswered
Is There A Way To Access Dataframe Logged Using Report_Table From The A Task Instance Instantiated Using Task.Get_Task(Id='.....')?
I Have:
T = Task.Get_Task(Id='....')
And I Am Looking For Something Along The Lines Of:
Df = T.Get_Table('Table Name')
ThickDove42 sorry, it took some time 🙂import json from trains.backend_api.session.client import APIClient client = APIClient() events = client.events.get_task_plots(task='task_id_here') table = json.loads(events.plots[0]['plot_str']) print('column order', table['data'][0]['cells']['values'])
Not the most comfortable way, but at least it is there
151 Views
0
Answers
3 years ago
one year ago