我的数据集:
ggplot(data=f0101, aes(x=reading, y=depth)) +
theme_classic() +
scale_y_reverse() +
scale_x_continuous(position="top") +
geom_path()
我将仪器读数绘制为地下深度的函数。由于我的可视化,我希望轴具有非标准配置,如下所示:
ggplot(data=f0101, aes(x=reading, y=depth)) +
theme_classic() +
scale_y_reverse() +
scale_x_continuous(position="top") +
geom_path() +
stat_smooth()
这是完美的,除了我喜欢平滑的线,通过stat_smooth()或类似的。但是,调用平滑似乎会抛弃geom_path()。
{{1}}
如果仍然以非标准配置绘制数据,我该怎么做才能获得stat_smooth()的平滑效果?
谢谢!