Given a fitted model (of any kind) extract the values of the response variable.
response(object)# S3 method for lm
response(object)
# S3 method for glm
response(object)
# S3 method for ppm
response(object)
# S3 method for kppm
response(object)
# S3 method for dppm
response(object)
# S3 method for slrm
response(object)
# S3 method for mppm
response(object)
A fitted model (object of class
"lm"
,
"glm"
,
"ppm"
,
"kppm"
,
"dppm"
,
"slrm"
or
"mppm"
or some other class).
For response.lm
and response.glm
,
a numeric vector, or NULL
.
For
response.ppm
,
response.kppm
,
response.dppm
and response.slrm
a two-dimensional spatial point pattern (class "ppp"
).
For response.mppm
, a list of
two-dimensional spatial point patterns (objects of class
"ppp"
).
The list also belongs to classes "solist"
and "ppplist"
.
For fitted linear models of class "lm"
and fitted generalized linear models of class "glm"
,
the numerical values of the response variable are extracted
if they are available, and otherwise NULL
is returned.
For fitted point process models of class
"ppm"
,
"kppm"
,
"dppm"
,
"slrm"
or "lppm"
,
the original data point pattern is extracted.
For a fitted point process model of class "mppm"
,
the list of original data point patterns is extracted.
# NOT RUN {
fit <- ppm(cells ~ x)
response(fit)
# }
Run the code above in your browser using DataLab