這篇文章給大家分享的是有關(guān)Python中numpy.loadtxt()讀取txt文件的案例的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)建站專注于團(tuán)風(fēng)企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,成都做商城網(wǎng)站。團(tuán)風(fēng)網(wǎng)站建設(shè)公司,為團(tuán)風(fēng)等地區(qū)提供建站服務(wù)。全流程按需求定制開發(fā),專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)讀取txt文件我們通常使用 numpy 中的 loadtxt()函數(shù)
numpy.loadtxt(fname, dtype=, comments='#', delimiter=None, converters=None, skiprows=0, usecols=None, unpack=False, ndmin=0)
注:loadtxt的功能是讀入數(shù)據(jù)文件,這里的數(shù)據(jù)文件要求每一行數(shù)據(jù)的格式相同。
也就是說對(duì)于下面這樣的數(shù)據(jù)是不符合條件的:
123
1 2 4 3 5
接下來舉例講解函數(shù)的功能:
1、簡(jiǎn)單的讀取
test.txt
1 2 3 4 2 3 4 5 3 4 5 6 4 5 6 7
import numpy as np a = np.loadtxt('test.txt')#最普通的loadtxt print(a)
輸出:
[[1. 2. 3. 4.] [2. 3. 4. 5.] [3. 4. 5. 6.] [4. 5. 6. 7.]]
數(shù)組中的數(shù)都為浮點(diǎn)數(shù),原因?yàn)镻ython默認(rèn)的數(shù)字的數(shù)據(jù)類型為雙精度浮點(diǎn)數(shù)
2、skiprows=n:指跳過前n行
test.txt
A B C D 2 3 4 5 3 4 5 6 4 5 6 7
a = np.loadtxt('test.txt', skiprows=1, dtype=int) print(a)
輸出:
[[2 3 4 5] [3 4 5 6] [4 5 6 7]]
3、comment=‘#’:如果行的開頭為#就會(huì)跳過該行
test.txt
A B C D 2 3 4 5 3 4 5 6 #A B C D 4 5 6 7
a = np.loadtxt('test.txt', skiprows=1, dtype=int, comments='#') print(a)
輸出:
[[2 3 4 5] [3 4 5 6] [4 5 6 7]]
4、usecols=[0,2]:是指只使用0,2兩列,參數(shù)類型為list
a = np.loadtxt('test.txt', skiprows=1, dtype=int, comments='#',usecols=(0, 2), unpack=True) print(a)
輸出:
[[2 3 4] [4 5 6]]
unpack是指會(huì)把每一列當(dāng)成一個(gè)向量輸出, 而不是合并在一起。 如果unpack為false或者參數(shù)的話輸出結(jié)果如下:
[[2 4] [3 5] [4 6]]
test.txt
A, B, C, D 2, 3, 4, 5 3, 4, 5, 6 #A B C D 4, 5, 6, 7
5、delimiter:數(shù)據(jù)之間的分隔符。如使用逗號(hào)","。
6、converters:對(duì)數(shù)據(jù)進(jìn)行預(yù)處理
def add_one(x): return int(x)+1 #注意到這里使用的字符的數(shù)據(jù)結(jié)構(gòu) a = np.loadtxt('test.txt', dtype=int, skiprows=1, converters={0:add_one}, comments='#', delimiter=',', usecols=(0, 2), unpack=True) print a
def add_one(x): return int(x)+1 #注意到這里使用的字符的數(shù)據(jù)結(jié)構(gòu) a = np.loadtxt('test.txt', dtype=int, skiprows=1, converters={0:add_one}, comments='#', delimiter=',', usecols=(0, 2), unpack=True) print a
感謝各位的閱讀!關(guān)于Python中numpy.loadtxt()讀取txt文件的案例就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
當(dāng)前題目:Python中numpy.loadtxt()讀取txt文件的案例-創(chuàng)新互聯(lián)
鏈接分享:http://jinyejixie.com/article34/jeose.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站排名、商城網(wǎng)站、網(wǎng)站策劃、做網(wǎng)站、網(wǎng)站導(dǎo)航、品牌網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容