Dear users, When I boxplot(), the lines of the whiskers are dashed. However, when I save in an svg file, the dashed lines of the whiskers are not dashed anymore. How can I have the dashed lines in the svg file? I don't have this problem with a ps file, but I cannot edit such file as easily as an svg file. That's why I'd like to stick to the svg format.
Thanks in advance, Ivan df <- structure(list(a = structure(c(1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L, 1L, 2L), .Label = c("A", "B"), class = "factor"), b = c(0.904439748839731, -0.855322875817714, -0.957288625102814, 0.130401502975395, -1.27765131101282, -2.08861064654457, 1.10234256081394, -2.05533035069656, -1.04529859053820, -0.0847903566670016, 1.02553030160793, 0.321170740199536, 1.87419854190502, -0.891404432182873, 0.968745913802415, -0.85229752730528, 0.641555656821046, 1.72455661053506, -0.523097596614304, 1.26729031187194)), .Names = c("a", "b"), row.names = c(NA, -20L), class = "data.frame") library(RSvgDevice) devSVG(file="test.svg") boxplot(b~a, data=df) dev.off() -- Ivan CALANDRA PhD Student University of Hamburg Biozentrum Grindel und Zoologisches Museum Abt. Säugetiere Martin-Luther-King-Platz 3 D-20146 Hamburg, GERMANY [[alternative HTML version deleted]]
______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.