2017-02-20 11 views
-1

私はこのようなグラフを持っています。R - 調査データのバブルグラフ

enter image description here 私は縦型レイアウトが好きです。しかし、バーの代わりに、以下のデータを使用してバブルを作成したいと思います。 PCIは、Mean値の周りのバブルのサイズです。

           PCI  Mean 
Human adaptation to carnivores     0.07 3.37 
Acceptance of some human-carnivore conflict  0.31 2.10 
Enforcement and monitoring of the rule of law 0.05 3.28 
Locals' acceptance of management authority  0.03 3.46 
Carnivore adaptation to humans     0.06 3.12 
Permitting regulated hunting of carnivores  0.39 1.95 
Prohibiting any killing of carnivores   0.34 1.46 

Rまたはggplotでこれを行う方法がわかりません。

+1

私はggplot(df、aes(x = item、y = Mean、ymin = Mean-PCI、ymax = Mean + PCI))+ geom_pointrange() 'があなたに"気泡 "を与えると思います。 – lukeA

+0

それは助けます!私はそれを 'ggplot(df、aes(x = Mean、y = item、、xmin = 1、xmax = 5、size = PCI)+ geom_point()'に少し変更しました。 – user2359494

答えて

0

@lukeAの助けに基づいて、私はggplot(df, aes(x=Mean, y=item, , xmin=1, xmax=5,size=PCI)) + geom_point()を使用しました。

関連する問題