Monitor and Agent State Merge

This commit is contained in:
steffen-illium 2021-05-14 15:23:12 +02:00
parent 6b1b14fa87
commit bd3da709ad

View File

@ -64,6 +64,8 @@ class FactoryMonitor:
def to_dict(self): def to_dict(self):
return dict(self) return dict(self)
def to_pd_dataframe(self): def to_pd_dataframe(self):
import pandas as pd import pandas as pd
return pd.DataFrame.from_dict(self.to_dict()) return pd.DataFrame.from_dict(self.to_dict())