validation.bin {PoisBinOrd} | R Documentation |
Validates the marginal specification of the binary variables
Description
Checks whether the marginal specification of the binary part is valid and consistent.
Usage
validation.bin(n.B, prop.vec = NULL)
Arguments
n.B |
Number of binary variables. |
prop.vec |
Probability vector for binary variables. |
Value
The function returns TRUE if no specification problem is encountered. Otherwise, it returns an error message.
Examples
n.B<-3
prop.vec<-c(0.25,0.5,0.75)
validation.bin(n.B,prop.vec)
## Not run:
n.B<-3
validation.bin(n.B)
n.B<--3
prop.vec<-c(0.25,0.5,0.75)
validation.bin(n.B,prop.vec)
n.B<-0
prop.vec<-c(0.25,0.5,0.75)
validation.bin(n.B,prop.vec)
n.B<-5
prop.vec<-c(0.25,0.5,0.75)
validation.bin(n.B,prop.vec)
n.B<-3
prop.vec<-c(0.25,0.5,-0.75)
validation.bin(n.B,prop.vec)
## End(Not run)
[Package PoisBinOrd version 1.4.3 Index]