Displaying 2 results from an estimated 2 matches for "riskrating".
Did you mean:
issrating
2009 Jul 31
1
what meaning missing value True /False needed
This is my code i don't understand the error message:
library(rgenoud)
rm(list=ls())
set.seed(666)
#########################################################
# As a first step, it is assumed that all input parameters are independent of ageingĀ :
#########################################################
InputDim <-20
# Max number of ageings in the inputs
CPIRate <- rep(0.02 , InputDim )
#
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 in...