Nothing
#############################################################################
# Copyright (c) 2026 Christophe Dutang
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the
# Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
#
#############################################################################
qqpareto <- function(data, xlab, ylab, main="Pareto QQ-plot", doline=TRUE, line.col="blue", ...)
{
data <- sort(data[!is.na(data)])
data <- data[data > 0]
n <- length(data)
if (n <= 5)
stop("`data' has too few non-missing values")
if(missing(xlab))
xlab <- "Quantiles of standard exponential"
if(missing(ylab))
ylab <- "log(X)"
pthe <- -log(1 - (1:n)/(n + 1))
pemp <- log(data)
plot(pthe, pemp, type = "p", main = main, xlab = xlab, ylab = ylab, ...)
if(doline)
abline(lm(pemp ~ pthe), col=line.col)
invisible(list(x = pthe, y = pemp))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.