I have the following var
continuous:
> summary(banco1$rac)
Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
0.000 5.077 6.694 17.380 8.728 4917.000 465
This var
does not present normal distribution and so I applied a reverse transformation:
inv.rac=1/banco1$rac
> summary(inv.rac)
Min. 1st Qu. Median Mean 3rd Qu. Max. NA's
0.0002 0.1146 0.1494 Inf 0.1970 Inf 465
The inverse has Max. = Inf
value. I believe that for this reason, the qqnorm plot for this transformed variable is not running. You receive the following error message:
> qqnorm(inv.rac, main="Q-Q Plot Inversa da rac", xlab="Quantis Teóricos", ylab= "Quantis Observados")
Error in plot.window(...) : need finite 'ylim' values
Does anyone know how to solve this problem?