I'm trying to use pandastable Data Explorer to plot data. I have a simple data frame generated from the following code:
data = [['Jan', 1.2], ['Feb', 0.98], ['Mar', 1.12], ['Apr', 0.54], ['May', 0.99], ['Jun', 1.12]]
df_EmployeeTTest = pd.DataFrame(data, columns=['Date', 'Employee'])
I can plot this easily with matplotlib. When I try to do it with pandatables' DataExplorer, I constantly get "subplots should be a bool or an iterable."
Verified the data types:
print(df_EmployeeTTest.dtypes)
Date object
Employee float64
dtype: object
Anyone know what I'm doing wrong?