Description : The database is attached to the R search path. This means that the database is searched by R when evaluating a variable, so objects in the database can be accessed by simply giving their names.
attach(data셋)을 하면 data에 있는 오브젝트(열값, 속성)이름만으로 값 출력가능
usedcars 데이터의 model값을 접근할려면,
> usedcars$model
로 해야하지만,
> attach(usedcars)를 하면
usedcars에 있는 오브젝트 이름만으로 접근가능
> model
attach(data셋)을 하면 data에 있는 오브젝트(열값, 속성)이름만으로 값 출력가능
usedcars 데이터의 model값을 접근할려면,
> usedcars$model
로 해야하지만,
> attach(usedcars)를 하면
usedcars에 있는 오브젝트 이름만으로 접근가능
> model
> head(usedcars,10) year model price mileage color transmission 1 2011 SEL 21992 7413 Yellow AUTO 2 2011 SEL 20995 10926 Gray AUTO 3 2011 SEL 19995 7351 Silver AUTO 4 2011 SEL 17809 11613 Gray AUTO 5 2012 SE 17500 8367 White AUTO 6 2010 SEL 17495 25125 Silver AUTO 7 2011 SEL 17000 27393 Blue AUTO 8 2010 SEL 16995 21026 Silver AUTO 9 2011 SES 16995 32655 Silver AUTO 10 2010 SES 16995 36116 Silver AUTO > head(usedcars$model, 10) [1] "SEL" "SEL" "SEL" "SEL" "SE" "SEL" "SEL" "SEL" "SES" "SES" > attach(usedcars) > head(model, 10) [1] "SEL" "SEL" "SEL" "SEL" "SE" "SEL" "SEL" "SEL" "SES" "SES"
head(usedcars$model,10) 과 head(model,10)은 출력값은 동일
댓글 없음 :
댓글 쓰기