我想读取R中提供的链接中的数据

时间:2017-12-05 07:20:27

标签: r read.table

read.table("http://people.sc.fsu.edu/~jburkardt/datasets/regression/x06.txt",fill=TRUE,header=FALSE)
            V1      V2    V3       V4       V5
1            4 columns                        
2           44    rows                        
3        Index                                
4          Age      of  fish   (days)         
5  Temperature      of water (degrees Celsius)
6       Length      of  fish                  
7            1      14    25      620         
8            2      28    25     1315         
9            3      41    25     2120         

我只想知道如何只读取R中此txt链接的数据部分? 我的read.table函数显示变量为V1 V2 ... V5和变量,如Index,鱼的年龄等等。请点击链接查看数据,如果可以,请告诉我。

请告诉我您知道以其他方式轻松阅读此数据。

1 个答案:

答案 0 :(得分:0)

你可以这样阅读

df <- read.table("http://people.sc.fsu.edu/~jburkardt/datasets/regression/x06.txt",fill=TRUE,header=FALSE)[7:50,1:4]
row.names(df) <- NULL