You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I updated my pandas to v.0.17.0. After that, pandas series is not showing in Variable explorer. I guess Type core.series.Series not a supported Type under variable explorer?
here is the example, test and df will show up in variable explorer, but not s1.
import numpy as np
import pandas as pd
test = np.array([1,2,3,4,5])
df = pd.DataFrame(test, columns = ['test'])
s1 = pd.Series(test)
type(s1)
pandas: v0.17.0
spyder: 2.3.7
The text was updated successfully, but these errors were encountered:
I updated my pandas to v.0.17.0. After that, pandas series is not showing in Variable explorer. I guess Type core.series.Series not a supported Type under variable explorer?
here is the example, test and df will show up in variable explorer, but not s1.
pandas: v0.17.0
spyder: 2.3.7
The text was updated successfully, but these errors were encountered: