I had this issue when displaying pandas data frames. Any ideas on how to display a pandas dataframe?
display(mydataframe)
Exception: Cannot call display(<class 'pandas.core.frame.DataFrame'>)
yes, I installed pandas 0.23 because I was using this feature:
qcut
duplicates : {default ‘raise’, ‘drop’}, optional
If bin edges are not unique, raise ValueError or drop non-uniques.
New in version 0.20.0.
It is so unfortunate that we cannot render pandas dataframes. In R you can display dataframes and datatables only using display(mydata).Is there an easy way to transform pandas dataframes to pyspark dataframes?I ran your example but I cannot plot any...