# 数据分析
- numpy 数据结构基础
- scipy 科学计算方法(矩阵/信号/数理分析)
- matplotlib 可视化套件
- pandas 基础数据分析套件
- scikit-learn 数据分析建模库
- keras 人工神经网络
# 分析图表
- 单维度
- 多维度
- 空间图表
- 关系图表
# Anaconda
自带了这些包,不必再安装
# numpy
功能: ndarray 多维操作 线性代数
# encoding=utf-8
import numpy as np
def startMain():
lst =[[1,3,5],[2,4,6]]
print(type(lst))
np_list = np.array(lst)
print(type(np_list))
if __name__ == "__main__":
startMain()
<class 'list'>
<class 'numpy.ndarray'>
← python anaconda安装的问题 →