pandas 某列数据筛选

#将某一行的编码格式设置为 utf-8,支持中文显示和查找 
stock_data['name'] = [i.encode('utf8') for i in stock_data['name']]
#判断一列中的字符信息,并删除改行
 for index,row in stock_data.iterrows():
     if '退市'in row['name']:
         stock_data.drop(index,axis=0,inplace=True)

你可能感兴趣的:(Quant,Invest)