search for: sstat

Displaying 7 results from an estimated 7 matches for "sstat".

Did you mean: stat
2004 Dec 16
0
fitting problems in coxph.fit
...rl("http://www.imbe.med.uni-erlangen.de/~hothorn/coxph_fit.Rda")) method <- "efron" ### copied from `coxph.fit' coxfit <- .C("coxfit2", iter=as.integer(maxiter), as.integer(n), as.integer(nvar), stime, sstat, x= x[sorted,] , as.double(offset[sorted] - mean(offset)), as.double(weights), newstrat, means= double(nvar), coef= as.double(init), u = double(nvar),...
2011 Oct 03
2
number of copies
I'm looking at memory efficiency for some of the survival code. The following fragment appears in coxph.fit coxfit <- .C("coxfit2", iter=as.integer(maxiter), as.integer(n), as.integer(nvar), stime, sstat, x= x[sorted,] , ... Does this make a second copy of x to pass to the routine (my expectation) or will I end up with 3: x and x[sorted,] in the local frame of reference, and another due to dup=TRUE? Terry T.
2005 Mar 14
4
[patch/unstable] page table cleanups
...ntry_t val, unsigned long flags, domid_t domid) { @@ -2297,9 +2300,9 @@ int ptwr_debug = 0x0; /* Flush the given writable p.t. page and write-protect it again. */ void ptwr_flush(const int which) { - unsigned long sstat, spte, pte, *ptep, l1va; - l1_pgentry_t *sl1e = NULL, *pl1e, ol1e, nl1e; - l2_pgentry_t *pl2e; + unsigned long sstat, l1va; + l1_pgentry_t *sl1e = NULL, *pl1e, ol1e, nl1e, pte, spte, *ptep; + l2_pgentry_t *pl2e; int i, cpu = smp_processor_id(); struct exec...
2011 Jul 19
1
"may be used in an incorrect context"
...anything useful. This is with R 2.7 and 2.9. The message appears to be referring to a section of code whose highlights are agfitfn <- function(beta) { r <- .C("agexactrds", iter= as.integer(control$iter.max), as.integer(n), as.integer(nvar), sstart, sstop, sstat, x= x[sorted,], sextra, as.integer(length(response.prob)), as.double(response.prob), as.double(alpha), as.double(offset[sorted] - mean(offset)), newstrat, means = double(nvar), coef= as.double(beta), u = d...
2004 Aug 06
2
xsl data
Im relaying shoutcast stream... --- <relay> <server>xxx.xxx.xxx.xxx</server> <port>xxxx</port> <mount>/</mount> <local-mount>/xxx</local-mount> <relay-shoutcast-metadata>1</relay-shoutcast-metadata> </relay> --- also im using status.xsl and admin/stats.xsl to get data for my
2001 May 24
1
chroot sftp-server [PATCH]
I'm working on setting up a semi-trusted sftp service, and to get it working, I need chroot capability. I've taken the /./ wuftpd magic token code from contrib/chroot.diff and put it into the sftp server. The main problem is that privileges have been dropped by the time the subsystem is exec'ed, so my patch requires that sftp-server be setuid root. Not ideal, I know, but I drop all
2007 Dec 17
2
Capture warning messages from coxph()
Hi, I want to fit multiple cox models using the coxph() function. To do this, I use a for-loop and save the relevant results in a separate matrix. In the example below, only two models are fitted (my actual matrix has many more columns), one gives a warning message, while the other does not. Right now, I see all the warning message(s) after the for-loop is completed but have no idea which model