當前位置:首頁 » 電腦資訊 » 代碼中為什麼會有二進制文件

代碼中為什麼會有二進制文件

發布時間: 2022-12-27 23:46:40

1. R語言二進制文件

R語言二進制文件
二進制文件是一個文件,其中包含僅以位和位元組形式存儲的信息(0和1)。它們不可讀,因為其中的位元組轉換為包含許多其他不可列印字元的字元和符號。嘗試使用任何文本編輯器讀取二進制文件將顯示為類似?和?這樣的字元。
二進制文件必須由特定程序讀取才能使用。例如,Microsoft Word程序的二進制文件只能通過Word程序讀取到人類可讀的形式。這表明,除了人類可讀的文本之外,還有更多的信息,如格式化的字元和頁碼等,它們也與字母數字字元一起存儲。最後二進制文件是一個連續的位元組序列。 我們在文本文件中看到的換行符是將第一行連接到下一個的字元。
有時,由其他程序生成的數據需要由R作為二進制文件處理。 另外R需要創建可以與其他程序共享的二進制文件。
R有兩個函數用來創建和讀取二進制文件,它們分別是:WriteBin()和readBin()函數。
語法
writeBin(object,con)readBin(con,what,n)
R
以下是使用的參數的描述 -
con- 是要讀取或寫入二進制文件的連接對象。
object- 是要寫入的二進制文件。
what- 是像字元,整數等的模式,代表要讀取的位元組。
n- 是從二進制文件讀取的位元組數。
實例
這里考慮使用R內置數據「mtcars」。 首先,我們從它創建一個csv文件並將其轉換為二進制文件並將其存儲為操作系統文件。接下來將這個二進制文件讀入R中。
1. 寫入二進制文件
我們將數據幀「mtcars」讀為csv文件,然後將其作為二進制文件寫入操作系統。參考以下代碼實現 -
# 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("/web/com/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)
R2. 讀取二進制文件
上面創建的二進制文件將所有數據作為連續位元組存儲。 因此,我們將通過選擇列名稱和列值的適當值來讀取它。
# Create a connection object to read the file in binary mode using "rb".read.filename<-file("/web/com/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("/web/com/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.namesprint(finaldata)
R
當我們執行上面的代碼,它產生以下結果和圖表 -
[1] 7108963 1728081249 7496037 6 6 4 [7] 6 8 1 1 1 0[13] 0 4 4 4 3 3[1] 6 6 4 6 8[1] 1 1 1 0 0[1] 4 4 4 3 3 cyl am gear[1,] 6 1 4[2,] 6 1 4[3,] 4 1 4[4,] 6 0 3[5,] 8 0 3
Shell
我們可以看到,通過讀取R中的二進制文件,得到了原始數據。

熱點內容
鐵觀音為什麼沒有顏色的 發布:2024-11-02 15:15:36 瀏覽:421
登qq為什麼會顯示手機號碼不安全 發布:2024-11-02 15:12:22 瀏覽:813
為什麼拿手機手總出汗 發布:2024-11-02 15:08:31 瀏覽:665
為什麼突然我的微信在電腦登錄 發布:2024-11-02 15:07:40 瀏覽:208
男人為什麼找心靈寄託 發布:2024-11-02 15:00:28 瀏覽:199
手機為什麼叫煥新包裝 發布:2024-11-02 14:36:37 瀏覽:987
為什麼手機話費總是不足 發布:2024-11-02 14:13:11 瀏覽:872
微信為什麼設置了標簽還是看不見 發布:2024-11-02 14:07:16 瀏覽:937
為什麼說電子產品對眼睛損傷大 發布:2024-11-02 14:07:07 瀏覽:942
漂亮的女人為什麼會有這么多 發布:2024-11-02 13:44:37 瀏覽:786