I am struggling to plot a boxplot for custom column names of dataframe and afterwards fill them with custom different colors.
df=pd.DataFrame([[1,2,3],[3,4,3],[3,4,3]],columns=['x','y','z'])
df.boxplot(column=['x', 'y'])
plt.show()
I can't customize colours of my boxplots. Is there any way how to do it with simple code?