Displaying 2 results from an estimated 2 matches for "ordercost".
Did you mean:
ordercosts
2012 Mar 08
3
rpanel / list error
Hi All,
I have created a simulation that works perfect and I have the results been
returned in a list as I have multiple values. I then decided to include some
user interaction by using the package rpanel, I now get the error:
object of type 'builtin' is not subsettable
when I attempted to have the return my list with the results .
Any help needed. I can also upload code if needs be.
2012 Feb 10
2
Discrete Event Simulation problem
...Stock - inventory
sum$storage_costs = sum$storage_costs + storage_costs
sum$order_costs = sum$order_costs + order_costs
sum$inventory = sum$invneotry + k - sum$sales
sum$sales = sum$sales + sales
sum$sales = sum$sales + sales
}
}
sis = list(Time = index,StorageCosts =sum$storage_costs,OrderCosts=
sum$order_costs, FinalInventoryLevel=sum$inventory,sales=sum$sales ,
AverageCosts =((sum$order_costs + sum$storage_costs)/index))
return(sis)
}
main()
--
View this message in context: http://r.789695.n4.nabble.com/Discrete-Event-Simulation-problem-tp4377276p4377276.html
Sent from the R help ma...