答案 0 :(得分:0)
我认为你需要使用scale_x_continuous
。
如果您为此示例绘制了图表并将其命名为so.graph
,那么您需要添加:
so.graph + scale_x_continuous(expand = c(0, 0)) + scale_y_continuous(expand = c(0, 0))
。
您还需要添加一些限制,以便图表不会切断任何点 - 如果不知道您的值我不能建议适当的点,但这看起来像:
so.graph + scale_x_continuous(expand = c(0, 0), limits = c(0,20)) + scale_y_continuous(expand = c(0, 0), limits = c(0,20))
希望这有帮助!