search for: buff3000

Displaying 1 result from an estimated 1 matches for "buff3000".

Did you mean: buff1000
2009 Jul 16
2
putting circles/buffers arround points on a 2D graph/plot
...he plot I simply used >plot(percent.forest,metric) to add in the data about buffer size, I have extracted the percent forest and metric data by: >buff250<-subset(data1,data1$Buffer==250) >buff500<-subset(data1,data1$Buffer==500) >buff1000<-subset(data1,data1$Buffer==1000) >buff3000<-subset(data1,data1$Buffer==3000) >buff10000<-subset(data1,data1$Buffer==10000) i then used the 'points' function to plot the percent forest, metric data points in different colours according to buffer size, using this code (first 2 lines divides the data appropriately, 3rd line i...