当前位置:   article > 正文

基于Python的新能源汽车销量分析与预测系统_基于python的新能源汽车销售系统

基于python的新能源汽车销售系统

温馨提示:文末有 CSDN 平台官方提供的学长 QQ 名片 :) 

1. 项目简介

        基于Python的新能源汽车销量分析与预测系统是一个使用Python编程语言和Flask框架开发的系统。它可以帮助用户分析和预测新能源汽车的销量情况。该系统使用了关系数据库进行数据存储,并使用了一些前端技术如HTML、JavaScript、jQuery、Bootstrap和Echarts框架来实现用户界面的设计和交互。

        该系统的主要功能包括:

  1. 数据采集和清洗:通过网络爬虫采集新能源汽车销售数据,并对数据进行清洗、数据库存储,以便后续分析使用。
  2. 数据可视化:将清洗后的数据以图表的形式展示,如折线图、柱状图等,帮助用户直观地了解销量情况和趋势。
  3. 数据分析:通过统计学和机器学习算法对销售数据进行分析,提取关键特征和规律,帮助用户发现影响销量的因素。
  4. 销量预测:基于历史销售数据和分析结果,采用ARIMA差分自回归移动平均算法、决策树回归和Ridge岭回归等预测模型对未来销量进行预测,帮助用户做出决策和制定销售策略。

        通过该系统,用户可以方便地进行新能源汽车销量分析和预测,从而更好地了解市场需求和制定销售策略。

        B站详情与代码下载:基于Python的新能源汽车销量分析与预测系统_哔哩哔哩_bilibili

2.  新能源汽车销量数据采集

        本系统利用Python网络爬虫技术采集某汽车排行榜网站的历史月度销售数据:

  1. ef factory_car_sell_count_spider():
  2. """
  3. 新能源汽车销量
  4. """
  5. # ......
  6. # 查询数据库中最新数据的日期
  7. query_sql = "select year_month from car_info order by year_month desc limit 1"
  8. cursor.execute(query_sql)
  9. results = cursor.fetchall()
  10. if len(results) == 0:
  11. start_year_month = '201506'
  12. else:
  13. start_year_month = results[0][0]
  14. print("start_year_month:", start_year_month)
  15. base_url = 'https://xxx.xxxxx.com/ev-{}-{}-{}.html'
  16. # ......
  17. while start_year_month < cur_date:
  18. for page_i in range(1, 10):
  19. try:
  20. url = base_url.format(start_year_month, start_year_month, page_i)
  21. resp = requests.get(url, headers=headers)
  22. resp.encoding = 'utf8'
  23. soup = BeautifulSoup(resp.text, 'lxml')
  24. table = soup.select('table.xl-table-def')
  25. trs = table[0].find_all('tr')
  26. # 过滤表头
  27. for tr in trs[1:]:
  28. tds = tr.find_all('td')
  29. # 车型
  30. car_name = tds[1].text.strip()
  31. # 销量
  32. # ......
  33. factory = tds[3].text.strip()
  34. # 售价
  35. price = tds[4].text.strip()
  36. car_info = (start_year_month, car_name, factory, sell_count, price)
  37. print(car_info)
  38. factory_month_sell_counts.append(car_info)
  39. except:
  40. break
  41. time.sleep(1)
  42. # 下个月份
  43. start_year_month = datetime.strptime(start_year_month, '%Y%m')
  44. start_year_month = start_year_month + relativedelta(months=1)
  45. start_year_month = start_year_month.strftime('%Y%m')
  46. # 采集的数据存储到数据库中
  47. # ......

3. 新能源汽车销量分析与预测系统

3.1 系统首页与注册登录

3.2 中国汽车总体销量走势分析

3.3 不同品牌汽车销量对比分析

3.4 基于机器学习回归算法的汽车销量分析

        分别利用ARIMA差分自回归移动平均算法、决策树回归和Ridge岭回归等预测模型,对2015年~2023年所有新能源汽车月度销量数据就行建模训练,并预测最新下一个月度的销量:

  1. @api_blueprint.route('/factory_month_year_sell_count_predict/<factory>/<algo>')
  2. def factory_month_year_sell_count_predict(factory, algo):
  3. """
  4. 汽车销量预测
  5. """
  6. tmp = factory_month_sell_counts[factory_month_sell_counts['厂商'] == factory]
  7. tmp = tmp.drop_duplicates(subset=['时间'], keep='first')
  8. year_months = tmp['时间'].values.tolist()
  9. sell_counts = tmp['销量'].values.tolist()
  10. # 销量预测算法
  11. predict_sell_count = 0
  12. if algo == "arima":
  13. predict_sell_count = arima_model_train_eval(sell_counts)
  14. elif algo == 'tree':
  15. predict_sell_count = decision_tree_predict(sell_counts)
  16. elif algo == 'ridge':
  17. predict_sell_count = ridge_predict(sell_counts)
  18. else:
  19. raise ValueError(algo + " not supported.")
  20. # 下一个月度
  21. next_year_month = datetime.strptime(year_months[-1], '%Y%m')
  22. next_year_month = next_year_month + relativedelta(months=1)
  23. next_year_month = next_year_month.strftime('%Y%m')
  24. year_months.append(next_year_month)
  25. # 转为 int 类型
  26. predict_sell_count = int(predict_sell_count)
  27. sell_counts.append(predict_sell_count)
  28. return jsonify({
  29. 'x': year_months,
  30. 'y1': sell_counts,
  31. 'predict_sell_count': predict_sell_count
  32. })

        切换为柱状图可视化,红色为预测的下一个月度的销量: 

4. 总结

        本项目通过网络爬虫采集新能源汽车销售数据,并对数据进行清洗、数据库存储,以便后续分析使用。将清洗后的数据以图表的形式展示,如折线图、柱状图等,帮助用户直观地了解销量情况和趋势。通过统计学和机器学习算法对销售数据进行分析,提取关键特征和规律,帮助用户发现影响销量的因素。基于历史销售数据和分析结果,采用ARIMA差分自回归移动平均算法、决策树回归和Ridge岭回归等预测模型对未来销量进行预测,帮助用户做出决策和制定销售策略。

 欢迎大家点赞、收藏、关注、评论啦 ,由于篇幅有限,只展示了部分核心代码。技术交流、源码获取认准下方 CSDN 官方提供的学长 QQ 名片 :)

精彩专栏推荐订阅:

1. Python 毕设精品实战案例
2. 自然语言处理 NLP 精品实战案例
3. 计算机视觉 CV 精品实战案例

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/418158
推荐阅读
相关标签
  

闽ICP备14008679号