read.data.NVS.R 407 bytes
######################
######################
##### LOOK AT NZ DATA
data.NVS <- read.csv("./data/raw/DataNVS/nz_treedata_growth_130801.csv",header=TRUE,stringsAsFactors=FALSE,skip=9)
head(data.NVS)
data.NVS.plot <- read.csv("./data/raw/DataNVS/nz_plotinfo_130801.csv",header=TRUE,stringsAsFactors=FALSE)
head(data.NVS.plot)
plot(data.NVS.plot[["Easting"]],data.NVS.plot[["Northing"]],pty="s",cex=.2)