search for: numsets

Displaying 4 results from an estimated 4 matches for "numsets".

2006 May 03
4
Aggregate?
...ID. However I would also like to retain the other variables as they are in the data set with the new summed TRIPID. So what I have is something like this: YEAR MONTH DAY CONTINUE SPL AREA COUNTY DEPTH DEPUNIT GEAR GEAR2 TRAPS SOAKTIME UNITS FACTOR DISPOSIT NUMSETS TRIPST TRIPID 1992 1 26 1 SP0073928 8 25 4 NA 1000000 NA NA NA 161 1 NA NA NA 0216 3399054 1992 1 26 1 SP00739...
2006 May 03
4
Aggregate?
...ID. However I would also like to retain the other variables as they are in the data set with the new summed TRIPID. So what I have is something like this: YEAR MONTH DAY CONTINUE SPL AREA COUNTY DEPTH DEPUNIT GEAR GEAR2 TRAPS SOAKTIME UNITS FACTOR DISPOSIT NUMSETS TRIPST TRIPID 1992 1 26 1 SP0073928 8 25 4 NA 1000000 NA NA NA 161 1 NA NA NA 0216 3399054 1992 1 26 1 SP00739...
2000 Sep 27
0
FreeBSD Security Advisory: FreeBSD-SA-00:53.catopen
...nlspath; } else *(pathP++) = *nlspath; @@ -186,7 +196,7 @@ MCSetT *set; long lo, hi, cur, dir; - if (!cat || setId <= 0) return(NULL); + if (cat == NULL || setId <= 0) return(NULL); lo = 0; if (setId - 1 < cat->numSets) { @@ -212,8 +222,8 @@ if (hi - lo == 1) cur += dir; else cur += ((hi - lo) / 2) * dir; } - if (set->invalid) - (void) loadSet(cat, set); + if (set->invalid && loadSet(cat, set) <= 0) + return(NULL); return(set); }...
2004 Jul 04
2
smooth non cumulative baseline hazard in Cox model
Hi everyone. There's been several threads on baseline hazard in Cox model but I think they were all on cumulative baseline hazard, for instance http://tolstoy.newcastle.edu.au/R/help/01a/0464.html http://tolstoy.newcastle.edu.au/R/help/01a/0436.html "basehaz" in package survival seems to do a cumulative hazard. extract from the basehaz function: sfit <- survfit(fit) H