get_overview_of_columns: Get Overview of Columns in Data Frames

View source: R/read_cctv_from_xml_be.R

get_overview_of_columnsR Documentation

Get Overview of Columns in Data Frames

Description

Get Overview of Columns in Data Frames

Usage

get_overview_of_columns(x)

Arguments

x

list of data frames

Value

data frame with each row representing one data frame in x and with as many columns as there are distinct columns in all of the data frames in x. In a row i the data frame contains "x" in those columns that are contained in the i-th data frame in list x and an empty string otherwise.

Examples

get_overview_of_columns(list(
  df1 = data.frame(a = 1, b = 2), 
  df2 = data.frame(b = 3, c = 4),
  df3 = data.frame(a = 5, c = 6)
))


KWB-R/kwb.read documentation built on Oct. 2, 2023, 10:40 a.m.