
数据分析
文章平均质量分 63
YYG_HRZ
这个作者很懒,什么都没留下…
展开
-
numpy使用
numpy原创 2022-08-01 16:25:56 · 234 阅读 · 1 评论 -
txt数据文件的读写操作
txt文件读写原创 2021-11-16 10:27:47 · 5395 阅读 · 0 评论 -
pandas时间处理
pandas时间处理原创 2022-06-27 20:06:22 · 459 阅读 · 0 评论 -
plt画图
matplotlib画图简单操作作图方法主要是两种以线图为例plt.plot(),实际上是获取当前的axes然后在上面作图ax.plot()2、图例loc:图例位置,其值可以是数字,可以是字符0: ‘best’ (自适应一个好位置)1: ‘upper right’ (图的右上角)2: ‘upper left’ (图左上角)3: ‘lower left’ (图左下角)4: ‘lower right’......原创 2022-06-25 15:30:28 · 2055 阅读 · 0 评论 -
jupyter使用技巧
jupyter使用原创 2022-06-09 17:17:06 · 2676 阅读 · 0 评论 -
数据分析pandas使用
1.行数很多的pandas DataFrame如何在jupyter中完整显示?import pandas as pdpd.set_option('display.max_columns', None) #显示所有列pd.set_option('display.max_rows', None) #显示所有行显示部分行pd.set_option('display.min_rows', 100)2、统计某列中每个值出现的频率#统计time字段中每个值出现的频率df[‘time’].value_原创 2021-07-09 13:03:19 · 1190 阅读 · 0 评论