Re: [R] R_USER - in which file should I include it?

2008-09-09 Thread Eduardo M. A. M.Mendes
Hello

Many thanks.  It works just fine.

How about the packages issue?  That is, same thing for the installation
path.

Cheers

Ed


-Original Message-
From: Gabor Grothendieck [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 08, 2008 10:01 PM
To: Eduardo M. A. M.Mendes
Cc: r-help@r-project.org
Subject: Re: [R] R_USER - in which file should I include it?

Try adding this at the end of your etc/Rprofile.site file.  That file
should already be there so you don't have to create it,
just edit it.

cat(Hello from Rprofile.site\n)
setwd(C:/Users/eduardo/Documents)

You may need to edit it as Administrator.   You should
see the Hello message in which case you will know that the
Rprofile.site file is being run.

That should work unless Tinn-R runs R in such a way as to
ignore Rprofile.site.

On Mon, Sep 8, 2008 at 8:11 PM, Eduardo M. A. M.Mendes
[EMAIL PROTECTED] wrote:
 Hello

 I am not sure whether R starts from the same dir.  For instance:

 a) if I double-click on R-2.7.2 icon and then issue the command getwd(),
the
 result is:

 getwd()
 [1] C:/Users/eduardo/Documents

 b) If R starts from within Tinn-R, the result is:

 getwd()
 [1] C:/Program Files/R/R-2/bin

 I want that no matter which calling R method I am using if I issue the
 command getwd() (first command) the result is:

 C:/Users/eduardo/Documents/R


 Moreover all new packages go to C:/Users/eduardo/Documents/R/win-library


 Thanks

 Ed

 -Original Message-
 From: Gabor Grothendieck [mailto:[EMAIL PROTECTED]
 Sent: Monday, September 08, 2008 8:57 PM
 To: Eduardo M. A. M.Mendes
 Cc: r-help@r-project.org
 Subject: Re: [R] R_USER - in which file should I include it?

 Could you explain more clearly what you mean by the same?
 Do you mean that each time you click on R 2.7.2 icon on your
 desktop that running this from the R console:

 getwd()

 is the same directory on each startup?  Isn't that already the case?
 I don't think you need to set any environment variables at all.  If
 you don't set
 any environment variables then what specifically is happening that
 you don't want to happen?

 On Mon, Sep 8, 2008 at 7:10 PM, Eduardo M. A. M.Mendes
 [EMAIL PROTECTED] wrote:
 Hello

 I am a newbie.  I had my R upgraded from 2.7.1 to 2.7.2 and in doing so I
 decided to install all 2.7 versions under c:\program files\R\2.7 from now
 on (2.7.1 is located under .\2.7.1)

 Although I don't like the idea (I am running Vista), I have edited
 etc\Renviron.site to contain:


 R_USER=c:/Users/eduardo/Documents/R
 R_LIBS_USER=c:/Users/eduardo/Documents/R/win-library/2.7

 As far as R starting always from the same location, that is,
 c:/Users/eduardo/Documents/R, etc\Renviron.site didn't help.  So I wonder
 whether someone from the list could help me to:

 a) force R to start always from the same location
 b) force R to install all new packages in the same location


 Many thanks

 Ed

 PS. Before sending this email, I read windows FAQ and browsed the
archives
 (too many posts in the subject!).

 __
 R-help@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide
 http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.




__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] R_USER - in which file should I include it?

2008-09-09 Thread Gabor Grothendieck
You might look at ?.libPaths
(note the dot) and play around with adding a .libPaths command
to your Rprofile.site and again you may need Administrator rights
when editing it.  If that does not help then you can try clarifying
the problem.   In particular what the same refers to and what
is happening now and what you want to happen.

