Displaying 20 results from an estimated 4000 matches similar to: "Making a Package"
2005 Jul 04
1
installing packages and libraries
When I run the following:
cd \Rpkgs
rcmd install mypackage -l library
I get a message that it cannot find quadprog which is a library
that mypackage depends on.
Error: package 'quadprog' could not be loaded
I previously used C:\Program Files\R\rw2011\library as my library for CRAN
packages and did not have a problem but now that I use
C:\Program Files\R\library this problem
2004 Oct 29
1
problem building an R package under Windows XP with calls to NAG C routines
Hello all,
I was able to create R packages under windows XP in the past using the
dynamic NAG C library for windows XP (Mark 6).
Recently, I changed computers and I am now using the static NAG C library
for windows XP (Mark 7) to create a simple R package (called "test") which
simply returns random numbers simulated using repetitive calls to a NAG C
routine (uniform random
2004 Oct 31
1
Problem in building a package in R 2.0.0
Dear all
I am trying to build a package in Windows.
I use the following command (which it used to work with previous
versions ) and I am getting the following error
#--------------------------------------------------------------------------------------------------------------
C:\PROGRA~1\R\rw2000\bin>Rcmd build --binary --use-zip
C:\PROGRA~1\R\rw2000\src\library\gamlss
* checking for
2004 Nov 11
2
inst/CITATION produced error during Rcmd check <package>
Dear list member,
by running Rcmd check on a package where a customised 'CITATION' file should
be included instead of the automatically produced one, the following error
occurs:
adding build stamp to DESCRIPTION
installing NAMESPACE file and metadata
installing R files
installing inst files
FIND: Parameter format not correct
make[2]: *** [c:/R/packages/urca/inst] Error 2
make[1]:
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
2005 Mar 24
2
build failed of package
I am trying to install the rpvm package doing this:
C:\R\rw2000\bin>rcmd install rpvm_0.6-2.tar.gz
'.' is not recognized as an internal or external
command,
operable program or batch file.
'.' is not recognized as an internal or external
command,
operable program or batch file.
make: *** /rpvm: No such file or directory. Stop.
make: *** [pkg-rpvm] Error 2
*** Installation of
2004 Nov 07
4
writing a simple package in R 2.0 under Windows XP
Dear listers,
I have developped a set of functions that I would like to package on a
Windows XP plateform for some friends (this would be more simple than to
deliver them as a source text file without handy help). I am working under
Windows XP.
Of course I have gone through the manual "Writing R extension" and try to
sort out what a most simple "packaging" for beginner
2004 Nov 16
2
User package - Simple Ports
R experts,
I created a package X for R 1.8 that I want to re-install for 2.0.1. In
addition to downloading/installing Perl and Rtools as directed in the
README.packages file and ensuring that they appear in my path, I have
modified X's DESCRIPTION file to include all required fields.
Additionally I have deleted the "built" line since the make process
will add that. The source
2006 Oct 01
2
Rcmd install mypkg
I noticed that in "R version 2.4.0 alpha (2006-09-16 r39365)" on Windows XP
that I get this error:
C:\Rpkgs>Rcmd install mypkg
no Perl script 'install'
The same command worked with no error in 2.3.1pat. If I capitalize
INSTALL it does work; however, this was not necessary previously.
Note that
C:\Rpkgs>Rcmd check mypkg
unlike install, still works in either lower or
2004 Nov 03
1
Building a package under WIN2000 / rw2.0
I have an odd problem in building a package with only R-code in it.
I have a package mainly used by myself which I last build under R
1.9.0.
The operation system is Win2000 5.00.2195, Service Pack 3
When I do:
c:\stat\r\rw2000\bin\Rcmd install --docs=normal --build
--library=c:\stat\R\bxc\library c:\stat\R\bxc\library.sources\xx
then after updating help pages I get:
preparing package xx for
2004 Nov 03
1
Building a package under WIN2000 / rw2.0
I have an odd problem in building a package with only R-code in it.
I have a package mainly used by myself which I last build under R
1.9.0.
The operation system is Win2000 5.00.2195, Service Pack 3
When I do:
c:\stat\r\rw2000\bin\Rcmd install --docs=normal --build
--library=c:\stat\R\bxc\library c:\stat\R\bxc\library.sources\xx
then after updating help pages I get:
preparing package xx for
2008 Feb 14
2
Question: about loading a new package
I am using R Version 2.3.1 (2006-06-01) in Linux with Ubuntu 7.4.
I installed a new package with
R CMD INSTALL -l /usr/lib/R/library newpackage.tar.gz
Each time I run R I need to load this new package typing library(newpackage).
My question is: how can I automatically load this new package once for ever?
I read the manual but I have not been able to find the solution to that.
thank you
2007 Jun 14
1
building packages under windows
I tried to check or build a package under windows xp but I got the error
the package can not be installed
(without any details in the install.out file)
I work with R-2.5.0, Miktex 2.5.0, and I have installed the unix tools.zip,
Perl and Microsoft HTML Workshop.
The path environment is ok.
Have someone else encountered the same problem?
Thank you,
Cinzia
2003 Jun 23
7
How can I do a spinning plot in R?
I have found XLispStat's spinning plots illuminating.
I'd like to do the same thing in R.
A dozen or so probes with help, help.search, apropos
haven't turned up anything, and I've even resorted to
grepping through the entire R source distribution
looking for 'spin.*plot', to no avail.
Either the feature is called something else in R (what?),
or it's in some other
2011 Aug 02
2
R CMD check problem
Dear friends,
I am building an R package called *mypackage*. I followed every possible
steps (to my understanding) for the same. I got following problem while
doing *R CMD check mypackage*.
* installing *source* package 'mypackage' ...
** libs
cygwin warning:
MS-DOS style path detected: C:/PROGRA~1/R/R-213~1.0/etc/i386/Makeconf
Preferred POSIX equivalent is:
2004 Nov 12
1
dyn.load problem
Hi R-Users
I wrote 1 week ago asking about a message that appears when I try run
dyn.load.
I'm trying to do an example in C code from "Writing R Extension" to
learn how to do it.
I have R 2.0.0, Rtools, Perl and MinGW as describe in
http://www.murdoch-sutherland.com/Rtools/ with path sets.
When I use C:\R\rw2000\bin>RCMD SHLIB -o C:/dev-cpp/teste.dll
2004 Nov 07
2
Problem with dyn.load()
Hi!
I am studying C language to run with R 2.0.0. My system (Windows ME /BR) is configured to run RCMD ( I have installed ActivePerl, Rtools and MinGW as indicated in http://www.murdoch-sutherland.com/Rtools/ an with correct path).
I would like run the coded write below named conv.c (Example from "Write R Extension") :
#include <R.h>
#include <Rinternals.h>
2005 Feb 17
2
How to upgrade library from R 1.9.1 to R 2.0.1
Dear All:
I have a library for R 1.9.1, it is very easy to setup a library in R 1.9.1.
For example:
I want to setup a library "test" for R1.9.1.
1. Create a folder "test" in the direct X:\ R\ rw1091\ library \.
2. Create a file "DESCRIPTION" in the direct X:\ R\ rw1091\ library\ test\.
3. Modify the "Package:" and "Title:"
2009 Mar 29
3
Eclipse and StatET Howto (also added Subversion, Rtools)
I recently got a RFC on Eclipse and StatET setup from a R-help user, so here
it is.
Note: there may be slight errors of omission in my directions as I am making
these notes after I had a successful install. If you have questions post
here.
Setup tested with Eclipse 3.4.0 on XP 32-bit and Eclipse 3.4.2 on Vista
32-bit.
R 2.9.0 alpha.
Installing StatET:
1. Go to Help > Software Updates...
2004 Oct 25
5
building a package under windows
Hi,
I have a package of my own which seems to work fine under linux.
I want to make a compiled version for windows.
(I work with windows 2000 and R 2.0)
I have followed the steps described in the file
readme.packages (in the top-level directory of the binary installation)
and I had a trouble at this step (which aim is not documented):
C:\Program Files\R\rw2000\src\gnuwin32>make libR.a