similar to: Opening Scripts with long paths causes R 2.6.0 to crash

Displaying 20 results from an estimated 300 matches similar to: "Opening Scripts with long paths causes R 2.6.0 to crash"

2007 Mar 28
1
Problem with adding packages to default start-up list
After reading the help files (?Startup) and using RSiteSearch("defaultPackages"), I have been trying to add several packages to my default startup list using the following code: local({ old<-getOption("defaultPackages") options(defaultPackages=c(old,"lattice","RODBC") }) Subsequently, when I query the default list using:
2006 May 18
2
Incomplete Output from lmer{lme4}
I'm still relatively new to R, so my apologies if this is covered somewhere. I've been running some mixed-effect models in R using lme{nlme}, but read in Faraway's recent book, Extending the Linear Model with R, that lmer in package lme4 is a much improved version. I tried using this approach, but the output for the fixed effects doesn't report a p-value or the degrees of freedom
2005 Jul 07
1
multivariate regression using R
Does anyone know if there is a way to run multivariate linear regression in R? I tried using the lm function (e.g., lm(dv1, dv2~iv1+iv2+iv3), but got error messages. Is my syntax wrong, or do I need a particular package? Thanks, Jeff-- ________________________________________________________ Jeffrey J. Lusk, Ph.D. Postdoctoral Research Associate Department of Forestry &
1998 Oct 26
0
SAMBA digest 1853
samba@samba.anu.edu.au wrote: > > SAMBA Digest 1853 > > For information on unsubscribing see http://samba.anu.edu.au/listproc > Topics covered in this issue include: > > 1) Re: long winded printing LARGE files soloution > by Heiko Nardmann <h.nardmann@secunet.de> > 2) Samba replacing NFS > by Jonathan Peterson
2011 Jun 24
2
Need help on a R script part
Hi all, I need all your help on this. I have the next part of code:............e1=x1-mean(x1)e2=x2-mean(x2)n1=length(x1)n2=length(x2N=(n1 + n2)nu2=sum( c( ( x1 -mean(x1) )^2 , ( x2-mean(x2) )^2 ) )/Nss=c(e1,e2) b3= N*sum(ss^4)/ (sum( ss^2)^2)............what do lines 6-8 (mathematical notation)?Also the, what means part?............for(j in 1:B){ ss11=sample(x1, n1, replace=TRUE) ss12=sample(x2,
2009 Jun 24
5
How to avoid ifelse statement converting factor to character
Hi R-helpers, Please see the below R output. The problem is that after running the ifelse statement, data$SOCIAL_STATUS is converted from a factor to a character. Is there some way I can avoid this conversion? Thanks in advance, Mark Na > str(data) 'data.frame': 2100 obs. of 11 variables: $ DATE : Factor w/ 5 levels "4-Jun-09","7-May-09",..: 1 1 1 1 1
2004 Jan 02
1
bwplot and panel.bwplot
Hello, I am trying to use "bwplot" to display whisker boxes according to some conditioning factors ("age" has two values 1/2). I get the following messages: > library(trellis) > bwplot(dvk95~age|site*season,panel=function(x,y){panel.bwplot(x,y)}) Error in tapply(1:0, structure(list(INDICES = numeric(0)), .Names = "INDICES"), : arguments must have
2009 Jun 23
2
Problem with ifelse statement
Hi R-helpers, I am trying to use this ifelse statement to recode a variable: > data$SOCIAL_STATUS<-ifelse(data$SOCIAL_STATUS=="B" & data$MALE>4, "C", "B") (i.e., if social status is B and there are more than 4 males, then recode social status to C; otherwise, leave it B) But, it's not working. See the below R output. Notice that there were 71
2004 Apr 15
1
[vorbis virus spam] Any list ops ever thought... was re: Hey
...about maybe stripping all zip, exe, pif, etc attachments from emails coming to vorbis@xiph.org? Granted, Ryan Ashley has a Very Valid Point and I agree wholeheartedly about "Any idiot who opens a pif, exe, bat, com, or any other executable file deserves what they get." and would actually encourage these feeble minded folks to "Please, Open it and Darwinate your dumb self
2009 Aug 28
1
Plotmath, sweave and lattice graphics interaction problem
Dear List, I have hit this problem with using a plotmath expression in an axis label on a lattice plot I'm including in a Sweave document. The actual document is far too long and boring (unless you are interested in the hydrochemistry of upland lakes) to include here, but the following minimal example reproduces the problem; basically, the PDF produced by Sweave has missing characters in the
2007 Mar 22
0
Racoon ERROR: Invalid CR type 0
SuSE10.2 Linux Kernel 2.6.18 Patched, Whenever I try to establish a connection raccoon fails giving the following error. Raccoon config ################# remote 67.101.176.*** { exchange_mode main,aggressive; doi ipsec_doi; situation identity_only; my_identifier address; send_cr off; send_cert off; lifetime time 2 min;
2018 Mar 07
0
I have a question about 2018 European LLVM Developers' Meeting - Bristol
Hi, Nice to e-meet you. This is Gloria, a former event organizer. Are you in charge of organizing 2018 European LLVM Developers' Meeting - Bristol? I heard of your event but I'm not sure if you are the right person to speak with. I am an event consultant at Whova, a company started by former researchers in UCSD. We provide **a mobile event app** to help organizers create
2007 Jul 06
5
Clustering nested data
Hi all, I am interested in performing a cluster analysis on ecological data from forests in Pennsylvania. I would like to develop definitions for forest types (red maple forests, upland oak forests, etc.(AH AR in attached table)) based on measured attributes in each forest type. To do this, I would like to 'draw clusters' around forest types based on information from various tree
2011 Aug 24
0
winbind wbcGetpwnam WBC_ERR_DOMAIN_NOT_FOUND
Shirish Pargaonkar wrote: > A call to wbcGetpwnam() with BUILTIN\Administrators > name (string) returns error 7 (WBC_ERR_DOMAIN_NOT_FOUND). > > I tried just Administrators and got the same error. > Same error with user (string) Everyone also. > ---- I've noticed this problem as well... In fact, every one of the well-known addresses that I manually added (and are
2012 Aug 20
7
relating data in two data frames
Hi, My data.frame "A" has FID like this FID a a b b b c c d d d d Now my second data.frame "B" has age value for a, b, c, d like FID Age a      5 b      7 c      9 d      3 How can search for the Age column in "B" and replace the values in "A" so that my new "A" looks like this FID Age a      5 a      5 b      7 b      7 b      7
2005 Apr 07
3
Fitting a mixed negative binomial model
Dear list members, I want to fit a nonlinear mixed model using the nlme command. My dependent variable takes the form of event counts for different countries over a number of years, and hence I was going to fit a mixed effects negative binomial model. The problem, as far as I can glean from Pinheiro & Bates 2000, is that I need a model that is not normal in the errors. All the models they
2006 Nov 15
4
Mongrel 0.3.15 PR -- All The Fixes Good For You
Hi folks, Getting much much much closer to the 1.0 release. I have some documentation to work on tonight, and I need to go through the patch queue one more time, but I''ve put up another pre-release for people to test. What this pre-release does is pull together the various patches, monkey patching, and alternatives that make Mongrel either faster or more stable. It is also the start
2004 Nov 24
5
GUI
I am looking for a good Asterisk GUI to manage my server. Any Suggestions? Regards, Michael DiMartino Director of MIS The telx Group, Inc. 17 State St, 33rd Floor New York, NY 10004 T: 212.480.3300 X2022 C: 646.207.6603 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20041124/96bf8fea/attachment.htm
2005 Jan 14
2
Passing PIN Numbers
To All If anyone can shed any light on this it would be greatly appreciated. My phones are unable to enter pins numbers correctly when required by the party they are calling. For example I was given an outside number to attend conference bridge. After the call was connected it required me to enter a 4 digit PIN. Now here is the problem whenever I enter a pin it is received twice. For example if
2011 Apr 16
1
Accessing a MAC address from inside the VM?
Greetings, I have a very simple problem, but the resolution is proving rather complex. Bare with me, I will attempt to explain. I have a host machine with no GUI. I attach an existing .img file to the host machine and need to change the MAC address (since the image was created on another machine). Is there a way from with in the guest to do this or do I have muck with the XML? And if I muck