pandas -API
describe()
print('profile连续属性:','\n',df.describe())
print('profile离散属性:','\n',df.describe(include='object'))
函数自动计算的字段有count(非空值数)、unique(唯一值数)、top(频数最高者)、freq(最高频数)
describe()
print('profile连续属性:','\n',df.describe())
print('profile离散属性:','\n',df.describe(include='object'))
函数自动计算的字段有count(非空值数)、unique(唯一值数)、top(频数最高者)、freq(最高频数)