Прямая линия, появившаяся на барном участке на берегу моря - PullRequest
0 голосов
/ 03 апреля 2019

У меня есть строка, появляющаяся на одной линии моего гистограммы

, вот как это выглядит

и мой код ниже

sns.barplot(x='Police force sent NRM referral for Crime Recording', y='Total', data=dfForces1)
sns.despine()
plt. xticks(rotation=90)


import matplotlib.ticker as ticker

ax_data = sns.barplot(x= 'Police force sent NRM referral for Crime Recording', y = 'Total', data=dfForces1) # change as per how you are plotting, just for an example
ax_data.yaxis.set_major_locator(ticker.MultipleLocator(40)) # it would have a tick frequency of 40, change 40 to the tick-frequency you want.

ax_data.yaxis.set_major_formatter(ticker.ScalarFormatter())````

...