21
22

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Rで使わない変数を消す

Last updated at Posted at 2013-10-11
remove(unused_var)
# または
rm(unused_var)

全部消してワークスペースをまっさらの白紙状態にしたいときは、ls() で変数一覧のベクトルを取得して、rm()list パラメータに渡す。

rm(list=ls())
21
22
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21
22

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?