我正在学习数据科学。我有以下火车票数据集:
1. order_date_meduim
order,date,medium
95062,2017-09-11,35
171081,2017-07-05,39
122867,2017-08-18,39
107186,2017-11-23,
171085,2017-09-02,
2. order_ordercityA_ordercityB [some order has only 1 ordercity, I think ordercity means here which city is something like source and destination]
order,ordercityA,ordercityB
81773,4,11
105838,4,
76153,24,18
93058,12,
11623,24,3
3070,24,3
3. order_ticketcount,ticketclass
order,ticketcount,ticketclass
246783,1,pax
1693998,2,pax
1958576,1,other
673681,1,pax
1593899,1,pax
194035,1,pax
我需要预测一周的门票销售以及预订媒介的订单城市。
由于我是新手,有人可以就如何创建一个可以预测 1 周销售额的预测模型给出一个可能的答案吗?另外,我怀疑数据是时间序列数据。
我用 Python 编码。