Description Usage Arguments See Also Examples
Summarize sales and customers by year
1 2 3 |
x |
data frame: Table holding sales by year with a minimum of 2 variables (cust_id, year) |
include_revenue |
logical: If TRUE, revenue by year will also be shown |
rnd |
numeric: number of decimals to round pct change results |
out |
character: file path to optional output csv |
title |
character: title for output table |
note |
character: note for output table |
suppress_notes |
logical: If TRUE, returns a data frame only |
Other functions for validating license data: check_dups
,
count_lines_textfile
,
summary_churn
,
summary_initial
1 2 3 4 5 6 7 | library(dplyr)
data(sale)
summary_sale(sale)
# example with made-up license revenue
sale2 <- mutate(sale, revenue = 30)
summary_sale(sale2, rnd = 2, include_revenue = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.