qat_add_comment(qat)
qat_add_comment()所属R语言包:qat
Comment on result
评论结果
译者:生物统计家园网 机器人LoveR
描述----------Description----------
For each check in the workflow it is possible to add a comment on the result of the test. This will be saved into the XML result file under the tag result/comment\_on\_result. This function adds a new or replace an existing comment.
如果在工作流程中的每个检查它是可能的测试的结果上添加评论。此XML结果文件将被保存在标签下的结果/评论\ _ON \ _result。此功能增加了一个新的或替换现有的注释。
用法----------Usage----------
qat_add_comment(workflowlist, listelem, comment_text)
参数----------Arguments----------
参数:workflowlist
A workflowlist like it will be created by qat\_config\_read\_workflow
,喜欢将创建一个workflowlist,QAT \ _config \ _read \ _workflow
参数:listelem
Number of check, which should be commented.
号码的检查,要注释。
参数:comment_text
Text of the comment
注释文本
值----------Value----------
Give back the edited workflowlist.
回编辑workflowlist。
(作者)----------Author(s)----------
Andre Duesterhus
参见----------See Also----------
qat_config_read_workflow
qat_config_read_workflow
实例----------Examples----------
library("qat")
# read in workflow from systemfiles[阅读工作流程,从systemfiles]
filename_in <- system.file("extdata/workflowexample.xml", package="qat")
workflowlist <- qat_config_read_workflow(filename_in)
# add some more informations for the workflow[添加一些更多的信息,工作流程]
workflowlist <- qat_add_comment(workflowlist, 1, "No problems")
filename_out <- "myworkflow_result.xml"
# write edited workflow in current directory[写在当前目录的编辑工作流程]
qat_config_write_workflow(workflowlist, output_filename=filename_out)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|