数据分析模块

  • NumPy : 数据结构基础
  • SciPy : 科学计算方法(矩阵分析、信号分析、数理分析....)
  • matplotlib : 丰富的可视化套件,作图表
  • pandas : 基础的数据分析套件
  • scikit-learn : 强大的数据分析建模库
  • keras : 人工神经网络

科学计算工具:Anaconda

NumPy

www.numpy.org

    1. ndarray : numpy中最基础的数据结构,只能有一种数据类型,(不同于python,python的list可以有多种数据类型,导致python每次处理都需要判断数据类型,影响效率;numpy底层为C)
      • numpy 数据类型
      • nump.bool, int ,int8, int16, int64, int128, .....
      • numpy.array(data,dtype=numpy.float);
    1. some kinds of array
    1. operation
    1. liner algebra
    1. others