2013年8月26日月曜日

メモ:CRAN にパッケージを投稿する際の問題

メモです。

パッケージのチェックには「--as-cran」を使う。
R CMD check --as-cran test.package


Mac の Finder が自動生成する隠しファイル(.DS_Store)の存在が邪魔。これは rm で取り除くことができるから OK。

* checking for hidden files and directories ... NOTE
Found the following hidden files and directories:
  .DS_Store
These were most likely included in error. See section ‘Package
structure’ in the ‘Writing R Extensions’ manual.


assign で .GlobalEnv にオブジェクトを作ったらダメ。この解決法を知りたい。別の環境をつくってそこに放り込む?
* checking R code for possible problems ... NOTE
Found the following assignments to the global environment:
File ‘test.package/R/assign.obj.R’:
  assign(name, value, pos = .GlobalEnv)


0 件のコメント:

コメントを投稿