我不能为我的生活弄清楚如何更改hdiffplot的x和y轴值范围。 这是我的剧本:
xbnds <- range(x1,x2)
ybnds <- range(y1,y2)
bin1 <- hexbin(x1,y1,xbins= 200, xbnds=xbnds,ybnds=ybnds)
bin2 <- hexbin(x2,y2,xbins= 200, xbnds=xbnds,ybnds=ybnds)
erodebin1 <- erode.hexbin(smooth.hexbin(bin1))
erodebin2 <- erode.hexbin(smooth.hexbin(bin2))
hdiffplot(erodebin1, erodebin2)
我尝试过:hdiffplot(erodebin1,erodebin2,xbnds=range(-180,180),ybnds=range(-180,180))
但除了颜色之外,这并没有改变任何东西。
我错过了什么?