For the code:
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
data = list(map(lambda n:str(n), np.random.choice(np.arange(1,50), 1000)))
fig, ax = plt.subplots(1,1)
sns.countplot(y=data,ax=ax)
ax.set_yticklabels(ax.get_yticklabels(), fontsize=5)
plt.show()
I got the plot below. The y-axis is string type 1~2 digit integers. I want to convert them to letters like
1->AL, 2->AK, 4->AZ, 5->AR, ...
I tried using ax.set_yticks(ylabel, converted ylabel)
, but it did not work. How can I do that?
You need to create a function that converts numbers to the desired letter representation.