It is not correct to write pd.Dataframe(res);
res = df.resolution.unique()
a = pd.DataFrame()
a['Unique Resolution Types'] = res
Now, it will work.
CLICK HERE to find out more related problems solutions.
It is not correct to write pd.Dataframe(res);
res = df.resolution.unique()
a = pd.DataFrame()
a['Unique Resolution Types'] = res
Now, it will work.
CLICK HERE to find out more related problems solutions.