similar to: error using dyn.load

Displaying 20 results from an estimated 1200 matches similar to: "error using dyn.load"

2006 Oct 19
1
unique sets of factors
All: I have a matrix, X, with a LARGE number of rows. Consider the following three rows of that matrix: 1 1 1 1 2 2 3 3 1 1 1 1 3 3 2 2 3 3 2 2 1 1 1 1 I wish to fit many one-way ANOVAs to some response variable using each row as a set of factors. For example, for each row above I will do something like anova(lm(Y~as.factor(X[1,]))). My problem is that in the above example, I do not want
2003 Jul 24
1
scatterplot smoothing using gam
All: I am trying to use gam in a scatterplot smoothing problem. The data being smoothed have greater 1000 observation and have multiple "humps". I can smooth the data fine using a function something like: out <- ksmooth(x,y,"normal",bandwidth=0.25) plot(x,out$y,type="l") The problem is when I try to fit the same data using gam out <-
2002 Jan 25
2
selecting clusters of points
All: Are there any functions out there for selecting all the points in a region of a plot. I envision something like the identify() function except one could circle a cloud of points (and perhaps a vector would be returned of the same length as the points plotted indicating logical membership in the circled cloud). Perhaps someone has done something with the locator() function that would
2000 May 02
1
tick marks on mfrow=c(3,3) plot (with simple example)
Sorry: I should have reproduced the "problem" with a simple example. I do this below. I think there is likely a switch I can change using par, but don't know what it is. The problem is the tick marks for the Y- axis are only on plots in column #1 and for the X-axis in row # 2. Tony x <- 1:10 y <- 1:10*5 par(mfrow=c(2,2)) plot(x,y) plot(x,y) plot(x,y) plot(x,y)
2002 Mar 22
1
binom.test and small N
running R 1.4.1 on MAC and 1.2.2 on Linux When I use run binom.test with small N the results are a little perplexing to me >binom.test(9,20,p=0.5) gives the below plus other stuff 95 percent confidence interval: 0.2305779 0.6847219 Now: >pbiom(9,20,0.6847219) [1] 0.02499998 # i.e., lower 2.5% of distribution >pbinom(9,20,0.2305779) [1] 0.9923132 >pbinom(8,20,0.2305779)
2008 May 01
2
Error while making R package
Hi All, I am trying to make R package using R 2.6.2 And I am getting following error. When I give R CMD check t1\ ---------- Making package t1 ------------ adding build stamp to DESCRIPTION making DLL ... making CGHseg_rewrite.d from CGHseg_rewrite.c making rowMedians.d from rowMedians.c making runavg.d from runavg.c gcc-sjlj -std=gnu99 -Ic:/R/R-2.6.2/include -O3 -Wall -c
1999 May 15
2
vsize and nsize
I am running R version ??? under Redhat 5.2. It seems as though the --nsize object has no effct on the size of the allocated Ncells as determined using gc(). Yes, I have that much data.... That is if I envoke R with R --vsize 100 --nsize 5000000 then type gc() I get free total Ncells 92202 200000 Vcells 12928414 13107200 Thanks Tony Long Ecology and Evolutionary Biology Steinhaus
2001 Sep 25
3
Error in optim(p, fun,...)
All: I am getting an error code from the optimization function. The code is Error in optim(p,fun.LLike, lower=low, upper = up, method = "L-BFGS-B", : non-finite finite-difference value [0] If I add a trace=6 option to my control list the last message before this error is: At X0, 0 variables are exactly at the bounds Any ideas on where I should start would be
2001 Mar 20
0
Fwd: Re: error starting R 1.2.2 in Redhat 7.0 (GLIB 2.2 not defined...)
>Date: Tue, 20 Mar 2001 15:45:52 -0800 >To: Prof Brian D Ripley <ripley at stats.ox.ac.uk> >From: Tony Long <tdlong at uci.edu> >Subject: Re: [R] error starting R 1.2.2 in Redhat 7.0 (GLIB 2.2 not >defined...) >Cc: r-help at stat.math.ethz.c >Bcc: >X-Attachments: > >Brian: > > Thanks!! I figured out how to run "up2date" (that is,
1999 Apr 21
1
Variance component estimation
All: Any ideas on how to do variance component estimation, or at least get Expected Mean Sqaures out of the modeling commands. Thanks. Tony Tony Long Ecology and Evolutionary Biology Steinhaus Hall University of California at Irvine Irvine, CA 92697-2525 Tel: (949) 824-2562 (office) ****NOTE NEW AREA CODE**** Tel: (949) 824-5994 (lab) ****NOTE NEW AREA CODE****
2001 Mar 20
0
error starting R 1.2.2 in Redhat 7.0 (GLIB 2.2 not defined...)
All: I just upgraded my system to Redhat 7.0, and installed the RPM for R 1.2.2. I intall R 1.2.2 using the rpm -U xxxx command. When R is invoked from some directories it starts and runs fine, from other directories I get a strange message at startup (and R exits without starting). Thus far the directory with the problem tends to contain ".data" files from the previous version
2001 Oct 02
0
default library locations under Linux
All: I am attempting to allow multiple users on a linux system use some common functions. The problem I am having is that for some users their default library location is .lib.loc = "/usr/lib/R/library" whereas for other users it is .lib.loc = "/usr/local/lib/R/library" It seems as though the packages (for example cluster) load fine if I just change .lib.loc to
2001 Jun 14
2
3 dimensional matrix??
Perhaps this is obvious...but is there anyway to create a matrix like object with has more than 2 dimensions. I want to estimate a bunch of var/cov matrices inside an index loop. It would be more computationally efficient to do this in C...but R makes many of the operations inside the loop really easy! Thanks. -- Tony Long Ecology and Evolutionary Biology Steinhaus Hall University of
2002 Apr 21
2
updating R - old version still runs
All: I apologize as I think I had this problem before, and misplaced my notes on the solution. I just tried to upgrade my version of R on a Redhat Linux computer. I downloaded and ran the rpm for R-recommended-1.4.1-1.i386.rpm Problem is that when I type R from any directory the "old" version still seems to run. I can only guess this has to do with where the new and old
2000 May 01
1
tick marks on mfrow=c(3,3) plot
I am generating an array of similar plots using the par(mfrow=c(3,3)) method. Everything works fine except the plot only puts y-axis tick marks on cells in column one and x-axis tick marks on cells in row three. I would like tick marks on both the x and y axix of all 9 plots in my array. I am generating plots using the following two functions three.by.three.plot <- function(ss) {
2012 Jun 19
1
"Too many levels of symbolic links" with glusterfs automounting
I set up a 3.3 gluster volume for another sysadmin and he has added it to his cluster via automount. It seems to work initially but after some time (days) he is now regularly seeing this warning: "Too many levels of symbolic links" $ df: `/share/gl': Too many levels of symbolic links when he tries to traverse the mounted filesystems. I've been using gluster with static mounts
2001 Feb 15
4
R with multiple processors
Hello. The laboratory where I work has the possibility to get a Sun machine with 12 processors. My question is: can R be used to implememt parallel algorithms which take into account the several processors? Is there a way to run *threads* in R? If this is possible, would somebody share his/her experiences? Thanks. Isabel -- Isabel Cañette Iguá 4225 Centro de Matemática 11400
2004 Dec 15
3
Compatible Players - Windows Media BAD trying to open...
hello, All, I runa webradio on Icecast and Shoutcast also, but got many compaints of listeners who tell me that they can't listen to the broadcasts on Icecast, because, SOMETIMES, although they already installed Winamp5, when they click on the link, Windows Media player, or Worst: PowerDVD is trying to open the ogg file. Any tips ?? And I'd like to know if there's any Embedded player
2001 Mar 01
2
How to plot two variables in one histogram?
Dear R members, Is there a way I can include more than one variable in a histogram? Many thanks in advance, Liqing, Liqing Zhang Department of Ecology & Evolutionary Biology 321 Steinhaus Hall U.C. Irvine Irvine, CA 92697-2525 Phone:(949)-824-7703 Fax: (949)-824-2181 Email: lzhang at uci.edu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2005 Jul 26
3
Can't validate USER@DOMAIN in Runas
I have my XP-Pro machine setup as a member of an Samba-based Domain server. I usually run as "linda@<localmachine>", but wanted to try running a program using "RunAs" in the "Home", DOMAIN my machine belongs to. The runas command says: RUNAS [ [/noprofile | /profile] [/env] [/netonly] ] /user:<UserName> program with Notes: NOTE: Enter user's