y軸を逆にしてx軸を上に置きます。すべてが正常に動作しているが、私はy軸が消失得scale_y_reverse()
機能でのy軸の範囲を提供し、警告メッセージを表示しようとすると - Removed 44 rows containing missing values (geom_point)
をここに私のコード - はscale_y_reverse()がggplot2で機能していません
ggplot(out,aes(x=self_w,y=self_h,col=log(out$force),xlim(0,593),ylim(0,790)))+ geom_point(size=log(out$force))+
scale_fill_continuous(low="green",high="red") +scale_x_continuous(limits=c(0,593),expand=c(0,0),position = "top")+
scale_y_reverse(limits=c(0,790),expand=c(0,0))
Hereは私のデータセットです。 scale_y_reverse()
の引数を削除するとうまくいくが、それは私が必要とするものではない。また、色の目盛はからred
に変更されていません。誰も私が問題を見つけるのを助けることができますか?ありがとう。
Ah ..iを実行する前に、out $ force [out $ force == 0] = 1'ですべて0を1に変更して、log(1)がゼロになるようにしました。 –