search for: riskrat

Displaying 2 results from an estimated 2 matches for "riskrat".

Did you mean: riskrate
2009 Jul 31
1
what meaning missing value True /False needed
...################################################### InputDim <-20 # Max number of ageings in the inputs CPIRate <- rep(0.02 , InputDim ) # CPI inflation rate LossInflaRate <- rep(0.02 , InputDim) # inflation rate of losses RiskFreeRate <- rep(0.04, InputDim ) # vector of risk free rate RiskRate <- rep(0.06, InputDim ) # vector of risk free rate ################   lapse param begin : LapseType <- rep("linear" , InputDim ) # type of the function used to calculate lapse rate= "power", "logistic", "linear" CentralLapseRate <- rep(0.13 , InputD...
2006 Jul 31
0
acts_as_list with single table inheritance
I have a question about where to decorate my classes with acts_as_list. I am using single table inheritance and i have a base class LookupItem. There are 5 child classes: Priority, Probability, RiskRating, Status, and RiskManagementItem. Each of these 5 items needs to act as a list. Should I use acts_as_list on each child class or should it go on the parent LookupItem class? I''m guessing that it should go on the child classes, but I couldn''t find anything concrete to point me...