I am trying to make a histogram with a column from a dataframe which looks like
DataFrame[C0: int, C1: int, ...]
If I were to make a histog
One easy way could be
import pandas as pd x = df.select('symboling').toPandas() # symboling is the column for histogram x.plot(kind='hist')