當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 read.table()用法及代碼示例


read.table()R語言中的函數用於從文本文件中讀取數據。它以表格的形式返回數據。

用法:
read.table(filename, header = FALSE, sep = “”)

參數:
header:表示文件是否包含標題行
sep:表示文件中使用的分隔符值

示例1:從同一目錄讀取數據


# R program to read a text file
  
# Get content into a data frame 
data <- read.table("TextFileExample.txt",  
                    header = FALSE, sep = " ") 
    
# Printing content of Text File 
print(data) 

輸出:

   V1 V2 V3
1 100  A  a
2 200  B  b
3 300  C  c
4 400  D  d
5 500  E  e
6 600  F  f

示例2:從不同目錄讀取數據


# R program to read a text file
  
# Reading data from another directory 
x<-read.table("D://Data//myfile.txt", header = FALSE) 
    
# print x 
print(x) 

輸出:

   V1 V2 V3
1 100 a1 b1
2 200 a2 b2
3 300 a3 b3

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Reading contents of a Text File in R Programming – read.table() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。