これは私がベースのグラフィックスを使用して(私のggplot2
日前)まで調理するものである:
## data
N <- 10
dnow <- data.frame(x=1:N, y=runif(N), labels=paste("This is \nobservation ",1:N))
## make margins wide
par(mfrow=c(1,1), mar=c(10,10,6,4))
## plot without axix labels or ticks
with(dnow, plot(x,y, xaxt="n", xlab=""))
## the positions we ant to plot
atn <- seq(1,N,3)
## the label for these positions
lab <- dnow$labels[atn]
## plot the axis, but do not plot labels
axis(1, at=atn, labels=FALSE)
## plot labels
text(atn, ## x position
par("usr")[3]-.05, ## position of the low axis
srt=45, ## angle
labels=lab, ##labels
xpd=TRUE, ## allows plotting outside the region
pos=2)
## par("usr")[3]
あなたは2行を何を意味するのですか?あなたは「これは\ n観測です...」と言いたいのですか? –
@chis_duboisそれは答えの最初の部分です!ありがとう! –