1
1

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でsource()で実行時に自身のソースファイル名を取得する方法

Last updated at Posted at 2019-10-28

pythonでいうところの

python print(__file__)
やsys.argv()の0番目みたいに実行している自身のソース名を取得する方法がRにもあるはずと思ったら、単純な関数では用意されてなかったのでやり方備忘メモ


get_this_filename <- function(){
  tmp_fn <- sys.calls()[[1]]
  fn <- as.character(tmp_fn)[2]
  
  # Rscript で実行した場合はsys.calls()で取れないので
  # commandArgs()で拾える情報を利用
  if(is.na(fn)){
    fn <- commandArgs()
    idx_file <- grep(pattern = '--file=', fn)
    fn <- gsub('--file=', '', fn[idx_file])
    fn <- gsub('\\./', '', fn)
    fn <- paste0('~/', basename(getwd()), '/', fn)
  }
  
  return(fn)
}



これをGlobal envレベルで実行すればOKでした

※ターミナルからRscriptで実行した場合、自己ファイル名が取れないことがわかったので、if()の処理を追加しました

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?