Displaying 2 results from an estimated 2 matches for "tazshape".
Did you mean:
ashape
2010 Mar 24
0
Getting choropleth map intervals correct
...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)
names(ResProbs..)<-c("Taz","...
2010 Mar 24
0
R-help ordinal regression
...t; 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)
&...