Open mmp3 opened 3 years ago
Using the example from the documentation for selbal:
selbal
x <- HIV[,1:60] y <- HIV[,62] Bal <- selbal(x,y)
Then Bal[[8]] contains a GLM object, as it should.
Bal[[8]]
But if we set draw = FALSE for the same command:
draw = FALSE
x <- HIV[,1:60] y <- HIV[,62] Bal2 <- selbal(x,y,draw=FALSE)
Then none of the elements of the Bal2 list are a fitted GLM object.
Bal2
The last element, now named glm, is the GLM object Thank you
Using the example from the documentation for
selbal
:Then
Bal[[8]]
contains a GLM object, as it should.But if we set
draw = FALSE
for the same command:Then none of the elements of the
Bal2
list are a fitted GLM object.