I tried to plot violin plot in plotly and observed that plotly scales the data according to the width and not to area of each category. This scale parameter can be controlled in a seaborn library, but not in plotly. Is there a way to scale the violins according to the area in plotly as it is done in seaborn?
#plotly
fig = ff.create_violin(flats, data_header='rent', group_header='type', width =900, height=600, )
#seaborn
sns.violinplot(y='rent',x='type',data=flats,ax = axes, scale='area')