Ich möchte eine gebrochene X-Achse in meinem Grundstück bekommen. In der x-Achse füge ich gerne ein gebrochenes Achsensymbol ein <//>
[beginnend von 2 und endete in Ende 8, was bedeutet, dass 2-8 in <//>
Symbol versteckt werden], so dass die anderen Werte hervorgehoben werden können. In Matlab wird diese Aufgabe unter Verwendung von BreakXAxis ausgeführt. In R, plotrix Bibliothek hilft nur ein Break-Achse-Symbol, das ist alles.Break X Achse in R
x <- c(9.45, 8.78, 0.93, 0.47, 0.24, 0.12)
y <- c(10.72, 10.56, 10.35, 10.10, 9.13, 6.72)
z <- c(7.578, 7.456, 6.956, 6.712, 4.832, 3.345)
plot(x, y, col='blue', pch=16, xlab= 'x', ylab='y, z')
points(x, z, col='red', pch=17)
library(plotrix)
axis.break(1,2,style="slash")