web-dev-qa-db-ja.com

ゼロ以外のステータスコードでRを終了する

終了コードnでプロセスを停止し、エラーが発生したことを親プロセスに通知するlinux/POSIX exit(n)に相当するRを探しています。 Rにはそのような機能がありますか?

56
SetJmp

quit()への引数です。見る ?quit

引数

status: the (numerical) error status to be returned to the operating
        system, where relevant.  Conventionally ‘0’ indicates
        successful completion.

詳細

 Some error statuses are used by R itself.  The default error
 handler for non-interactive use effectively calls ‘q("no", 1,
 FALSE)’ and returns error code 1.  Error status 2 is used for R
 ‘suicide’, that is a catastrophic failure, and other small numbers
 are used by specific ports for initialization failures.  It is
 recommended that users choose statuses of 10 or more.
61
Joshua Ulrich
quit(status=1)

置換1必要な終了コードによって。

1
ligand