statistics - F Distribution in R -


i can't figure out how plot f distribution in r, given 2 degrees of freedom using standard normal variates. suggestions?

you can use curve()

curve(df(x, df1=1, df2=2), from=0, to=5) 

here documentation of curve()


Popular posts from this blog