アットウィキロゴ

分布001


colors()

  • "white"
  • "aliceblue"
  • "antiquewhite"
  • "antiquewhite1"
  • "antiquewhite2"
  • "antiquewhite3"
  • "antiquewhite4"
  • "aquamarine"
  • "aquamarine1"

  • dchisq

x<-seq(0,30,0.1)

curve(dchisq(x,2),from=0,to=30,col=1)#自由度2
curve(dchisq(x,4),type="n",add=T,col=2)
curve(dchisq(x,6),type="s",add=T,col=3)
curve(dchisq(x,8),type="S",add=T,col=4)
curve(dchisq(x,10),type="o",add=T,col=5)
curve(dchisq(x,50),type="l",add=T,col=6)

  • dchisqの図
    • dchisq
  • 一様分布

plot(dunif,-1,2,type="l")


最終更新:2010年08月19日 16:39
添付ファイル