Recreate minitab normal probability plot

前端 未结 4 1491
小鲜肉
小鲜肉 2021-02-06 12:30

I am trying to recreate the following plot with R. Minitab describes this as a normal probability plot.

\"alt

4条回答
  •  无人共我
    2021-02-06 13:13

    Try the qqPlot function in the QTLRel package.

    require("QTLRel")
    qqPlot(rnorm(100))
    

    enter image description here

提交回复
热议问题