Consider the following code and output:
par(mfrow=c(3,2))
# generate random data from weibull distribution
x = rweibull(20, 8, 2)
# Quantile-Quantile Plot for different distributions
qqPlot(x, "log-normal")
qqPlot(x, "normal")
qqPlot(x, "exponential", DB = TRUE)
qqPlot(x, "cauchy")
qqPlot(x, "weibull")
qqPlot(x, "logistic")

It seems that that Q-Q plot for log-normal is almost the same as the Q-Q plot for weibull. How can we distinguish them? Also if the points are within the region defined by the two outer black lines, does that indicate that they follow the specified distribution?
library(car)in your code to make it easier for people to follow. In general, you may also want to set the seed (eg,set.seed(1)) to make the example reproducible, so that anyone can get exactly the same data points you have gotten, although it's probably not as important here. – gung - Reinstate Monica Mar 11 '13 at 15:41