EMSRb(RM2)
EMSRb()所属R语言包:RM2
Perform EMSR-b with Buy-up Heuristic for the Single-Resource Problem
执行EMSR-b的买入单资源问题的启发式算法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
EMSRb heuristic sets the protection levels for multiple fare classes.
EMSRb启发式设置多个舱位的保护级别。
用法----------Usage----------
EMSRb(Fare = Fare, Mean = Mean, Var = Var, p_up = numeric(length(Fare)), cap = cap)
参数----------Arguments----------
参数:Fare
revenue vector associated with selling the offered products
所提供的产品销售收入矢量
参数:Mean
mean product demand
意味着产品的需求
参数:Var
product demand variance
产品需求差异
参数:p_up
buy-up probabilities. The default entails no buy-up probabilities.
购买的可能性。默认情况下必须没有买的可能性。
参数:cap
available capacity
可用容量
Details
详细信息----------Details----------
EMSRb sorts internally the Fare vector together with all other input vectors in descending order of the revenues. If p_up is missing, EMSRb performs the classical EMSRb heuristic.
EMSRb各种内部Fare向量,连同所有其他输入向量的收入降序排列。如果p_up失踪,EMSRb执行启发式的经典EMSRb。
值----------Value----------
<table summary="R valueblock"> <tr valign="top"><td>p</td> <td> protection levels </td></tr> </table>
<table summary="R valueblock"> <tr valign="top"> <TD> p</ TD> <TD>保护等级</ TD> </ TR> </ TABLE>
(作者)----------Author(s)----------
Tudor Bodea <a href="mailto:tudor.bodea@ihg.com">tudor.bodea@ihg.com</a> <br>
Dev Koushik <a href="mailto:dev.koushik@ihg.com">dev.koushik@ihg.com</a> <br>
Mark Ferguson <a href="mailto:mark.ferguson@mgt.gatech.edu">mark.ferguson@mgt.gatech.edu</a>
实例----------Examples----------
## Run a simple EMRSb instance[#运行一个简单EMRSb,例如]
Fare <- c(150, 100, 50, 250)
Mean <- c(75, 125, 500, 50)
Var <- c(75, 125, 500, 50)
cap <- 400
p <- EMSRb(Fare = Fare, Mean = Mean, Var = Var, cap = cap)
p
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|