Pandas中查看列中数据的种类及个数
作者:互联网
Pandas中查看列中数据的种类及个数
读取数据
import pandas as pd
import numpy as np
filepath = 'your_file_path.csv'
data = pd.read_csv(filepath)
查看列中的值类型及个数
data['unit name'].value_counts()
若列的行数超过屏幕显示,设置display.max_rows
若列的列数超过屏幕显示,设置display.max_columns
设置显示20行
pd.set_option('display.max_rows',20)
References:
标签:设置,max,列中,个数,display,pd,Pandas 来源: https://www.cnblogs.com/zhichun/p/11957062.html