このようなデータセットがあり、場所を色として、単語を x 軸として使用する必要があります。
country good amazing best
Aus 12 45 12
Fiji 25 5 23
USA 45 5 12
UK 88 258 18
理想的には、次のようになります。
次のコードを試しました:
positive.iplot(kind = 'bar', title = 'Frequency of Positive Words per Country', y = 'Location', x = ['good', 'amazing', 'best'])

