Description Usage Arguments Examples
View source: R/regression.table.R
Combine regression results from different models by columns
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
tbl_1 |
the 1st data.frame of regression result |
tbl_2 |
the 2nd data.frame of regression result |
tbl_3 |
the 3rd data.frame of regression result |
tbl_4 |
the 4th data.frame of regression result |
tbl_5 |
the 5th data.frame of regression result |
tbl_6 |
the 6th data.frame of regression result |
tbl_7 |
the 7th data.frame of regression result |
tbl_8 |
the 8th data.frame of regression result |
tbl_9 |
the 9th data.frame of regression result |
tbl_10 |
the 10th data.frame of regression result |
tbl_11 |
the 11th data.frame of regression result |
tbl_12 |
the 12th data.frame of regression result |
tbl_13 |
the 13th data.frame of regression result |
tbl_14 |
the 14th data.frame of regression result |
tbl_15 |
the 15th data.frame of regression result |
tbl_16 |
the 16th data.frame of regression result |
tbl_17 |
the 17th data.frame of regression result |
tbl_18 |
the 18th data.frame of regression result |
tbl_19 |
the 19th data.frame of regression result |
tbl_20 |
the 20th data.frame of regression result |
1 2 3 4 5 6 7 | data(mtcars)
m1 <- lm(mpg ~ vs + carb + hp + wt + wt * hp , data = mtcars)
m2 <- update(m1, . ~ .+ wt * vs)
summary(m1)
summary(m2)
combine_long_tab(to_long_tab(summary(m1)$coef),
to_long_tab(summary(m2)$coef))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.