如何在里面创建一个带有网格的圆圈并在R中标记被占用的单元格?

时间:2017-11-10 21:48:56

标签: r coordinates spatial geometry

如何在其中创建一个带有网格的圆,然后填充基于X,Y坐标系占用的单元格。

我的圈子看起来像这样(数字是位置数字):

my grid

我已经设置了我的X,Y系统位置1 为-2,4 .....

谢谢,

阿利萨

1 个答案:

答案 0 :(得分:0)

sess.run(tf.local_variables_initializer())  # Resets AUC accumulator variables

enter image description here

抑制轴标签,轴标记和删除“悬垂”是一个简单的事情,即为plot(5*c(1,0,-1,0), 5*c(0,1,0,-1) ,col="transparent") # set coordinate range abline(h=-5:5); abline(v=-5:5) # the grid polygon( 4.3*sin(seq(0,2*pi,length=100)), 4.3*cos(seq(0,2*pi,length=100)) ) # the circle abline(h=0,v=0,lwd=2) # the axes text( x=c( (1:4)-2.5,(1:6)-3.5, (1:8)-4.5, (1:8)-4.5, #offsets to center in cells (1:8)-4.5, (1:8)-4.5, (1:6)-3.5, (1:4)-2.5 ), y=c( rep(4,4), rep(3,6), rep(2,8), rep(1,8), rep(0,8), rep(-1,8), rep(-2,6), rep(-3,4) )-0.5, labels=1:52) 函数提供正确的图形参数(对于xaxs,yaxs,xaxt,yaxt,xlab和ylab)呼叫。也许:

plot

哪会产生这个:

enter image description here