similar to: [Fwd: R-beta: R 0.50 alpha]

Displaying 20 results from an estimated 1000 matches similar to: "[Fwd: R-beta: R 0.50 alpha]"

1997 Jul 25
2
R-beta: R 0.50 alpha
The new code seems to have broken various things. Autoloading of libraries doesn't seem to work: > library(survival4) Autoloading required library: splines Error in pos.to.env(pos) : invalid "pos" argument > search() [1] ".GlobalEnv" "library:survival4" "library:date" [4] "library:base" The coxph function the
1997 Jul 25
2
R-beta: R 0.50 alpha
The new code seems to have broken various things. Autoloading of libraries doesn't seem to work: > library(survival4) Autoloading required library: splines Error in pos.to.env(pos) : invalid "pos" argument > search() [1] ".GlobalEnv" "library:survival4" "library:date" [4] "library:base" The coxph function the
1999 Jan 21
1
Calling survfit within a function
I have a function that generates data and tries to apply the survfit within it. I have tried: function(..){ x ..... survfit(Surv(tim,sts) ~ grp, data = x, envir = sys.frame(sys.parent())) } but I still get "Error: Object "x" not found". Is there a fix? (I use R-0.63.2 with the current survival4 package) Thanks E. S. Venkatraman
1997 Sep 23
1
R-beta: Survival 4
I installed the latest version of R (Version 0.50 Alpha-4) and it breaks survival4 as follows (it worked fine under Version 0.50 Alpha-3) R> library(survival4) Autoloading required library: splines R> survfit(Surv(runif(25),rbinom(25,1,0.4)) ~ 1) Error in eval(frame, data)[subset, , drop = FALSE] : incorrect number of dimensions Thanks E. S. Venkatraman
1997 Oct 16
4
R-beta: Time Series Analysis
I have just downloaded rsept.zip and rseptbeta.zip for Windows 95 and I think that is a GREAT product. 1st: I want to know the differences between them. 2nd: I'm interested very much in time series analysis, but watching the html help there is not any function (for ex. like the S-Plus functions acf pacf and arima functions etc). If there is some pacages to plug-in with documentation
1997 Oct 16
4
R-beta: Time Series Analysis
I have just downloaded rsept.zip and rseptbeta.zip for Windows 95 and I think that is a GREAT product. 1st: I want to know the differences between them. 2nd: I'm interested very much in time series analysis, but watching the html help there is not any function (for ex. like the S-Plus functions acf pacf and arima functions etc). If there is some pacages to plug-in with documentation
1997 Sep 24
1
R-beta: R-0.50-a4 library problem (survival4)
I have built R-0.50-a4 on HP9000/C160-hpux10.2 with gcc (cc for libs). When I try library(survival4) Error in pos.to.env(pos) : invalid "pos" argument And it does not load. Other libs seem to work. I tested integrate (has f2c translated c), polynomial. Is this a problem with my system only??? TIA osman =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
1999 Feb 16
0
[R] Pairlist & Dataframe (PR#100)
> Ennapadam Venkatraman <venkat@biosta.mskcc.org> writes: >> > x <- NULL >> > x$x1 <- rnorm(10) >> > x$x2 <- rnorm(10) >> > mode(x) >> [1] "pairlist" >> > as.data.frame(x) >> Error: can't coerce pairlist into a data.frame Fixed in 0.63.3
1997 Nov 16
0
R-beta: installing new packages in window95 version of R
> From r-help-owner at stat.math.ethz.ch Mon Nov 17 11:20 NZD 1997 > Date: Sun, 16 Nov 1997 14:08:04 -0800 > From: Kung-Sik Chan <kchan at stat.uiowa.edu> > To: r-help at stat.math.ethz.ch > Subject: R-beta: installing new packages in window95 version of R > Mime-Version: 1.0 > > I have tried to install the leaps package in the window95 version of R. > I used
1997 Apr 22
3
R-beta: library(splines) in version 0.50 alpha
I am using the 0.50 alpha version of R packaged (in 3 parts) by Kurt for Debian Linux. Package: r-base Status: install ok installed Priority: optional Section: local Maintainer: Kurt Hornik <Kurt.Hornik at ci.tuwien.ac.at> Version: 0.50b7-1 Depends: libc5, xlib6, libreadline2 Description: R, a language not entirely unlike the language S. Package: r-contrib Status: install ok
1998 Jan 27
1
R-beta: survival4
Hmm... I have the same problem on hpux10.20. I put the additional libs into a subdir called contrib, and R INSTALL from there. I have R-0.61.1 Alpha Dec21 1997. Without restored data they work OK. Osman > ---------- > From: Goran Brostrom[SMTP:gb at stat.umu.se] > Sent: Tuesday, January 27, 1998 3:07 AM > To: r-help at stat.math.ethz.ch > Subject: R-beta: survival4 > >
1997 Nov 16
0
R-beta: documentation?
Hi I'm an R for windows 95 user, where can I find documentation for "splines", "survival4", "eda" and "mva" packages? Andrea Rossetti. _______________________________________________________ Statistica & Informatica per la Gestione delle Imprese | Universit? degli Studi di Perugia (Italia) | iiasc home page: http://www.stat.unipg.it
1997 Oct 18
0
R-beta: documentation
I'm using W95 rseptbeta how can I find documentation for: * eda, * mva, * spline, * survival4, libraries? Andrea Rossetti _______________________________________________________ Statistica & Informatica per la Gestione delle Imprese | Universit? degli Studi di Perugia (Italia) | iiasc home page: http://www.stat.unipg.it |
2006 Sep 18
1
Re: dumpcore changes -- [Xen-changelog] [xen-unstable] In this patch, the xc_domain_dumpcore_via_callback() in xc_core.c of
This change has the effect of adding some complexity to the callback routines. The original callback passed an opaque argument which was a private item for the use of the controlling mechanism and its callback function. This change removes this and specifies only an fd. While it''s possible for the controlling mechanism to use the fd as an index to find internal data structures, this is
2019 Mar 08
2
Writing unit tests - how to test re-orderable blocks...
I’m not sure if it’s truly deterministic. It always gives the same results (so far) on my machine but I’m not sure that’s enough. My guess is it’s probably going to be deterministic on one machine but might well not be deterministic across environments. Like it might give varying results if cross compiled on different hosts, macOS vs intel Linux vs arm vs s390. (Obviously AVR is always a cross
2019 Mar 07
5
Writing unit tests - how to test re-orderable blocks...
We have a test that looks like this… define void @array16_store() { ; CHECK-LABEL: array16_store: ; CHECK: ldi [[REG1:r[0-9]+]], 204 ; CHECK: ldi [[REG2:r[0-9]+]], 170 ; CHECK: sts int.array+3, [[REG2]] ; CHECK: sts int.array+2, [[REG1]] ; CHECK: ldi [[REG1:r[0-9]+]], 187 ; CHECK: ldi [[REG2:r[0-9]+]], 170 ; CHECK: sts int.array+1, [[REG2]] ; CHECK: sts int.array, [[REG1]] ; CHECK: ldi
2007 Mar 09
2
Convert plugin mbox to maildir has no effect
Convert plugin seems to have no effect with dovecot-1.0.rc26 and my settings. When a user log, maildir creation is successful, but no mbox conversion occur. New incoming mails are dropped into maildir, but I cant access those in Mbox file. I set the following in dovecot.con as describe on wiki. mail_location: maildir:/var/mail/Maildir/%u convert_mail: mbox:/var/mail:INBOX=/var/mail/%u Any
2009 Jan 16
0
Barchart in lattice package: controlling order of bars in plot and color of a selected bar
Hi, I'm using the lattice function 'barchart' to make a series of 4 histograms. Currently, the y-axis values are graphed in order of the y-axis variable. I'd like to have the y-axis values sorted in ascending order of the x-axis values so that the longest bar horizontally is on top of the graph (in it's seciton) and the shortest bar is on the bottom. I can do this in
1997 Dec 14
1
R-beta: survival4 in R-0.60.1
Hi there, Here is a record of an R session: > library(survival4) Autoloading required package: splines > coxph(Surv(c(1,2,3,4), c(1,1,1,1)) ~ c(1,0,1,0)) Error in .C("coxfit2", iter = as.integer(iter.max), as.integer(n), as.integer(nvar), : C/Fortran function not in load table Why is "coxfit2" not in the load table? How do I fix it? System is Linux. Goran
1997 Apr 14
1
R-alpha: problem with survival4 and ":="
Has ":=" been eliminated? It seems to be gone from the most current snapshot, which makes loading survival4 fail (it contains 6 `:=' assignments in header.R). -k =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or