dlogis(x, location=0, scale=1) plogis(q, location=0, scale=1) qlogis(p, location=0, scale=1) rlogis(n, location=0, scale=1)
Logistic Distribution. In Encyclopedia of Statistical Sciences. S. Kotz and N. L. Johnson, eds.
# comparison of the densities of the logistic and the normal with the
# same variance
xx <- seq(-6, 6, by = 0.1)
plot(xx, dlogis(xx), type = "l", ylab="density", xlab="")
lines(xx, dnorm(xx, s = pi/sqrt(3)), lty = 2)
legend(3, .22, c("Logistic", "Gaussian"), lty=1:2)