Displaying 1 result from an estimated 1 matches for "coastslop".
Did you mean:
coastslope
2007 Mar 27
1
"Groups" in XYPLOT
...the
order so
#low slopes gets high probability of exceedence
z<-cbind(Rank = r, PRank = 1-(r/(n+1)))
#attach the probability to the table, result is high prob of exceed is in
row with low slope
#and low probabibility is in row with high slope
freqs$rank<-z
write.table(freqs, "C:/R_PLots/coastslopefreqs.txt", sep=",",
col.names=TRUE, row.names=TRUE, quote=TRUE, na="NA")
##########coastal_curvature
#needs the maptools package to read ESRI grid
require(maptools)
#import the curvature grid
basin.map <- readAsciiGrid("C:/R_PLots/coastal_crv.asc", colname=&q...