码迷,mamicode.com
首页 > 编程语言 > 详细

19-pandas排序和随机抽样

时间:2020-03-09 13:32:03      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:style   nump   ram   frame   and   sam   pre   panda   抽样   

import numpy as np
import pandas as pd

df=pd.DataFrame(np.arange(25).reshape(5,5))
new_order=np.random.permutation(5)#不暗中哦顺序排列
print(df.take(new_order))#take改变索引
sample=np.random.randint(0,len(df),size=2)
print(df.take(sample))#随机抽样

 

19-pandas排序和随机抽样

标签:style   nump   ram   frame   and   sam   pre   panda   抽样   

原文地址:https://www.cnblogs.com/wcyMiracle/p/12447940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!