~showard314/ubuntu/karmic/r-base/remove_start_comments

« back to all changes in this revision

Viewing changes to src/library/graphics/R/axis.R

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2009-01-19 12:40:24 UTC
  • mfrom: (5.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090119124024-abxsf4e0y7713w9m
Tags: 2.8.1-2
debian/control: Add another Build-Depends: exclusion for the 
'kfreebsd-i386 kfreebsd-amd64 hurd-i386' architecture to openjdk-6-jdk.
Thanks to Petr Salinger for the heads-up.               (Closes: 512324)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
axis <- function(side, at = NULL, labels = TRUE, tick = TRUE, line = NA,
18
18
                 pos = NA, outer = FALSE, font = NA,
19
 
                 lty = "solid", lwd = 1, col = NULL,
 
19
                 lty = "solid", lwd = 1, lwd.ticks = lwd,
 
20
                 col = NULL, col.ticks = NULL,
20
21
                 hadj = NA, padj = NA, ...)
21
22
{
22
23
    ## we need to do this as the C code processes 'col' before '...'
28
29
    ## axis(1, at = my.at <- 10^(1:5), labels = formatC(my.at, format="fg"))
29
30
    ## which depends on the order of evaluation of the args.
30
31
    .Internal(axis(side, at, as.graphicsAnnot(labels),
31
 
                   tick, line, pos, outer, font, lty, lwd, col, hadj, padj, ...))
 
32
                   tick, line, pos, outer, font, lty, lwd, lwd.ticks,
 
33
                   col, col.ticks, hadj, padj, ...))
32
34
}
33
35
 
34
36