similar to: R on AIX (>4.2)

Displaying 20 results from an estimated 2000 matches similar to: "R on AIX (>4.2)"

1999 Jun 10
2
dynload for R on AIX (>= 4.2)
On Thu, 10 Jun 1999, Friedrich Leisch wrote: > Yes, if I understood AIX workings correct you have to have a text file > of to-be-exported symbols at the time of linking a shared library, > i.e. the linker is called like (this is pasted from a mail by Arne) > > $(F77) -o module.so -bM:SRE -bE:module.exp -bnoentry $(OBJECTS) $(LIBDIR) $(LIBS) > > where module.exp is a text
1999 Jul 28
2
3d in R
Dear R-users and R-developpers, I've not been able to find 3d graphics in R, like Splus spin() or brush(). Are there any that I've missed and/or is anybody working on implementing these type of functions? Thanks Dr. Agustin Lobo Instituto de Ciencias de la Tierra (CSIC) Lluis Sole Sabaris s/n 08028 Barcelona SPAIN tel 34 93409 5410 fax 34 93411 0012 alobo at ija.csic.es
2000 Mar 07
4
Error compiling R on RS6000 (PR#475)
Full_Name: Paul Gutwin Version: R-1.0.0 OS: AIX 4.2.1 Submission from: (NULL) (198.133.22.67) R-1.0.0 fails to compile. I'm using the config.cache file from a successful compliation of R-0.65.0 (prob #290, fixed thanks to Thomas Vogels @ CMU). Compiling R-1.0.0 fails with the following error messages: make Target "R" is up to date. gcc -I. -I../include -I../../src/include
1998 Jan 06
1
IEEE 754 Style Arithmetic
I have been looking at the R mathematical library with a view to making changes so that it will handle IEEE 754 entities like NaN and +/- Inf. This appears to be not too hard and I am fairly well down the path to converting the existing code (and simultaneously converting some of the more suspect algorithms to something more solid). Q1: I have looked at the Splus implementation and I have a bit
2000 May 08
3
eigen broken on AIX with R-devel? (PR#537)
Hi, I get the wrong eigen values on an AIX machine with R-devel of 5/3/00. Here are the results: R> m <- matrix (c(6.8, 2.4, 2.4, 8.2), nrow=2) R> m [,1] [,2] [1,] 6.8 2.4 [2,] 2.4 8.2 R> eigen(m) $values [1] 19.281403 6.337993 $vectors [,1] [,2] [1,] 0.1918866 0.9967987 [2,] 0.9967987 -0.1918866 And for comparison, here is what I get on a Sun (with
2001 Sep 07
2
Why does substr<- truncate and not replace...
... when the replacement string is shorter than the portion of the string to be replaced? The documentation to substr (in R 1.3.1) gives me: If the portion to be replaced is longer than the replacement string, then only the portion the length of the string is replaced. And so I try: R> x <- "abcdef" R> substr(x,2,3) <- "xy" #ok R> x [1]
2001 Sep 07
2
Why does substr<- truncate and not replace...
... when the replacement string is shorter than the portion of the string to be replaced? The documentation to substr (in R 1.3.1) gives me: If the portion to be replaced is longer than the replacement string, then only the portion the length of the string is replaced. And so I try: R> x <- "abcdef" R> substr(x,2,3) <- "xy" #ok R> x [1]
2000 Mar 18
3
AIX fails on startup with R-1.0.0
Hi, this is not a bug report since this may not be a problem with R per se. The current release of R (1.1.0) will compile cleanly on an AIX box (I have 4.3.2) but it will fail upon startup with an Illegal Instruction. I've located the problem to be in do_strsplit when R calls regcomp. This function is defined in regex.c. However, the text from regex.o doesn't find its way into the
2001 Sep 07
2
adding logical vector to data frame
Hello. I'm afraid that I'm missing something very obvious this afternoon... When I add a column to a data.frame (by assigning to a "new" column name a logical vector), I thought that I had (at least) 3 options to do so: R> j <- data.frame (x=1:2) R> j$y <- c(TRUE,FALSE) #assignment 1 R> str(j) `data.frame': 2 obs. of 2 variables: $ x: int 1 2 $ y: logi
1998 Jun 09
1
R-beta: R-beta makefile
>This mean that the specs file of Cygnus gcc is different from the >mingw32 one. OK thanks (I added main() {} as per FAQ and I got the dynload to build a dll ok) I am also interested in building the R sources as per your descriptions. To simplify things, I have removed b18 cygwin and have now installed egcs-mingw32 with your djtools as recommended. Everything seems to work OK; tools that
2000 Jun 16
2
Missing -lm for tcltk (R 1.1.0, AIX 4.3) (PR#573)
> From: tov@phoenix.ece.cmu.edu > Date: Fri, 16 Jun 2000 16:32:36 +0200 (MET DST) > To: r-devel@stat.math.ethz.ch > Subject: [Rd] Missing -lm for tcltk (R 1.1.0, AIX 4.3) (PR#573) > CC: R-bugs@biostat.ku.dk > X-Loop: R-bugs@biostat.ku.dk > > Hi, > > ok, AIX 4.3 insists on being different. I can't compile --with-tcltk > out of the box. I have to add
2001 Jan 12
1
Histogram for factors
Hi, I keep running into this: R> hist (f) Error in hist.default(f) : `x' must be numeric To which of course something like (simplified but not beyond repair): R> hist.factor <- function (ff) { jj <- table (ff) jb <- barplot (jj, ylab="Frequency", xlab=deparse(substitute(ff))) axis (1, jb, names (jj)) } R> hist (f) is a possible solution. Why is a
1999 Jun 10
1
running R on AIX (>= 4.2)
(Was: r-help -- dynload for R on AIX) Thanks for all the responses. Let's see: - I found the dynload.c posted by Arne (April 99, I believe). If the difference to the current version of dynload.c is too big, then the current dynload.c is a better starting point. Otherwise #ifdef's won't be feasible. - One problem appears to be the list of exported symbols.
2015 Mar 17
2
How to know which protocol version clients use?
Hello, I currently run samba with server min protocol = NT1 but I need to move towards server min protocol = SMB2 is there any way I can detect which clients still use the older protocol versions? I would like to estimate the impact of the change before i do close NT1/SMB1. Thank and kind regards, Heiner Billich
2005 Feb 24
2
other than default labels in lattice plot
Dear all I solved a problem of customised labels on strips and boxes in bwplot by this construction. > bbb <- bwplot(zavoj ~ typmleti | pu) > bbb$condlevels$pu <- c("Povrchov? ?prava", "Bez PU") > bbb$x.limits <- c("Mleto", "Mleto a s?tov?no", "Nemleto") > bbb but I wonder if some other easy option exist. Let say something
2006 Jul 11
5
Hardware Raid cards RAID 0 / 1
Last week we tried to install Centos on a brand new HP ML150 G2 with AIC-8130/ Marvell SATA Raid card and it was a no go. We tried a few other flavors of Linux as a test and all had trouble as well. Unfortunately time didn't permit so we opted for a Windows solution to get the box into production. We have never had a problem with IDE and Embedded SATA (Non Raid) Next time we want to
2000 Jun 14
1
extra comma in configure (PR#570)
Full_Name: Tom Vogels Version: 1.1.0 (2000/June/14) OS: Linux Submission from: (NULL) (128.2.216.84) There is a random comma on line 3617 in configure. Doesn't hurt but doesn't look very pretty either when configure reports ",: command not found" -tom (This showed up when running configure on a linux machine with gnome enabled.)
2005 Apr 14
5
cross compiling R for Windows under Linux
Hi I tried to cross compile R under Linux but get an error. i586-mingw32-gcc -isystem /home/schouwl/unpack/mingw/include -O2 -Wall -pedantic -I../include -I. -DHAVE_CONFIG_H -DR_DLL_BUILD -c dynload.c -o dynload.o dynload.c: In function `R_loadLibrary': dynload.c:94: warning: implicit declaration of function `_controlfp' dynload.c:94: error: `_MCW_IC' undeclared (first use in this
2001 Jan 30
1
screen can't go back to log="y" plot (PR#831)
[I have abbreviated the subject as jitterbug has been having probems with long subjects.] The issue here is that one cannot mix log/non-log axes in the calls to screen(), as the appropriate par() parameter is read-only, but the meaning of yaxp depends on it. But beyond that you can't set x/yaxp for log axes. You should be able to do this: you can in the S original. A simpler version: plot
2001 Feb 03
1
tk non-widget commands (esp. update and winfo)
Hi, I've been playing with the tcltk package. It's very nice to have access to buttons, menus etc. now. Thank you! Alas, I also have questions: In Tcl everything is a string [*]. This is not the case in R, of course. So why are return values of tk commands still strings? (Is there any other reason than speed or "package is work in progress"?) Example: > tt <-