今日学习
Posted strong-fe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了今日学习相关的知识,希望对你有一定的参考价值。
1、查看帮助文档
import matplotlib.pyplot as plt help(plt.plot)
2、arr[:,],“:”表示全选每行,“,”后再选取指定的列
ma = np.array([[1,3,2],[3,4,6],[3,33,6]]) ma.shape print (ma[:,2]) print (ma[:,1:3])
3、pandas中的DataFrame基本操作
构造函数
方法 | 描述 |
---|---|
DataFrame([data, index, columns, dtype, copy]) | 构造数据框 |
属性和数据
方法 | 描述 |
---|---|
Axes | index: row labels;columns: column labels |
DataFrame.as_matrix([columns]) | 转换为矩阵 |
DataFrame.dtypes | 返回数据的类型 |
DataFrame.ftypes | Return the ftypes (indication of sparse/dense and dtype) in this object. |
DataFrame.get_dtype_counts() | 返回数据框数据类型的个数 |
DataFrame.get_ftype_counts() | Return the counts of ftypes in this object. |
DataFrame.select_dtypes([include, exclude]) | 根据数据类型选取子数据框 |
DataFrame.values | Numpy的展示方式 |
DataFrame.axes | 返回横纵坐标的标签名 |
DataFrame.ndim | 返回数据框的纬度 |
DataFrame.size | 返回数据框元素的个数 |
DataFrame.shape | 返回数据框的形状 |
DataFrame.memory_usage([index, deep]) | Memory usage of DataFrame columns. |
描述统计学
以上是关于今日学习的主要内容,如果未能解决你的问题,请参考以下文章
前端学习(2995):vue+element今日头条管理--代码测试规范