gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 14:16:29 33 4
gpt4 key购买 nike

在 jupyter notebook 中使用 R,首先我设置了通用的绘图大小。其次,我想绘制一个不同大小的图。

## load ggplot2 library
library("ggplot2")
## set universal plot size:
options(repr.plot.width=6, repr.plot.height=4)

## plot figure. This figure will be 6 X 4
ggplot(iris, aes(x = Sepal.Length, y= Sepal.Width)) + geom_point()

## plot another figure. This figure I would like to be 10X8
ggplot(iris, aes(x = Sepal.Length, y= Sepal.Width)) + geom_point() + HOW DO i CHANGE THE SIZE?

如您所见,我想将第二个图(并且仅是第二个图)更改为 10X8。我该怎么做呢?

对不起,一个可能很愚蠢的问题,因为在 Rstudio 中,情节大小通常不是问题。

最佳答案

干得好:

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

关于R - 在 jupyter 中更改 ggplot 绘图大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45473128/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com