similar to: R-1.6.0 compiled on 64-bit AIX- memory problem?

Displaying 20 results from an estimated 11000 matches similar to: "R-1.6.0 compiled on 64-bit AIX- memory problem?"

2002 Feb 17
1
how to allocate more memory
Hello, I am new to R. (Neither am I a statistician. ) Experienced a problem when running an application. ###################### > exp.ravglogpm_express(x, method="ravglogpm", normalize=T, + normalize.method= "quantile", span=3/5, + choose.subset=T, subset.size=5000, verbose=T, maxit=2) Performing quantile normalization. Error: cannot allocate vector of size
2023 Oct 14
1
Create new data frame with conditional sums
That's very helpful and instructive, thank you! Jason Stout, MD, MHS Box 102359-DUMC Durham, NC 27710 FAX 919-681-7494 ________________________________ From: John Fox <jfox at mcmaster.ca> Sent: Saturday, October 14, 2023 10:13 AM To: Jason Stout, M.D. <jason.stout at duke.edu> Cc: r-help at r-project.org <r-help at r-project.org> Subject: Re: [R] Create new data frame with
2023 Oct 15
2
Create new data frame with conditional sums
Under the hood, sapply() is also a loop (at the interpreted level). As is lapply(), etc. -- Bert On Sun, Oct 15, 2023 at 2:34?AM Jason Stout, M.D. <jason.stout at duke.edu> wrote: > > That's very helpful and instructive, thank you! > > Jason Stout, MD, MHS > Box 102359-DUMC > Durham, NC 27710 > FAX 919-681-7494 > ________________________________ > From: John
2023 Oct 13
1
Create new data frame with conditional sums
This seems like it should be simple but I can't get it to work properly. I'm starting with a data frame like this: Tract Pct Totpop 1 0.05 4000 2 0.03 3500 3 0.01 4500 4 0.12 4100 5 0.21 3900 6 0.04 4250 7 0.07 5100 8 0.09
2023 Oct 14
2
Create new data frame with conditional sums
Well, here's one way to do it: (dat is your example data frame) Cutoff <- seq(0, .15, .01) Pop <- with(dat, sapply(Cutoff, \(p)sum(Totpop[Pct >= p]))) I think there must be a more efficient way to do it with cumsum(), though. Cheers, Bert On Sat, Oct 14, 2023 at 12:53?AM Jason Stout, M.D. <jason.stout at duke.edu> wrote: > > This seems like it should be simple but I
2012 May 22
3
How to remove square brackets, etc. from address strings?
Hello, I'd like to remove the individual pairs of square brackets along with their content - plus the space directly behind it - from address strings such as this: [Swidsinski, Alexander; Loening-Baucke, Vera; Lochs, Herbert] Charite Humboldt Univ, Innere Klin, D-10098 Berlin, Germany; [Hale, Laura P.] Duke Univ, Med Ctr, Dept Pathol, Durham, NC 27710 USA I'd like get the
2002 Dec 05
1
is.loaded("gamma") is FALSE in Windows
Hi! I am working on dynamically loading some C code into R and have my programs working on a DEC alpha. I have tried porting it to windows and found that the gamma function is not loaded in the symbol table there, but is under unix. While I can add in the gamma function, I would prefer to use the same one as in R and have the same code under unix and wondows. Is there a way to access the
2013 Nov 07
2
Workaround for (EL6.4) rdesktop-1.6.0-10 Woe
rdesktop has been spewing error messages since the update to CentOS 6.4. Aside from the continuous stream of errors in the terminal window from which it was launched, there are a number of usability issues in the remote session. The pointer does not change shape when moving over various window components such as column separators, window borders, etc. The background doesn't refresh within
2003 May 03
1
Winbind support on AIX ?
I was reading the latest "how to" samba project doc. (5/2/03) and noticed that "winbind" is only supported on linux, solaris and irix. is this true? What about AIX? please advice..... thanks. lc
2005 Mar 14
1
EA support for AIX 5.3
Jerry, Jeremy, Whilst fixing bug 2445, I stumbled across NFSv4 ACLs with EA version 2 capability. This is only supported on filesystems that are created JFS2 with Extended Attribute Version 2 support which is part of the NFSv4 ACL support native to JFS2 in AIX 5.3. This is new in AIX 5.3 and I'd like to get to work implementing it as an addition to Linux and IRIX EA support. Are the any
1999 Apr 07
2
Bug list summary (automatic post)
================================================= This is an automated summary of the status of the R-bugs repository. Note that this may be neither complete nor perfectly correct at any given instance: Not all bugs are reported, and some reported bugs may have been fixed, but the repository not yet updated. Some bug fixes are difficult to verify because they pertain to specific hardware or
2002 Apr 02
3
getaddrinfo() problem with AIX 4.3.3 and rsync 2.5.2?
I had to apply the following patch to the clientname.c check_name() function before I could successfully use "hosts allow" in rsyncd.conf. Without the patch I kept getting "rsync: forward name lookup for ... failed: Host not found" errors. These errors were produced by the rsync daemon, and putting in a debugging statement revealed that the port_buf being used had a large
1999 Sep 07
2
R-0.65.0 on mips-sgi-irix6.5: Error code 1 (bu21)
Dear all, I want to install R-0.65.0 on mips-sgi-irix6.5 (SGI IRIX 6.5 IP32), but it doesn't work !!! I run the following configure call: <146>: ./configure --prefix=/usr/people40c/kuonen/Software/bin ... R is now configured for mips-sgi-irix6.5 Source directory: . Installation directory: /usr/people40c/kuonen/Software/bin C compiler: gcc -g -O2
1999 Feb 09
3
Installing on 64-bit Dec or SGI
Hi all, The systems guys here in the stat dept don't seem to be able to compile R on the Dec Alphas or on the SGIs. Can anyone give them a hand? -Greg ------------------------------------------------------------------------------- Gregory R. Warnes | It is high time that the ideal of success warnes at biostat.washington.edu | be replaced by the ideal of service.
2013 Apr 25
1
Assigning a variable value based on multiple columns
Hi All, I'm hoping someone can help me with a relatively simple problem. Take the following dataset: ID Diabetes ESRD HIV Contact 1 0 0 NA 0 2 1 0 NA 0 3 NA 1 0 0 4 0 NA 0 1 5 1 1 1 0 I want to generate a
2007 Oct 25
1
PR#10371
Oops -- I should have tested it without libraries loaded :-) The conflict must be with the HH package. I tested the example again using all the packages required by HH and do get the correct results, but once the HH package is loaded, the TukeyHSD function returns "height" and the plot command gives the error described previously. Should I report this bug directly to the authors of
2001 Mar 06
3
utmpx/wtmpx problems with 2.5.1p2 on irix...
I installed 2.5.1p2 on an irix system and noticed that if a user logged in typed "logname" it was providing the wrong username. File creations were correct, "w" produces the correct output....so something is funky in p2 that wasn't there in p1.
2008 Mar 05
1
Asterisk 1.6.0-beta5 Now Available
Greetings, The Asterisk.org development team has released Asterisk 1.6.0-beta5. As of this beta of 1.6.0, 1.6.0 is now feature frozen. In addition to a number of bug fixes, the following new features have been added since beta4: * The SMDI interface in Asterisk has been reworked to fix a number of issues as well as add some new features. SMDI message information is now accessed in the
2008 Mar 05
1
Asterisk 1.6.0-beta5 Now Available
Greetings, The Asterisk.org development team has released Asterisk 1.6.0-beta5. As of this beta of 1.6.0, 1.6.0 is now feature frozen. In addition to a number of bug fixes, the following new features have been added since beta4: * The SMDI interface in Asterisk has been reworked to fix a number of issues as well as add some new features. SMDI message information is now accessed in the
2003 Sep 16
4
openbsd-compat/inet_ntoa.h missing from 3.7p1?
On IRIX 6.5: cc -Wl,-woff,84 -Wl,-woff,85 -woff 1429 -O2 -I/opt/TWWfsw/tcpwrap/include -I. -I.. -I. -I./.. -I/opt/TWWfsw/libopenssl097s/include -I/opt/TWWfsw/zlib11s/include -DHAVE_CONFIG_H -c inet_ntoa.c cc-1035 cc: WARNING File = /usr/include/stdint.h, Line = 5 #error directive: This header file is to be used only for c99 mode compilations #error This header file is to be used