Moderat
Moderat

Reputation: 1560

Pareto package in R

How I get the qpareto function in R? When I type qpareto(.05/2, 2, 15), R doesn't recognize what the qpareto function is. I tried typing library(VGAM) and that didn't pop anything up either. Neither did library(rmutils)

Upvotes: 0

Views: 6451

Answers (1)

wcampbell
wcampbell

Reputation: 821

You have to install the packages first:

install.packages(c("VGAM","rmutils"))

Upvotes: 3

Related Questions