similar to: R-beta: Version 6 of R: Use Gnu Make

Displaying 20 results from an estimated 8000 matches similar to: "R-beta: Version 6 of R: Use Gnu Make"

1998 May 06
1
R-beta: R-0.61.3 "Color Allocation Error"
Running R under Solaris 2.5.1 I get "Color allocation error". the offending line is lines(x,col="green4",lty="dotted") from the "graphics" demo Any suggestions? The same program runs fine under linux, BTW. Ina --------------------- Ina Dau Computer Administrator - Room 101 - Pearson Building - UCL email: i.dau at ucl.ac.uk Phone: +44-171-4193636 snail:
1997 Jun 02
2
R-beta: Postscript command fails
We are getting the following error: > postscript(file="Rplot.ps") Error in device("postscript", as.character(c(file, paper, family, bg, : unable to start device postscript This is R-0.49 under SunOS 4.1.3 and under Linux (kernel 2.0.0). The command worked fine on R-0.14 under the 2 above operating systems. Any ideas? Ina
2008 Apr 12
1
2.7.0 beta (rev 45263) failing 'make vignettes'
Dear list, On Fedora 8 I downloaded the beta version of R via svn. make and make check-all worked fine, but make vignettes is failing with: make[1]: Entering directory `/home/gavin/R/2-7-patched/build/src/library' building/updating vignettes for package 'grid' ... processing 'displaylist.Snw' /usr/bin/texi2dvi: pdflatex exited with bad status, quitting. Error in
2001 May 08
2
libao AU driver
Hi, I noticed there was some discussion on this list about the desire for ogg123 to support output to stdout via Sun's .au file format, so I decided to give implementing an AU driver for libao a shot. Here is my first attempt. To test the driver: * Apply the patch below (against ao in CVS) * Copy the attached ao_au.c into ao/src * Run ao/autogen.sh, compile, and
2006 May 20
1
intervals from cut() as numerics?
Hi, Given some example data: dat <- seq(4, 7, by = 0.05) x <- sample(dat, 30) y <- sample(dat, 30) error <- x - y I have broken the rage of x into 10 groups and I can calculate the bias (mean(error)) for each of these 10 groups: groups <- cut(x, breaks = 10) max.bias <- aggregate(error, list(group = groups), mean) max.bias group x 1 (4,4.3] -0.7750000 2
2010 Nov 10
0
OT : R Applications for Force.com/ Salesforce
No I am not on the payroll for these people. or any relation of any kind ;) I just like cloud computing thats all Appreciate your kind consideration Mr Simpson- I was not sure of the list so mailed all 3- . The subject line has been modified-hopefully there should be a technical answer to a technical question. Websites- http://decisionstats.com http://dudeofdata.com Linkedin-
2007 Aug 03
0
correct Rd markup for \value{}
Dear DevelopeRs Several functions in a package of mine have complex returned objects that are lists within the returned list. I wish to document each of the components of these sublists. If I do this within a \value{} section and nest \item within an existing \item, I get indented R-help sections in the standard help view (eg as shown by ?foo in Linux), but not in the PDF. For example:
2012 Feb 20
1
Controlling simplification in apply()?
Dear list, Fully according to the documented behaviour, I was bitten by apply() simplifying results to vectors or arrays when the lengths of the individual objects returns by FUN are the same (over simplification). sapply() has argument simplify with default TRUE to control whether it attempts to simplify the returned objects or not. I do find it a little annoying that one is not able to force
2006 Jul 18
1
RSiteSearch() not in posting guide
Hi, In a recent reply I sent to the list, my initial response was to suggest, politely that by reading the posting guide and learning to use the supplied tools one can often help oneself. I then went on to say that reading the posting guide would have led you to RSiteSearch("insert query"). Luckily I went to the posting guide to check this was there before posting and much to my
2006 Jun 16
1
problem with legend on other graphics devices
Hi, I have a bit of a problem with a legend in png, eps and pdf plots produced from a custom plotting function. I was writing a little function to produce some stock plots for a routine analysis conducted in our lab. I have a wrapper function figures() (see below) that produces eps, png and pdf versions of the lab output. When I draw the plot on the X11() device the correct amount of space is
2007 Jan 06
1
listing all functions in R
Dear List, I'm building an R syntax highlighting file for GeSHi [*] for a website I am currently putting together. The syntax file needs a list of keywords to highlight. How can I generate a list of all the functions in a base R installation? Ideally the list would be formatted like this: "'fun1', 'fun2', 'fun3'" when printed to the screen so I can copy
2007 Sep 20
2
Plotmath issue superscript "-"
Dear List, I'm trying to typeset some chemical ions in axis labels. These have both super and subscript components, and for some, I need a superscript "-". In LaTeX I might use $NO_3^-$ to do the typesetting, but I'm having a problem getting the correct invocation for expression: > expression(NO^{-}[3]) Error: syntax error, unexpected '}' in
2007 Apr 10
1
CRAN packages maintained by you
On Sat, 2007-04-07 at 08:40 +0200, Kurt Hornik wrote: > Dear maintainers of CRAN packages, > > This concerns the packages <snip /> > > And now keep the updates rolling in ... Dear R Developers, I was recently emailed by the CRAN maintainers about warnings for my two packages, analog and cocorresp, that are on CRAN. I have built both packages (the versions on CRAN plus
2011 Mar 27
1
Bug in tools::compactPDF() in 2.13-0-alpha
Dear List, There seems to be an bug in compactPDF() or at least an inconsistency with the documented behaviour. The documentations states: Details: This by default makes use of ?qpdf?, available from <URL: http://qpdf.sourceforge.net/>, including a Windows binary. If ?gs_cmd? is non-empty, GhostScript is used. I don't have qpdf on my system so planned to use
2011 Nov 07
0
SUCCESS
finally R 2.14 runs for me on fedora linux !!!!!! thanks to gavin, marc, jose and pierre for helping me. but especially gavin. I still have to clean things up and make install instructions so I can send it to this list. But first I need to sleep. I will send the instructions later today since that's absolutely THE LEAST i can do. I haven't gotten much sleep the last couple of days and my
2006 Apr 25
1
Running R on Windows 2000 Terminal Services
Dear list, My employer uses a Windows 2000 Terminal Server-based system for its college-wide managed computer service - computers connect directly to the WTS servers for their sessions, using a Citrix ICA client. When I asked them to install R (Windows) on an older version of this service the IT guys installed it but pulled it for performance issues. I am trying to get them to try again but
2009 Aug 26
1
Batch replacement, by factor, of values in a data frame
Dear List, I'm wondering if there is a better/cleaner/more efficient way of replacing 0 values in a variable with the minimum of the non-missing and non-zero values of that same variable, but doing it within the levels of a factor? Consider the dummy example data presented at the end of my message. Within each 'Site' there are some 0 values and possibly some NA's. I can compute
2010 Dec 02
0
venneuler() - customize a few things
Hi, I was wondering if it would be possible to print the counts of common items in the venneuler() diagrams. Anybody knows a straightforward idea? I can always count things from the data matrix, but I have vectors with 50 thousands elements. thanks Francesco -- -------------------------------------- *Francesco Lescai, PhD* Research Associate in Genome Analysis Faculty of Biomedical Sciences,
2010 Aug 06
1
Latex errors when checking package
Dear listers, I just run R CMD check on an update of one of my packages. All seems fine but after having gone through all the Rd-file and example checking and so on, I get the following kind of errors: LaTeX errors when creating PDF version. This typically indicates Rd problems. LaTeX errors found: ! Font T1/ptm/m/n/10=ptmr8t at 10.0pt not loadable: Metric (TFM) file not found . <to be read
2007 Jun 23
2
Names of objects passed as ... to a function?
Dear list, I have a function whose first argument is '...'. Each element of '...' is a data frame, and there will be at least 2 data frames in '...'. The function processes each of the data frames in '...' and returns a list, whose components are the processed data frames. I would like to name the components of this returned list with the names of the original data