search for: rpackag

Displaying 20 results from an estimated 97 matches for "rpackag".

Did you mean: packag
2002 Oct 21
5
RFC: Loading packages at startup
...art writing any code. S4 introduced a file .S.chapters which can contain a list of S chapters (equivalent to R packages) to be loaded on start-up. This was the germ of this proposal. Proposal: Extend the initialization as described in Startup.Rd by having optionally files named, say, R_HOME/etc/Rpackages.site and .Rpackages, the latter in the starting directory or failing that the user's home directory. Each would contain a list of packages, one per line, to be loaded when R is started, in the order in the files. Some details: 1) I think the packages should be loaded before .Rprofile and .R...
2009 Jun 10
1
R on EC2 and R CMD javareconf
Hello, I am using EC2 to launch several instances. On each instance, I perform the following commands yum -y install R (installs R-2.6) R CMD javareconf sleep 10 wget rpackage.tgz R CMD INSTALL rpackage.tgz Now, rpackage.tgz needs to be built with jni libraries. When the instance is fully up, i log in and check if rpackage was successfully installed and find out it wasn't. Running R CMD INSTALL rpackage.tgz again, i get the response that I should run R CMD javare...
2004 Nov 15
1
Error whilst building packages
Dear All, I have been working on building a new version of the Wavethresh package for some time now. Having build a working version on Linux, I am getting the following error when checking on Windows: C:\Rpackages\R\rw2000\bin>Rcmd check wavethresh * checking for working latex ... OK * using log directory 'C:/Rpackages/R/rw2000/bin/wavethresh.Rcheck' * checking for file 'wavethresh/DESCRIPTION' ... OK * checking if this is a source package ... OK installing R.css in C:/Rpackages/R/rw200...
2002 Oct 22
3
Loading packages at startup
> 4) One problem with saving an R session and then restoring it is that > the packages in use are not reloaded. Quitting an R session and > saving could write .Rpackages in the current directory (with the > library recorded if it were not the default). Then restarting a > session in that directory would restore the loaded packages > automatically. I've been using another approach for this. For the R + Zope tools that I've developed...
2010 Nov 03
3
R package BibTex entries: looking for a more general solution
...ing the extraction of citation()s from R packages. The stimulus was that some journals, notably JSS, now require a reference and citation of every R package mentioned, and it is a pain to create these manually, no less maintain them for current versions. The result of that query was a function, Rpackage.bibs() by Achim Zeileis that I have been using ever since. Code in: http://euclid.psych.yorku.ca/SCS/Private/Rbibs/Rpackages.bib.R On one current system I get the following: > Rpackage.bibs(file="Rpackages-R.2.11.1.bib") Converted 230 of 230 package citations to BibTex Results writ...
2018 Jan 24
5
Why R should never move to git
Lately I've been doing some work with the manipulateWidget package, which lives on Github at https://github.com/rte-antares-rpackage/manipulateWidget/. Last week I found a bug, so being a good community member, I put together a patch. Since the package lives on Github, I followed instructions to put together a "pull request": - I forked the main branch to my own Github account as <https://github.com/dmurdoch/...
2012 Feb 08
3
Version control (git, mercurial) for R packages
...with the standard package structure. I can set the repository in the directory that contains my R packages, but then I have a single repository for all of my packages, which is not ideal. Of course, I could add one extra layer of directory structure (for example, if a package foo sit in directory RPackages/foo I could move it to directory RPackages/foo/foo and set the repository in RPackages/foo) but this seems roundabout and inelegant... I'd be grateful for any suggestions/pointers. Thanks, Peter
2012 Feb 08
3
Version control (git, mercurial) for R packages
...with the standard package structure. I can set the repository in the directory that contains my R packages, but then I have a single repository for all of my packages, which is not ideal. Of course, I could add one extra layer of directory structure (for example, if a package foo sit in directory RPackages/foo I could move it to directory RPackages/foo/foo and set the repository in RPackages/foo) but this seems roundabout and inelegant... I'd be grateful for any suggestions/pointers. Thanks, Peter
2013 Aug 28
1
Error when using buildVignettes()
...class{article} \textwidth=6.2in \textheight=8.5in %\parskip=.3cm \oddsidemargin=.1in \evensidemargin=.1in \headheight=-.3in \newcommand{\Rfunction}[1]{{\texttt{#1}}} \newcommand{\Rmethod}[1]{{\texttt{#1}}} \newcommand{\Rcode}[1]{{\texttt{#1}}} \newcommand{\Robject}[1]{{\texttt{#1}}} \newcommand{\Rpackage}[1]{{\textsf{#1}}} \newcommand{\Rclass}[1]{{\textit{#1}}} \newcommand{\Cclass}[1]{{\textit{#1}}} \newcommand{\Rexten}[1]{{\textit{#1}}} \newcommand{\xps}{\Rpackage{xps}} \newcommand{\ROOT}{\Robject{ROOT}} \begin{document} \title{@TITLE@} \date{@DATE@} \author{@AUTHOR@} \maketitle \tableofconten...
2001 Mar 21
2
RPackage
Please, is there anyone who can give me some suggestions? (1) I have to use a package from R on my work. The package is the "quantreg" developed by Koenker (Uni Illinois). I have installed the package in the R library tree /usr/local/lib/R/ library of my Linux Operating System. I did R CMD INSTALL -l /usr/local/lib/R/ library /path/to/quantreg_x.y-z.tar.gz. However, when I call any
2011 Dec 16
2
R package BibTex entries: looking for a more general solution
...function no longer generates keys for packages which contain *more than one citation*. I've tried debugging with browser(), but can't figure out how to make the lines around FIXME work. Can someone help? You can see the result from this at http://euclid.psych.yorku.ca/SCS/Private/Rbibs/Rpackages-2.14.0.bib The function is also at: # Original code by Achim Zeileis, 16 Dec 2009, R-help # Added: support header and preamble Rpackages.bib <- function(filename = paste("Rpackages-",getRversion(), ".bib", sep=""), header=TRUE, preamble=NULL, suppress....
1998 Dec 01
2
help files for libraries that aren't in the defaults library tree
...I dont have to carry duplicate copies around to wherever I fire up an R sesssion. However, I have problems locating the help files for those functions. Here are some details. I created the library "myR" and installed this in /home/royle/R using: R INSTALL -l /home/royle/R /home/royle/Rpackages/myR This went well, and I can access all of those functions in the usual way....i.e. like: library(myR,lib.loc="/home/royle/R/") But, I found that to get the help files I have to type: help(interp,lib.loc="/home/royle/R/") and so it is kind of a pain to have to specify...
1998 Dec 01
2
help files for libraries that aren't in the defaults library tree
...I dont have to carry duplicate copies around to wherever I fire up an R sesssion. However, I have problems locating the help files for those functions. Here are some details. I created the library "myR" and installed this in /home/royle/R using: R INSTALL -l /home/royle/R /home/royle/Rpackages/myR This went well, and I can access all of those functions in the usual way....i.e. like: library(myR,lib.loc="/home/royle/R/") But, I found that to get the help files I have to type: help(interp,lib.loc="/home/royle/R/") and so it is kind of a pain to have to specify...
2018 Jan 24
2
Why R should never move to git
...h. Duncan Murdoch > > Gabor > > On Wed, Jan 24, 2018 at 11:17 PM, Duncan Murdoch > <murdoch.duncan at gmail.com> wrote: >> Lately I've been doing some work with the manipulateWidget package, which >> lives on Github at >> https://github.com/rte-antares-rpackage/manipulateWidget/. Last week I >> found a bug, so being a good community member, I put together a patch. >> >> Since the package lives on Github, I followed instructions to put together a >> "pull request": >> >> - I forked the main branch to my own G...
2006 Sep 29
1
Build error on Windows
Hi, I'm trying to build R-2.3.1 on windows, but make gives me following error while building pkg-base: ---------- Making package base ------------ adding build stamp to DESCRIPTION make[4]: *** [frontmatter] Error 1 make[3]: *** [all] Error 2 make[2]: *** [pkg-base] Error 2 make[1]: *** [rpackage] Error 2 make: *** [all] Error 2 Please note that R.exe, Rterm.exe, Rgui.exe, RCmd.exe are build without any errors. I have three questions, can anyone please help me to resolve it? 1. How to solve (or get more details) of the above mentioned error? 2. When I run Rterm.exe it takes 25-30% CPU t...
2011 Aug 02
2
R CMD check problem
...nf CYGWIN environment variable option "nodosfilewarning" turns off this warning. Consult the user's guide for more details about POSIX paths: http://cygwin.com/cygwin-ug-net/using.html#using-pathnames ERROR: compilation failed for package 'mypackage' * removing 'C:/Rpackages/mypackage.Rcheck/mypackage'. What I understood from above is that it is something with PATH variable. I had set the following PATH variable: C:\Rtools\bin;C:\Rtools\MinGW\bin;"C:\Program Files\R\R-2.13.0\bin";"C:\Program Files\MiKTeX 2.9\miktex\bin";%SystemRoot%\system32;...
2008 May 01
2
Error while making R package
....o gcc-sjlj -std=gnu99 -shared -s -o t1.dll t1.def CGHseg_rewrite.o rowMedians.o runavg.o t1_res.o -Lc:/R/R-2.6.2/bin -lR ... DLL made installing DLL installing R files installing data files rm: failed to get attributes of `/': No such file or directory make[2]: *** [C:/Vidhu/CGH/RPackage/t1.Rcheck/t1/data] Error 1 make[1]: *** [all] Error 2 make: *** [pkg-t1] Error 2 *** Installation of t1 failed *** Can you please suggest what could be the probable cause of the error Thank you Vidhu [[alternative HTML version deleted]]
2005 Jun 28
2
Error in compiling R
...ng R files installing data files preparing package datasets for lazy data loading Error in load(zfile, envir = envir) : input has been corrupted, with LF replaced by CR Execution halted make[4]: *** [lazydata] Error 1 make[3]: *** [all] Error 2 make[2]: *** [pkg-datasets] Error 2 make[1]: *** [rpackage] Error 1 make: *** [all] Error 2 Thanks, Chad Jenness Electronic Payment Business Services Office: 612-667-9782 Email: Chad.P.Jenness@WellsFargo.com "This message may contain confidential and/or privileged information. If you are not the addressee or authorized to receive this for the addr...
2018 Jan 25
4
Why R should never move to git
...iate problem.) Duncan Murdoch > I?aki > > > > 2018-01-25 0:17 GMT+01:00 Duncan Murdoch <murdoch.duncan at gmail.com>: >> Lately I've been doing some work with the manipulateWidget package, which >> lives on Github at >> https://github.com/rte-antares-rpackage/manipulateWidget/. Last week I >> found a bug, so being a good community member, I put together a patch. >> >> Since the package lives on Github, I followed instructions to put together a >> "pull request": >> >> - I forked the main branch to my own G...
2007 May 03
2
R package development in windows
I'm attempting to build an R package for distribution and am working from the directions found at http://www.maths.bris.ac.uk/~maman/computerstuff/Rhelp/Rpackages.html#Wi n-Win I've read through Writing R Extensions and various other "helpful" web sites. I've installed all relevant software (perl, cygwin, mingwin, hhc.exe). Here is what I have done so far: 1) Sourced data and functions into R 2) Used package.skeleton 3) Edited Descripti...