Skip to content
Snippets Groups Projects
Commit 078d6cfe authored by Jan Bernoth's avatar Jan Bernoth
Browse files

set label to label1

parent a859418d
No related branches found
No related tags found
No related merge requests found
...@@ -369,9 +369,9 @@ class Plotter: ...@@ -369,9 +369,9 @@ class Plotter:
# Increase the font size for the x and y tick labels # Increase the font size for the x and y tick labels
for tick in axes.xaxis.get_major_ticks(): for tick in axes.xaxis.get_major_ticks():
tick.label.set_fontsize(15) tick.label1.set_fontsize(15)
for tick in axes.yaxis.get_major_ticks(): for tick in axes.yaxis.get_major_ticks():
tick.label.set_fontsize(15) tick.label1.set_fontsize(15)
sns.set_theme(style="whitegrid") sns.set_theme(style="whitegrid")
sns.despine(left=True) sns.despine(left=True)
...@@ -401,9 +401,9 @@ class Plotter: ...@@ -401,9 +401,9 @@ class Plotter:
# Increase the font size for the x and y tick labels # Increase the font size for the x and y tick labels
for tick in axes.xaxis.get_major_ticks(): for tick in axes.xaxis.get_major_ticks():
tick.label.set_fontsize(15) tick.label1.set_fontsize(15)
for tick in axes.yaxis.get_major_ticks(): for tick in axes.yaxis.get_major_ticks():
tick.label.set_fontsize(15) tick.label1.set_fontsize(15)
sns.set_theme(style="whitegrid") sns.set_theme(style="whitegrid")
save_plot(plt, 'demographics_gender') save_plot(plt, 'demographics_gender')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment