totals_bind {wpa} | R Documentation |
Row-bind an identical data frame for computing grouped totals
Description
Row-bind an identical data frame and impute a specific
column with the target_value
, which defaults as "Total". The purpose of
this is to enable to creation of summary tables with a calculated "Total"
row. See example below on usage.
Usage
totals_bind(data, target_col, target_value = "Total")
Arguments
data |
data frame |
target_col |
Character value of the column in which to impute |
target_value |
Character value to impute in the new data frame to
row-bind. Defaults to |
Value
data frame with twice the number of rows of the input data frame, where half
of those rows will have the target_col
column imputed with the value from
target_value
.
See Also
Other Support:
camel_clean()
,
check_inputs()
,
combine_signals()
,
cut_hour()
,
extract_date_range()
,
extract_hr()
,
heat_colours()
,
is_date_format()
,
maxmin()
,
p_test()
,
pairwise_count()
,
plot_WOE()
,
read_preamble()
,
rgb2hex()
,
totals_col()
,
totals_reorder()
,
tstamp()
,
us_to_space()
,
wrap()
Examples
sq_data %>%
totals_bind(target_col = "LevelDesignation", target_value = "Total") %>%
collab_sum(hrvar = "LevelDesignation", return = "table")