R-线型的晶格

时间:2017-04-24 00:35:55

标签: r lattice

我有一个带有平滑线条的格子xyplot(6条不同的线条)。我想改变线型 - 线的颜色和类型(虚线等),这样它们在B& W中是可以理解的,而不是在颜色中(这是默认的)。任何人都可以就此提供建议吗?以下是我目前的代码:

xyplot(y~x,
 data=df,
 group=categorical,
 type = "smooth",
 ylim=c(-2,0.5),
 xlab="x",
 ylab="y",
 auto.key=list(space="top",
 columns=3,
 title="",
 cex.title=0.1,
 lines=FALSE, points=TRUE)
)

谢谢

1 个答案:

答案 0 :(得分:1)

有两种选择。您可以使用<button class="btn">First Button is 32px as expected</button> <br /> <br /> <button class="btn2">Why this is not same height with first one?</button> <p> How to make same height buttons with differnet font sizes ? </p>设置线型,也可以使用内置的黑白主题 - 后者也会设置一系列其他设置。

lty = 1:x

enter image description here