Description Usage Arguments Value Examples
View source: R/regression-model_info.R
Extrahiert die Variablen namen die Labels und die Daten
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | model_info(x)
## Default S3 method:
model_info(x)
## S3 method for class 'data.frame'
model_info(x)
Infomation(x)
## S3 method for class 'formula'
model_info(x)
## S3 method for class 'eff'
model_info(x)
## S3 method for class 'htest'
model_info(x)
## S3 method for class 'lm'
model_info(x)
## S3 method for class 'glm'
model_info(x)
## S3 method for class 'anova'
model_info(x)
## S3 method for class 'lmerModLmerTest'
model_info(x)
## S3 method for class 'merModLmerTest'
model_info(x)
## S3 method for class 'lmerTest'
model_info(x)
## S3 method for class 'glmerMod'
model_info(x)
## S3 method for class 'ScalarIndependenceTest'
model_info(x)
## S3 method for class 'biVar'
model_info(x)
## S3 method for class 'survfit'
model_info(x)
## S3 method for class 'coxph'
model_info(x)
## S3 method for class 'survdiff'
model_info(x)
## S3 method for class 'ICC'
model_info(x)
## S3 method for class 'polr'
model_info(x)
|
x |
Fit Objekt |
Liste mit c("class", "family", "y", "x", "labels", "N")
1 2 3 4 5 6 7 8 9 10 11 | model_info(mpg ~ cyl)
model_info(glm(vs ~ mpg, mtcars, family = binomial()))
model_info(lm(mpg ~ drat + wt + qsec, mtcars))
model_info(wilcox.test(mpg ~ vs, mtcars))
model_info(t.test(mpg ~ vs, mtcars))
# model_info(Hmisc::spearman2(mpg ~ factor(vs), mtcars))
# model_info(coin::wilcox_test(mpg ~ factor(vs), mtcars))
# model_info(Hmisc::spearman2(mpg ~ factor(vs), mtcars))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.