Displaying 1 result from an estimated 1 matches for "distributiont".
Did you mean:
distribution
2009 Feb 06
1
Log transformation and -Inf values for use in glm()
...This transformation results in -Inf values in some places,
though. I then receive an error when this matrix is used in the glm
function, and would like to know this can be avoided.
I have attempted several methods already including the use of
na.exclue commands in the glm statement:
> DistributionT<-glm(EarlyLn$yoyras~EarlyLn$temp,family=gaussian(link
> = "identity"),na.exclude)
I have also attempted to use the is.finite command:
EarlyLn$yoyras<-EarlyLn[is.finite(EarlyLn$yoyras)==T,]
I know another option would be to use a type of find and replace
command to remove e...