| .replaceMissingWithFirst {iSEE} | R Documentation |
Replace an NA or invalid value in a slot of a Panel object with the first valid choice.
This is usually called in .refineParameters.
.replaceMissingWithFirst(x, field, choices)
x |
An instance of a Panel class. |
field |
String containing the name of the relevant slot. |
choices |
Character vector of permissible values for this slot. |
x where the slot named field is replaced with choices[1] if its value was previously NA or did not exist in choices.
Aaron Lun