我有两个文件中的数据。我想绘制它们频率的比率图。
例如,在我的文件中,从 1 到 5 的数字出现了 20 次。在我的文件 B 中,从 1 到 5 的数字出现 10 次(直方图的条形宽度为 5)。这两者的比率是 20/10 = 2。我想在图表中绘制这个比率。可以使用 R 完成吗?
假设您阅读了变量中的 2 个文件,data1
您data2
可以执行以下操作:
bins <- seq(0, 100, 5) # Change this to whatever range your data encopasses
h1 <- hist(data1, bins, plot=0)
h2 <- hist(data2, bins, plot=0)
ratio <- h1$counts/h2$counts
# Remove NaNs and Infs due to 0 counts
ratio[is.na(ratio)] <- 0
ratio[is.inf(ratio)] <- 0
barplot(ratio)
或者,您可以创建第三个 hist 对象,其优点是正确绘制 x 轴
h3 <- h1
h3$counts <- ratio
plot(h3, col="black")