这是我的工作示例:
library(ggplot2)
library(directlabels) # ver 2014.6.13 via r-forge
DF <- expand.grid(z = seq(1, 3001, by=10), k = seq(from=0.5, to=5, by=0.25))
# Defines the function value for each z-k combination
DF$dT <- with(DF, -0.07 * z * (1/2.75 - 1/k))
p <- ggplot(DF, aes(x = z, y = k, z = dT)) + theme_bw() +
stat_contour(aes(colour=..level..), breaks=c(seq(from=-40, to=0, by=5), c(seq(from=5, to=150, by=10))))
angled.boxes <- list("far.from.others.borders","calc.boxes","enlarge.box","draw.rects")
direct.label(p, "angled.boxes")
看起来像这样:
我想将标签的框边框颜色变为“白色”,但我不知道该怎么做。在包的 NEWS 中,是这样写的:
2.5 --- 2012 年 4 月 6 日
draw.rects 具有可配置的颜色,默认黑色。
并且看到“angled.boxes”是一个列表,包括:
angled.boxes <- list("far.from.others.borders","calc.boxes","enlarge.box","draw.rects")
我想这是可能的,但如何?