当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。