R detach()

1 개요[ | ]

R detach()
attach(iris)
str(Sepal.Length)
## num [1:150] 5.1 4.9 4.7 4.6 5 5.4 4.6 5 4.4 4.9 ...

detach(iris)
str(Sepal.Length)
## Error in str(Sepal.Length) : object 'Sepal.Length' not found

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}