Description Usage Arguments Value Examples
View source: R/a0_pagalbines_funkcijos.R
Row-bind data frames which are inside a list and keep the names of the list fields
| 1 | 
| x | A named list of data frames (all data frames must have the same structure.) | 
A data frame with field names of input list as a first column (called '.group').
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Data:
data <- list(
  A = read.table(
    text =
      "           intercept    slope      type conf
qq_refline -39.55714 1.123535 quartiles 0.95"
  ),
  B = read.table(
    text =
      "           intercept     slope      type conf
qq_refline  29.42192 0.7940267 quartiles 0.95"
  )
)
rbind_df_in_list(data)
# .group intercept     slope      type
# 1      A -39.55714 1.1235350 quartiles
# 2      B  29.42192 0.7940267 quartiles
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.