답변:
x 축 또는 y 축에서 번호 매기기를 제거합니다.
plot(1:10, xaxt='n')
plot(1:10, yaxt='n')
레이블도 제거하려면 다음을 수행하십시오.
plot(1:10, xaxt='n', ann=FALSE)
plot(1:10, yaxt='n', ann=FALSE)
기본 그래픽을 사용하는 표준 방법은 axes = FALSE를 사용하고 Axis (또는 axis)를 사용하여 고유 한 축을 만드는 것입니다. 예를 들어
x <- 1:20
y <- runif(20)
plot(x, y, axes=FALSE, frame.plot=TRUE)
Axis(side=1, labels=FALSE)
Axis(side=2, labels=FALSE)
격자와 동등한 것은
library(lattice)
xyplot(y ~ x, scales=list(alternating=0))
배경과 일치하도록 axis_colour를 변경하고 배경을 동적으로 수정하는 경우 axis_colour를 동시에 업데이트해야합니다. * 공유 사진은 모의 데이터 ()를 사용하는 그래프 / 플롯 예를 보여줍니다
### Main Plotting Function ###
plotXY <- function(time, value){
### Plot Style Settings ###
### default bg is white, set it the same as the axis-colour
background <- "white"
### default col.axis is black, set it the same as the background to match
axis_colour <- "white"
plot_title <- "Graph it!"
xlabel <- "Time"
ylabel <- "Value"
label_colour <- "black"
label_scale <- 2
axis_scale <- 2
symbol_scale <- 2
title_scale <- 2
subtitle_scale <- 2
# point style 16 is a black dot
point <- 16
# p - points, l - line, b - both
plot_type <- "b"
plot(time, value, main=plot_title, cex=symbol_scale, cex.lab=label_scale, cex.axis=axis_scale, cex.main=title_scale, cex.sub=subtitle_scale, xlab=xlabel, ylab=ylabel, col.lab=label_colour, col.axis=axis_colour, bg=background, pch=point, type=plot_type)
}
plotXY(time, value)