如何分别更改ggplot中选定的几个轴标签的小数位?

我在下面有一个简单的情节。我记录了x轴的缩放比例,我希望图形显示0.1、1、10。我不知道如何覆盖默认值0.1、1.0、10.0。

有没有办法我只能更改两个x轴标签?

library(ggplot2)

x <- c(0.1, 1, 10)
y <- c(1, 5, 10)


ggplot()+

  geom_point(aes(x,y)) +

  scale_x_log10()

enter image description here