R csv,txt資料讀寫及資料型別轉換

2022-10-09 00:48:12 字數 624 閱讀 4933

1)r語言讀取csv,txt資料

#讀取txt檔案,header檔案首行是否包含變數名,sep表示檔案中的分隔符,col.names列名稱

col_names<-c("col1","col2","col3")

data_txt<-read.table("traindata.txt",header=true,sep="\t",col.names =col_names)

#讀取csv檔案

data_csv<-read.csv("traindata.csv",header=false)

2)資料框型別轉向量型別

讀取之後的資料型別為資料框型別dataframe,形式為「xx obs. of xx variables」

轉化為向量的步驟:

①資料框->矩陣:

matrix_datatype<-as.matrix(dataframe)

②矩陣->向量:

vector_datatype<-as.vector(matrix_datatype)

3)r語言寫csv

write.csv(vector_datatype,"vector_data.csv")

c 讀寫Excel及資料匯入SQLServer

c 讀寫excel及資料匯入sqlserver c 操作excel 網上的資料還是比較多的,寫這篇文章也是分享給初學者一些經驗。本人 覺得cspreadsheet.h這個類封裝的還不錯。下面我就如何使用這個類介紹一下,main.cpp include include include include ...

java讀寫資料

1 public class fileinputstream extends inputstream fileinputstream 從檔案系統中的某個檔案中獲得輸入位元組。哪些檔案可用取決於主機環境。fileinputstream 用於讀取諸如影象資料之類的原始位元組流。要讀取字元流,請考慮使用 ...

讀寫Excel資料

獲取odbc中excel驅動 include include cstring cxxdlg getexceldriver pszbuf strchr pszbuf,0 1 while pszbuf 1 0 return sdriver 寫入excel void cxxdlg onwriteexcel...