Files
HowBadIsMyBatch/src/TestHelper.py
frankknoll e87fe0c8ba refactoring
2022-11-22 12:40:26 +01:00

9 lines
201 B
Python

import pandas as pd
class TestHelper:
@staticmethod
def createDataFrame(index, columns, data, dtypes={}):
return pd.DataFrame(index=index, columns=columns, data=data).astype(dtypes)