亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用R語言怎么對二進制文件進行讀寫

發布時間:2021-03-11 15:12:32 來源:億速云 閱讀:302 作者:Leah 欄目:開發技術

這篇文章將為大家詳細講解有關使用R語言怎么對二進制文件進行讀寫,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

二進制文件是一個文件,其中包含僅以位和字節形式存儲的信息(0和1),它們是不可讀的,因為其中的字節轉換為包含許多其他不可打印字符的字符和符號,隨便我們嘗試使用任何文本編輯器讀取二進制文件將顯示為類似Ø和ð這樣的字符。

writeBin(object, con)
readBin(con, what, n )

參數描述如下:

  • con - 是要讀取或寫入二進制文件的連接對象。

  • object - 是要寫入的二進制文件。

  • what - 是像字符,整數等的模式,代表要讀取的字節。

  • n - 是從二進制文件讀取的字節數。

我們接下來使用R內置數據“mtcars”創建一個csv文件并將其轉換為二進制文件并將其存儲為操作系統文件,如下:

#my first R program
 
# Read the "mtcars" data frame as a csv file and store only the columns "cyl", "am" and "gear".
write.table(mtcars, file = "mtcars.csv",row.names = FALSE, na = "", 
  col.names = TRUE, sep = ",")
 
# Store 5 records from the csv file as a new data frame.
new.mtcars <- read.table("mtcars.csv",sep = ",",header = TRUE,nrows = 5)
 
# Create a connection object to write the binary file using mode "wb".
write.filename = file("D:/r_file/binmtcars.dat", "wb")
 
# Write the column names of the data frame to the connection object.
writeBin(colnames(new.mtcars), write.filename)
 
# Write the records in each of the column to the file.
writeBin(c(new.mtcars$cyl,new.mtcars$am,new.mtcars$gear), write.filename)
 
# Close the file for writing so that it can be read by other program.
close(write.filename)

運行上面的文件就會產生一個csv文件和一個dat二進制文件。這個dat文件將所有數據作為連續字節存儲, 因此,我們將通過選擇列名稱和列值的適當值來讀取它,如下:

#my first R program
 
# Create a connection object to read the file in binary mode using "rb".
read.filename <- file("D:/r_file/binmtcars.dat", "rb")
 
# First read the column names. n = 3 as we have 3 columns.
column.names <- readBin(read.filename, character(), n = 3)
 
# Next read the column values. n = 18 as we have 3 column names and 15 values.
read.filename <- file("D:/r_file/binmtcars.dat", "rb")
bindata <- readBin(read.filename, integer(), n = 18)
 
# Print the data.
print(bindata)
 
# Read the values from 4th byte to 8th byte which represents "cyl".
cyldata = bindata[4:8]
print(cyldata)
 
# Read the values form 9th byte to 13th byte which represents "am".
amdata = bindata[9:13]
print(amdata)
 
# Read the values form 9th byte to 13th byte which represents "gear".
geardata = bindata[14:18]
print(geardata)
 
# Combine all the read values to a dat frame.
finaldata = cbind(cyldata, amdata, geardata)
colnames(finaldata) = column.names
print(finaldata)

關于使用R語言怎么對二進制文件進行讀寫就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平乐县| 新乡市| 南召县| 普格县| 岗巴县| 富平县| 巴塘县| 依兰县| 柳林县| 玛曲县| 铁岭市| 南丹县| 山阴县| 福州市| 安岳县| 安宁市| 涿鹿县| 巴彦淖尔市| 垫江县| 右玉县| 南平市| 襄樊市| 安化县| 恩平市| 石棉县| 万载县| 靖安县| 双辽市| 旌德县| 黑龙江省| 陈巴尔虎旗| 昌江| 龙山县| 宣化县| 长葛市| 斗六市| 益阳市| 泸西县| 通辽市| 夏邑县| 贺州市|