📜  使用 plotline lib 在 python 中等效于 geom 平滑函数 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:09.986000             🧑  作者: Mango

代码示例1
(
    ggplot(mpg, aes(x='displ', y='hwy'))
    + geom_point()
    + geom_smooth()
    + labs(x='displacement', y='horsepower')
)