我是全新的R,我在使用ggplot()时遇到了麻烦。我想要缩放图中的x和y轴值。正如您在图片中看到的那样,x和y轴显示了绘图的每个点,这使得图形不易读取:
。
如何缩放x轴和y轴?
我以前编写的代码是:
ggplot(final, aes(timeAtServer, timestamp, color = name)) + geom_point()
我也试过
scale_x_continuous(breaks = round(seq(min(final$timestamp), max(), by = 0.5),1))
表示断点但结果相同。