similar to: How make a package

Displaying 20 results from an estimated 70000 matches similar to: "How make a package"

2003 Jul 31
2
history for graphics
I've seen that there's an history for graphics. How can I save it manually? Can I save more than 4 plots? I'm using R1.6.2 under win98 [[alternative HTML version deleted]]
2003 Jul 31
2
help with graphics
I'd like to use lattice to make graphics under conditional structure like : if (TRUE) { barchart(....) dev.print(png, file = "image1.png", width = 600) } but there's nothing in the output file. It seems that it's too long to print graphic into the graphical output and the saved file is a blank picture. it works if I do that without the conditionnal structure. it doesn't
2003 Apr 16
5
besoin d'aide
J'aimerais savoir si la fonction merge() est la seule disponible pour concatener des tableaux de donn?es? Est-ce normal que l'ex?cution soit lente?
2005 Mar 18
2
package.skeleton
> R.version.string [1] "R version 2.1.0, 2005-03-17" I don't see anything in either https://svn.r-project.org/R/trunk/NEWS or in the Changes file for R-2.1.0 about changes in package.skeleton() (nor in the help page), but when I run this function, all the .Rd files produced are of the data format even if all I have in my .GlobalEnv are functions. A trivial example is to run the
2003 May 13
1
HTMLplot
can you explain how it works? I tried to do like the example but it doesn't work
2004 Apr 16
1
Pb on startup with R1.9.0
I'm using Rprofile file on R1.9.0 startup and inside I'm loading a personal Library which uses winMenuAdd() and I've got this error : Error in eval(expr, envir, enclos) : couldn't find function "winMenuAdd" I hadn't this problem with others R versions. What Can I do now to avoid that? I'm using R1.9.0 under Win98. [[alternative HTML version deleted]]
2008 May 31
1
problems with package.skeleton
Hi the list, I do not manage to build a package using package.skeleton. My pacakge in called 'partition' I run package.skeleton, then I write the Rd file. R CMD check partition is ok But R CMD build --binary partition does not compile. I get : .... WARNING * some HTML links may not be found installing R.css in c:/TEMP/Rinst322403595 .... cp: cannot stat
2010 Aug 29
3
a small suggestion for improving the building of packages
All, I just finished the process of build a package for the first time and found it characteristically (for R) very straightforward and well documented. Whenever I deal with open source software I always endeavor to finish the task I have in mind, and upon completing this, I then revisit all of the configurations, customizing as necessary to achieve my goals more fully. The ability to achieve
2011 Sep 15
1
how to install a locally built package
Hello useRs, I am trying to put my funcs in a package to avoid clutter in my workspace as the funcs are now in .Rprofile. All plain R code no compilations. Using win XP with a full cygwin install and R2.12 I first did package.skeleton("mypack",list="getdfv", namespace=T) # just a single func which created a folder with the required stuff in it. Calling R CMD build creates a
2003 Sep 02
2
FW: Creating a Package with Windows XP.
> Hi there fellow R-Users, > > I am trying to use the "package.skeleton" to create my own package with > R.1.7.1 on Windows XP Professional. > I have followed the package.skeleton example and have downloaded the > necessary files found at http://www.stats.ox.ac.uk/pub/Rtools/tools.zip. > > and perl5, available via
2008 Jan 01
4
access data inside package
Dear all, Happy new year! I posted a very similar question a few days ago, but probably too cluttered. Here is a tidy, minimal version: I want to make a package, with a data.frame d and a function f given below. Now, the function f needs to use the data.frame d. I could (and that's what I've done temporarily) make a local duplicate of this data.frame in the function definition,
2012 Feb 11
1
updating one's own package
Win7 x64, R2.14.1 Dear list, I would like to get into the habbit of creating a package for each project. That way I can package my project-specific functions and data together and load or unload that at will. Also, it will allow easy navigation through all the functions I will have available for each project, since I can then use ?myfunction and immediately see the details of that function
2012 Mar 05
1
package.skeleton only exports the first 73 lines of code
Hi all, apologies for the ignorance I'm about to describe: I'm trying to create a .r file for a function I've written (~300 lines of code). The function is called 'total' and I've entered the most simple package.skeleton: package.skeleton(name="test", list=c("total")) The export works fine (it creates sub folders for R, man, and DESCRIPTION,
2004 May 27
2
Rcmd check, windows xp, perl (2)
Thank you for your help. I??m sorry that I found not the right entries in the R-devel. Now, I have again a problem. After installing all needed things I have run Rcmd INSTALL -l ../mypkg and respectively make mypkg By running Rcmd check I get following message: * checking for working latex ...Error: environment variable TMPDIR not set (or set to unusable value) and no default
2005 Jul 21
2
The steps of building library in R 2.1.1
Dear All, With the warm support of every R expert, I have built my R library successfully. Especially thanks: Duncan Murdoch Gabor Grothendieck Henrik Bengtsson Uwe Ligges Without your help, I will lower efficiency. I noticed that some other friends were puzzled by the method of building library. Now, I organize a document about it. Hoping it can help more friends. 1. Read
2005 Aug 31
1
Why should package.skeleton() fail R CMD check?
I find it a bit peculiar that a package skeleton created with a utils function package.skeleton() fails subsequent R CMD check. I do understand that the function is intended to produce only a skeleton that should be edited by the package author. I think that it would be justified to say that the skeleton *should* fail the test. However, I have two arguments against intentional failure: * When you
2006 Jun 01
4
FW: How to create a new package?
Hi, I'm a group of functions and I would like to create a package for load in R. I have created a directory named INE and a directory below that named R, for the files of R functions. A have created the files DESCRIPTION and INDEX in the INE directory. The installation from local zip files, in the R 2.3.0, results but to load the package I get an error like: 'INE' is not a
2007 May 28
1
How to correctly write a package?
I am writing a package. Please, study the sequence of my actions below, and comment, what's incorrect. The package contains pure R code. 1. At the one level up from the package directory, from the system command prompt: R CMD build --binary ac9 This produces the file ac9_0.1.zip (The package name is ac9, and the package's DESCRIPTION file says its version is 0.1) 2. Then I run Rgui in
2010 Jul 30
2
creation package
Dear r-help, I create a package. When I installed this package (I use this command : R CMD check namepackage),I find an error: * checking whether package 'namepackage' can be installed ... ERROR Installation failed. Could you help me to find solution for this error. Best Regards [[alternative HTML version deleted]]
2009 Mar 18
1
yet another package building question please
Hello again. I'm trying to use package.skeleton to build my package. However, my package will contain a Fortran subroutine. Can you use package.skeleton with that subroutine, please or do you need to add it manually? Thanks again, Sincerely, Edna Bell