用“数学”进行绩效奖金推算 \* { margin: 0; padding: 0; outline: 0; } body { font-family: "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; line-height: 1.6; } .\_\_page\_content\_\_ { max-width: 667px; margin: 0 auto; padding: 20px; text-size-adjust: 100%; color: rgba(0, 0, 0, 0.9); padding-bottom: 64px; } .title { user-select: text; font-size: 22px; line-height: 1.4; margin-bottom: 14px; font-weight: 500; } .\_\_meta\_\_ { color: rgba(0, 0, 0, 0.3); font-size: 15px; line-height: 20px; hyphens: auto; word-break: break-word; margin-bottom: 50px; } .\_\_meta\_\_ .nick\_name { color: #576B95; } .\_\_meta\_\_ .copyright { color: rgba(0, 0, 0, 0.3); background-color: rgba(0, 0, 0, 0.05); padding: 0 4px; margin: 0 10px 10px 0; } blockquote.source { padding: 10px; margin: 30px 0; border-left: 5px solid #ccc; color: #333; font-style: italic; word-wrap: break-word; } blockquote.source a { cursor: pointer; text-decoration: underline; } .item\_show\_type\_0 > section { margin-top: 0; margin-bottom: 24px; } a { color: #576B95; text-decoration: none; cursor: default; } .text\_content { margin-bottom: 50px; user-select: text; font-size: 17px; white-space: pre-wrap; word-wrap: break-word; line-height: 28px; hyphens: auto; } .picture\_content .picture\_item { margin-bottom: 30px; } .picture\_content .picture\_item .picture\_item\_label { text-align: center; } img { max-width: 100%; } .pay\_subscribe\_notice { margin: 30px 0; padding: 20px; background: #fffbe6; border: 1px solid #ffe58f; border-radius: 8px; } .pay\_subscribe\_badge { display: inline-block; padding: 4px 12px; background: #faad14; color: #fff; border-radius: 4px; font-size: 14px; font-weight: 500; margin-bottom: 12px; } .pay\_subscribe\_desc { font-size: 15px; line-height: 1.8; color: rgba(0, 0, 0, 0.7); margin-bottom: 12px; } .pay\_subscribe\_hint { font-size: 13px; color: rgba(0, 0, 0, 0.4); } .\_\_bottom-bar\_\_ { display: flex; justify-content: space-between; align-items: center; position: fixed; bottom: 0; left: 0; right: 0; height: 64px; padding: 8px 20px; background: white; box-sizing: border-box; border-top: 1px solid rgba(0, 0, 0, 0.2); } .\_\_bottom-bar\_\_ .left { display: flex; align-items: center; font-size: 15px; white-space: nowrap; } .\_\_bottom-bar\_\_ .right { display: flex; } .\_\_bottom-bar\_\_ .sns\_opr\_btn { display: flex; align-items: center; user-select: none; background: transparent; border: 0; color: rgba(0, 0, 0, 0.9); font-size: 14px; } .\_\_bottom-bar\_\_ .sns\_opr\_btn:not(:last-child) { margin-right: 16px; } .\_\_bottom-bar\_\_ .sns\_opr\_btn > img { margin-right: 4px; }
用“数学”进行绩效奖金推算
原创 Hi您好 恒健知行 2025-10-14 09:47 安徽
1.问题背景
目前,一些医院在推行RBRVS绩效方案,通过绩效系统可以得出各护士的层级得分(及层级均奖)、岗位得分(及岗位均奖)、工作量得分(及工作量均奖)、护理质量得分(及护理质量均奖)和满意度得分(及满意度均奖)。我们需要根据上述五个因素计算各个护士的绩效奖金。如何确定各个因素的系数是我们要解决的问题。
年月
绩效单元
姓名
层级得分*层级均奖(X1)
岗位得分*岗位均奖(X2)
工作量得分*工作量均奖(X3)
护理质量得分*护理质量均奖(X4)
满意度得分*满意度均奖(X5)
发放奖金(Y)
2025年8月
神外
张**
2576.6
1485.99
1393.6
2049.35
2050
2576.6
2025年8月
神外
李**
2279.3
2153.935
1393.6
2049.35
2050
2279.3
2025年8月
神外
王**
2279.3
3114.575
3296.8
2049.35
2050
2279.3
2025年8月
神外
宋**
527.212
0
228.956
991.6443
991.995
527.212
2025年8月
神外
朱**
2279.3
1350.9
1393.6
2049.35
2050
2279.3
…
…
…
…
…
…
…
…
…
2.解决方案
2.1.二次规划
二次规划是非线性规划中的一类特殊数学规划问题,在很多方面都有应用,如投资组合、约束最小二乘问题的求解、序列二次规划在非线性优化问题中应用等。在过去的几十年里,二次规划已经成为运筹学、经济数学、管理科学、系统分析和组合优化科学的基本方法。
绩效考核奖金试算过程中:
记:层级得分为(均奖)X1、岗位得分(均奖)X2、工作量得分(均奖)X3、护理质量得分(均奖)X4、满意度得分(均奖)X5、发放奖金Y
上述问题转化为构建方程:
要求:
在此基础上对进行估计。
上述问题可以转化为在约束条件下,求二次方程的
最小值
对上面的公式进行展开写成矩阵形式就是:
由于 是大于0的常量,故目标函数等价求解:
等价于:
该问题属于运筹学二次规划范畴,可以相关软件进行求解计算。
公式中,其中是Hessian矩阵,T是有限指标集,X,Y和A都是R中的向量。如果Hessian矩阵是半正定的,则我们说公式是一个凸二次规划,在这种情况下该问题的困难程度类似于线性规划。如果有至少一个向量满足约束并且在可行域有下界,则凸二次规划问题就有一个全局最小值。如果是正定的,则这类二次规划为严格的凸二次规划,那么全局最小值就是唯一的。如果是一个不定矩阵,则为非凸二次规划,这类二次规划更有挑战性,因为它们有多个平稳点和局部极小值点。
我们利用统计分析软件R得出二次规划最优解:
利用二次规划求解出:
2.2.多元线性回归
在回归分析中,如果有两个或两个以上的自变量,就称为多元回归。事实上,一种现象常常是与多个因素相联系的,由多个自变量的最优组合共同来预测或估计因变量,比只用一个自变量进行预测或估计更有效,更符合实际。
绩效奖金受层级得分、岗位得分、工作量得分、护理质量得分和满意度得分等多个因素影响,可以构建多元线性回归方程:
方程可以看作护士奖金与层级得分、岗位得分、工作量得分、护理质量得分和满意度得分的多元回归方程。利用回归模型得到参数的估计。
多元线性回归的基本原理和基本计算过程与一元线性回归相同,但由于自变量个数多,计算相当麻烦,一般在实际中应用时都要借助统计软件。我们借助统计分析软件R,利用医院2016年10月份测试数据,得到各影响因素的系数:
得出多元回归方程:
3.讨论
两种方法得出的权重系数大体一致,求解出的系数能够佐证奖金发放与层级得分、岗位得分、工作量得分、护理质量得分和满意度得分关联关系,可以作为奖金发放的参考。在奖金池有限的条件下,需平衡总体分配、确保公平等原则约束下,数据方法是一个相对客观、有理有据、数据支撑的很好的绩效管理工具。
相关文章
恒健知行
 阅读 赞  分享 ’%3E %3Cg transform=‘translate(0 -2.349)’%3E %3Cpath d=‘M0 2.349h24v24H0z’/%3E %3Cpath fill=’%23576B95’ d=‘M16.45 7.68c-.954 0-1.94.362-2.77 1.113l-1.676 1.676-1.853-1.838a3.787 3.787 0 0 0-2.63-.971 3.785 3.785 0 0 0-2.596 1.112 3.786 3.786 0 0 0-1.113 2.687c0 .97.368 1.938 1.105 2.679l7.082 6.527 7.226-6.678a3.787 3.787 0 0 0 .962-2.618 3.785 3.785 0 0 0-1.112-2.597A3.687 3.687 0 0 0 16.45 7.68zm3.473.243a4.985 4.985 0 0 1 1.464 3.418 4.98 4.98 0 0 1-1.29 3.47l-.017.02-7.47 6.903a.9.9 0 0 1-1.22 0l-7.305-6.73-.008-.01a4.986 4.986 0 0 1-1.465-3.535c0-1.279.488-2.56 1.465-3.536A4.985 4.985 0 0 1 7.494 6.46c1.24-.029 2.49.4 3.472 1.29l.01.01L12 8.774l.851-.85.01-.01c1.046-.951 2.322-1.434 3.59-1.434 1.273 0 2.52.49 3.472 1.442z’/%3E %3C/g%3E %3C/g%3E %3C/g%3E%3C/svg%3E) 推荐 ’ fill=’%23000’ fill-opacity=’.9’/%3E%3C/svg%3E) 留言