R令牌前后的两个点

时间:2019-06-19 14:28:10

标签: r ggplot2

我碰到了Microsoft Edx R数据科学MOOC绘图章节,我偶然发现了他们的示例代码,在标记之前和之后都有2个点。这是什么意思?

我已经在网上搜索了一些答案,但没有找到答案。我最接近的是在数字标记之前2个点,这使该标记成为传入参数的序列占位符。

plot_hist_grid = function(df, numcols, bins = 10){
    options(repr.plot.width=6, repr.plot.height=3) # Set the initial plot area dimensions
    for(col in numcols){
        if(is.numeric(df[,col])){
            bw = (max(df[,col]) - min(df[,col]))/(bins + 1)
            p = ggplot(df, aes_string(col)) + 
                       geom_histogram(binwidth = bw, aes(y=..density..), alpha = 0.5) +
                       geom_density(aes(y=..density..), color = 'blue') + 
                       geom_rug() +
                       facet_grid(. ~ drive.wheels)
            print(p)
        }
    }
}

plot_hist_grid(auto_prices, numcols)
  • 我只想知道ggplot语句中标记“密度”前后2个点的含义。

0 个答案:

没有答案