search for: tazfile

Displaying 2 results from an estimated 2 matches for "tazfile".

Did you mean: tarfile
2010 Mar 24
0
Getting choropleth map intervals correct
...abilities using R to a geographic unit called a TAZ. The below data will work but you will have to set your directory for the shape file. Never did this before so hopefully this works. ResProbs is just supposed to be a value between 0-1, sorry if that more complicated than it needed to be. TazFile <- "*directory*/TAZ.shp" TazShape <- readShapeSpatial(TazFile) TazShape<-TazShape[order(TazShape$TAZ_NUM),] ResTaz<-25:666 ResProbs<-rnorm(642,0:1) ResProbs[ResProbs>1]=.5 ResProbs[ResProbs<-1]=.2 ResProbs<-abs(ResProbs) ResProbs..<-data.frame(ResTaz,ResProbs)...
2010 Mar 24
0
R-help ordinal regression
...t; TAZ.? ? The below data will work but you will > have to set your directory for > the shape file.? Never did this before so hopefully > this works.? ResProbs is > just supposed to be a value between 0-1, sorry if that more > complicated than > it needed to be.? > > > TazFile <- "*directory*/TAZ.shp" > TazShape <- readShapeSpatial(TazFile) > TazShape<-TazShape[order(TazShape$TAZ_NUM),] > > ResTaz<-25:666 > ResProbs<-rnorm(642,0:1) > ResProbs[ResProbs>1]=.5 > ResProbs[ResProbs<-1]=.2 > ResProbs<-abs(ResProbs) &gt...