Re: [R] Problem with R coding

2024-03-12 Thread Ivan Krylov via R-help
В Tue, 12 Mar 2024 14:57:28 + CALUM POLWART пишет: > That's almost certainly going to be either the utf-8 character in the > path The problem, as diagnosed by Maria in the first post of the thread, is that the user home directory as known to R is stored in the ANSI encoding instead of UTF-8,

Re: [R] Problem with R coding

2024-03-12 Thread Iris Simmons
Hi Maria, I had something similar on my Windows work laptop at some point where the home directory was something containing non ASCII characters. The easy solution is to copy said directly from the file explorer into utils::shortPathName, and then set that as the home directory. In my case, > wr

Re: [R] Problem with R coding

2024-03-12 Thread CALUM POLWART
That's almost certainly going to be either the utf-8 character in the path OR the use of one drive which isn't really a subfolder as I understand it. When I've had these issues in the past, I've been able to mount a drive (say U:/ ) which sites further down /up the folder tree so that R just calle

Re: [R] Problem with R coding

2024-03-12 Thread Ivan Krylov via R-help
Dear Maria, I'm sorry for somehow completely missing the second half of your message where you say that you've already tried the workaround. В Tue, 12 Mar 2024 07:43:08 + Maria Del Mar García Zamora пишет: > I have tried to start R from CDM using: C:\Users\marga>set > R_USER=C:\Users\marga\

Re: [R] Problem with R coding

2024-03-12 Thread Ivan Krylov via R-help
В Tue, 12 Mar 2024 07:43:08 + Maria Del Mar García Zamora пишет: > Error: package or namespace load failed for ‘Rcmdr’: > .onLoad failed in loadNamespace() for 'tcltk2', details: > call: file.exists("~/.Rtk2theme") > error: file name conversion problem -- name too long? > > Once this ap

Re: [R] Problem with R coding

2024-03-12 Thread Rui Barradas
Às 07:43 de 12/03/2024, Maria Del Mar García Zamora escreveu: Hello, This is the error that appears when I try to load library(Rcmdr). I am using R version 4.3.3. I have tried to upload the packages, uninstall them and intalling them again and nothing. Loading required package: splines Loading

Re: [R] Problem with r project in ubuntu xenial

