我想在R中创建一个黑白图,在同一图上绘制4个不同的变量。
情节非常小,因此我不想使用type =“o”或其他默认类型。
相反,我希望有简单的细线,虚线,粗线,粗虚线,有没有办法做到这一点?当地块为黑白时,您对最佳符号有任何其他建议吗?
答案 0 :(得分:2)
?par
会为您提供有关此
基本上你需要的是:
lty
指定行类型lwd
指定行宽col
指定颜色(另请参阅rgb
)另请参阅Quick-R上的page on graphical parameters。
答案 1 :(得分:2)
是的,当然有可能。您应该使用lty
代码。例如,如果要表示两个变量,则应尝试lty=c(1, 23)
。您可以尝试不同的数字组合。要绘制较粗的线,lwd
命令应该有帮助。请查看以下链接了解更多详情。
http://stat.ethz.ch/R-manual/R-patched/library/graphics/html/par.html
答案 2 :(得分:0)
查看lty
和plot()
的{{1}}参数。
答案 3 :(得分:0)
R中具有多条线的黑白线图。
# Generate some data
x<-1:25;
y1<-c(0.966, 0.8491, 0.7923, 0.7488, 0.7176, 0.6905, 0.6693, 0.6552, 0.6397, 0.6295, 0.616, 0.6081, 0.6002, 0.5915, 0.5839, 0.5773, 0.5704, 0.563, 0.5563, 0.5508, 0.5435, 0.5405, 0.5328, 0.5281, 0.522);
y2<-c(0.7925, 0.75, 0.7269, 0.6868, 0.7097, 0.6695, 0.6517, 0.6531, 0.6698, 0.6375, 0.641, 0.6427, 0.6347, 0.633, 0.628, 0.6251, 0.6291, 0.6305, 0.6517, 0.63, 0.6363, 0.6224, 0.6257, 0.6364, 0.6322);
y3<-c(0.8925, 0.85, 0.8269, 0.7868, 0.7097, 0.7695, 0.5517, 0.6531, 0.5698, 0.5375, 0.541, 0.5427, 0.5347, 0.533, 0.528, 0.5251, 0.5291, 0.5305, 0.5517, 0.53, 0.5363, 0.5224, 0.5257, 0.5364, 0.5322);
# Give a name for the chart file
png(file = "line_plot.png", width = 500, height = 300)
# Display the line plot in black and white with multiple lines.
plot(x, y1, type="b", pch=19, col="black", xlab="X-Label", ylab="Y-label", lwd = 1, cex=1)
# Add a line
lines(x, y2, pch=18, col="black", type="b", lty="dashed", lwd = 1)
# Add another line
lines(x, y3, pch=16, col="black", type="b", lty="dotted", lwd = 1)
# Add a legend
legend(19, 0.95, legend=c("Algorithm1", "Algorithm2", "Algorithm3" ), col=c("black", "black", "black"), lty=1:3, cex=1, box.lty=1, box.lwd=1, box.col="black")
# Save the file
dev.off()
输出: