Learn R Programming

rfm (version 0.2.0)

rfm_bar_chart: RFM bar chart

Description

Examine the distribution of monetary scores for the different combinations of frequency and recency scores.

Usage

rfm_bar_chart(rfm_table, bar_color = "blue",
  xaxis_title = "Monetary Score", sec_xaxis_title = "Frequency Score",
  yaxis_title = " ", sec_yaxis_title = "Recency Score")

Arguments

rfm_table

An object of class rfm_table.

bar_color

Color of the bars.

xaxis_title

X axis title.

sec_xaxis_title

Secondary x axis title.

yaxis_title

Y axis title.

sec_yaxis_title

Secondary y axis title.

Value

Bar chart.

Examples

Run this code
# NOT RUN {
# using transaction data
analysis_date <- lubridate::as_date('2006-12-31', tz = 'UTC')
rfm_order <- rfm_table_order(rfm_data_orders, customer_id, order_date,
revenue, analysis_date)

# bar chart
rfm_bar_chart(rfm_order)

# }

Run the code above in your browser using DataLab