similar to: R-beta: bug in hist() (0.60/0.61)

Displaying 20 results from an estimated 5000 matches similar to: "R-beta: bug in hist() (0.60/0.61)"

1997 Dec 02
2
R-beta: wish: hist() returning breaks and counts
Hi, would it be possible to change the hist() function in future R Versions to accept a "plot=F" parameter (like hist() in S it should return a list with "breaks" and "counts" in this case). This change should be very simple. Albrecht ------------------------------------------------------------------------------- Albrecht Gebhardt email :
1997 Dec 02
2
R-beta: wish: hist() returning breaks and counts
Hi, would it be possible to change the hist() function in future R Versions to accept a "plot=F" parameter (like hist() in S it should return a list with "breaks" and "counts" in this case). This change should be very simple. Albrecht ------------------------------------------------------------------------------- Albrecht Gebhardt email :
1997 Nov 26
0
R-beta: library format for R-0.60
Currently I'm porting the spatial library from "Venables W.N., Ripley, B.D. (1995): Modern applied statistics with S-PLUS, Springer" to R. Now it seems to work with R-0.50-a4, but I guess it has to be adjusted when R 0.60 comes out. So my questions are: What changes will appear in library sources (directories, Makefile, help page format)? Can I get an unofficial pre-version
1999 Mar 30
0
New SuSE rpms + DU 4.0 binaries
Hi, I updated my R rpms for SuSE systems. They are now available both for S.u.S.E 5.3 and SuSE 6.0 under ftp://ftp.ci.tuwien.ac.at/pub/R/bin/linux/suse/ Additionally I put binaries for DEC Alpha systems running Digital Unix 4.0 under ftp://ftp.ci.tuwien.ac.at/pub/R/bin/osf/osf4.0/alpha/ These packages are available as rpms and as a setld kit. setld is the Digital Unix package maintanance
2001 Feb 07
1
Re: failed rpm installation of R 1.2-1 (fwd)
On Wed, 7 Feb 2001, Faheem Mitha wrote: > Dear Albrecht, > > Just sent the following message out to r-help. Have you any idea what this > problem could be? > > Sincerely, Faheem Mitha. > > ---------- Forwarded message ---------- > Date: Wed, 7 Feb 2001 00:04:35 -0500 (EST) > From: Faheem Mitha <faheem at email.unc.edu> > To:
1998 Mar 13
0
R-beta: modified "help.start()"
Hi, this modified version of help.start() makes it possible to store R Documentation on your (intranet) webserver. This could be necessary if you run netscape and R from different systems on one X11 display (if there is no $RHOME directory on the host running netscape). help.start() <- function (gui = "irrelevant", browser = "netscape", remote = NULL) { if
2000 Jul 17
1
Makevars, PKG_CFLAGS, ...
Hi, I'm searching for a way to override the default CFLAGS/FFLAGS (-g -02 in my case) per package (e.g with "-g" for packages under development). PKG_CFLAGS/PKG_FFLAGS is prepended to the remaining flags, so it can't delete a globally set "-O2" flag. Of course I can edit the global Makeconf file, but I was wondering if there is a possibility to override variables from
2000 Jun 02
1
R.bin (1.1.0) gives segfault
During testing with R-devel on the alpha I just noticed (after misspelling "bin/R" as "bin/R.bin") that R.bin segfaults. It accesses the empty R_HOME variable and should better give an error instead of a crash: a gdb output snippet: ... Program received signal SIGSEGV, Segmentation fault. 0x3ff800d6a10 in strcpy () (gdb) backtrace #0 0x3ff800d6a10 in strcpy () #1 0x1200efda0
1997 Nov 17
1
R-beta: autoloading a required library
I wanted to use the dist() function from the mva library in my own library, so I put require(mva) in my files. When my library loads, a message about "Autoloading ... mva" appears. But when I call dist() now within my functions the message Error in .C("dist", as.double(x), nrow(x), ncol(x), double(len), as.integer(method)) : C/Fortran function not in load table appears.
2001 May 12
0
Re: [R] R for ARM Linux (moved from r-help to r-devel)
On Fri, 11 May 2001, Cox, Terry (NEI) wrote: > I am interested in your efforts to port R to ARM Linux. If you are > successful, then I have a good reason to spend the money to buy a Compaq > iPAQ. I have compiled R-1.2.2 for arm-linux (iPAQ) on the skiffcluster, an ARM compile farm accessible at http://www.handhelds.org/projects/skiffcluster.html and R-1.2.3 using cross
1998 May 07
2
R-beta: 0.61.3: Problems on DEC Unix 4.0
Hi, I had some trouble compiling the new R version on my Alpha: make[2]: Entering directory `/usr2/local/R/src/graphics' cc -ieee_with_inexact -O -Olimit 2000 -I/usr/local/include -I../include -c gdevice.c cc -ieee_with_inexact -O -Olimit 2000 -I/usr/local/include -I../include -c graphics.c cc: Error: graphics.c, line 808: An unexpected newline character is present in a string literal.
1998 May 07
2
R-beta: 0.61.3: Problems on DEC Unix 4.0
Hi, I had some trouble compiling the new R version on my Alpha: make[2]: Entering directory `/usr2/local/R/src/graphics' cc -ieee_with_inexact -O -Olimit 2000 -I/usr/local/include -I../include -c gdevice.c cc -ieee_with_inexact -O -Olimit 2000 -I/usr/local/include -I../include -c graphics.c cc: Error: graphics.c, line 808: An unexpected newline character is present in a string literal.
1998 May 24
1
R-beta: problem with graphics parameter "fin"
Hi, I have the following problem (with R 0.61.3 an Linux, and a new and empty workspace) > oldpar<-par() > par(oldpar) Error: attempt to set invalid value for graphics parameter "fin". > oldpar$fin [1] 6.992034 6.990803 but now: > oldpar$fin <- c(6.99,6.99) > par(oldpar) it works. It seems, that if I set oldpar$fin to values greater than listed above
1998 Jan 19
2
R-beta: updating the library index / overriding compile options
Would it be possible to include a new command in the ${RHOME}/etc path, which updates the Library index (Rd and html) via "R LIBINDEX". I need it because I use RPM to manage three different R installations (at home, at the institute and in the seminar rooms). I put all libraries into several packages, so it is easy for me to update a single library at all these different places. But
1998 Feb 26
2
R-beta: question on dyn.loaded code
Hi, when designing libraries for R, is it possible to call C/Fortran subroutines from other dynamically loaded code? The following example crashes R: ********* fn1.c ***************** void twice(int *i) { *i = 2 * *i; } ********************************* ********* fn2.c ***************** extern int twice(int *i); void negtwice(int *i) { *i = -1 * twice(i); }
1998 Feb 26
2
R-beta: question on dyn.loaded code
Hi, when designing libraries for R, is it possible to call C/Fortran subroutines from other dynamically loaded code? The following example crashes R: ********* fn1.c ***************** void twice(int *i) { *i = 2 * *i; } ********************************* ********* fn2.c ***************** extern int twice(int *i); void negtwice(int *i) { *i = -1 * twice(i); }
1998 Nov 19
0
SuSE RPMs available
Hi, first versions of RPMs of R and its libraries for SuSE 5.3 are available at CRAN: ftp://ftp.ci.tuwien.ac.at/pub/R/bin/linux/suse/ I compiled it with gcc and g77 from egcs 1.1b. There are still some problems: + the "event", "gnlm", ... libraries are missing (g77 complains about wrong declarations) + "modreg" does not work (library contains
2000 Jun 07
2
"clipping error in x11()" (PR#564)
There seems to be an error in the X11 display code: try: plot(c(-30000,-1,0,1,30000),c(30000,1,0,1,30000),type="l") points(c(-30000,-1,0,1,30000),c(30000,1,0,1,30000)) it gives a big "V" as expexted. Now zoom in using small xlim and ylim: plot(c(-30000,-1,0,1,30000),c(30000,1,0,1,30000),type="l", xlim=c(-5,5),ylim=c(0,5))
2006 Feb 01
1
akima 0.4-5, interpp() bug = COMMON block problem
Hi, I'm currently hunting a bug in the akima library, especially in the code behind the interpp.old function (bi-variate linear interpolation). It is based on a triangulation algorithm, interpolation at a given point needs to know the triangle which contains this point, then the interpolation is a straightforward calculation based on the three vertexes. The problem is: Sometimes the triangle
2000 Jun 02
2
make check on DU4 with R-1.1.0 snapshot
I just tried the rsync version of R-1.1.0 on one of my alphas: It compiles without problems (gcc/g77 2.95.2, system is DU4.0E) but make check stops in base-Ex.R at > X <- cbind(1, 1:7) > str(s <- svd(X)); D <- diag(s$d) List of 3 $ d: num [1:2] 12.07 1.16 $ u: num [1:7, 1:2] -0.0976 -0.1788 -0.2601 -0.3413 -0.4225 ... $ v: num [1:2, 1:2] -0.198 -0.980 -0.980 0.198 >