Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae34212 commit f06340eCopy full SHA for f06340e
1 file changed
examples/showcase/bachelors_degrees_by_gender.py
@@ -35,7 +35,7 @@
35
# Make sure your axis ticks are large enough to be easily read.
36
# You don't want your viewers squinting to read your plot.
37
plt.xticks(range(1970, 2011, 10), fontsize=14)
38
-plt.yticks(range(0, 91, 10), ['{}%'.format(x)
+plt.yticks(range(0, 91, 10), ['{0}%'.format(x)
39
for x in range(0, 91, 10)], fontsize=14)
40
41
# Provide tick lines across the plot to help your viewers trace along
0 commit comments