Displaying 2 results from an estimated 2 matches for "restaz".
Did you mean:
resta
2010 Mar 24
0
Getting choropleth map intervals correct
...ile. 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,ResProbs..$Ta...
2010 Mar 24
0
R-help ordinal regression
...s.? 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..$SFs...