Displaying 1 result from an estimated 1 matches for "bin1_main".
Did you mean:
bin10_main
2009 Mar 26
2
loading and manipulating 10 data frames-simplified
...then manipulate those 10 data
frames but would like to do this in a more simplified code than what i am
doing. 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...