python知识积累

astype()#数据类型转换

pd.read_csv(fname,index_col=0)#把第一列当做索引

data['Embarked'].unique().tolist()#unique所有重复的值只留一个,tolist把矩阵或数组转化成列表

data['Embarked'].apply(lambda n:labels.index(n))#对每个元素使用apply函数  index检测n是在labels的第几个元素

train['Survived'].values#train['Survived']是DataFrame,要取其values才能传入训练模型使用

print('{0},{1}'.format(X.shape,y.shape))#format用{}和:代替%。{0}代表位置

a.append(b)#把b的指针放在a里面,b变了,a的内容也变了。

 

你可能感兴趣的:(python)