
Last chance! 50% off unlimited learning
Sale ends in
For a given data frame, reorder a row to the first row of that
data frame through matching a value of a variable. The intended usage
of this function is to be used for reordering the "Total" row, and not
with "flat" data. This can be used in conjunction with totals_bind()
,
which is used to create a "Total" row in the data.
totals_reorder(data, target_col, target_value = "Total")
Summary table in the form of a data frame.
Character value of the column in which to reorder
Character value of the value in target_col
to match
data frame with the 'Total' row reordered to the bottom.
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_bind()
,
totals_col()
,
tstamp()
,
us_to_space()
,
wrap()
# NOT RUN {
sq_data %>%
totals_bind(target_col = "LevelDesignation",
target_value = "Total") %>%
collab_sum(hrvar = "LevelDesignation",
return = "table") %>%
totals_reorder(target_col = "group", target_value = "Total")
# }
Run the code above in your browser using DataLab