欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Pandas 奇技淫巧

程序员文章站 2022-07-14 20:03:55
...

1 随机采样 df.sample

df.sample(frac=0.06) # 随机取样(分数 四舍五入)
df.sample(frac=0.05) # 109*0.05=5.45 109*0.06=6.54

frac : float, optional
Fraction of axis items to return. Cannot be used with n.
Pandas 奇技淫巧Pandas 奇技淫巧

df.sample(n=5) # 5行

n : int, optional
Number of items from axis to return. Cannot be used with frac.
Default = 1 if frac = None.
Pandas 奇技淫巧

相关标签: 爬坑