2017-11-08 Thread Ista Zahn
On Tue, Nov 7, 2017 at 6:46 PM, George Balas wrote: > For anyone who sees this conversation. > > There is a bug in installation of igraph in R language in Ubuntu. There is > a solution in stackoverflow. A link would be nice. We have to use the devtools. Write this code: > install.packages("devt

Re: [R] Problem with r project in ubuntu xenial

2017-11-07 Thread David Winsemius
> On Nov 7, 2017, at 3:46 PM, George Balas wrote: > > For anyone who sees this conversation. > > There is a bug in installation of igraph in R language in Ubuntu. There is > a solution in stackoverflow. We have to use the devtools. Write this code: > install.packages("devtools") > library(devto

Re: [R] Problem with r project in ubuntu xenial

2017-11-07 Thread George Balas
For anyone who sees this conversation. There is a bug in installation of igraph in R language in Ubuntu. There is a solution in stackoverflow. We have to use the devtools. Write this code: install.packages("devtools") library(devtools) install_github("igraph/rigraph") If there are errors installi

Re: [R] Problem with r project in ubuntu xenial

2017-11-04 Thread George Balas
-Well it seems that it is getting "el_GR.UTF-8" but still I am not able to read files written in greek, there are only "" instead of letters. -Also, I forgot to mention that I do load igraph library when I try "graph_from_adjacency_matrix". When I check igraph in packages dialog I can not see f

Re: [R] Problem with r project in ubuntu xenial

2017-11-03 Thread David Winsemius
> On Nov 3, 2017, at 5:09 PM, peter dalgaard wrote: > > >> On 3 Nov 2017, at 23:39 , George Balas wrote: >> >> I have a problem with R in Ubuntu 16.04. I do not know if it is mine pc or >> general problem but I was not able to find solution on Internet. >> First of all I can not change locale

Re: [R] Problem with r project in ubuntu xenial

2017-11-03 Thread peter dalgaard
> On 3 Nov 2017, at 23:39 , George Balas wrote: > > I have a problem with R in Ubuntu 16.04. I do not know if it is mine pc or > general problem but I was not able to find solution on Internet. > First of all I can not change locale to greek by getting this message: > "In Sys.setlocale("LC_CTYPE

[R] Problem with r project in ubuntu xenial

2017-11-03 Thread George Balas
I have a problem with R in Ubuntu 16.04. I do not know if it is mine pc or general problem but I was not able to find solution on Internet. First of all I can not change locale to greek by getting this message: "In Sys.setlocale("LC_CTYPE", "Greek") : OS reports request to set locale to "Greek" c

Re: [R] problem with R. program

2017-08-11 Thread S Ellison
> After a run multdrc comment in R program, show warning sign in this > program. I attached the saving page of the script. I hope you could help me, > please. Your model is probably generating negative or zero estimates, resulting in NaN when logs are taken. But multdrc is no longer in drc. Sugg

[R] problem with R. program

2017-08-11 Thread AHMAD rahbary
After a run multdrc comment in R program, show warning sign in this program. I attached the saving page of the script. I hope you could help me, please. Thanks a lot A. Rahbari R : Copyright 2005, The R Foundation for Statistical Computing Version 2.1.0 (2005-04-18), ISBN 3-900051-07-0 R is free

Re: [R] Problem with R CMD check and the inconsolata font business.

2014-06-10 Thread BenTaylor
Not sure if this is because things have changed with MikTeX, but I had to do updmap rather than initexmf --mkmaps -- View this message in context: http://r.789695.n4.nabble.com/Problem-with-R-CMD-check-and-the-inconsolata-font-business-tp3984596p4691935.html Sent from the R help mailing li

Re: [R] Problem with R "density" function

2014-05-14 Thread Andrews, Chris
M To: DHIMAN BHADRA; r-help@r-project.org Subject: Re: [R] Problem with R "density" function Hi, Have you tried using a different bandwidth rather than the number of points, the default bandwidth gives ... x <- rnorm(1) dd <- density(x,kernel="epanechnikov",

Re: [R] Problem with R "density" function

2014-05-14 Thread Martyn Byng
..@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of DHIMAN BHADRA Sent: 14 May 2014 10:36 To: r-help@r-project.org Subject: [R] Problem with R "density" function Hello, My friend has the following issue with R. I will be glad to receive any response. Thanks, Dhiman Bhadra Hello

[R] Problem with R "density" function

2014-05-14 Thread DHIMAN BHADRA
Hello, My friend has the following issue with R. I will be glad to receive any response. Thanks, Dhiman Bhadra Hello everyone, I am trying to use the 'density' function available with the base package of R to estimate the density of a data set for subsequent use. I just noticed that with even 100

Re: [R] Problem with R

2014-03-26 Thread Rui Barradas
Hello, Try, at an R prompt, install.packages("lmtest", dependencies = TRUE) install.packages("betareg", dependencies = TRUE) Hope this helps, Rui Barradas Em 26-03-2014 17:44, Campaner, Fabio escreveu: Hello, I am a student at the University College of London in the Civil Engineering Depa

[R] Problem with R

2014-03-26 Thread Campaner, Fabio
Hello, I am a student at the University College of London in the Civil Engineering Department and I need to use the R program for my final year project even if I do not have any programming background. I have downloaded the program and I was following the instructions given to me by my supervi

Re: [R] Problem with R colors

2013-12-09 Thread Katharine Miller
- > David L Carlson > Department of Anthropology > Texas A&M University > College Station, TX 77840-4352 > > -Original Message- > From: r-help-boun...@r-project.org > [mailto:r-help-boun...@r-project.org] On Behalf Of Katharine > Miller > Sen

Re: [R] Problem with R colors

2013-12-09 Thread David Carlson
avid L Carlson Department of Anthropology Texas A&M University College Station, TX 77840-4352 -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of Katharine Miller Sent: Monday, December 9, 2013 4:12 PM To: r-help@r-project.org Subject: [R] P

Re: [R] Problem with R colors

2013-12-09 Thread Sarah Goslee
Hi, col=552 isn't the same as colors()[552] - I think the former is drawn from your current palette, with recycling of indices. The default color palette has only eight colors. You need instead col=colors()[552] It's very difficult to get 20-30 readily distinguishable colors. You might try the

[R] Problem with R colors

2013-12-09 Thread Katharine Miller
Hello, I am having difficulty obtaining the correct colors in my R charts. > colors()[c(552, 254, 26)] [1] "red" "green" "blue" But, if I specify col=552 in my barplot, I get gray bars. Likewise, col=254 gives bright pink, and col=26 is a red-orange. I get accurate results when I spell out

[R] Problem with R websocket package

2013-05-14 Thread malej.gregy
Hello to everybody, I'm repeating my post as the previous one was posted in HTML - sorry guys! I seem to be in struggle with the websockets in R. I wanted to download the streaming data from the BitCoin exchange MtGox directly to R, but R cannot establish the connection. The websocket specs a

[R] Problem with R websocket package

2013-05-14 Thread malej.gregy
Hello to everybody,   I seem to be in struggle with the websockets in R. I wanted to download the streaming data from the BitCoin exchange MtGox directly to R, but R cannot establish the connection. The websocket specs are defined as: * Host: websocket.mtgox.com or socketio.mtgox.com

Re: [R] Problem with R CMD check and the inconsolata font business

2013-03-05 Thread Matthew Dowle
On 11/3/2011 3:30 PM, Brian Diggs wrote: Well, I figured it out. Or at least got it working. I had to run initexmf --mkmaps because apparently there was something wrong with my font mappings. I don't know why; I don't know how. But it works now. I think installing the font into the Wi

Re: [R] Problem with R script

2012-09-25 Thread Jim Lemon
On 09/24/2012 11:15 PM, Woo Back Lee wrote: To whom I concern, I am a recent user of program R I do not know how to explain this but after I installed the program the words on the scrpit does R console does not appear clear but something square(?)/Cube(?) which seems like the words are broken

[R] Problem with R script

2012-09-24 Thread Woo Back Lee
To whom I concern, I am a recent user of program R I do not know how to explain this but after I installed the program the words on the scrpit does R console does not appear clear but something square(?)/Cube(?) which seems like the words are broken More suprisingly, the squared words are writte

Re: [R] Problem with R CMD check and the inconsolata font business.

2011-11-03 Thread Brian Diggs
On 11/3/2011 3:30 PM, Brian Diggs wrote: The error on R CMD check I get is: * checking PDF version of manual ... WARNING LaTeX errors when creating PDF version. This typically indicates Rd problems. LaTeX errors found: !pdfTeX error: pdflatex.EXE (file ec-inconsolata): Font ec-inconsolata at 5

Re: [R] Problem with R CMD check and the inconsolata font business.

2011-11-03 Thread Ray Brownrigg
On Fri, 04 Nov 2011, Brian Diggs wrote: > On 11/3/2011 2:29 PM, Rolf Turner wrote: > > On 03/11/11 20:37, Rolf Turner wrote: > >> I have just installed R version 2.14.0 and tried to re-build and > >> re-check some > >> of the packages that I maintain. > >> > >> I'm getting a warning (in the proces

Re: [R] Problem with R CMD check and the inconsolata font business.

2011-11-03 Thread Brian Diggs
On 11/3/2011 2:29 PM, Rolf Turner wrote: On 03/11/11 20:37, Rolf Turner wrote: I have just installed R version 2.14.0 and tried to re-build and re-check some of the packages that I maintain. I'm getting a warning (in the process of running R CMD check on my "deldir" package): * checking PDF

Re: [R] Problem with R CMD check and the inconsolata font business.

2011-11-03 Thread Rolf Turner
On 03/11/11 20:37, Rolf Turner wrote: I have just installed R version 2.14.0 and tried to re-build and re-check some of the packages that I maintain. I'm getting a warning (in the process of running R CMD check on my "deldir" package): * checking PDF version of manual ... WARNING LaTeX er

Re: [R] Problem with R CMD check and the inconsolata font business.

2011-11-03 Thread Brian Diggs
On 11/3/2011 12:37 AM, Rolf Turner wrote: I have just installed R version 2.14.0 and tried to re-build and re-check some of the packages that I maintain. I'm getting a warning (in the process of running R CMD check on my "deldir" package): * checking PDF version of manual ... WARNING LaTeX er

[R] Problem with R CMD check and the inconsolata font business.

2011-11-03 Thread Rolf Turner
I have just installed R version 2.14.0 and tried to re-build and re-check some of the packages that I maintain. I'm getting a warning (in the process of running R CMD check on my "deldir" package): * checking PDF version of manual ... WARNING LaTeX errors when creating PDF version. This typi

Re: [R] Problem with R 2.13.0 Task Views (on Mac)

2011-04-16 Thread Achim Zeileis
On Fri, 15 Apr 2011, Uwe Ligges wrote: On 14.04.2011 18:14, rbali wrote: Same problem with Vista 1. Please quote the original message, mailing list readers are not able to follow otherwise! 2. Peter Dalgaard wrote that it is a bug in the ctv package, so everything is said already. And rathe

Re: [R] Problem with R 2.13.0 Task Views (on Mac)

2011-04-15 Thread Uwe Ligges
On 14.04.2011 18:14, rbali wrote: Same problem with Vista 1. Please quote the original message, mailing list readers are not able to follow otherwise! 2. Peter Dalgaard wrote that it is a bug in the ctv package, so everything is said already. And rather than posting here, why not ask the c

Re: [R] Problem with R 2.13.0 Task Views (on Mac)

2011-04-14 Thread rbali
Same problem with Vista -- View this message in context: http://r.789695.n4.nabble.com/Problem-with-R-2-13-0-Task-Views-on-Mac-tp3449189p3450073.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https://

Re: [R] Problem with R 2.13.0 Task Views (on Mac)

2011-04-14 Thread peter dalgaard
On Apr 14, 2011, at 11:45 , Michael Kubovy wrote: > Dear R-users, > > After upgrading to the recent version of R, I'm having a problem updating > task views: Yes, a bug in the ctv package needs fixing... > >> sessionInfo() > R version 2.13.0 (2011-04-13) > Platform: x86_64-apple-darwin9.8.0/

[R] Problem with R 2.13.0 Task Views (on Mac)

2011-04-14 Thread Michael Kubovy
Dear R-users, After upgrading to the recent version of R, I'm having a problem updating task views: > sessionInfo() R version 2.13.0 (2011-04-13) Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit) locale: [1] en_US.UTF-8/en_US.UTF-8/C/C/en_US.UTF-8/en_US.UTF-8 attached base packages: [1] datas

[R] Problem with R, MKL, and Ubuntu 11.04

2011-03-27 Thread Yan Zhou
This may not be a proper question to ask here, however I don't find a better place to ask. I am testing Ubuntu Natty 11.04. I build R with Blas/Lapack linked to intel MKL. Everything works fine but when quitting R with q(), the R process won't quit, and the system monitor shows its waiting cha

Re: [R] problem with R (akima, fUtilities) in Ubuntu 10.04

2011-02-10 Thread Ben Bolker
Željka biologija.unios.hr> writes: > > Dear all! > > I'm using R 2.12.1 in Ubuntu 10.04. > Problem is that when using functions like interp (package akima) and > akimaInterp (package fUtilities), I get different results every time for > the same data set. I've checked the interpolated results,

Re: [R] Problem with R Installation - .RData

2011-01-29 Thread Iva
Many thanks for the answers. They helped me resolve my .RData problem. -- View this message in context: http://r.789695.n4.nabble.com/Problem-with-R-Installation-RData-tp3244121p3246036.html Sent from the R help mailing list archive at Nabble.com. __

Re: [R] Problem with R Installation - .RData

2011-01-28 Thread Prof Brian Ripley
On Fri, 28 Jan 2011, Duncan Murdoch wrote: On 11-01-28 5:15 AM, Iva wrote: Dear All, I have Windows Vista and I want to install R. However, when I tried to start it after the installation, I received the following message: 'Fatal error. I cannot retrieve the saved data from .RData'. So, in

Re: [R] Problem with R Installation - .RData

2011-01-28 Thread Duncan Murdoch
On 11-01-28 5:15 AM, Iva wrote: Dear All, I have Windows Vista and I want to install R. However, when I tried to start it after the installation, I received the following message: 'Fatal error. I cannot retrieve the saved data from .RData'. So, in the moment R does not work. Do you have any i

[R] Problem with R Installation - .RData

2011-01-28 Thread Iva
Dear All, I have Windows Vista and I want to install R. However, when I tried to start it after the installation, I received the following message: 'Fatal error. I cannot retrieve the saved data from .RData'. So, in the moment R does not work. Do you have any idea how to cope with this problem?

Re: [R] Problem with R on USB-drive

2010-02-15 Thread Peter Dalgaard
Lauri Nikkinen wrote: > The answer is: > >> .libPaths() > [1] "E:/R/R-2.10.1/library" > > stats package is found under > > .../library/ Sorry about the delay Lauri, I don't have the time to skim r-help very well these days, so your note sort of whizzed by. However, I'm not sure I get the p

Re: [R] Problem with R on USB-drive

2010-02-09 Thread Lauri Nikkinen
The answer is: > .libPaths() [1] "E:/R/R-2.10.1/library" stats package is found under .../library/ I tried Jim's suggestion and copied R-2.10.1 directory from C:\Program Files\R\ into USB-disk, and everything seems to work fine. Re-istallation did not help. Thanks, -Lauri 2010/2/9, Prof Bri

Re: [R] Problem with R on USB-drive

2010-02-09 Thread Peter Dalgaard
Lauri Nikkinen wrote: > Hi, > > I installed R on USB-drive, but when I run Rgui.exe from bin folder, I get > this error: ... > > Error in library(package, lib.loc = lib.loc, character.only = TRUE, > logical.return = TRUE, : > 'stats' is not a valid installed package > >> var(1:10) > Error: c

Re: [R] Problem with R on USB-drive

2010-02-08 Thread jim holtman
I run R off a flash drive. I just copy the directory that it was installed on my hard drive to the flash drive and things work fine. On Mon, Feb 8, 2010 at 2:28 PM, Lauri Nikkinen wrote: > Hi, > > I installed R on USB-drive, but when I run Rgui.exe from bin folder, I get > this error: > > --

Re: [R] Problem with R on USB-drive

2010-02-08 Thread Duncan Murdoch
Lauri Nikkinen wrote: Hi, I installed R on USB-drive, but when I run Rgui.exe from bin folder, I get this error: --- R version 2.10.1 (2009-12-14) Copyright (C) 2009 The R Foundation for Statistical Computing ISBN 3-900051-07-0 R is free software and comes with ABSOLUTELY N

[R] Problem with R on USB-drive

2010-02-08 Thread Lauri Nikkinen
Hi, I installed R on USB-drive, but when I run Rgui.exe from bin folder, I get this error: --- R version 2.10.1 (2009-12-14) Copyright (C) 2009 The R Foundation for Statistical Computing ISBN 3-900051-07-0 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welc

Re: [R] Problem with R.2.9.2 Plot functions

2009-08-31 Thread Duncan Murdoch
On 8/31/2009 2:58 PM, steve_fried...@nps.gov wrote: Hello, Last week I installed ver 2.9.1 and it worked fine. This morning I have been working on some simple schemes, plot(PropHatchedNests$Phatched, PropHatchedNests$MEAN) abline(lm(PropHatchedNests$Phatched, PropHatchedNests$MEAN)) This odd

[R] Problem with R.2.9.2 Plot functions

2009-08-31 Thread Steve_Friedman
Hello, Last week I installed ver 2.9.1 and it worked fine. This morning I have been working on some simple schemes, plot(PropHatchedNests$Phatched, PropHatchedNests$MEAN) abline(lm(PropHatchedNests$Phatched, PropHatchedNests$MEAN)) This oddly produces a box and whiskers plot. I uninstalled 2

Re: [R] problem with r import data

2009-08-06 Thread John Kane
rab wrote: > From: Inchallah Yarab > Subject: [R] problem with r import data > To: r-help@r-project.org > Received: Thursday, August 6, 2009, 4:37 AM > Good moorning, > > yesterday, i asked for how we can import data into R i > found that it is necessary to make the file in c

Re: [R] problem with r import data

2009-08-06 Thread Gavin Simpson
On Thu, 2009-08-06 at 08:37 +, Inchallah Yarab wrote: > Good moorning, > > yesterday, i asked for how we can import data into R i found that it > is necessary to make the file in csv format then use L<- > read.csv2("path of file") Does read.csv() work instead? How is your "csv" file delimited

[R] problem with r import data

2009-08-06 Thread Inchallah Yarab
Good moorning, yesterday, i asked for how we can import data into R i found that it is necessary to make the file in csv format then use L<- read.csv2("path of file") now i see that the dimension of my table importing into R is 1 colonne (i have realy 20) and (65) the number of all my lines

Re: [R] Problem with R 2.9.0 vs. R2.8.1 with either "survival" package or "predict" function

2009-04-28 Thread Dimitri Liakhovitski
OK, here we go. I am trying to attach a data file "test.data.txt") Below is the script: sample.data<-read.delim(file="test.data.txt") (dim(sample.data)) (names(sample.data)) names(sample.data)<-c("time","ID","Choice","V1","V2","Set","id") sample.data$V1<-as.factor(sample.data$V1) sample.data$V2<-

Re: [R] Problem with R 2.9.0 vs. R2.8.1 with eith er "survival" package or "predict" function

2009-04-27 Thread Dieter Menne
Dimitri Liakhovitski gmail.com> writes: > > Just wanted to alert everyone regarding a problem that I only > experience with R2.9.0 and not with R2.8.1 when I run both using > exactly the same script and the same data. > Here is what I do with my data "MyData", 2 predictors (V1 and V2) and > my s

[R] Problem with R 2.9.0 vs. R2.8.1 with either "survival" package or "predict" function

2009-04-27 Thread Dimitri Liakhovitski
Just wanted to alert everyone regarding a problem that I only experience with R2.9.0 and not with R2.8.1 when I run both using exactly the same script and the same data. Here is what I do with my data "MyData", 2 predictors (V1 and V2) and my survival DV "Depvar": library(survival) model<-coxph(De

Re: [R] Problem with R using pgi compiler on x86_64

2009-02-11 Thread Dr.Peer-Joachim Koch
Hi, thanks. I didn't saw the answer from pgi. But when I change the settings in R_HOME/etc/Makeconf the system is still using the old settings. How can I force R to use the new settings and check it ? Bye, Peer Brian D Ripley wrote: I don't see anything in there that asks for a shared library

Re: [R] Problem with R using pgi compiler on x86_64

2009-02-11 Thread Brian D Ripley
I don't see anything in there that asks for a shared library to be built. Please check R_HOME/etc/Makeconf: I believe you need SHLIB_CXXLDFLAGS = -shared (and I checked, and I do see that in the PGI section of the R-admin manual: so plese check your other settings too). (BTW, googling shows

[R] Problem with R using pgi compiler on x86_64

2009-02-11 Thread Dr.Peer-Joachim Koch
Hi, we have installed R-2.8.1 using the current pgi compiler (8.0.2) for AMD64 on a SLES9 system. When I try to install "Matrix" everything is fine until the last step. make[1]: Leaving directory `/tmp/R.INSTALL.TW3399/Matrix/src/AMD' pgCC -L/usr/lib64 -L/usr/X11R6/lib64 -pgf90libs -o

Re: [R] Problem with R on dual core under Linux - can not execute mpi.spawn.Rslaves()

2008-09-29 Thread Rainer M Krug
I looked at snow and makeSOCKcluster(c("localhost", "localhost")) and it perfectly suits my needs. In addition, I want to work on a "real cluster" which uses MPI, so these two will not interfere. I plan to use snowSOCKcluster(...) then for the usage of the cores, and MPI (on the level of the whole

Re: [R] Problem with R on dual core under Linux - can not execute mpi.spawn.Rslaves()

2008-09-29 Thread Rainer M Krug
On Mon, Sep 29, 2008 at 3:05 PM, Luke Tierney <[EMAIL PROTECTED]> wrote: > Look at the configure output below: configure is finding mpi.h in > /usr/lib/mpich/include, soit is using mpich, not lam. You may be able > to tell Rmpi specifically where to look for LAM stuff or you may need > to uninstal

Re: [R] Problem with R on dual core under Linux - can not execute mpi.spawn.Rslaves()

2008-09-29 Thread Luke Tierney
Look at the configure output below: configure is finding mpi.h in /usr/lib/mpich/include, soit is using mpich, not lam. You may be able to tell Rmpi specifically where to look for LAM stuff or you may need to uninstall mpich (almost surely that can be avoided but it may be easier if you don't rea

Re: [R] Problem with R on dual core under Linux - can not execute mpi.spawn.Rslaves()

2008-09-29 Thread Rainer M Krug
On Mon, Sep 29, 2008 at 12:19 AM, Martin Morgan <[EMAIL PROTECTED]> wrote: > "Rainer M Krug" <[EMAIL PROTECTED]> writes: > >> Hi >> >> I am trying to utilize my dual core processor (and later a >> High-performance clusters (HPC) ) by using the Rmpi, snow, snowfall, >> ... packages, but I am struggl

Re: [R] Problem with R on dual core under Linux - can not execute mpi.spawn.Rslaves()

2008-09-28 Thread Martin Morgan
"Rainer M Krug" <[EMAIL PROTECTED]> writes: > Hi > > I am trying to utilize my dual core processor (and later a > High-performance clusters (HPC) ) by using the Rmpi, snow, snowfall, > ... packages, but I am struggling at the beginning, i.e. to initialise > the "cluster" on my dual core computer.

[R] Problem with R on dual core under Linux - can not execute mpi.spawn.Rslaves()

2008-09-27 Thread Rainer M Krug
Hi I am trying to utilize my dual core processor (and later a High-performance clusters (HPC) ) by using the Rmpi, snow, snowfall, ... packages, but I am struggling at the beginning, i.e. to initialise the "cluster" on my dual core computer. Whenever I try to initialize it (via sfInit(parallel=TRU

Re: [R] Problem with R version 2.6.0

2007-11-09 Thread Michael Conklin
On Fri, 9 Nov 2007, Prof Brian Ripley wrote: > This is of course not how the rw-FAQ suggests you make use of R, and the > best recommendation is to follow the FAQ's workflow. The workflow recommendation that I read in the FAQ is: 2.5 How do I run it? Just double-click on the shortcut you prep

Re: [R] Problem with R version 2.6.0

2007-11-09 Thread Prof Brian Ripley
What OS is this? (Yes, I can guess it is Windows, but there seems to be a bug in changing working directory under Vista that got exposed in R 2.6.0.) What does 'crash' mean (the posting guide did specifically ask you not to use that word)? This is of course not how the rw-FAQ suggests you mak

Re: [R] Problem with R version 2.6.0

2007-11-09 Thread Dimitri Liakhovitski
I don't try to execute any script. I am just trying to create a completely new (empty) script file and save it OR open any existing script file (that might even be empty). My actions are (and by the way - I work under Windows XP professional - and I worked with it before - with R 2.5): 1. Change di

Re: [R] Problem with R version 2.6.0

2007-11-09 Thread jim holtman
Have you tried using 'setwd'? I have no problem with changing directories and executing scripts. Can you provide an example of the script that you are trying to execute? How does it "crash"? Does is to it only when you 'source' it? More information is needed. On Nov 9, 2007 10:21 AM, Dimitri

Re: [R] Problem with R version 2.6.0

2007-11-09 Thread Dieter Menne
Dimitri Liakhovitski gmail.com> writes: > > I just installed R 2.6.0 (had R 2.5 before). > Here is my problem. Usually, when I work with R I first go to > "File->Change dir" and browse to a folder that seats OUTSIDE of the > folder "C:\Program Files\R\R-2.6.0" and then create my script there > (

[R] Problem with R version 2.6.0

2007-11-09 Thread Dimitri Liakhovitski
I just installed R 2.6.0 (had R 2.5 before). Here is my problem. Usually, when I work with R I first go to "File->Change dir" and browse to a folder that seats OUTSIDE of the folder "C:\Program Files\R\R-2.6.0" and then create my script there (and open and re-open it there). I never had any problem

[R] Problem with R(D) Com and R within Excel

2007-10-23 Thread Tolga Uzuner
Dear R Users, I am having trouble using R from within Excel. I've installed R(D) Com Client and then try to open up the first sample sheet. As Excel executes auto_open, it stops at function "ExcelVersionMajor" and complaines that a certain type library is missing: missing rcom 1.0 type libra