IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> 数据可视化(词云图) -> 正文阅读

[Python知识库]数据可视化(词云图)

数据可视化——借助python自定义一个词云图生成网站

整体代码由flsk+html组成。flask的相关用法大家可以参考欢迎来到Flask的世界。html的用法太多,这里就不赘述了。
主要是我们这学期学习了数据可视化的内容,词云图生成网站是这门课上的一个内容,我觉得还挺有意思的,所以写一篇总结分享一下。大家觉得有兴趣的话可以去看我们老师的书《图数据库的影视数据应用基础与示例》。该自定义生成网站主要是借鉴了我们老师的课堂教学。

1、网站的逻辑:选择文件——分词——去除停用词——词云图——下载词云图

实现界面如下
界面
完成词云图结果
在这里插入图片描述

2、代码实现

代码结构:

  • app.py:flask运行文件
  • static:静态文件(包含了一个界面背景图片back.jpg)
  • templates:界面html文件夹(包含了界面设计的html文件)
  • mask.jpg:词云图形状图片
  • stopwords.txt:停用词文件夹
  • wordcloud.jpg:最后生成的词云图(未运行时不存在)

代码框架

选择文件核心代码:
flask设置

# 接收txt文件
@app.route('/upload/file', methods=['POST'])
def upload_file():
    if request.method == 'POST':
        try:
            file = request.files['file']
            content = file.read().decode("utf-8")
            return jsonify({'data': content}), 200
        except:
            return jsonify({'code': -1, 'msg': '文件上传失败!'}), 500
        finally:
            pass

html设置:主要是设置了选择文件那个框

<div>
	<h3 style="color: white">Step 1</h3>
	<input id="file" name="file" type="file" accept="text/plain" onchange="upload(this)" />
	<textarea id="txt" class="text"></textarea>
</div>

分词核心代码:
flask部分:

# jieba分词
@app.route('/cut/jieba', methods=['POST'])
def cut_jieba():
    if request.method == 'POST':
        try:
            content = request.json.get('content', None)
            segment = jieba.lcut(content)
            return jsonify({'data': segment}), 200
        except:
            return jsonify({'code': -1, 'msg': 'Jieba分词失败!'}), 500
        finally:
            pass

html部分:

<div>
	<h3 style="color: white">Step 2</h3>
	<button onclick="cut()">Jieba分词</button>
	<textarea id="jieba" class="text"></textarea>
</div>

词频统计核心代码:
flask部分:

# 去停用词
@app.route('/remove/stopwords', methods=['POST'])
def remove_stopwords():
    if request.method == 'POST':
        try:
            segment = request.json.get('segment', None)
            new_segment = [x for x in segment if x not in ['\n', ' ']]
            with open("stopwords.txt", 'r', encoding='gbk') as f:
                stopwords = f.readlines()
                stopwords = [x.strip() for x in stopwords]
            words = [x for x in new_segment if x not in stopwords]
            return jsonify({'data': words}), 200
        except:
            return jsonify({'code': -1, 'msg': '去停用词失败!'}), 500
        finally:
            pass

html部分:

<div>
	<h3 style="color: white">Step 3</h3>
	<button onclick="remove()">去除停用词</button>
	<textarea id="stopwords" class="text"></textarea>
</div>

词云图核心代码:
flask部分:

# 生成词云图
@app.route('/genetate/cloud', methods=['POST'])
def generate_cloud():
    if request.method == 'POST':
        try:
            words = request.json.get('words', None)
            mask = imread(r'mask.jpg')  # 设置词云背景图
            wordcloud = WordCloud(font_path="simhei.ttf",  # 设置字体可以显示中文
                                  background_color="white",
                                  mask=mask,
                                  scale=2,  # 缩放比例,清晰度
                                  # width=20, height=20  # 设置图片默认的大小,若有背景图片则依照背景图片大小,
                                  )
            wc = wordcloud.generate(words)
            wc.to_file("wordcloud.jpg")
            with open("wordcloud.jpg", 'rb') as f:
                image = f.read()
            image_base64 = str(base64.b64encode(image), encoding='utf-8')
            return jsonify({'data': image_base64}), 200
        except:
            return jsonify({'code': -1, 'msg': '生成词云图失败!'}), 500
        finally:
            pass

html部分:

<div style="width: 45%">
	<h3 style="color: white">Step 4</h3>
	<button onclick="generate()">生成词云图</button>
	<div style="width: 100%; min-height: 200px; border: 1px solid gray; margin-top: 10px">
	<img id="img"/>
	</div>
	<a href="/wordcloud.jpg">下载词云图</a>
</div>

下载词云图:

# 下载词云图
@app.route("/<filename>", methods=['GET'])
def download_file(filename):
    # 需要知道2个参数, 第1个参数是本地目录的path, 第2个参数是文件名(带扩展名)
    directory = os.getcwd()  # 假设在当前目录
    return send_from_directory(directory, filename, as_attachment=True)

html部分:

<a href="/wordcloud.jpg">下载词云图</a>

3、其他细节

自定义背景:
在html定义中加上背景设置类型。

<style>
	.xue {
			background-image: url("../static/back.jpg");## 自定义背景
			background-repeat:no-repeat;
			background-size: 100% 100%;
         }
</style>

完整代码可以可在GitHub查看

转载或使用代码请备注~~

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-05-14 09:54:14  更:2022-05-14 09:54:27 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 13:40:24-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码