I have asked this question elsewhere
I want to verify if my data follows a normal or any other type of distribution (like cauchy for example).
I really want to understand how to use qqplot
=]
Even though the qqnorm
works well:
qqnorm(data);qqline(data)
When I try the qqplot
:
qqplot(data, "normal")
qqplot(data, "cauchy")
it generates an error:
Error in plot.window(...) : valores finitos são necessários para 'ylim'
In addition it creates the warning messages:
1: In xy.coords(x, y, xlabel, ylabel, log) : NAs introduced by coercion
2: In min(x) : no non-missing arguments to min; returning Inf
3: In max(x) : no non-missing arguments to max; returning -Inf
dput()
your sample data. Also cross-posting is actually not allowed. – Hack-R