R语言读取外部数据

本文介绍了如何使用R语言读取外部数据,包括读取文本数据时指定header参数,以及读取SPSS和SAS数据集的方法,结合《R Data Mining Projects》的学习笔记进行阐述。
摘要由CSDN通过智能技术生成

R语言读取外部数据

读取文本数据

#读取文本数据
getwd()
setwd("D:/data/Section_1")
csvdata<- read.csv("hs0.csv")
names(csvdata)
#或者使用read.table
tabledata <- read.table("hs0.csv",header = T,sep = ',' )
names(tabledata)

使用read.table读取数据时,如果第一行是变量名,必须指定header = T

If you are using the read.csv command, there is no need to write the header True and
separator as comma, but if you are using the read.table command, it is mandatory to use.
Otherwise, it will read the first variable from the dataset

输出结果

> names(csvdata)
 [1] "X0"      "X70"     "X4"      "X1"      "X1.1"    "general"
 [7] "X57"     "X52"     "X41"
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值