View source: R/read_cctv_from_xml_be.R
get_overview_of_columns | R Documentation |
Get Overview of Columns in Data Frames
get_overview_of_columns(x)
x |
list of data frames |
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.
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)
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.