Description Usage Arguments See Also Examples
This is a method for the function family()
for objects
from which a family.rsm
object can be extracted. Typically
a fitted rsm
model object. See family
for
the general behaviour of this function.
1 2 |
object |
any object from which a |
... |
absorbs any additional argument. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Sea Level Data
data(venice)
attach(venice)
Year <- 1:51/51
c11 <- cos(2*pi*1:51/11) ; s11 <- sin(2*pi*1:51/11)
c19 <- cos(2*pi*1:51/18.62) ; s19 <- sin(2*pi*1:51/18.62)
venice.rsm <- rsm(sea ~ Year + I(Year^2) + c11 + s11 + c19 + s19,
family = extreme)
family(venice.rsm)
detach()
## House Price Data
data(houses)
houses.rsm <- rsm(price ~ ., family = student(5), data = houses)
family(houses.rsm)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.