I can plot a normal bar plot with searborn, but when i specify orient = 'h' nothing shows up in my plot.
df = pd.DataFrame(['A','A','A','B','B','C'],columns = ['letters'])
data =df.letters.value_counts()
sns.barplot(x = data.index, y = data)
With orient:


