gpt4 book ai didi

r - 如何删除fill.contour内部网格?

转载 作者:行者123 更新时间:2023-12-03 21:35:12 25 4
gpt4 key购买 nike

看起来 fill.contour 函数已更新,现在它会自动在绘图内添加一个白色网格(在填充的等高线绘图区域内),但我不知道如何将其删除。

我举一个小例子:

x <- 1:12
y <- 1:12
xvals <- c(2,4,7,10,14,21,30,60,90,120,180,365)
fx <- as.numeric(as.factor(xvals))
filled.contour(fx, y, outer(x,y),
plot.axes= {
axis(2) ## plain
axis(1,at=fx,labels=xvals)
})
  • 前图:

  • enter image description here
  • 现在开始:

  • enter image description here

    谢谢,
    里卡多·法里亚。

    最佳答案

    您可以使用 color 属性,如下所示:

    filled.contour(fx, y, col = terrain.colors(23),outer(x,y),
    plot.axes= {
    axis(2) ## plain
    axis(1,at=fx,labels=xvals)
    })

    输出图像为:
    [1]: http://i.stack.imgur.com/8Elcb.jpg

    关于r - 如何删除fill.contour内部网格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36701906/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com