摘要: pandas a.基本使用 #结构化的数据分析 pip3 install jupyter pip3 install pandas #import pandas as pd #import numpy as np #事例一: #s = pd.Series([1,3,5,np.NaN,8,4]) #s 阅读全文
posted @ 2017-08-20 20:10 golangav 阅读(775) 评论(0) 推荐(0) 编辑
摘要: 一. Numpy 常用操作 a. xxxx import numpy as np print(np.arange(1,11)) #[ 1 2 3 4 5 6 7 8 9 10] print(np.arange(1,11).reshape([2,5])) # [ # [ 1 2 3 4 5] # [ 阅读全文
posted @ 2017-08-20 16:21 golangav 阅读(608) 评论(0) 推荐(0) 编辑