Displaying 1 result from an estimated 1 matches for "channel_select".
2012 Aug 10
1
Solving binary integer optimization problem
...communications for each channel
maximizing ROI)return on investment) with overall budget as constraint.60000
is the budget allocated.
Channel Fixed_Cost Variable_Cost Capacity Expected_Gain
C1 400 2.5 5000 0.25
C2 10000 0 30000 0.3
C3 4000 0.15 20000 0.15
C4 2000 2 10000 0.36
C5 100 3 4000 0.09
Channel_Select <-data.frame(Channel=c('c1','c2','c3','c4','c5'),
Fixed_Cost=c(400,5000,4000,2000,100),
Variable_Cost=c(2.5,0,0.15,2,3),
Capacity=c(5000,30000,20000,10000,4000),
Expected_gain=c(0.25,0.3,0.15,0.36,0.09))
L...