阿罗哈——
我正在创建一系列直方图,并希望添加一条表示分布平均值的垂直线以及一个表示样本大小的文本标签。我的代码如下:
BIN_WIDTH <- 1 #desired bin width
print(histogram(~ Length..cm. | Method, #create and print the histogram and save to variable "graph"
data = hist.data[hist.data$Scientific_name == "Pristipomoides filamentosus",],
nint = (max(hist.data$Length..cm.) - min(hist.data$Length..cm.)+1)/BIN_WIDTH,
layout = c(1,2),
type = "density",
main = "Length-Frequency of Pristipomoides filamentosus by Gear",
xlab = "Length (cm)",
panel = function(x, ...){
panel.histogram(x,...)
panel.mathdensity(dmath = dnorm, col = "red",
args = list(mean = mean(x), sd= sd(x)), ...)
}
))
我认为这将使用在 之后插入的panel.abline
andpanel.text
函数来完成panel.histogram
,但这似乎不起作用。我究竟做错了什么?如果有人能给我一个虚拟垂直线(例如 x=10)和虚拟文本的代码,我可以很容易地插入平均值和样本大小的方程。