我找不到密度周围双点的文档
set.seed(1234)
df <- data.frame(cond = factor(rep(c("A","B"), each=200)), rating = c(rnorm(200),rnorm(200, mean=.8)))
print(head(df))
print(ggplot(df, aes(x=rating)) +
geom_histogram(aes(y=..density..), # Histogram with density instead of count on y-axis
binwidth=.5,
colour="black", fill="white") +
geom_density(alpha=.2, fill="#FF6666") +
geom_vline(aes(xintercept=mean(rating, na.rm=T)), # Ignore NA values for mean
color="red", linetype="dashed", size=1))
你知道他们代表什么运营商吗?
编辑
我知道它在geom 中使用时的作用,我想知道它是什么。例如,单点运算符定义为
> .
function (..., .env = parent.frame())
{
structure(as.list(match.call()[-1]), env = .env, class = "quoted")
}
<environment: namespace:plyr>
如果我重新定义density,那么..density..会产生不同的效果,所以看起来 XX -> ..XX.. 是一个运算符。我想知道它是如何定义的。