Python数据分析
文章平均质量分 65
Serein_txw
这个作者很懒,什么都没留下…
展开
-
Python数据分析 4.pandas数据科学库
Python数据分析 4.pandas数据科学库 1.数据类型series 实质是带标签的一维数组,有键和值 import pandas as pd t1 = pd.Series([1,2,3,4,5],index=list("abcde")) temp_dict = {"name":"Lucy","age":20,"tel":10086} t2 = pd.Series(temp_dict) print(t1[[1]]) print(t2[["name","age"]]) print(t1>2)原创 2022-04-08 21:25:18 · 1297 阅读 · 0 评论 -
Python数据分析 3.numpy数据科学库
Python数据分析 3.numpy基础库 1.数组的创建 import numpy as np t1 = np.array([1,2,3,]) print(t1) print(type(t1)) t2 = np.array(range(3)) print(t2) t3 = np.arange(4,10,2) print(t3) print(t3.dtype) [1 2 3] <class 'numpy.ndarray'> [0 1 2] [4 6 8] int32 numpy中常见原创 2022-04-04 23:06:53 · 1509 阅读 · 0 评论 -
Python数据分析 2.Matplotlib绘图—常用统计图
Python数据分析 2.Matplotlib绘图—常用统计图 1.绘制散点图 from matplotlib import pyplot as plt from matplotlib import font_manager my_font = font_manager.FontProperties(fname = "C:/Windows/Fonts/simhei.ttf") y_3 = [6, 20, 7, 13, 8, 14, 6, 17, 6, 7, 9, 8, 20, 19, 17, 13, 1原创 2022-04-04 16:15:37 · 5534 阅读 · 0 评论 -
Python数据分析 1.Matplotlib绘图—折线图
Python数据分析 1.Matplotlib绘图 Matplotlib: 主要做数据可视化图表,模仿MATLAB构建 基础绘图: from matplotlib import pyplot as plt x = range(2, 26, 2) y = [15, 13, 14, 17, 20, 25, 26, 26, 24, 22, 18, 15] plt.plot(x, y) plt.show() 添加信息: 设置图片大小 保存到本地 描述信息(x轴、y轴、图片标题) 调整x或y的刻度间距 线条样式原创 2022-04-03 10:38:49 · 1777 阅读 · 0 评论