Attach postprocessing function to operator
后处理功能连接到运营商
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The postprocessing function is applied during performance calculation after averaging but before dev is applied. This is the place where the root is taken of root mean squared errors.
后处理功能,在性能计算取平均值后,但在此之前dev应用。这是地方的根是根均方误差。
用法----------Usage----------
postproc(op)
postproc (op) <- value
参数----------Arguments----------
参数:op
the operator (function)
的操作(功能)
参数:value
function (or its name or symbol) to do the post-processing. NULL deletes the postprocessing function.
函数(或它的名称或符号)做后处理。 NULL删除的后处理功能。
Details
详细信息----------Details----------
postproc (op) retrieves the postprocessing function (or NULL if none is attached)
postproc (op)检索后处理功能(或NULL如果没有附后)
值----------Value----------
logical indicating the type of operator. NA if the attribute is missing.
逻辑表示运算符的类型。 NA如果缺少属性。
(作者)----------Author(s)----------
Claudia Beleites
参见----------See Also----------
sens post
senspost
实例----------Examples----------
postproc (wRMSE)
myop <- function (r, p) p * (r == 1)
postproc (myop) <- `sqrt`