search for: taz_num

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

Did you mean: tag_num
2010 Mar 24
0
Getting choropleth map intervals correct
...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) names(ResProbs..)<-c("Taz","SFsubM") TazShape$SFsubM<-ResProbs..$SFsubM[match(TazShape$TAZ_NUM,Re...
2010 Mar 24
0
R-help ordinal regression
...pefully > 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) > names(ResProbs..)<-c("Taz","SFsubM") > TazShape$SFsu...