Displaying 1 result from an estimated 1 matches for "approximatev".
Did you mean:
approximate
2002 Nov 26
1
size of a glm-like object
...> class(obj)
[1] "glm" "lm"
> class(out)
[1] "myclass" "glm" "lm"
> object.size(obj)
[1] 1685228
> object.size(out)
[1] 2701292
Why is out so larger than obj? the additional components are rather small
and the remaining ones seem approximatevely the same.
Many thanks,
vito
#the size of the additional components:
> object.size(out$psi)
[1] 348
> object.size(out$it)
[1] 36
> object.size(out$epsilon)
[1] 36
#the size of some remaining component:
> all.equal(out$y,obj$y)
[1] TRUE
> object.size(obj$R)
[1] 9284
> object.s...