Displaying 3 results from an estimated 3 matches for "modbalance".
Did you mean:
loadbalance
2006 Oct 25
1
Incorrect 'n' returned by survfit()
...ulting)
n events median 0.95LCL 0.95UCL
115 15 Inf Inf Inf
Is there a limit to the size of the data set that I read in?
Or am I just doing something silly above?
Thanks much.
Yongchuan
(this is the coxph regression:
resultag <- coxph(Surv(Start,Stop,PrepayDate)~modBalance + closingCoupon+lienPosition +originalFICO,table)
2006 Oct 24
3
Error when naming rows of dataset
I get the following error when I try reading in a table.
How are 1.1, 1.2, 1.3 duplicate row names? Thx.
> table <- read.table('latestWithNumber.txt', header=T)
Error in "row.names<-.data.frame"(`*tmp*`, value = c("1.1", "1.2", "1.3", :
duplicate 'row.names' are not allowed
Yongchuan
2006 Oct 23
0
Construction of Dataset for time varying COXPH analysis
...ph(object = resultsOpt)
n events median 0.95LCL 0.95UCL
6 489 Inf Inf Inf
the n = 6 when the number of distinct loans in the dataset is more like 6554.
My dataset looks like the following when I call it from within R:
> latest[1:5, 1:5]
Start Stop PrepayDate modBalance closingCoupon
1 6 7 0 811.2769 8.35
2 7 8 0 811.2769 8.35
3 8 9 1 811.2769 8.35
4 4 5 0 2226.0825 8.70
5 5 6 0 2226.0825 8.70
where the first 3 rows present 1 loan,...