我已经完成了将R脚本转换为Python的任务。我试图了解其功能。
下面在脚本中提到了它。
stop('The database argument must be supplied', call.=FALSE)
这等于 Python的 sys.exit
吗?喜欢
sys.exit('The database argument must be supplied')
call.=FALSE
的含义是什么。
我已经阅读过 R文档,但是与 Pythonic 条款无关。
https://www.rdocumentation.org/packages/base/versions/3.6.1/topics/stop