数据分析 1

# some example

import pandas as pd
from pandas import Series,DataFrame

#数据提取
df = pd.read_excel('./测试数据.xlsx')
df.head()

#剔除无用的列
df.drop(labels=['none','none1'],axis=1,inplace=True) #列

df.isnull().any(axis=1)
indexs = ~(df.isnull().any(axis=1))
df.loc[indexs]
len(df.loc[indexs])

df.dropna(0,"any")  #drop 系列0是行
df.shape

# 填充
n_df = df.fillna(method='bfill',axis=0).fillna(method='ffill',axis=0) #列
n_df.isnull().any(axis=0)#检测哪些列中存在空值

 

上一篇:1.两数之和【数组】


下一篇:使用vue实现自定义搜索功能