x = seq(0, 3.2, len=200)
plot(x, dgamma(x, shape=1), type="n", col="black", ylab="",
ylim=c(0,1.5), main="dnaka(x, shape)")
lines(x, dnaka(x, shape=1), col="red")
lines(x, dnaka(x, shape=2), col="blue")
lines(x, dnaka(x, shape=3), col="green")
legend(2, 1.0, col=c("red","blue","green"), lty=rep(1, len=3),
legend=paste("shape =", c(1, 2, 3)))
plot(x, pnorm(x), type="n", col="black", ylab="",
ylim=0:1, main="pnaka(x, shape)")
lines(x, pnaka(x, shape=1), col="red")
lines(x, pnaka(x, shape=2), col="blue")
lines(x, pnaka(x, shape=3), col="green")
legend(2, 0.6, col=c("red","blue","green"), lty=rep(1, len=3),
legend=paste("shape =", c(1, 2, 3)))
probs = seq(0.1, 0.9, by=0.1)
pnaka(qnaka(p=probs, shape=2), shape=2) - probs # Should be all 0
Run the code above in your browser using DataLab