iT邦幫忙

2018 iT 邦幫忙鐵人賽
DAY 4
2
Data Technology

你都在公司都在幹啥R? R語言資料分析經驗分享系列 第 4

【04】當老闆想問:話說...經營至今,我們的每個月的營收狀況如何啊?

  • 分享至 

  • xImage
  •  

今天的題目算是複習前天的內容,各位應該還記得計算會員人數的方法吧,要計算月營收其實也是差不多的概念,只是這次不是用n() 來統計,而是用sum()來統計。

result <- orders %>%
    mutate(Month = as.Date(orders$CREATETIME, "%Y-%m-%d %H:%M:%S")) %>%
    mutate(Month = substring(Month,1,7)) %>%
    group_by(Month) %>%
    summarise(Income = sum(PRICE))

https://ithelp.ithome.com.tw/upload/images/20171221/20107299ReKNH0SX1m.png

使用ggplot畫出條狀圖

ggplot(result, aes(x=Month, y=Income)) +
    geom_bar(stat="identity", fill="gold1")

https://ithelp.ithome.com.tw/upload/images/20171221/20107299Edw0Bp7UOQ.png

因此我們得出了我們公司的旺季在五六月的夏天啊!

ref:
day4原始碼


上一篇
【03】當老闆再問:嗯...話說我們已註冊的會員中有多少人有消費過的?
下一篇
【05】當老闆說了:喔喔喔!那這些月營收之中,又是哪些東西賣的最好啊?
系列文
你都在公司都在幹啥R? R語言資料分析經驗分享30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言