gpt4 book ai didi

r - 用于在同一页面内绘制多个图的 R 程序代码

转载 作者:行者123 更新时间:2023-12-04 08:27:59 25 4
gpt4 key购买 nike

有谁知道如何生成这样的图表?总共有 9 个图形并共享相同的 x 轴和 y 轴?
enter image description here

最佳答案

严格来说,您的问题是关于编程的,因此这里是“题外”。
但是,给出答案几乎比指导你到别处容易。 (您询问的显示通常对数据描述和统计分析很有用。)在标准 R 图形中:

par(mfrow=c(1,3)) # enables 1x3 array of plots
hist(rnorm(1000, 50, 7), prob=T)
hist(rexp(1000, .01), prob=T)
hist(rbeta(1000, 3, 5), prob=T)
par(mfrow=c(1,1)) # returns to single panel graphs
enter image description here
par(mfcol=c(2,2)) # enables array filled by columns
x = rnorm(500, 100, 20)
hist(x, prob=T, col="skyblue2")
qqnorm(x, datax=T)
qqline(x, datax=T, col="green2", lwd=2)
y = rexp(500, .5)
hist(y, prob=T, col="wheat")
qqnorm(y, datax=T)
qqline(y, datax=T, col="green2", lwd=2)
par(mfcol=c(1,1)) # 返回single
enter image description here

关于r - 用于在同一页面内绘制多个图的 R 程序代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65171305/

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