search for: house_type

Displaying 1 result from an estimated 1 matches for "house_type".

2010 Feb 19
1
Confused about appending to list behavior...
...doesn't. Thank you again for all the help and feedback, as I love lists and especially the fact (that unlike data.frames) you can store different "type" data and also arrays of different lengths. They are great. > example_list<-list(tracking<-c("house"), house_type<-c("brick", "wood"), sizes<-c(1600, 1800, 2000, 2400)) > example_list [[1]] [1] "house" [[2]] [1] "brick" "wood" [[3]] [1] 1600 1800 2000 2400 > > cost_limits<-c(200000.25, 350010.15) > > example_list[[4]]<-cost_limi...