frequencies()
produces two kinds of tables for a quick overview of single variables.
The first table is for a broader overview and contains mean, sd, min, max, freq and missings.
The second table is the actual frequency table which shows the weighted sums, percentages
and unweighted frequencies per expression.
Usage
frequencies(
data_frame,
variables,
formats = c(),
by = c(),
weight = NULL,
titles = c(),
footnotes = c(),
style = excel_output_style(),
output = "console",
na.rm = FALSE,
print = TRUE,
monitor = FALSE
)
Arguments
- data_frame
A data frame in which are the variables to tabulate.
- variables
A vector of single variables to create frequency tables for.
- formats
A list in which is specified which formats should be applied to which variables.
- by
Compute tables stratified by the expressions of the provided variables.
- weight
Put in a weight variable to compute weighted results.
- titles
Specify one or more table titles.
- footnotes
Specify one or more table footnotes.
- style
A list of options can be passed to control the appearance of excel outputs. Styles can be created with
excel_output_style()
.- output
The following output formats are available: console (default), text, excel and excel_nostyle.
- na.rm
FALSE by default. If TRUE removes all NA values from the variables.
TRUE by default. If TRUE prints the output, if FALSE doesn't print anything. Can be used if one only wants to catch the output data frame.
- monitor
FALSE by default. If TRUE outputs two charts to visualize the functions time consumption.
Details
frequencies()
is based on the 'SAS' procedure Proc Freq, which provides
efficient and readable ways to output frequency tables.
To create a frequency table you only need to provide a single variable. Nothing special about this. The real power comes into play, when you output your tables as a fully styled 'Excel' workbook. Setting up a custom, reusable style is as easy as setting up options like: provide a color for the table header, set the font size for the row header, should borders be drawn for the table cells yes/no, and so on.
You also can provide multiple single variables to generate multiple, evenly designed tables, all at once. For just a quick overview, rather than fully designed tables, you can also just output the tables in ASCII style format.
See also
Creating a custom table style: excel_output_style()
, modify_output_style()
,
number_format_style()
, modify_number_formats()
.
Creating formats: discrete_format()
and interval_format()
.
Functions that can handle formats and styles: crosstabs()
, any_table()
.
Additional functions that can handle styles: export_with_style()
Additional functions that can handle formats: summarise_plus()
, recode()
,
recode_multi()
Examples
# Example data frame
my_data <- dummy_data(1000)
# Define titles and footnotes. If you want to add hyperlinks you can do so by
# adding "link:" followed by the hyperlink to the main text.
titles <- c("This is title number 1 link: https://cran.r-project.org/",
"This is title number 2",
"This is title number 3")
footnotes <- c("This is footnote number 1",
"This is footnote number 2",
"This is footnote number 3 link: https://cran.r-project.org/")
# Output frequency tables
my_data |> frequency(sex)
my_data |> frequency(c(age, education),
weight = weight)
# Also works with characters
my_data |> frequency("sex")
my_data |> frequency(c("age", "education"),
weight = "weight")
# Applying formats and titles
sex. <- discrete_format(
"Total" = 1:2,
"Male" = 1,
"Female" = 2)
my_data |> frequency(sex, formats(sex = sex.),
titles = titles,
footnotes = footnotes)
# Split frequencies by expressions of another variable
my_data |> frequency(sex, by = education)
# Get a list with two data tables for further usage
result_list <- my_data |> frequency(sex, formats(sex = sex.))
# Output in text file
my_data |> frequency(sex, output = "text")
# Output to Excel
my_data |> frequency(sex, output = "excel")
# With individual styling
my_style <- excel_output_style(header_back_color = "0077B6",
font = "Times New Roman")
my_data |> frequency(sex, output = "excel", style = my_style)