Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/update.expectreg.R
Updates a given expectreg model with the specified changes
1 2 3 4 |
object |
of class expectreg |
add_formula |
update for formula |
data |
Should other data be used |
estimate |
Change estimate |
smooth |
Change smooth |
lambda |
Change lambda |
expectiles |
Change asymmetries |
delta_garrote |
Change delta_garrote |
ci |
Change ci |
... |
Re-estimates the given model, with the specified changes. If nothing is specified the characteristics of the original model are used. Except lambda here the default 1 is used as initial value.
object of class expectreg
Elmar Spiegel
Georg August University Goettingen
http://www.uni-goettingen.de
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | data(india)
model1<-expectreg.ls(stunting~rb(cbmi),smooth="fixed",data=india,lambda=30,
estimate="restricted",expectiles=c(0.01,0.05,0.2,0.8,0.95,0.99))
plot(model1)
# Change formula and update model
add_formula<-.~.+rb(cage)
update_model1<-update(model1,add_formula)
plot(update_model1)
# Use different asymmetries and update model
update_model2<-update(model1,expectiles=c(0.1,0.5,0.9))
plot(update_model2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.