Python
文章平均质量分 52
Kyra Jing
这个作者很懒,什么都没留下…
展开
-
python:matplotlib.pyplot绘制箱线图并 检测异常值(基础一)
在数据处理中,箱线图常用来检测异常值。数据文件data01.xls1.绘制箱线图使用boxplot()函数import pandas as pdimport matplotlib.pyplot as plt# 读取excel文件file_01 = pd.read_excel("data01.xls")fig = plt.figure(figsize=(16, 8))d1 = file_01['变量1']d2 = file_01['变量2']d3 = file_01['变量原创 2022-03-17 20:52:58 · 15443 阅读 · 6 评论 -
python:matplotlib.pyplot绘制散点图(基础一)
python:matplotlib.pyplot绘制散点图(基础一)原创 2022-03-15 20:17:59 · 9817 阅读 · 0 评论 -
python :matplotlib绘折线图(基础一)
首先导入模块,框定出x和y轴的范围,生成简单的折线图# 导入matplotlib的pyplot模块import matplotlib.pyplot as pltimport randomx = range(0, 5) # 定义x轴的范围0-4y = [random.randint(1, 5) for i in range(5)] # y轴范围,y的值由1-5的随机数生成plt.plot(x, y)plt.show()plt.close()下一步,就可以设置折线图的...原创 2022-03-14 22:16:24 · 3402 阅读 · 0 评论 -
Pandas模块:读入excel/csv文件,过滤重复值和缺失值处理
Pandas模块:读入excel/csv文件,过滤重复值和缺失值处理首先导入Pandas模块import pandas as pd原创 2022-03-11 10:48:42 · 5257 阅读 · 0 评论 -
python中numpy的基本用法
创建数组① Numpy提供了array()函数,用来创建数组。 创建一维和二维数组,多维数组的创建形式是一样的。arr1 = np.array([1, 2, 3, 4, 5]) # 一维数组arr2 = np.array([[1.0, 2, 3, 4, 5], [6, 7, 8, 9, 10]]) # 二维数组,可以理解为矩阵形式② arange()函数...原创 2022-03-09 19:53:10 · 8549 阅读 · 0 评论