On Tue, Sep 9, 2008 at 9:14 AM, Eduardo M. A. M.Mendes
[EMAIL PROTECTED] wrote:
 Hello

 Many thanks.  It works just fine.

 How about the packages issue?  That is, same thing for the installation
 path.

 Cheers

 Ed


 -Original Message-
 From: Gabor Grothendieck [mailto:[EMAIL PROTECTED]
 Sent: Monday, September 08, 2008 10:01 PM
 To: Eduardo M. A. M.Mendes
 Cc: r-help@r-project.org
 Subject: Re: [R] R_USER - in which file should I include it?

 Try adding this at the end of your etc/Rprofile.site file.  That file
 should already be there so you don't have to create it,
 just edit it.

 cat(Hello from Rprofile.site\n)
 setwd(C:/Users/eduardo/Documents)

 You may need to edit it as Administrator.   You should
 see the Hello message in which case you will know that the
 Rprofile.site file is being run.

 That should work unless Tinn-R runs R in such a way as to
 ignore Rprofile.site.

 On Mon, Sep 8, 2008 at 8:11 PM, Eduardo M. A. M.Mendes
 [EMAIL PROTECTED] wrote:
 Hello

 I am not sure whether R starts from the same dir.  For instance:

 a) if I double-click on R-2.7.2 icon and then issue the command getwd(),
 the
 result is:

 getwd()
 [1] C:/Users/eduardo/Documents

 b) If R starts from within Tinn-R, the result is:

 getwd()
 [1] C:/Program Files/R/R-2/bin

 I want that no matter which calling R method I am using if I issue the
 command getwd() (first command) the result is:

 C:/Users/eduardo/Documents/R


 Moreover all new packages go to C:/Users/eduardo/Documents/R/win-library


 Thanks

 Ed

 -Original Message-
 From: Gabor Grothendieck [mailto:[EMAIL PROTECTED]
 Sent: Monday, September 08, 2008 8:57 PM
 To: Eduardo M. A. M.Mendes
 Cc: r-help@r-project.org
 Subject: Re: [R] R_USER - in which file should I include it?

 Could you explain more clearly what you mean by the same?
 Do you mean that each time you click on R 2.7.2 icon on your
 desktop that running this from the R console:

 getwd()

 is the same directory on each startup?  Isn't that already the case?
 I don't think you need to set any environment variables at all.  If
 you don't set
 any environment variables then what specifically is happening that
 you don't want to happen?

 On Mon, Sep 8, 2008 at 7:10 PM, Eduardo M. A. M.Mendes
 [EMAIL PROTECTED] wrote:
 Hello

 I am a newbie.  I had my R upgraded from 2.7.1 to 2.7.2 and in doing so I
 decided to install all 2.7 versions under c:\program files\R\2.7 from now
 on (2.7.1 is located under .\2.7.1)

 Although I don't like the idea (I am running Vista), I have edited
 etc\Renviron.site to contain:


 R_USER=c:/Users/eduardo/Documents/R
 R_LIBS_USER=c:/Users/eduardo/Documents/R/win-library/2.7

 As far as R starting always from the same location, that is,
 c:/Users/eduardo/Documents/R, etc\Renviron.site didn't help.  So I wonder
 whether someone from the list could help me to:

 a) force R to start always from the same location
 b) force R to install all new packages in the same location


 Many thanks

 Ed

 PS. Before sending this email, I read windows FAQ and browsed the
 archives
 (too many posts in the subject!).

 __
 R-help@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide
 http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.






__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] R_USER - in which file should I include it?

2008-09-09 Thread Eduardo M. A. M.Mendes
Many thanks. I shall look at it. In case I run into trouble again, I'll try
to clarify the the same.

Ed
 

-Original Message-
From: Gabor Grothendieck [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 09, 2008 10:46 AM
To: Eduardo M. A. M.Mendes
Cc: r-help@r-project.org
Subject: Re: [R] R_USER - in which file should I include it?

You might look at ?.libPaths
(note the dot) and play around with adding a .libPaths command
to your Rprofile.site and again you may need Administrator rights
when editing it.  If that does not help then you can try clarifying
the problem.   In particular what the same refers to and what
is happening now and what you want to happen.

On Tue, Sep 9, 2008 at 9:14 AM, Eduardo M. A. M.Mendes
[EMAIL PROTECTED] wrote:
 Hello

 Many thanks.  It works just fine.

 How about the packages issue?  That is, same thing for the installation
 path.

 Cheers

 Ed


 -Original Message-
 From: Gabor Grothendieck [mailto:[EMAIL PROTECTED]
 Sent: Monday, September 08, 2008 10:01 PM
 To: Eduardo M. A. M.Mendes
 Cc: r-help@r-project.org
 Subject: Re: [R] R_USER - in which file should I include it?

 Try adding this at the end of your etc/Rprofile.site file.  That file
 should already be there so you don't have to create it,
 just edit it.

 cat(Hello from Rprofile.site\n)
 setwd(C:/Users/eduardo/Documents)

 You may need to edit it as Administrator.   You should
 see the Hello message in which case you will know that the
 Rprofile.site file is being run.

 That should work unless Tinn-R runs R in such a way as to
 ignore Rprofile.site.

 On Mon, Sep 8, 2008 at 8:11 PM, Eduardo M. A. M.Mendes
 [EMAIL PROTECTED] wrote:
 Hello

 I am not sure whether R starts from the same dir.  For instance:

 a) if I double-click on R-2.7.2 icon and then issue the command getwd(),
 the
 result is:

 getwd()
 [1] C:/Users/eduardo/Documents

 b) If R starts from within Tinn-R, the result is:

 getwd()
 [1] C:/Program Files/R/R-2/bin

 I want that no matter which calling R method I am using if I issue the
 command getwd() (first command) the result is:

 C:/Users/eduardo/Documents/R


 Moreover all new packages go to
