标签:
自认为比较有用的几个技巧。
df是一个DataFrame
se是一个Series
1 、导入数据后,往往需要先看看数据长什么样子,这时候需要.head(n)函数,
即显示前n行数据。
df.head(5)
se.head(5)
2、想要知道df有多少列,列的具体内容是什么,用 df.columns
3、想要知道df的某一列或者se中有多少个不同的元素,用.value_counts()函数
df[‘mm‘].value_counts()
se.value_counts()
标签:
原文地址:http://www.cnblogs.com/rarcher07/p/5296768.html