search for: bin_lookup_valu

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

Did you mean: bin_lookup_values
2009 Mar 26
2
loading and manipulating 10 data frames-simplified
...I have tried a couple of approaches but cannot get it to work correctly. So the initial (bulky) code is: #Bin 1 #------- #Loads bin data frame from csv files with acres and TAZ data Bin1_main <- read.csv(file="I:/Research/Samba/urb_transport_modeling/LUSDR/Workspace/BizLandPrice/data/Bin_lookup_values/Bin1_lookup.csv",head=FALSE); #Separates Acres data from main data and converts acres to square feet Bin1_Acres=Bin1_main[[1]]*43560 #Separates TAZ data from main data Bin1_TAZ=Bin1_main[[2]] #Separates TAZ data from main data and converts acres to square feet Bin1_TAZvacant=Bin1_main[[3...
2008 Nov 07
1
For Loop - loading 10 sets of data and calculating
...y own code. Hope my question is clear and i hope someone can offer some guidance. Cheers, JR for (i in 1:10) { #------- #Loads bin data frame from csv files with acres and TAZ data Bin$i_main <- read.csv(file="I:/Research/Samba/urb_transport_modeling/LUSDR/Workspace/BizLandPrice/data/Bin_lookup_values/Bin$i_lookup.csv",head=FALSE); #Separates Acres data from main data and converts acres to square feet Bin$i_Acres=Bin$i_main[[1]]*43560 #Separates TAZ data from main data Bin$i_TAZ=Bin$i_main[[2]] #Separates TAZ data from main data and converts acres to square feet Bin$i_TAZvacant=Bin$i_...