summary.TSVC | R Documentation |
Summary for an object of class TSVC
, with an overview of all executed splits during the fitting process.
## S3 method for class 'TSVC'
summary(object, ...)
## S3 method for class 'summary.TSVC'
print(x, ...)
object |
object of class |
... |
further arguments passed to or from other methods. |
x |
object of class |
object of class "summary.TSVC"
. An object of class "summary.TSVC"
is a list containing the
following components:
stats |
overview of detected varying coefficients, responsible effect modifiers and executed splits. |
nosplits |
total number of executed splits during the fitting process. |
Moritz Berger <Moritz.Berger@imbie.uni-bonn.de>
https://www.imbie.uni-bonn.de/people/dr-moritz-berger/
Berger, M., G. Tutz and M. Schmid (2019). Tree-Structured Modelling of Varying Coefficients. Statistics and Computing 29, 217-229, https://doi.org/10.1007/s11222-018-9804-8.
TSVC
, plot.TSVC
, predict.TSVC
# Swiss Labour Market
library(AER)
data("SwissLabor")
# recode factors
sl <- SwissLabor
sl$participation <- as.numeric(sl$participation)-1
sl$foreign <- as.numeric(sl$foreign)-1
## Not run:
fit1 <- TSVC(participation~income+age, data=sl, family=binomial(link="logit"),
nperm=1000, trace=TRUE)
summary(fit1)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.