Displaying 1 result from an estimated 1 matches for "04_1".
Did you mean:
0401
2010 Apr 20
1
Results from clogit out of range?
...outside of the {0,1} range??
The call in R is:
m <- clogit(score ~ val_1 + val_2 + strata(group), data=data)
Then
prediction <- predict(m,newdata)
A sample of the data with resulting predictive values is:
group score val_1 val_2 prediction
1 2009-01-04_1 1 0.5913962 -1.121589 1.62455210
2 2009-01-04_1 1 0.6175472 -3.249820 -0.20093346
3 2009-01-04_1 1 0.5439640 -2.424501 0.46651849
4 2009-01-04_1 0 0.3745209 -2.477424 0.31263855
5 2009-01-04_1 0 0.6329855 -3.424174 -0.34200448
6 2009-01-04_1 0 0.4...