Description Usage Arguments Value Examples
View source: R/1-summarize-column.R
Summarize a datavyu column
1 2 3 4 5 6 7 | summarize_column(
column,
code,
directory = NULL,
by_file = FALSE,
summary = "frequency"
)
|
column |
the column as a character string |
code |
the code as a character string |
directory |
the path to the directory as a character string; can be set with options(directory = "") |
by_file |
whether or not to calculate the frequencies by file (logical) |
summary |
either "frequency" or "duration" |
A data frame generated with the janitor package
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
summarize_column(column = "childhands", code = "childhands.hand",
directory = "ex-data/datavyu_output_11-16-2020_13-26")
summarize_column(column = "childhands", code = "childhands.hand",
directory = "ex-data/datavyu_output_11-16-2020_13-26",
by_file = TRUE)
summarize_column(column = "childhands", code = "childhands.hand",
directory = "ex-data/datavyu_output_11-16-2020_13-26",
by_file = TRUE, summary = "duration")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.