C:/Users/eduardo/Documents/R/win-library


 Thanks

 Ed

 -Original Message-
 From: Gabor Grothendieck [mailto:[EMAIL PROTECTED]
 Sent: Monday, September 08, 2008 8:57 PM
 To: Eduardo M. A. M.Mendes
 Cc: r-help@r-project.org
 Subject: Re: [R] R_USER - in which file should I include it?

 Could you explain more clearly what you mean by the same?
 Do you mean that each time you click on R 2.7.2 icon on your
 desktop that running this from the R console:

 getwd()

 is the same directory on each startup?  Isn't that already the case?
 I don't think you need to set any environment variables at all.  If
 you don't set
 any environment variables then what specifically is happening that
 you don't want to happen?

 On Mon, Sep 8, 2008 at 7:10 PM, Eduardo M. A. M.Mendes
 [EMAIL PROTECTED] wrote:
 Hello

 I am a newbie.  I had my R upgraded from 2.7.1 to 2.7.2 and in doing so
I
 decided to install all 2.7 versions under c:\program files\R\2.7 from
now
 on (2.7.1 is located under .\2.7.1)

 Although I don't like the idea (I am running Vista), I have edited
 etc\Renviron.site to contain:


 R_USER=c:/Users/eduardo/Documents/R
 R_LIBS_USER=c:/Users/eduardo/Documents/R/win-library/2.7

 As far as R starting always from the same location, that is,
 c:/Users/eduardo/Documents/R, etc\Renviron.site didn't help.  So I
wonder
 whether someone from the list could help me to:

 a) force R to start always from the same location
 b) force R to install all new packages in the same location


 Many thanks

 Ed

 PS. Before sending this email, I read windows FAQ and browsed the
 archives
 (too many posts in the subject!).

 __
 R-help@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide
 http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.






__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] R_USER - in which file should I include it?

2008-09-08 Thread Eduardo M. A. M.Mendes
Hello

I am a newbie.  I had my R upgraded from 2.7.1 to 2.7.2 and in doing so I
decided to install all 2.7 versions under c:\program files\R\2.7 from now
on (2.7.1 is located under .\2.7.1) 

Although I don't like the idea (I am running Vista), I have edited
etc\Renviron.site to contain:


R_USER=c:/Users/eduardo/Documents/R
R_LIBS_USER=c:/Users/eduardo/Documents/R/win-library/2.7

As far as R starting always from the same location, that is,
c:/Users/eduardo/Documents/R, etc\Renviron.site didn't help.  So I wonder
whether someone from the list could help me to:

a) force R to start always from the same location
b) force R to install all new packages in the same location


Many thanks

Ed

PS. Before sending this email, I read windows FAQ and browsed the archives
(too many posts in the subject!).

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] R_USER - in which file should I include it?

2008-09-08 Thread stephen sefick
I don't know anything about vista, but the libraries for windows XP
are installed in the same place for each version there is a parallel
installation.  This is by design.
sorry I can't be of more help

On Mon, Sep 8, 2008 at 7:10 PM, Eduardo M. A. M.Mendes
[EMAIL PROTECTED] wrote:
 Hello

 I am a newbie.  I had my R upgraded from 2.7.1 to 2.7.2 and in doing so I
 decided to install all 2.7 versions under c:\program files\R\2.7 from now
 on (2.7.1 is located under .\2.7.1)

 Although I don't like the idea (I am running Vista), I have edited
 etc\Renviron.site to contain:


 R_USER=c:/Users/eduardo/Documents/R
 R_LIBS_USER=c:/Users/eduardo/Documents/R/win-library/2.7

 As far as R starting always from the same location, that is,
 c:/Users/eduardo/Documents/R, etc\Renviron.site didn't help.  So I wonder
 whether someone from the list could help me to:

 a) force R to start always from the same location
 b) force R to install all new packages in the same location


 Many thanks

 Ed

 PS. Before sending this email, I read windows FAQ and browsed the archives
 (too many posts in the subject!).

 __
 R-help@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.




