📜  r 计算偏差 - R 编程语言代码示例

📅  最后修改于: 2022-03-11 14:51:58.965000             🧑  作者: Mango

代码示例1
install.packages("SimDesign")
library(SimDesign)
#Using column/list of values with variable names "actual_value"
# and "predicted_value"
bias(actual_value, predicted_value)

#The closer the bias is to 0, the less the bias in the prediction.