A. df.loc[‘列名’,’索引名’];df.iloc[‘索引位置’,’列位置’]:df.ix[‘索引位置:’列名’] B. df.loc[‘索引名’,’列名’];df.iloc[‘索引位置’,’列名’];df.ix[‘索引位置’,’列名’] C. df.loc[‘索引名’,’列名’];df.iloc[‘索引位置’,’列名’];df.ix[‘索引名’,’列位置’] D. df.loc[‘索引名’,’列名’];df.iloc[‘索引位置’,’列位置’];df.ix[‘索引位置’,’列位’]
A. dtypes查看类型,astype转换类别,describe描述性统计 B. astype查看类型,dtypes转换类别,describe描述性统计 C. describe查看类型,astype转换类别,dtypes描述性统计 D. dtypes查看类型,describe转换类别,astype描述性统计