-- 
Stephen Sefick
Research Scientist
Southeastern Natural Sciences Academy

Let's not spend our time and resources thinking about things that are
so little or so large that all they really do for us is puff us up and
make us feel like gods. We are mammals, and have not exhausted the
annoying little problems of being mammals.

-K. Mullis

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] R_USER - in which file should I include it?

2008-09-08 Thread Gabor Grothendieck
Could you explain more clearly what you mean by the same?
Do you mean that each time you click on R 2.7.2 icon on your
desktop that running this from the R console:

getwd()

is the same directory on each startup?  Isn't that already the case?
I don't think you need to set any environment variables at all.  If
you don't set
any environment variables then what specifically is happening that
you don't want to happen?

On Mon, Sep 8, 2008 at 7:10 PM, Eduardo M. A. M.Mendes
[EMAIL PROTECTED] wrote:
 Hello

 I am a newbie.  I had my R upgraded from 2.7.1 to 2.7.2 and in doing so I
 decided to install all 2.7 versions under c:\program files\R\2.7 from now
 on (2.7.1 is located under .\2.7.1)

 Although I don't like the idea (I am running Vista), I have edited
 etc\Renviron.site to contain:


 R_USER=c:/Users/eduardo/Documents/R
 R_LIBS_USER=c:/Users/eduardo/Documents/R/win-library/2.7

 As far as R starting always from the same location, that is,
 c:/Users/eduardo/Documents/R, etc\Renviron.site didn't help.  So I wonder
 whether someone from the list could help me to:

 a) force R to start always from the same location
 b) force R to install all new packages in the same location


 Many thanks

 Ed

 PS. Before sending this email, I read windows FAQ and browsed the archives
 (too many posts in the subject!).

 __
 R-help@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.


__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] R_USER - in which file should I include it?

2008-09-08 Thread Eduardo M. A. M.Mendes
Hello

I am not sure whether R starts from the same dir.  For instance:

a) if I double-click on R-2.7.2 icon and then issue the command getwd(), the
result is:

 getwd()
[1] C:/Users/eduardo/Documents

b) If R starts from within Tinn-R, the result is:

getwd()
[1] C:/Program Files/R/R-2/bin

I want that no matter which calling R method I am using if I issue the
command getwd() (first command) the result is:

C:/Users/eduardo/Documents/R


Moreover all new packages go to C:/Users/eduardo/Documents/R/win-library


Thanks 

Ed

-Original Message-
From: Gabor Grothendieck [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 08, 2008 8:57 PM
To: Eduardo M. A. M.Mendes
Cc: r-help@r-project.org
Subject: Re: [R] R_USER - in which file should I include it?

Could you explain more clearly what you mean by the same?
Do you mean that each time you click on R 2.7.2 icon on your
desktop that running this from the R console:

getwd()

is the same directory on each startup?  Isn't that already the case?
I don't think you need to set any environment variables at all.  If
you don't set
any environment variables then what specifically is happening that
you don't want to happen?

On Mon, Sep 8, 2008 at 7:10 PM, Eduardo M. A. M.Mendes
[EMAIL PROTECTED] wrote:
 Hello

 I am a newbie.  I had my R upgraded from 2.7.1 to 2.7.2 and in doing so I
 decided to install all 2.7 versions under c:\program files\R\2.7 from now
 on (2.7.1 is located under .\2.7.1)

 Although I don't like the idea (I am running Vista), I have edited
 etc\Renviron.site to contain:


 R_USER=c:/Users/eduardo/Documents/R
 R_LIBS_USER=c:/Users/eduardo/Documents/R/win-library/2.7

 As far as R starting always from the same location, that is,
 c:/Users/eduardo/Documents/R, etc\Renviron.site didn't help.  So I wonder
 whether someone from the list could help me to:

 a) force R to start always from the same location
 b) force R to install all new packages in the same location


 Many thanks

 Ed

 PS. Before sending this email, I read windows FAQ and browsed the archives
 (too many posts in the subject!).

 __
 R-help@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide
http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.


__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] R_USER - in which file should I include it?

2008-09-08 Thread Gabor Grothendieck
Try adding this at the end of your etc/Rprofile.site file.  That file
should already be there so you don't have to create it,
just edit it.

cat(Hello from Rprofile.site\n)
setwd(C:/Users/eduardo/Documents)

