如何在R sdio中验证YAML文件

t3psigkw  于 2022-12-20  发布在  其他
关注(0)|答案(1)|浏览(105)
args <- commandArgs(trailingOnly=TRUE);

if (length(args) < 1) {
    stop("Usage: args[0] research_question.yml")
} else {
    yml <- args[1];
}

yaml::read_yaml(yml)

使用该代码如何验证yaml文件

相关问题