将标签添加到filled.contour

时间:2016-08-04 06:15:31

标签: r statistics

想知道x轴和y轴文本标签和主文本标签的参数是什么?我提到了R帮助(? filled.contour),但仍然感到困惑。显示示例,想知道如何在下面的示例中添加x轴和y轴文本标签和主文本标签。感谢。

    require(MASS)
    b       <- log10(rgamma(1000,6,3))
    a       <- log10((rweibull(1000,8,2)))
    density <- kde2d(a,b,n=100)
    filled.contour(density,color.palette=colorRampPalette(
                  c('white','blue','yellow','red','darkred')))

的问候, 林

1 个答案:

答案 0 :(得分:1)

如@ cuttlefish44所述,该方法与plot()相同。

filled.contour(density,color.palette=colorRampPalette(c('white','blue','yellow'‌​
,'red','darkred')), xlab="xlab", ylab="ylab", main="main")