similar to: if/else at 1.3.1

Displaying 20 results from an estimated 1000 matches similar to: "if/else at 1.3.1"

2001 Sep 28
1
change directory?
Please pardon a novice use question. Is there any way under the Win32 version of R (1.3.0) to change the working directory from the GUI command line? I see the "Change dir" entry under the File menu, but haven't found a corresponding command. Thanks in advance, -jh- ========================================= John M. Heumann, Agilent Technologies 815 14th St. S.W., Loveland, CO
2001 Oct 11
1
unary "-" on logicals
"An Introduction to R" says that arithmetic operators coerce logical vectors to numeric vectors. This doesn't seem to be true for unary "-" however: > x <- 1:10 > p1 <- (x > 5) > p2 <- (-p1) > is.logical(p2) [1] TRUE > is.numeric(p2) [1] FALSE Since "==" always does binary comparison, this can lead to some bizarre behavior: > p1
2001 Sep 11
5
for loop question
In the windows version of R (1.3.0) is the following a bug, a known problem, or expected behavior: > for (i in 1:2) { + for (j in i+1:3) { + print(j) + } + } [1] 2 [1] 3 [1] 4 ???? [1] 3 [1] 4 ???? [1] 5 ???? > Conversely, the following behaves as expected: > for (i in 1:2) { + k <- i+1 + for (j in k:3) { + print(j) + } + } [1] 2 [1] 3 [1] 3 >
2001 Oct 09
1
sample() help
The documentation for sample() describes the optional "prob" argument as "A vector of probabilities of obtaining the elements of the vector being sampled". Both run time behavior and source code (routine FixupProb) suggest that "prob" can be a vector of non-negative, relative weights (i.e. not necessarily normalized). Should the help be updated to reflect this?
2002 May 30
0
Followup on quadprog installation
Oops... just realized there were a couple mistakes in the question I posted regarding installation of quadprog: 1) The gcc command line is shown wrapped to the next line. Please ignore this. 2) In addition to adding a -Lc:/apps/rw1050/bin option to the command line, I also added -lRblas. Thanks, -jh- ================================= John Heumann, Agilent Technologies,
2002 Nov 26
0
degenerate cases in RPART
RPART doesn't seem to handle the degenerate case when all training samples are drawn from a single class: > TrainType [1] 0 0 0 0 > TrainDat V1 V2 V3 V4 V5 1 0.6434392 0.5105860 0.3048803 0.3161728 0.5449632 2 0.1710005 0.5973921 0.1267061 0.6146834 0.7299928 3 0.6919125 0.8880789 0.9123243 0.9061885 0.9553663 4 0.3094843 0.6475508
2002 May 30
1
problem installing quadprog
When I try to build/install the quadprog package under R1.50 and NT4 it seems to have trouble finding blas routines. I'm currently using the generic blas routines, rather than ATLAS or some other tuned implementation: > Rcmd INSTALL d:/temp/quadrprog ... gcc --shared -s -o quadprog.dll quadprog.def quadprog.a quadprog_res.o -Lc:/a pps/rw1050/src/gnuwin32 -lg2c -lR
2004 Mar 18
2
cannot allocate vector
Hi, I'm having trouble with glmmPQL. I'm fitting a 2 level random intercept model, with 90,000 cases and about 330 groups. I'm unable to get any results on the full data set. I can get it to work if I sample down to about 30,000 cases. But for models with N's much larger than that I get the following warning message:
2002 Aug 05
3
openssh on HPUX 11i
In case this hasn't already been reported or discussed... It took some doing for me to get openssh working on HPUX 11i. The fixes are quite simple. First, one must have the IPV6 package installed: em 512# swlist -l product | grep IPV6 IPV6AA A.01.01.5D IPv6 11i product Second, I have to edit config.h to undefine HAVE_GETADDRINFO. Without IPV6, ssh can't connect
2004 May 12
1
GLMM question
Hi I'm using lme4 to do random effects modelling. I keep getting the following error message: Error in "EMsteps<-"(*tmp*', value = control) : invalid source matrix I get the error when I include more than one random effect in the model, sometime I'm able to get two. I've looked into the variables that cause the problems aren't highly correlated,
2004 Jun 10
0
Response to questions raised in Mar 17 reply
Hi, I would like to repsond to a few questions raised in a reply to a question posted by another user on March 17, 2004. The entire message is copied at the end of this email. The relevant questions and statements are as follows: What did you not understand about help(memory.size)? This is also in the rw-FAQ: what in that did you not understand? ... Yes, so try a machine with 2Gb RAM. I
2008 Nov 14
1
aov help
Please pardon an extremely naive question. I see related earlier posts, but no responses which answer my particular question. In general, I'm very confused about how to do variance decomposition with random and mixed effects. Pointers to good tutorials or texts would be greatly appreciated. To give a specific example, page 193 of V&R, 3d Edition, illustrates using raov assuming pure
2003 Apr 22
1
Search Engine (PR#2813)
Full_Name: Anthony Westerling Version: 1.7.0 OS: Mac OS X 10.2.5 Submission from: (NULL) (64.203.9.4) R includes a very nice search engine web page which installs at /usr/local/lib/R/doc/html/search/SearchEngine.html. The search engine and keywords links do not work on my Mac G4s running OS X 10.2.5, and this appears to be independent of choice of browser. This appears to be a Mac-specific
2012 May 23
2
File format for single channel analysis of Agilent microarray data in Limma?
Hi, I am following the protocol outlined here for analysis of single channel Agilent microarray data: http://matticklab.com/index.php?title=Single_channel_analysis_of_Agilent_microarray_data_with_Limma I keep getting the following error message when using Limma's read.maimages function to load my data into an RGList object: Error in RG[[a]][, i] <- obj[, columns[[a]]] : number of
2009 Feb 09
1
XML package- accessing nodes based on attributes
Hi, I have a rather complex xml document that I am attempting to parse based on attributes: <Manifest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- eName : name of the element. eValue : value of the element. --> <OutputFilePath>D:\CN_data\Agilent\Results\</OutputFilePath> <FilesList> <File>
2012 Jul 27
2
R bioconductor agilent aCGH analysis
Hi, I would like to analyze some agilent aCGH copy number files. As a start, I would like to normalize this data. I don't know what is the standard way to do this. Which package is the standard one that people use for this purpose? The chips that I am looking at are the agilent sure print 1M (G4447a) array and a custom chip with similar format. My raw data is a text file with spot locations
2000 Apr 25
0
[Fwd: Authentication problem with Windows 2000 User Domain]
-------- Original Message -------- Subject: Authentication problem with Windows 2000 User Domain Date: Tue, 25 Apr 2000 13:43:14 -0600 From: Ray Frush <ray_frush@agilent.com> Reply-To: ray_frush@agilent.com Organization: GIO Consumer and Site Servcies; Agilent Technologies To: samba-bugs@samba.org I have a couple of Samba (2.0.6/2.0.3) servers running on Linux and HP-UX which are having a
2011 Jun 07
1
Error message
Hi fn <- dir(pattern="txt",full.name=T) > fn [1] "./GSM696980_US81503234_252741110209_S01_CGH_107_Sep09_1_1_32914.txt" [2] "./GSM696981_US81503234_252741110209_S01_CGH_107_Sep09_1_2_32916.txt" [3] "./GSM696982_US81503234_252741110209_S01_CGH_107_Sep09_1_3_33021.txt" [4] "./GSM696983_US81503234_252741110209_S01_CGH_107_Sep09_1_4_33024.txt"
2002 Jan 10
2
almost, but not quite, works perfectly
Hi, we have this windows application developed internally to keep track of trouble tickets for the IT people. Since I mostly work in the unix/linux environment it would be very nice to be able to use this application with wine. Here is a summary of what i've done so far: installed Wine-20011226.tar.gz copied the program dir from a windows box. Ran the exec (wine Aruser.exe) and recieved
2005 Sep 04
2
Blew away MySQL
Unfortunately, I blew MySQL away by replacing the MySQL control tables with others and not making a copy of the folder. My data is backed up, so that is not a problem, but I cannot reinstall MySQL and create the mysql directory with the control tables (e.g. user, db, host). I have run "yum remove mysql" and "yum install mysql" and "yum install mysql-server" and