且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

R-在Jupyter中更改ggplot绘图大小

更新时间:2022-12-30 10:06:40

在这里:

library(repr)
options(repr.plot.width=10, repr.plot.height=8)
ggplot(iris, aes(x = Sepal.Length, y= Sepal.Width)) +
    geom_point()