You may need to edit it as Administrator.   You should
see the Hello message in which case you will know that the
Rprofile.site file is being run.

That should work unless Tinn-R runs R in such a way as to
ignore Rprofile.site.

On Mon, Sep 8, 2008 at 8:11 PM, Eduardo M. A. M.Mendes
[EMAIL PROTECTED] wrote:
 Hello

 I am not sure whether R starts from the same dir.  For instance:

 a) if I double-click on R-2.7.2 icon and then issue the command getwd(), the
 result is:

 getwd()
 [1] C:/Users/eduardo/Documents

 b) If R starts from within Tinn-R, the result is:

 getwd()
 [1] C:/Program Files/R/R-2/bin

 I want that no matter which calling R method I am using if I issue the
 command getwd() (first command) the result is:

 C:/Users/eduardo/Documents/R


 Moreover all new packages go to C:/Users/eduardo/Documents/R/win-library


 Thanks

 Ed

 -Original Message-
 From: Gabor Grothendieck [mailto:[EMAIL PROTECTED]
 Sent: Monday, September 08, 2008 8:57 PM
 To: Eduardo M. A. M.Mendes
 Cc: r-help@r-project.org
 Subject: Re: [R] R_USER - in which file should I include it?

 Could you explain more clearly what you mean by the same?
 Do you mean that each time you click on R 2.7.2 icon on your
 desktop that running this from the R console:

 getwd()

 is the same directory on each startup?  Isn't that already the case?
 I don't think you need to set any environment variables at all.  If
 you don't set
 any environment variables then what specifically is happening that
 you don't want to happen?

 On Mon, Sep 8, 2008 at 7:10 PM, Eduardo M. A. M.Mendes
 [EMAIL PROTECTED] wrote:
 Hello

 I am a newbie.  I had my R upgraded from 2.7.1 to 2.7.2 and in doing so I
 decided to install all 2.7 versions under c:\program files\R\2.7 from now
 on (2.7.1 is located under .\2.7.1)

 Although I don't like the idea (I am running Vista), I have edited
 etc\Renviron.site to contain:


 R_USER=c:/Users/eduardo/Documents/R
 R_LIBS_USER=c:/Users/eduardo/Documents/R/win-library/2.7

 As far as R starting always from the same location, that is,
 c:/Users/eduardo/Documents/R, etc\Renviron.site didn't help.  So I wonder
 whether someone from the list could help me to:

 a) force R to start always from the same location
 b) force R to install all new packages in the same location


 Many thanks

 Ed

 PS. Before sending this email, I read windows FAQ and browsed the archives
 (too many posts in the subject!).

 __
 R-help@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide
 http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.




__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] R_USER - in which file should I include it?

2008-09-07 Thread Eduardo M. A. M.Mendes
Hello

I am a newbie.  I had my R upgraded from 2.7.1 to 2.7.2 and in doing so I
decided to install all 2.7 versions under c:\program files\R\2.7 from now on
(2.7.1 is located under .\2.7.1) 

Although I don't like the idea (I am running Vista), I have edited
etc\Renviron.site to contain:


R_USER=c:/Users/eduardo/Documents/R
R_LIBS_USER=c:/Users/eduardo/Documents/R/win-library/2.7

As far as R starting always from the same location, that is,
c:/Users/eduardo/Documents/R, etc\Renviron.site didn't help.  So I wonder
whether someone from the list could help me to:

a) force R to start always from the same location
b) force R to install all new packages in the same location


Many thanks

Ed

PS. Before sending this email, I read windows FAQ and browsed the archives
(too many posts in the subject!).

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] R_USER - in which file should I include it?

2008-09-07 Thread Eduardo M. A. M.Mendes
Hello

I am a newbie.  I had my R upgraded from 2.7.1 to 2.7.2 and in doing so I
decided to install all 2.7 versions under c:\program files\R\2.7 from now
on (2.7.1 is located under .\2.7.1) 

Although I don't like the idea (I am running Vista), I have edited
etc\Renviron.site to contain:


R_USER=c:/Users/eduardo/Documents/R
R_LIBS_USER=c:/Users/eduardo/Documents/R/win-library/2.7

As far as R starting always from the same location, that is,
c:/Users/eduardo/Documents/R, etc\Renviron.site didn't help.  So I wonder
whether someone from the list could help me to:

a) force R to start always from the same location
b) force R to install all new packages in the same location


Many thanks

Ed

PS. Before sending this email, I read windows FAQ and browsed the archives
(too many posts in the subject!).

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.