Displaying 1 result from an estimated 1 matches for "bin7_acres".
Did you mean:
bin1_acres
2009 Mar 26
2
loading and manipulating 10 data frames-simplified
...#Loads bin data frame from csv files with acres and TAZ data
Bin7_main <-
read.csv(file="I:/Research/Samba/urb_transport_modeling/LUSDR/Workspace/BizLandPrice/data/Bin_lookup_values/Bin7_lookup.csv",header=FALSE);
#Separates Acres data from main data and converts acres to square feet
Bin7_Acres=Bin7_main[[1]]*43560
#Separates TAZ data from main data
Bin7_TAZ=Bin7_main[[2]]
#Separates TAZ data from main data and converts acres to square feet
Bin7_TAZvacant=Bin7_main[[3]]*43560
#Sums each parcel acreage data of the bin
Bin7Acres_sum=sum(Bin7_Acres)
#Creates data frame of cumlative perc...