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.
2つの累積分布曲線を同じプロットに入れる方法を誰か教えてもらえますか?
このコマンドの実行中:
plot(x,pweibull(x,shape=1.120662,scale=18.496778),type="l",col=4) plot(ecdf(SIZEDIST$AVG.µm.),add=TRUE)
ワイブル cdf 曲線が予期しない形で表示されます。それは私が期待していたものではありません。 最初の曲線を滑らかな線として、2 番目の ecdf 曲線をステップとして必要です。
使用機能lines
lines
plot(ecdf(rnorm(20)),col='red') lines(ecdf(rnorm(10)),col='blue')