主頁(yè) > 知識(shí)庫(kù) > 淺析pandas隨機(jī)排列與隨機(jī)抽樣

淺析pandas隨機(jī)排列與隨機(jī)抽樣

熱門(mén)標(biāo)簽:地圖標(biāo)注可以遠(yuǎn)程操作嗎 甘肅高頻外呼系統(tǒng) 滴滴地圖標(biāo)注公司 智能電話機(jī)器人調(diào)研 杭州房產(chǎn)地圖標(biāo)注 江門(mén)智能電話機(jī)器人 如何申請(qǐng)400電話代理 400電話在線如何申請(qǐng) 天津塘沽區(qū)地圖標(biāo)注

隨機(jī)排列

利用 numpy.random.permutation() 函數(shù),可以返回一個(gè)序列的隨機(jī)排列。將此隨機(jī)排列作為 take() 函數(shù)的參數(shù),通過(guò)應(yīng)用 take() 函數(shù)就可實(shí)現(xiàn)按此隨機(jī)排列來(lái)調(diào)整 Series 對(duì)象或 DataFrame 對(duì)象各行的順序。
其示例代碼 example1.py 如下:

import numpy as np
import pandas as pd
#創(chuàng)建DataFrame
df = pd.DataFrame(np.arange(12).reshape(4,3))
print(df)
 0 1 2
0 0 1 2
1 3 4 5
2 6 7 8
3 9 10 11

#創(chuàng)建隨機(jī)排列
order = np.random.permutation(4)
#通過(guò)隨機(jī)排列調(diào)整DataFrame各行順序
newDf = df.take(order)
print(newDf)
 0 1 2
2 6 7 8
3 9 10 11
0 0 1 2
1 3 4 5

隨機(jī)抽樣

隨機(jī)抽樣是指隨機(jī)從數(shù)據(jù)中按照一定的行數(shù)或者比例抽取數(shù)據(jù)。隨機(jī)抽樣的函數(shù)如下:

numpy.random.randint(start,end,size)

函數(shù)中的參數(shù)說(shuō)明如下:

  • start:隨機(jī)數(shù)的開(kāi)始值;
  • end:隨機(jī)數(shù)的終止值;
  • size:抽樣個(gè)數(shù)。

通過(guò) numpy.random.randint() 函數(shù)產(chǎn)生隨機(jī)抽樣的數(shù)據(jù),通過(guò)應(yīng)用 take() 函數(shù)就可實(shí)現(xiàn)隨機(jī)抽取 Series 對(duì)象或 DataFrame 對(duì)象中的數(shù)據(jù)。其示例代碼 example2.py 如下

import numpy as np
import pandas as pd
#創(chuàng)建DataFrame
df = pd.DataFrame(np.arange(12).reshape(4,3))
print(df)
0 1 2
0 0 1 2
1 3 4 5
2 6 7 8
3 9 10 11

#隨機(jī)抽樣
order = np.random.randint(0,len(df),size=3)
#通過(guò)隨機(jī)抽樣抽取DataFrame中的行
newDf = df.take(order)
print(newDf)
0 1 2
0 0 1 2
1 3 4 5
1 3 4 5

以上就是詳解pandas隨機(jī)排列與隨機(jī)抽樣的詳細(xì)內(nèi)容,更多關(guān)于pandas隨機(jī)排列與隨機(jī)抽樣的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • python使用pandas抽樣訓(xùn)練數(shù)據(jù)中某個(gè)類別實(shí)例
  • python Pandas如何對(duì)數(shù)據(jù)集隨機(jī)抽樣
  • Pandas 數(shù)據(jù)框增、刪、改、查、去重、抽樣基本操作方法
  • Pandas直接讀取sql腳本的方法
  • python讀寫(xiě)數(shù)據(jù)讀寫(xiě)csv文件(pandas用法)
  • pandas按照列的值排序(某一列或者多列)
  • pandas抽取行列數(shù)據(jù)的幾種方法
  • 使用pandas實(shí)現(xiàn)篩選出指定列值所對(duì)應(yīng)的行

標(biāo)簽:東莞 臨汾 長(zhǎng)春 德宏 廊坊 漢中 河池 重慶

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《淺析pandas隨機(jī)排列與隨機(jī)抽樣》,本文關(guān)鍵詞  淺析,pandas,隨機(jī),排列,與,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《淺析pandas隨機(jī)排列與隨機(jī)抽樣》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于淺析pandas隨機(jī)排列與隨機(jī)抽樣的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章