單項選擇題以下那個操作可以獲得數(shù)據(jù)S5中標簽不是c的數(shù)據(jù)()

A.print(s5.index)
B.print(s5[[i for i in s5.index if i !=’c’]])
C.print(s5[[i for i in s5.index if i ==’c’]])
D.print(s5)


您可能感興趣的試卷

你可能感興趣的試題

2.單項選擇題()是導入CSV格式數(shù)據(jù)的方法。

A.pd.read_excel()
B.pd.read_fwf()
C.pd.read_csv()
D.pd.read_table()

3.單項選擇題在pandas的describe()方法不能求得的統(tǒng)計量為()

A.計數(shù)
B.標準差
C.方差
D.上(下)四分位數(shù)

4.單項選擇題()是pandas填充空缺值的方法。

A.pd.isnull()
B.df.dropna()
C.df.fillna(x)
D.s.astyp(float)

5.單項選擇題在pandas中,能夠查看有缺失值的列名的方法是()

A.df.columns[df.isnull().sum()>0]
B.df.columns[df.isnull().sum()==0]
C.df.columns[df.isnull().sum()=0]
D.df.columns[df.isnull().sum()< =0]