I'm trying to create a boxplot and I'm running into this error - 'Series' object has no attribute 'boxplot'
Here is my current code:
fig = plt.figure(figsize=(8,6))
ax = fig.gca()
frame['ArrDelay'].boxplot(ax = ax)
ax.set_title('BoxPlot of ArrDelay')
ax.set_xlabel('ArrDelay')
ax.set_ylabel('Delay Time')
Run Code Online (Sandbox Code Playgroud)
Any suggestions?