函数attach()可将数据框添加到R的搜索路径中。R在遇到一个变量名以后,将检查搜索路
径中的数据框,以定位到这个变量
summary(mtcars)
> plot(mtcars$mpg)
> plot(mtcars$hp)
mtcars 里的字段尽量是变量中没有的
> attach(mtcars)
> plot(mpg)
> plot(hp)
> detach(mtcars)
函数detach()将数据框从搜索路径中移除。值得注意的是,detach()并不会对数据框本身
做任何处理
除此之外,另一种方式是使用函数with()。你可以这样重写上例:
> with(mtcars,{
+ summary(mpg,hp)
+ plot(mpg,hp)
+ plot(mpg,wt)
+ })
时间: 2024-10-09 21:34:00