Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ggplot で散布図を作成しようとしていますが、ポイントを緩めて、滑らかな線と信頼区間のみを表示したいと考えています。機能を確認geom_point()しましたが、ポイント/基になるデータが非表示になるように機能をオフにするオプションはありません。助言がありますか?とても有難い。
geom_point()
ジョセフ
ラインの周りに信頼区間のある滑らかなラインをプロットするには、 を使用する必要がありますgeom_smooth()。観測値が 1000 未満の場合は黄土を使用し、それ以上の場合は gam を使用して線を平滑化します。ただし、引数でスムージング方法を変更できますmethod=。
geom_smooth()
method=
ggplot(mtcars,aes(wt,mpg))+geom_smooth()