I am having a really tough time increasing the size of my seaborn plot I made. Find code below, and the output:
g = sns.catplot(
data=df, kind="bar",
x="store_name", y="total_sales_million_dollars", hue="month", alpha=1, height=6).set(title='Aggregate sales by store, by month')
g.despine(left=True)
g.set_axis_labels("Store", "Sales by Millions")
g.legend.set_title("Month")
sns.set(rc={"figure.figsize":(15, 8)})
Ideally, I'd like to blow this image up. I've been trying to play with the figsize, but it doesn't seem to change anything for me.
Does anyone have recommendations?
