I have started using pydatatable for one of my data analysis project, here i have faced few issues in making charts of pydatatable object using seaborn library.
does pydatatable support seaborn visualizations in current version of it 0.8?.
I have tried to visualise a column with a chart : histogram, boxplot etc.etc. as showed in the sample code below
np.random.seed(1)
dt_test = dt.Frame(np.random.randn(1000))
sns.boxplot(x="CO",data=dt_test)
plt.show()
On running above code chunk it should display a boxplot of the provided column, but here it's giving an error as
AttributeError: 'Frame' object has no attribute 'get'
Could you please write to me here how to solve this and have you ever tried to use these two packages together?.