search for: r_profile_us

Displaying 19 results from an estimated 19 matches for "r_profile_us".

Did you mean: r_profile_user
2015 Dec 05
2
R_PROFILE_USER
In my shell environment, I have set a path to R_PROFILE_USER. The file, Rprofile.R, is a collection of small hacks. I want to build rstudio-server from source. Best is to $ unset R_PROFILE_USER before. Unfortunately, this has no effect on my system. ----------------------------------------------- poisonivy at poppy ?? ~ % R *** Successfully loaded .Rpro...
2015 Dec 05
1
R_PROFILE_USER
On Sat, Dec 5, 2015, 9:39 PM peter dalgaard <pdalgd at gmail.com> wrote: > On 05 Dec 2015, at 18:07 , arnaud gaboury <arnaud.gaboury at gmail.com> wrote: > > In my shell environment, I have set a path to R_PROFILE_USER. The > file, Rprofile.R, is a collection of small hacks. > > I want to build rstudio-server from source. Best is to $ unset > R_PROFILE_USER before. Unfortunately, this has no effect on my system. > > ----------------------------------------------- > poisonivy at poppy ?? ~ %...
2015 Dec 05
0
R_PROFILE_USER
> On 05 Dec 2015, at 18:07 , arnaud gaboury <arnaud.gaboury at gmail.com> wrote: > > In my shell environment, I have set a path to R_PROFILE_USER. The > file, Rprofile.R, is a collection of small hacks. > > I want to build rstudio-server from source. Best is to $ unset > R_PROFILE_USER before. Unfortunately, this has no effect on my system. > > ----------------------------------------------- > poisonivy at poppy ?? ~...
2010 Mar 05
2
[PATCH] R ignores PATH_MAX and fails in long directories (PR#14228)
...ted below : Index: src/unix/sys-unix.c =================================================================== --- src/unix/sys-unix.c (revision 51208) +++ src/unix/sys-unix.c (working copy) @@ -61,7 +61,7 @@ attribute_hidden FILE *R_OpenInitFile(void) { - char buf[256], *home, *p = getenv("R_PROFILE_USER"); + char buf[PATH_MAX], *home, *p = getenv("R_PROFILE_USER"); FILE *fp; fp = NULL; @@ -72,7 +72,7 @@ return fp; if((home = getenv("HOME")) == NULL) return NULL; - sprintf(buf, "%s/.Rprofile", home); + sn...
2009 Feb 28
1
Execute script and go interactive
Hi, is it possible to execute a script with R and go into interactive mode with the same session? e.g. R < myscript.R >objects() Creating a .Rprofile is not an option for me. Thank you Michael
2010 Apr 27
1
R with command line
Hi all, I am testing R by trying R on command line (ie without opening R console) on a Mac Pro with 10.6. So I created a file plot.R: x11(width=5,height=3.5) plot(1:10,1:10) So I have two questions below (please forgive me if the questions have been asked already) 1. What is the different between *R CMD BATCH infile.R* and *R --vanilla --slave < infile.R*? 2. When I ran plot.R with one
2017 Apr 06
3
failure of make check-all
...IBS" < [55] "R_LIBS_SITE" "R_LIBS_USER" < [57] "R_OSTYPE" "R_PAPERSIZE" < [59] "R_PAPERSIZE_USER" "R_PDFVIEWER" < [61] "R_PLATFORM" "R_PRINTCMD" < [63] "R_PROFILE" "R_PROFILE_USER" < [65] "R_RD4PDF" "R_SESSION_TMPDIR" < [67] "R_SHARE_DIR" "R_SYSTEM_ABI" < [69] "R_TEXI2DVICMD" "R_UNZIPCMD" < [71] "R_VERSION" "R_ZIPCMD" < [73] "SED" "SESSION&...
2017 Apr 06
0
failure of make check-all
...< [55] "R_LIBS_SITE" "R_LIBS_USER" > < [57] "R_OSTYPE" "R_PAPERSIZE" > < [59] "R_PAPERSIZE_USER" "R_PDFVIEWER" > < [61] "R_PLATFORM" "R_PRINTCMD" > < [63] "R_PROFILE" "R_PROFILE_USER" > < [65] "R_RD4PDF" "R_SESSION_TMPDIR" > < [67] "R_SHARE_DIR" "R_SYSTEM_ABI" > < [69] "R_TEXI2DVICMD" "R_UNZIPCMD" > < [71] "R_VERSION" "R_ZIPCMD" > < [73] "SED"...
2011 Feb 16
1
Ignoring .Rprofile when installing a package
Dear all, Is there a way to force R CMD INSTALL to ignore ~/.Rprofile and similar? I presume it sources these startup files for a reason, but I've found that it can cause confusion or problems. In particular, my ~/.Rprofile loads a few packages which I very frequently use, but this stops me from installing new versions of their dependencies; viz. $ R CMD INSTALL tractor.base * installing to
2009 Sep 30
1
(windows xp) start script on startup / double clicking on the script
hi, I am still trying to figure out how it is possible to start an R- script via the R-GUI directly by double-clicking on the script file in windows xp. On Mac OS I have the option "start script in the editor" in the preferences. But on windows XP I always get the "ARGUMENT 'c:\...\...' ___ignored___" error when I try to associate the .R extension with the
2012 Feb 23
1
R devel [and R 2.14.1 patched]: R CMD build now sources ~/.Rprofile
I'd like to follow up on this one. It may be that I have misunderstood something, but on both R devel (2012-02-22 r58452) and R 2.14.1 patched (2012-02-18 r58394) I can't seem to avoid loading ~/.Rprofile when I run 'R CMD <cmd>', e.g. R CMD build. For me, the loading of ~/.Rprofile by 'R CMD' started a few weeks ago, and I haven't seen it before. More details
2015 Aug 14
2
Build R on Haiku
.../tools" export R_DEFAULT_PACKAGES="NULL" export R_DOC_DIR="/Store/buildr/doc" export R_ENVIRON="" export R_ENVIRON_USER="" export R_HOME="/Store/buildr" export R_INCLUDE_DIR="/Store/buildr/include" export R_PROFILE="" export R_PROFILE_USER="" export R_SHARE_DIR="/Store/buildr/share" export SAFEMODE="no" export SED="/bin/sed" export SHLVL="7" export TERM="xterm" export TTY="/dev/tt/p1" export TTYPE="UTF-8" export USER="user" export XDG_CACHE_HO...
2009 May 11
2
Set working directory by dragging text file onto R shortcut? [WinXP, unfortunately]
Hi R-helpers, I must use WinXP at work, and I'm missing a particular feature that's available in R on my Mac at home... In WinXP I would like to launch R by dragging and releasing a text file on top of the R shortcut on my desktop. Then, I would like the working directory to be automatically set to the location of that text file. That's what works in MacOS, but I can't figure
2015 Aug 31
0
Build R on Haiku
...GES="NULL" > export R_DOC_DIR="/Store/buildr/doc" > export R_ENVIRON="" > export R_ENVIRON_USER="" > export R_HOME="/Store/buildr" > export R_INCLUDE_DIR="/Store/buildr/include" > export R_PROFILE="" > export R_PROFILE_USER="" > export R_SHARE_DIR="/Store/buildr/share" > export SAFEMODE="no" > export SED="/bin/sed" > export SHLVL="7" > export TERM="xterm" > export TTY="/dev/tt/p1" > export TTYPE="UTF-8" > export U...
2010 Aug 11
3
Using command line --file or -f
*What I want to do: *Create a windows shortcut that will start the R gui **and** simultaneously source a file *What I have already tried: *This almost works, but it's not the interactive R GUI: R --no-save --sdi -file="C:\SomePath\example.R" These open the R GUI, but doesn't recognize -f --f --file -file RGUI --no-save --sdi -file="C:\SomePath\example.R"
2008 Oct 20
2
R 2.8.0 is released
...y are no longer allowed, and attempting to create such a string now gives a truncation warning (unless options("warnEscapes") is false). o The user environment and profile files can now be specified via environment variables 'R_ENVIRON_USER' and 'R_PROFILE_USER', respectively. o ?pkg::topic and ?pkg:::topic now find help on 'topic' from package 'pkg' (and not help on :: or :::). o ??topic now does help.search("topic"); variations such as ??pkg::topic or field??topic are also supported....
2008 Oct 20
2
R 2.8.0 is released
...y are no longer allowed, and attempting to create such a string now gives a truncation warning (unless options("warnEscapes") is false). o The user environment and profile files can now be specified via environment variables 'R_ENVIRON_USER' and 'R_PROFILE_USER', respectively. o ?pkg::topic and ?pkg:::topic now find help on 'topic' from package 'pkg' (and not help on :: or :::). o ??topic now does help.search("topic"); variations such as ??pkg::topic or field??topic are also supported....
2011 Apr 13
0
R 2.13.0 is released
...with soft namespace policy for finding objects. ? tools::Rdiff() now has the option to return not only the status but a character vector of observed differences (which are still by default sent to stdout). ? The startup environment variables R_ENVIRON_USER, R_ENVIRON, R_PROFILE_USER and R_PROFILE are now treated more consistently. In all cases an empty value is considered to be set and will stop the default being used, and for the last two tilde expansion is performed on the file name. (Note that setting an empty value is probably impossible on Windo...
2011 Apr 13
0
R 2.13.0 is released
...with soft namespace policy for finding objects. ? tools::Rdiff() now has the option to return not only the status but a character vector of observed differences (which are still by default sent to stdout). ? The startup environment variables R_ENVIRON_USER, R_ENVIRON, R_PROFILE_USER and R_PROFILE are now treated more consistently. In all cases an empty value is considered to be set and will stop the default being used, and for the last two tilde expansion is performed on the file name. (Note that setting an empty value is probably impossible on Windo...