使用阴影填充绘制不等式的最简单方法?

时间:2013-03-13 12:16:19

标签: plot graph

enter image description here

参考上图。我在excel中绘制了方程式,然后手工着色。你可以看到它不是很整洁。您可以看到有六个区域,每个区域由两个或更多个方程组成。使用阴影图案绘制不等式和阴影区域的最简单方法是什么?

4 个答案:

答案 0 :(得分:16)

为了建立@ agstudy的答案,这是一种快速而肮脏的方式来表示R中的不等式:

plot(NA,xlim=c(0,1),ylim=c(0,1), xaxs="i",yaxs="i") # Empty plot
a <- curve(x^2, add = TRUE) # First curve
b <- curve(2*x^2-0.2, add = TRUE) # Second curve
names(a) <- c('xA','yA')
names(b) <- c('xB','yB')
with(as.list(c(b,a)),{
    id <- yB<=yA
    # b<a area
    polygon(x = c(xB[id], rev(xA[id])),
            y = c(yB[id], rev(yA[id])), 
            density=10, angle=0, border=NULL)
    # a>b area
    polygon(x = c(xB[!id], rev(xA[!id])),
            y = c(yB[!id], rev(yA[!id])), 
            density=10, angle=90, border=NULL)
    })

enter image description here

如果有问题的区域被2个以上的方程所包围,只需添加更多条件:

plot(NA,xlim=c(0,1),ylim=c(0,1), xaxs="i",yaxs="i") # Empty plot
a <- curve(x^2, add = TRUE) # First curve
b <- curve(2*x^2-0.2, add = TRUE) # Second curve
d <- curve(0.5*x^2+0.2, add = TRUE) # Third curve

names(a) <- c('xA','yA')
names(b) <- c('xB','yB')
names(d) <- c('xD','yD')

with(as.list(c(a,b,d)),{
    # Basically you have three conditions: 
    # curve a is below curve b, curve b is below curve d and curve d is above curve a
    # assign to each curve coordinates the two conditions that concerns it.

    idA <- yA<=yD & yA<=yB
    idB <- yB>=yA & yB<=yD
    idD <- yD<=yB & yD>=yA
    polygon(x = c(xB[idB], xD[idD], rev(xA[idA])),
            y = c(yB[idB], yD[idD], rev(yA[idA])), 
            density=10, angle=0, border=NULL)
    })

enter image description here

答案 1 :(得分:10)

在R中,填充图案的支持有限,它们只能是 应用于矩形和多边形。这只在传统图形中,不是ggplot2lattice

可以使用绘制的一组线填充矩形或多边形 在一定角度,线之间有特定的分隔。 密度 参数控制线之间的分隔(以每英寸的线数计) 并且 angle 参数控制线条的角度。

这是帮助中的一个例子:

plot(c(1, 9), 1:2, type = "n")
polygon(1:9, c(2,1,2,1,NA,2,1,2,1),
         density = c(10, 20), angle = c(-45, 45))

enter image description here

编辑

另一种选择是使用alpha混合来区分区域。这里使用@plannapus示例和gridBase包来叠加多边形,你可以这样做:

library(gridBase)
vps <- baseViewports()
pushViewport(vps$figure,vps$plot)
with(as.list(c(a,b,d)),{
  grid.polygon(x = xA, y = yA,gp =gpar(fill='red',lty=1,alpha=0.2))
  grid.polygon(x = xB, y = yB,gp =gpar(fill='green',lty=2,alpha=0.2))
  grid.polygon(x = xD, y = yD,gp =gpar(fill='blue',lty=3,alpha=0.2))
}
)
upViewport(2)

enter image description here

答案 2 :(得分:3)

MATLAB中央文件交换中有几个submissions将以各种方式为您生成阴影图。

答案 3 :(得分:2)

我认为这个方便的工具是gnuplot

看一下以下演示:

feelbetween
statistics
some tricks