Apologies for repeatedly asking for help; @sanity
Okay; so the catplot (bar graph) has y-axis read as “count” that label needs to be changed to Total. So; I look up seaborn documentation and it says “methods to tweak presentation”
But; when I use the following code to set_axis labels it doesnt work?
fig.set_axis_labels("", "total")
Traceback (most recent call last):
File “main.py”, line 6, in
medical_data_visualizer.draw_cat_plot()
File “/home/runner/ColossalRegalProject/medical_data_visua
lizer.py”, line 32, in draw_cat_plot
fig.set_axis_labels("", “total”)
AttributeError: ‘Figure’ object has no attribute ‘set_axis_l
abels’