摘要:
Python 中可以用 matplotlib 库实现数据的可视化,以下是 matpltlib 库的一些介绍: 1、 matplotlib.pyplot 模块可以画折线图,分为两个步骤,分别是 pyplot.plot() 和 pyplot.show() ,前者负责画图,后者将画好的图展示出来。 2、 阅读全文
摘要:
16、DataFrame.sort_values( columns , inplace = True , ascending = False) 以columns的value为基础对DataFrame排序; 若inplace为True,则用排序后的结果替换原来的数值,若为False,则仅仅返回排序后的 阅读全文
摘要:
在 Python 中,可以用 Pandas 对数据做处理,以满足建模的需求 1、Pandas 的核心结构是 DataFrame ; 2、DataFrame.head(x) 返回 DataFrame 中前 x 行数据,也就是前 x 个样本,x参数的默认值为 5 ; 3、DataFrame.tail(x 阅读全文