(1).fillna()会填充nan数据,返回填充后的结果
(2)pddata["a"].unique() 特征a的值出现的set——唯一值
(3).loc[]选取指定列进行操作——df.loc[行标签,列标签]
(4).iloc[]函数——只能通过行号索引:df.iloc[0:4]它是基于索引位来选取数据集,0:4就是选取 0,1,2,3这四行
(5)作图
from pandas.tools.plotting import scatter_matrix(混淆散点图)
scatter_matrix(含有n个特征的数据X,s=100, alpha=1, c=colors[index], figsize=(10,10))
例如:scatter_matrix(beer[["calories","sodium","alcohol","cost"]],s=100, alpha=1, c=colors[beer["cluster"]], figsize=(16,16))