1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857
|
### Copyright (C) 2001-2006 Deepayan Sarkar <Deepayan.Sarkar@R-project.org>
###
### This file is part of the lattice package for R.
### It is made available under the terms of the GNU General Public
### License, version 2, or at your option, any later version,
### incorporated herein by reference.
###
### This program is distributed in the hope that it will be
### useful, but WITHOUT ANY WARRANTY; without even the implied
### warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
### PURPOSE. See the GNU General Public License for more
### details.
###
### You should have received a copy of the GNU General Public
### License along with this program; if not, write to the Free
### Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
### MA 02110-1301, USA
## (By popular demand) function to get axis limits of current panel
current.panel.limits <- function(unit = "native")
{
list(xlim = convertX(unit(c(0,1), "npc"), unit, valueOnly=TRUE),
ylim = convertY(unit(c(0,1), "npc"), unit, valueOnly=TRUE))
}
## Functions to compute axis tick mark positions and labels. From
## lattice 0.14 onwards, there will be user specifiable functions (one
## each for the x and y axes) that does this. The function defined
## here is intended to serve as the default choice for that function.
## The goal is to make anything reasonable possible, so suggested
## changes to the API will be considered. The tentative plan is to
## specify them as optional arguments, e.g. xyplot(...,
## xscale.components = function(lim, ...) list(...))
## NOTE: A LOT OF CODE WILL NEED TO BE CHANGED ELSEWHERE TO SUPPORT
## THIS. ONE APPROACH MIGHT BE TO EXPOSE THE API AND DEAL WITH THE
## DETAILS AFTER R 2.4.0 IS RELEASED.
## This function is intended to work with one packet at a time. It
## will be called only once when relation=same, and once for each
## packet otherwise. The major difference is that there can be
## different things on opposite sides (left/right or top/bottom),
## e.g. both transformed and original axes on log transformed data.
## The output can be a list with tick locations, labels, etc. I also
## considered allowing it to be a ``grob''. (I don't necessarily
## endorse the idea of having a grid dependency built into the Trellis
## object, as opposed to just the plotting procedure, but that ship
## has sailed a long time back: xlab, main, etc can already be grobs.)
## However, this is difficult to implement, and I don't even know how
## to design a grob that will be properly coordinated with the axes.
## Anyone who can figure that out will also be capable of writing a
## custom axis function.
## Output formats: The output is a list of the form
## list(num.limit = ..., left=..., right=...) or
## list(num.limit = ..., bottom=..., top=...)
## num.limit is the numeric range suggested
## right and top can be logical: TRUE means same as left/bottom, FALSE
## means to be omitted. Prior default behaviour corresponds to TRUE
## for relation=same, FALSE otherwise. They can also be like
## left/bottom, whose possible values are described next.
## One thing to remember is that tick marks and labels are treated
## separately. This strategy has worked successfully in the past, and
## I'm not willing to give it up (mostly because I'm not really sure
## how to create a single grob that combines both, and then can be
## used to determine widths/heights (even if I could, I'm sure the
## calculations will be slower)). So, the output will be like
## left =
## list(ticks = list(at = ..., tck = ...),
## labels =
## list(at = ..., labels = ..., check.overlap = TRUE))
## or
## left =
## list(ticks = list(at = ..., tck = ...),
## labels = textGrob("foo"))
xscale.components.default <-
function(lim,
packet.number = 0,
packet.list = NULL,
top = TRUE,
...)
{
comps <-
calculateAxisComponents(lim, packet.list = packet.list,
packet.number = packet.number, ...)
list(num.limit = comps$num.limit,
bottom =
list(ticks = list(at = comps$at, tck = 1),
labels =
list(at = comps$at,
labels = comps$labels,
check.overlap = comps$check.overlap)),
top = top)
}
## should be same as above with s/bottom/left/g and s/top/right/g
yscale.components.default <-
function(lim,
packet.number = 0,
packet.list = NULL,
right = TRUE,
...)
{
comps <-
calculateAxisComponents(lim, packet.list = packet.list,
packet.number = packet.number, ...)
list(num.limit = comps$num.limit,
left =
list(ticks = list(at = comps$at, tck = 1),
labels =
list(at = comps$at,
labels = comps$labels,
cex = 1,
check.overlap = comps$check.overlap)),
right = right)
}
## default function to draw axes. This (or its user-specified
## replacement) will be called once for each side of each panel,
## regardless of whether relation == "same".
axis.default <-
function(side = c("top", "bottom", "left", "right"),
scales, components, as.table,
labels = c("default", "yes", "no"),
ticks = c("default", "yes", "no"),
...,
prefix = lattice.getStatus("current.prefix"))
{
side <- match.arg(side)
labels <- match.arg(labels)
ticks <- match.arg(ticks)
row <- lattice.getStatus("current.focus.row", prefix = prefix)
column <- lattice.getStatus("current.focus.column", prefix = prefix)
panel.layout <- trellis.currentLayout("panel", prefix = prefix)
layout.dim <- dim(panel.layout)
determineStatus <- function(x)
{
## whether the relevant component of 'components' wants us to
## draw something here
if (is.null(x) || (is.logical(x) && !x)) FALSE
else TRUE
}
lastPanel <- function()
{
## is this the last panel? In that case, it is considered to
## be ``on the boundary'' on the right side.
((pn <- panel.number(prefix = prefix)) > 0 && pn == max(panel.layout))
}
atBoundary <- function()
{
switch(side,
top = if (as.table) row == 1 else row == layout.dim[1],
bottom = if (!as.table) row == 1 else row == layout.dim[1],
left = column == 1,
right = column == layout.dim[2] || lastPanel())
}
## FIXME: what about scales$relation ?
do.ticks <-
switch(ticks,
yes = TRUE,
no = FALSE,
default = scales$draw && determineStatus(components[[side]]) &&
(if (scales$relation == "same") atBoundary() else TRUE))
do.labels <-
switch(labels,
yes = TRUE,
no = FALSE,
default =
scales$draw &&
(if (scales$relation == "same") {
atBoundary() &&
## rule: if (alternating[row/column] %in% c(2, 3)) for
## a ``boundary'' panel, then draw, otherwise don't.
switch(side,
top = rep(scales$alternating, length.out = column)[column] %in% c(2, 3),
bottom = rep(scales$alternating, length.out = column)[column] %in% c(1, 3),
left = rep(scales$alternating, length.out = row)[row] %in% c(1, 3),
right = rep(scales$alternating, length.out = row)[row] %in% c(2, 3))
} else TRUE))
if (do.ticks || do.labels)
{
comp.list <-
switch(side,
top = if (is.logical(components[["top"]]) && components[["top"]])
components[["bottom"]] else components[["top"]],
bottom = components[["bottom"]],
left = components[["left"]],
right = if (is.logical(components[["right"]]) && components[["right"]])
components[["left"]] else components[["right"]])
scales.tck <-
switch(side,
left = ,
bottom = scales$tck[1],
right = ,
top = scales$tck[2])
if (!is.logical(comp.list)) ## must be FALSE if it is
{
if (do.ticks)
panel.axis(side = side,
at = comp.list$ticks$at,
labels = FALSE,
draw.labels = FALSE,
check.overlap = FALSE,
outside = TRUE,
ticks = TRUE,
tck = scales.tck * comp.list$ticks$tck,
...)
if (do.labels)
panel.axis(side = side,
at = comp.list$labels$at,
labels = comp.list$labels$labels,
draw.labels = TRUE,
check.overlap = comp.list$labels$check.overlap,
outside = TRUE,
ticks = FALSE,
tck = scales.tck * comp.list$ticks$tck,
...)
}
}
}
## FIXME: Long term goal: some of the following code is possibly too
## cautious. A review might make the code simpler without substantial
## drawbacks (the point being that we know exactly how the code is
## being called).
calculateAxisComponents <-
function(x, ...,
## ignored, but needs to be caught:
packet.number, packet.list,
abbreviate = NULL, minlength = 4)
## This aims to be a general function which given a general
## 'range' x and optional at, generates the locations of tick
## marks and corresponding labels.
## x is guaranteed to be given (possibly NA). Possible cases
## correspond to factors (character/expression), shingle (see
## below), "POSIXt", "date" and usual numeric. The last case will
## be default, and will be changed later if necessary.
## Theres no need to handle shingles specially. Shingles can also
## be thought of as numeric, and thus the default is more
## appropriate for functions like xyplot. In functions like
## bwplot, things will be adjusted elsewhere when one of the
## variables is a shingle.
## Note that at and labels will never be TRUE (it's set up that
## way), so it's enough to check if they are is.logical(), which
## means they are not explicitly specified.
## The variables about log scales are required for cases where at
## is explicitly specified. In such cases, at will be
## log(at,base=logbase), but labels would correspond to at.
{
if (all(is.na(x)))
return(list(at = numeric(0),
labels = numeric(0),
check.overlap = TRUE,
num.limit = c(0,1)))
## Get ticks and labels depending on x (generic defined below)
ans <- formattedTicksAndLabels(x, ...)
## remove labels outside limits
rng <- range(ans$num.limit)
ok <- ans$at >= min(rng) & ans$at <= max(rng)
ans$at <- ans$at[ok]
ans$labels <- ans$labels[ok]
## abbreviate labels if requested
if (is.logical(abbreviate) && abbreviate)
ans$labels <- abbreviate(ans$labels, minlength)
ans
}
formattedTicksAndLabels <- function(x, ...)
UseMethod("formattedTicksAndLabels")
## quick and dirty fix: have methods for all sorts of objects, even
## ones in other packages (like chron)
formattedTicksAndLabels.default <-
function(x,
at = FALSE,
used.at = NULL,
labels = FALSE,
logsc = FALSE,
...,
num.limit = NULL,
abbreviate = NULL,
minlength = 4,
format.posixt = NULL,
equispaced.log = TRUE)
## meant for when x is numeric
{
rng <-
if (length(x) == 2) as.numeric(x)
else range(as.numeric(x))
## str(list(x = x, num.limit = num.limit,
## rng = rng, equispaced.log = equispaced.log))
## handle log scale (most other methods ignore logsc)
if (is.logical(logsc) && logsc) logsc <- 10
have.log <- !is.logical(logsc)
if (have.log)
logbase <-
if (is.numeric(logsc)) logsc
else if (logsc == "e") exp(1)
else stop("Invalid value of 'log'")
logpaste <-
if (have.log) paste(as.character(logsc), "^", sep = "")
else ""
## will check for overlap only when neither at nor labels is specified
check.overlap <-
if (is.logical(at) && is.logical(labels)) TRUE
else FALSE
if (is.logical(at)) ## at not explicitly specified
{
at <-
if (have.log && !equispaced.log) # FIXME: num.limit instead of rng?
checkArgsAndCall(axisTicks, list(usr = log10(logbase^rng),
log = TRUE, axp = NULL, ...))
else
checkArgsAndCall(pretty, list(x = x[is.finite(x)], ...))
}
else if (have.log && (length(at) > 0)) ## 'at' specified but not NULL
{
if (is.logical(labels)) labels <- as.character(at)
at <- log(at, base = logbase)
}
if (is.logical(labels))
{
if (have.log && !equispaced.log)
{
labels <- as.character(at)
at <- log(at, logbase)
}
else labels <- paste(logpaste, format(at, trim = TRUE), sep = "")
}
list(at = at, labels = labels,
check.overlap = check.overlap,
num.limit = rng)
}
formattedTicksAndLabels.date <-
function(x, at = FALSE,
used.at = NULL,
...,
num.limit = NULL,
labels = FALSE,
logsc = FALSE,
abbreviate = NULL,
minlength = 4,
format.posixt = NULL)
{
## handle log scales (not very meaningful, though)
if (is.logical(logsc) && logsc) logsc <- 10
have.log <- !is.logical(logsc) || logsc
logbase <-
if (is.numeric(logsc)) logsc
else exp(1)
## will check for overlap only when neither at nor labels is specified
check.overlap <-
if (is.logical(at) && is.logical(labels)) TRUE
else FALSE
if (is.logical(at)) ## at not explicitly specified
{
at <- as.integer(pretty(x[is.finite(x)], ...))
class(at) <- "date"
datelabels <- as.character(at)
}
else if (have.log && (length(at) > 0))
{
if (is.logical(labels)) labels <- as.character(at)
at <- log(at, base = logbase)
}
list(at = at,
labels = if (is.logical(labels)) datelabels else labels,
check.overlap = check.overlap,
num.limit = if (length(x) == 2) as.numeric(x) else as.numeric(range(x)))
}
## The next two are actually identical
formattedTicksAndLabels.character <-
function (x,
at = FALSE,
used.at = NULL,
labels = FALSE,
logsc = FALSE,
...,
num.limit = NULL,
abbreviate = NULL,
minlength = 4,
format.posixt = NULL)
{
retain <- if (is.null(used.at) || any(is.na(used.at))) TRUE else used.at
## OLD: ans <- list(at = if (is.logical(at)) seq_along(x)[retain] else at,
## labels = if (is.logical(labels)) x[retain] else labels,
## check.overlap = FALSE)
ans <- list()
ans$at <- if (is.logical(at)) seq_along(x)[retain] else at
ans$labels <- if (is.logical(labels)) {
if (all(ans$at %in% seq_along(x)))
x[ans$at]
else ## meaningless at, since not corresponding to values
as.character(ans$at) # best guess
} else labels
ans$check.overlap <- FALSE
ans$num.limit <-
c(-1, 1) * lattice.getOption("axis.padding")$factor +
if (is.null(num.limit) || any(is.na(num.limit)))
c(1, length(x)) ## WAS range(ans$at), not sure why
else num.limit
ans
}
formattedTicksAndLabels.expression <-
function(x,
at = FALSE,
used.at = NULL,
labels = FALSE,
logsc = FALSE,
...,
num.limit = NULL,
abbreviate = NULL,
minlength = 4,
format.posixt = NULL)
{
retain <- if (is.null(used.at) || any(is.na(used.at))) TRUE else used.at
ans <- list()
ans$at <- if (is.logical(at)) seq_along(x)[retain] else at
ans$labels <- if (is.logical(labels)) {
if (all(ans$at %in% seq_along(x)))
x[ans$at]
else ## meaningless at, since not corresponding to values
as.character(ans$at) # best guess
} else labels
ans$num.limit <- c(-1, 1) * lattice.getOption("axis.padding")$factor +
if (is.null(num.limit) || any(is.na(num.limit))) ## range(ans$at)
c(1, length(x))
else num.limit
ans
}
## method for "Date" (using pretty.Date)
## and POXIXct (using pretty.POSIXt)
formattedTicksAndLabels.Date <-
formattedTicksAndLabels.POSIXct <-
function(x,
at = FALSE,
used.at = NULL,
labels = FALSE,
logsc = FALSE,
...,
num.limit = NULL,
abbreviate = NULL,
minlength = 4,
format.posixt = NULL)
{
num.lim <-
if (length(x) == 2) as.numeric(x)
else range(as.numeric(x), na.rm = TRUE)
if (!is.logical(labels)) ## no need to do anything
{
if (missing(at) || length(at) != length(labels))
stop("'at' missing or incompatible with 'labels'")
return(list(at = at,
labels = labels,
check.overlap = FALSE,
num.limit = num.lim))
}
mat <- is.logical(at)
if (mat) ## at not explicitly specified
{
at <- pretty(x, ...)
if (is.null(format.posixt))
labels <- attr(at, "labels")
else
labels <- format(at, format = format.posixt)
}
else
{
if (is.null(format.posixt))
format.posixt <- ""
labels <- format(at, format = format.posixt)
}
list(at = as.numeric(at),
labels = labels,
check.overlap = mat,
num.limit = num.lim)
}
## chron 'chron' objects: dates and times
formattedTicksAndLabels.chron <-
function(x, at = FALSE, ...)
{
if (!inherits(x, "times"))
x <- chron::chron(x)
x <- as.POSIXct(x)
attr(x, "tzone") <- "GMT"
if (!is.logical(at)) { ## at was explicitly specified
at <- as.POSIXct(at)
attr(at, "tzone") <- "GMT"
}
ans <- formattedTicksAndLabels(x, at = at, ...)
ans$at <- ans$at / 86400
ans$num.limit <- ans$num.limit / 86400
ans
}
## chron 'dates' objects: only dates (no times here because caught by 'chron' method)
formattedTicksAndLabels.dates <-
function(x, ...)
{
if (!inherits(x, "times"))
x <- chron::chron(x)
formattedTicksAndLabels(as.Date(x), ...)
}
## chron 'times' objects: only times (no dates here because caught by 'dates' method)
formattedTicksAndLabels.times <-
function(x, labels = FALSE, ..., format.posixt = NULL, simplify = TRUE)
{
ans <- formattedTicksAndLabels(chron::chron(dates = x), labels = labels,
format.posixt = format.posixt, ...)
if (is.logical(labels)) { ## labels not specified
if (is.null(format.posixt)) { ## format not specified
at <- chron::chron(times = ans$at)
## format.times will revert to numeric format if any > 1
if (max(abs(at)) <= 1) ## 'x' might exceed 1
labels <- format(at - floor(at), simplify = simplify)
else labels <- format(at, simplify = simplify)
ans$labels <- labels
}
}
ans
}
OLD_formattedTicksAndLabels.times <-
function(x, at = FALSE, used.at = NULL,
num.limit = NULL, labels = FALSE, logsc = FALSE,
abbreviate = NULL, minlength = 4, simplify = TRUE,
...,
format.posixt = NULL)
{
## most arguments ignored for now
check.overlap <-
if (is.logical(at) && is.logical(labels)) TRUE
else FALSE
if (!inherits(x, "times"))
x <- chron::chron(x)
bad <- is.na(x) | abs(as.vector(x)) == Inf
## rng <- extend.limits(range(as.numeric(x[!bad])))
rng <- range(as.numeric(x[!bad]))
tmp <- pretty(rng, ...)
att <- attributes(x)
at <-
structure(tmp, # [tmp >= rng[1] & tmp <= rng[2]],
format = att$format,
origin = att$origin,
class = att$class)
if (inherits(at, "chron"))
class(at) <- class(at)[-1]
if (is.logical(labels)) ## labels unspecified
{
if (!inherits(x, "dates"))
{
at[c(1, length(at))] <- range(x)
if (max(at) == 1)
labels <- format(at - trunc(at), simplify = simplify)
else labels <- format(at, simplify = simplify)
}
else labels <- format(at, simplify = simplify)
}
## invisible(list(n = n, at = at, labels = labels))
list(at = as.numeric(at), labels = labels,
check.overlap = check.overlap,
num.limit = if (length(x) == 2) as.numeric(x) else rng)
}
panel.axis <-
function(side = c("bottom", "left", "top", "right"),
at = pretty(scale.range),
labels = TRUE,
draw.labels = TRUE,
check.overlap = FALSE,
outside = FALSE,
ticks = TRUE,
half = !outside, ## whether only half of the ticks will be labeled
which.half = switch(side, bottom = "lower", left = "upper", top = "upper", right = "lower"),
tck = as.numeric(ticks),
rot = if (is.logical(labels)) 0 else c(90, 0),
text.col = axis.text$col,
text.alpha = axis.text$alpha,
text.cex = axis.text$cex,
text.font = axis.text$font,
text.fontfamily = axis.text$fontfamily,
text.fontface = axis.text$fontface,
text.lineheight = axis.text$lineheight,
line.col = axis.line$col,
line.lty = axis.line$lty,
line.lwd = axis.line$lwd,
line.alpha = axis.line$alpha)
{
side <- match.arg(side)
at.missing <- missing(at)
orientation <- if (outside) "outer" else "inner"
cpl <- current.panel.limits()
scale.range <-
range(switch(side,
left = cpl$ylim,
top = cpl$xlim,
right = cpl$ylim,
bottom = cpl$xlim))
axis.line <- trellis.par.get("axis.line")
axis.text <- trellis.par.get("axis.text")
rot <- rep(rot, length.out = 2) ## for x- and y-axes respectively
if (is.null(at) || length(at) == 0) return()
## get labels from at if unspecified
if (is.logical(labels))
labels <-
if (labels) format(at, trim = TRUE)
else NULL
else if (at.missing)
warning("specifying 'labels' but not 'at' may lead to unexpected results")
if (check.overlap) ## remove ticks close to limits
{
pad <- lattice.getOption("skip.boundary.labels")
scale.range <- extend.limits(scale.range, prop = -pad)
}
## skip ticks outside (or close to) axis limits
keep.at <- at >= scale.range[1] & at <= scale.range[2]
at <- at[keep.at]
labels <- labels[keep.at]
nal <- length(at) / 2 + 0.5
all.id <- seq_along(at)
lower.id <- all.id <= nal
upper.id <- all.id >= nal
axid <-
if (half)
{
if (which.half == "lower") lower.id else upper.id
}
else rep(TRUE, length(all.id))
if (!any(axid)) return(invisible())
gp.line <- gpar(col = line.col, alpha = line.alpha,
lty = line.lty, lwd = line.lwd)
gp.text <- gpar(col = text.col, cex = text.cex, alpha = text.alpha,
fontface = chooseFace(text.fontface, text.font),
fontfamily = text.fontfamily, lineheight = text.lineheight)
## We now compute some spacing information based on settings
## (combining trellis settings and the (newer) lattice.options).
## These can only be controlled via these settings and not by
## arguments to this function, for convenience for one thing, and
## also because the same settings will be used elsewhere to leave
## appropriate space.
## unit representing tick marks
axis.units <- lattice.getOption("axis.units")[[orientation]][[side]]
## axis.units is of the form:
## list(outer = list(left = list(tick=, pad1=, pad2=), top = list(...), ...),
## inner = list(...) )
axis.settings <- trellis.par.get("axis.components")[[side]]
tck.unit.x <- tck * axis.settings$tck * axis.units$tick$x
tck.unit <- unit(x = tck.unit.x, units = axis.units$tick$units)
lab.unit <-
if (any(tck.unit.x > 0)) tck.unit + unit(x = axis.settings$pad1 * axis.units$pad1$x, units = axis.units$pad1$units)
else unit(x = axis.settings$pad1 * axis.units$pad1$x, units = axis.units$pad1$units)
orient.factor <- if (outside) -1 else 1
if (ticks && any(tck.unit.x != 0))
switch(side,
bottom =
grid.segments(x0 = unit(at[axid], "native"),
x1 = unit(at[axid], "native"),
y0 = unit(0, "npc"),
y1 = orient.factor * tck.unit,
name = trellis.grobname("ticks.bottom",
type="panel"),
gp = gp.line),
top =
grid.segments(x0 = unit(at[axid], "native"),
x1 = unit(at[axid], "native"),
y0 = unit(1, "npc"),
y1 = unit(1, "npc") - orient.factor * tck.unit,
name = trellis.grobname("ticks.top",
type="panel"),
gp = gp.line),
left =
grid.segments(y0 = unit(at[axid], "native"),
y1 = unit(at[axid], "native"),
x0 = unit(0, "npc"),
x1 = orient.factor * tck.unit,
name = trellis.grobname("ticks.left",
type="panel"),
gp = gp.line),
right =
grid.segments(y0 = unit(at[axid], "native"),
y1 = unit(at[axid], "native"),
x0 = unit(1, "npc"),
x1 = unit(1, "npc") - orient.factor * tck.unit,
name = trellis.grobname("ticks.right",
type="panel"),
gp = gp.line))
if (draw.labels && !is.null(labels))
{
{
just <-
if (outside)
switch(side,
bottom = if (rot[1] == 0) c("centre", "top") else c("right", "centre"),
top = if (rot[1] == 0) c("centre", "bottom") else c("left", "centre"),
left = if (rot[2] == 90) c("centre", "bottom") else c("right", "centre"),
right = if (rot[2] == 90) c("centre", "top") else c("left", "centre"))
else
switch(side,
bottom = if (rot[1] == 0) c("centre", "bottom") else c("left", "centre"),
top = if (rot[1] == 0) c("centre", "top") else c("right", "centre"),
left = if (rot[2] == 90) c("centre", "top") else c("left", "centre"),
right = if (rot[2] == 90) c("centre", "bottom") else c("right", "centre"))
}
switch(side,
bottom =
grid.text(label = labels[axid],
x = unit(at[axid], "native"),
y = orient.factor * lab.unit,
rot = rot[1],
check.overlap = check.overlap,
just = just,
name = trellis.grobname("ticklabels.bottom",
type="panel"),
gp = gp.text),
top =
grid.text(label = labels[axid],
x = unit(at[axid], "native"),
y = unit(1, "npc") - orient.factor * lab.unit,
rot = rot[1],
check.overlap = check.overlap,
just = just,
name = trellis.grobname("ticklabels.top",
type="panel"),
gp = gp.text),
left =
grid.text(label = labels[axid],
y = unit(at[axid], "native"),
x = orient.factor * lab.unit,
rot = rot[2],
check.overlap = check.overlap,
just = just,
name = trellis.grobname("ticklabels.left",
type="panel"),
gp = gp.text),
right =
grid.text(label = labels[axid],
y = unit(at[axid], "native"),
x = unit(1, "npc") - orient.factor * lab.unit,
rot = rot[2],
check.overlap = check.overlap,
just = just,
name = trellis.grobname("ticklabels.right",
type="panel"),
gp = gp.text))
}
invisible()
}
|