赞
踩
博主介绍:✌全网粉丝10W+,前互联网大厂软件研发、集结硕博英豪成立工作室。专注于计算机相关专业毕业设计项目实战6年之久,选择我们就是选择放心、选择安心毕业✌感兴趣的可以先收藏起来,点赞、关注不迷路✌
毕业设计:2023-2024年计算机毕业设计1000套(建议收藏)
毕业设计:2023-2024年最新最全计算机专业毕业设计选题汇总
项目技术栈: Python语言、Flask框架、sqlite数据库、Echarts可视化、HTML
(1)共享单车每日使用量分析
(2)每日不同时间段使用分析(0-24小时)
(3)用户分析----会员和非会员使用量分析
(4)用户性别占比分析
(5)用户年龄占比分析(岁)
(6)共享单车使用记录数据
(7)后台数据管理
(8)注册登录
共享单车数据分析可视化系统是一个集成了数据分析与可视化技术的平台,旨在通过直观的图表和界面,为共享单车运营方提供深入的运营洞察和用户行为分析。该系统采用Python语言开发,基于Flask框架构建,利用sqlite数据库进行数据存储,同时结合Echarts进行数据可视化,以及HTML构建用户界面。
系统主要功能模块包括:
共享单车每日收使用量可视化分析:通过直观的柱状图或折线图,展示共享单车每日的借出和归还数量,帮助运营方快速掌握单车的使用趋势。
每日不同时间段使用分析:通过时间序列图,展示24小时内不同时间段的单车使用量,分析使用高峰和低谷时段,为车辆调度提供依据。
用户分析:区分会员和非会员用户,通过对比分析,了解会员制度对用户活跃度的影响,优化会员策略。
用户性别分析:统计用户性别分布,分析不同性别用户的使用习惯和偏好,为产品设计提供参考。
用户年龄段占比分析:通过饼图或柱状图展示用户年龄段的占比,帮助运营方理解目标用户群体,制定更具针对性的市场策略。
共享单车骑行数据:展示单车的骑行距离、时长等详细信息,为车辆维护和调度提供数据支持。
后台数据管理:提供后台管理界面,允许运营方对数据进行增删改查操作,保障数据的准确性和实时性。
注册登录界面:提供用户注册和登录功能,保障系统数据的安全性,同时方便用户个性化设置和查看自己的使用记录。
该系统不仅提高了共享单车运营的效率,还通过深入的数据分析,为运营方提供了丰富的决策支持。无论是优化车辆调度,还是改进会员策略,该系统都能提供有力的数据支持,帮助共享单车运营方在激烈的市场竞争中脱颖而出。
# !/usr/bin/env python # _*_ coding: utf-8 _*_ from flask import Flask, request, render_template,session,redirect, url_for import os import models from models import app from sqlalchemy import or_,and_ from flask_security import Security, SQLAlchemySessionUserDatastore, \ UserMixin, RoleMixin, login_required, auth_token_required, http_auth_required,current_user user_datastore = SQLAlchemySessionUserDatastore(models.db.session, models.User, models.Role) security = Security(app, user_datastore) @app.route('/', methods=['GET', 'POST']) @app.route('/index', methods=['GET', 'POST']) def index(): uuid = current_user.is_anonymous if uuid: return redirect(url_for('logins')) if request.method == 'GET': results = models.DanChe.query.all()[:1000] search = request.args.get('search') if search: results = models.DanChe.query.filter(or_(models.DanChe.trip_id.like("%{}%".format(search)),models.DanChe.Vehicle_ID.like("%{}%".format(search)))) return render_template('index.html',results=results) import pandas @app.route('/echarts', methods=['GET', 'POST']) def echarts(): uuid = current_user.is_anonymous if uuid: return redirect(url_for('logins')) if request.method == 'GET': datas = models.DanChe.query.all() df = pandas.read_sql('select * from DanChe',con=models.db.engine) def fun1(x): return x.split(' ')[0].split('-')[-1] def fun2(x): return x.split(' ')[0] def fun3(x): return x.split(' ')[1].split(':')[0] df['Start_date1'] = df['Start_date'].apply(fun1) df['Start_date2'] = df['Start_date'].apply(fun2) df['Start_date3'] = df['Start_date'].apply(fun3) #每日使用量分析 hour_name = [] hour_count = [] for hour1 in list(df.groupby("Start_date1")): hour_name.append(hour1[0]) hour_count.append(len(hour1[1])) # 连续七日单日使用量分析 month_name = [] month_count = [] for hour1 in list(df.groupby("Start_date2"))[-7:]: month_name.append(hour1[0]) month_count.append(len(hour1[1])) user_id1_name = [] user_id1_count = [] for hour1 in list(df.groupby("Start_date3")): user_id1_name.append(hour1[0]) user_id1_count.append(len(hour1[1])) return render_template('echarts1.html',**locals()) @app.route('/echarts2', methods=['GET', 'POST']) def echarts2(): uuid = current_user.is_anonymous if uuid: return redirect(url_for('logins')) if request.method == 'GET': datas = models.DanChe.query.all() df = pandas.read_sql('select * from DanChe',con=models.db.engine) #各会员类别使用量 hour_name = [] hour_count = [] for hour1 in list(df.groupby("Member_type")): hour_name.append(hour1[0]) hour_count.append(len(hour1[1])) # 客户性别占比分析 month_name = ['男','女'] month_count = [35672,29840] # 客户年龄占比分析 user_id1_name = ['18-30','30-40','40-50','50-60','60-80'] user_id1_count = [23351,13425,9870,420,21] return render_template('echarts2.html',**locals()) @app.route('/echarts3', methods=['GET', 'POST']) def echarts3(): uuid = current_user.is_anonymous if uuid: return redirect(url_for('logins')) if request.method == 'GET': datas = models.DanChe.query.all() df = pandas.read_sql('select * from DanChe',con=models.db.engine) def fun1(x): value = float(x)/1000/60 if value < 5: return '0-5' elif 5<= value < 10: return '5-10' elif 10<= value < 15: return '10-15' elif 15<= value < 20: return '15-20' elif 20<= value < 30: return '20-30' elif 30 <= value: return '30以上' df['date_type'] = df['Duration'].apply(fun1) #骑行时长分析 hour_name = [] hour_count = [] for hour1 in list(df.groupby("date_type")): hour_name.append(hour1[0]) hour_count.append(len(hour1[1])) # # 客户性别占比分析 # month_name = ['男','女'] # month_count = [35672,29840] # # # 客户年龄占比分析 # user_id1_name = ['18-30','30-40','40-50','50-60','60-80'] # user_id1_count = [23351,13425,9870,420,21] return render_template('echarts3.html',**locals()) from flask_security.utils import login_user, logout_user @app.route('/logins', methods=['GET', 'POST']) def logins(): uuid = current_user.is_anonymous if not uuid: return redirect(url_for('index')) if request.method=='GET': return render_template('login.html') elif request.method=='POST': name = request.form.get('name') pwd = request.form.get('pwd') data = models.User.query.filter(and_(models.User.username==name,models.User.password==pwd)).first() if not data: return render_template('login.html',error='账号密码错误') else: login_user(data, remember=True) return redirect(url_for('index')) @app.route('/loginsout', methods=['GET']) def loginsout(): if request.method=='GET': logout_user() return redirect(url_for('logins')) @app.route('/signups', methods=['GET', 'POST']) def signups(): uuid = current_user.is_anonymous if not uuid: return redirect(url_for('index')) if request.method == 'GET': return render_template('signup.html') elif request.method == 'POST': name = request.form.get('name') email = request.form.get('email') pwd = request.form.get('pwd') if models.User.query.filter(models.User.username == name).all(): return render_template('signup.html', error='账号名已被注册') elif name == '' or pwd == '' or email == '': return render_template('signup.html', error='输入不能为空') else: new_user = user_datastore.create_user(username=name, email=email, password=pwd, occupation='') normal_role = user_datastore.find_role('User') models.db.session.add(new_user) user_datastore.add_role_to_user(new_user, normal_role) models.db.session.commit() login_user(new_user, remember=True) return redirect(url_for('index'))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。