Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 R 中,我们可以独立绘制每个图,然后通过 gridExtra 等包轻松排列所有或部分图。
p1 <- ggplot(aes(x1,y1), data=df) + geom_point() p2 <- ggplot(aes(x2,y2), data=df) + geom_point() grid.arrange(p1, p2, ncol=1)
但是,我们可以在 Python 中使用PLOTNINE做同样的事情吗?