rbind_tables: Row-binds tables for publication

Description Usage Arguments Value Author(s) See Also Examples

View source: R/RFunctions.R

Description

Converts tables (data.frames, matrices) to character, and row-binds them, inserting a label into the first column for each sub-table.

Usage

1
rbind_tables(table_list)

Arguments

table_list

A list of tables.

Value

A table.

Author(s)

Caspar J. van Lissa

See Also

Other Mplus functions: MplusConstrainModels, SBChisquare, SB_chisq_Pvalues, conf_int, corTable, est_sig, mplusToTable, param_label, printResultsTable

Examples

1
2
3
4
5
6
7
table_list <- list(
  table_f = data.frame(paramHeader = c("F.BY", "F.BY"), param = c("A", "B")),
  table_g = data.frame(paramHeader = c("G.BY", "G.BY"), param = c("A", "B")))
table_list <- list(
  data.frame(paramHeader = c("F.BY", "F.BY"), param = c("A", "B")),
  data.frame(paramHeader = c("G.BY", "G.BY"), param = c("A", "B")))
rbind_tables(table_list)

cjvanlissa/motley documentation built on Sept. 23, 2019, 7:39 p.m.