similar to: Does order() behave differently on different platforms?

Displaying 20 results from an estimated 3000 matches similar to: "Does order() behave differently on different platforms?"

2003 Nov 04
3
R function help arranged in categorical order ?
Hi, I'm new to R and I'm finding it quite a chore trawling through the R documentation to find a function to carry out simple atomic tasks. Is any one aware of R help documentation that is aranged in functional categories for e.g.: String manipulation File I/O Dataframe, List manipulation etc, etc ... Thanks _________________________________________________________________ Get
2003 Aug 13
2
rowsum() may return a vector instead of a matrix (PR#3737)
If all rows are in the same "group", rowsum() returns a vector instead of a (1xN) matrix, contrary to documentation: R> print(z <- rowsum(matrix(1:12, 3,4), rep("x",3))) [1] 6 15 24 33 R> dim(z) NULL It worked correctly in version 1.4.0 but was broken by version 1.6.1. I'm currently using 1.7.1 under Solaris 2.8. --please do not edit the information
2003 Jul 11
1
Title obscured when using par(mfrow) (PR#3463)
I want to put multiple plots on a page using par(mfrow), then a single title at the top. This should work, but doesn't: R> par(oma=c(0,0,4,0), mfrow=c(3,4)) R> for (i in 1:12) {plot(1); title(i)} R> ## text(10,10, ".") R> par(mfrow=c(1,1), oma=c(0,0,1,0)) R> title("Main Title") The main title does not appear. However, uncommenting the third line
2005 Jul 24
4
problem building R packages in windows xp
Dear R users, I am having problems building R packages in Windows xp. I have followed the instructions from Peter E. Rossi in Documentation -> Other, except for the TeX version (fpTeX), since when I go to the recommended webpage, it is said that fpTeX has been discontinued. I have MikTeX in my computer, and I have followed the recommendations in
2020 Aug 19
2
Stale link from ?check to R Internals
Hi the reference to R Internals https://cran.r-project.org/doc/manuals/r-release/R-ints.html#Tools in ?check (PkgUtils.Rd in utils package) is stale. Here is my proposed patch (use named reference rather than numeric reference to avoid any similar broken links in the future). Index: src/library/utils/man/PkgUtils.Rd =================================================================== ---
2008 Jan 09
1
Rscript on OSX
Hi, I directed somebody to install R (2.6.1) on his OSX computer, following instructions from http://cran.r-project.org/bin/macosx. She can run R from the console. But plot(1:10) doesn't produce any output or open a window (as I am used to from linux). More importantly: Rscript is not in the path (minor problem ln -s is hopefully doable). I tried to put a hardcoded path to Rscript into the
2007 Aug 23
1
Error building R 2-5.2.1 on Sun Solaris 8
As shown below, the build process fails with only vague messages, leaving me clueless as to how to resolve. Thanks, in advance, for any help that you may offer. Mike -------------------------------------- # ./configure --prefix=/SOURCES/R-2.5.1 --with-iconv=no ... ... ... R is now configured for sparc-sun-solaris2.8 Source directory: . Installation directory: /SOURCES/R-2.5.1 C compiler: gcc
2004 Sep 17
1
R CMD check does not checks for superfluous documentation (PR#7231)
Hi! Due to package maintenance I have removed some functions but forgot to update the coresponding Rd files. If R CMD check is checking for missing documentation entries why it does not check for documentation entries which tell the user about nonexisting funcitons? In my opinion checking for documentation entries that document non-existing functions is much more important than the other way
2003 Dec 09
1
Maybe some bug on sapply and cbind (PR#5628)
Full_Name: Drouilhet R?my Version: 1.8.1 OS: Linux Submission from: (NULL) (195.221.43.136) Hi!!! Is there some mistake? This is some part of one of my R programs. I created this function to show you the trouble!!! bugTest<-function() { paramnames <- c("mean","sd") param <- list(expression(1),expression(2)) paramtmp <- list(mean=0,sd=1) if(length(param))
2015 Oct 29
2
R CMD BATCH vs R CMD batch
Deepayan Sarkar <deepayan.sarkar at gmail.com> writes: > On Thu, Oct 29, 2015 at 2:09 PM, Rainer M Krug <Rainer at krugs.de> wrote: >> Dirk Eddelbuettel <edd at debian.org> writes: >> >>> On 28 October 2015 at 21:39, Marius Hofert wrote: >>> | Out of laziness I just used "R CMD batch" instead of "R CMD BATCH". I >>> |
2015 Oct 29
2
R CMD BATCH vs R CMD batch
Dirk Eddelbuettel <edd at debian.org> writes: > On 28 October 2015 at 21:39, Marius Hofert wrote: > | Out of laziness I just used "R CMD batch" instead of "R CMD BATCH". I > | didn't get an error so didn't think about the consequences... One > | consequence is (at least on Mac OS X 10.11 but probably in more > | generality) that R_BATCH_OPTIONS are
2015 Jan 22
5
Programming Tools CTV
I've had a lot of requests for additions to the reproducible research task view that fall into a grey area (to me at least). For example, roxygen2 is a tool that broadly enable reproducibility but I see it more as a tool for better programming. I'm about to check in a new version of the task view that includes packrat and checkpoint, as they seem closer to reproducible research, but also
2003 Sep 10
2
R 1.8.0 alpha
The countdown to R version 1.8.0 has begun. As a novelty, we now make preliminary source tarballs available somewhat earlier in the process. They will be found in http://cran.us.r-project.org/src/base with names of the form R-1.8.0alpha_2003-09-10.tar.gz The first one was created a moment ago; subsequent ones will be created by a cron job that runs at 05:00 local (Wisconsin) time. There are
2003 Sep 10
2
R 1.8.0 alpha
The countdown to R version 1.8.0 has begun. As a novelty, we now make preliminary source tarballs available somewhat earlier in the process. They will be found in http://cran.us.r-project.org/src/base with names of the form R-1.8.0alpha_2003-09-10.tar.gz The first one was created a moment ago; subsequent ones will be created by a cron job that runs at 05:00 local (Wisconsin) time. There are
2013 Apr 20
3
R CMD build
I have no idea where I must R CMD build... I am using Windows 7 wiht pearl installed http://stat.ethz.ch/R-manual/R-patched/library/utils/html/PkgUtils.html its completely unclear for me ... sorry Knut
2006 May 25
1
Building Libraries
Dear List, I have just compiled my first R library for submission to CRAN; however, I have a tiny problem with 'R CMD check' that is holding me back. I have read extensively the PDF document on Writing R Extensions and the 'Making R Packages Under Windows' tutorial by P. Rossi. All functions are given in R code (no C/C++/Fortran) with two very simple demonstration datasets. My
2007 Jul 26
2
Rd2dvi (PR#9812)
Is this a bug-- ------------------------------------------------------------------------------- <234>% R CMD Rd2dvi base.Rd Converting Rd files to LaTeX ... base.Rd Can't use an undefined value as filehandle reference at /opt/R-2.5.1/lib/R/share/perl/R/Rdconv.pm line 78. ENCS is Creating dvi output from LaTeX ... Saving output to 'base.dvi' ... cp: cannot access
2007 May 01
1
R CMD Rdconv drops sections: arguments, seealso, examples (PR#9649)
On Mon, 30 Apr 2007 bill at insightful.com wrote: > On Tue, 10 Apr 2007 timh at insightful.com wrote: > > > I've created a .Rd file (below), then converted that to .sgml using > > R CMD Rdconv --type=Ssgm combn.Rd > combn.sgml > > The output (shown below) is missing some of the sections: > > arguments > > seealso > > examples > > If
2005 Jul 11
2
ActiveState Perl, cygwin and R (was: cygwin tar?)
Hello! I have just read mails in thread <http://tolstoy.newcastle.edu.au/R/devel/04a/0583.html> about problems with Cygwin and Rtools. I had the same problems and kept just the newest cygwin1.dll and things seem OK now. However I currently hit the problem with Perl (I have ActiveState and Cygwin Perl installed). When I tried to work with 'Rdconv' in Cygwin I get the following: $
2002 Jan 09
3
Build R Packages (man)
Hi there, I'm trying to get the manual for an R package (that I'm creating) to work... Firstly, I created the *.Rd files (by following the instructions in "Writing R Extensions" and using prompt() in R, then edit the *.Rd files. I then copy them into the "pkg/man" directory as suggested by the manual. However when I load the library (successfully) in R, I cannot