Displaying 1 result from an estimated 1 matches for "histogramsquarefootag".
Did you mean:
histogramsquarefootage
2009 Nov 06
0
R Design Question...
...feedback is very much appreciated.? I have?a list of several plotting routines that are optional, so currently I include them in an array when I want to call them, e.g.
plotting_array<-c("PlotHouses.R", "PlotNeighborhood.R", "LinearRegressionOfHomePrices.R", "HistogramSquareFootage.R")
Should I want to plot fewer, I just remove them from the?array, e.g.
plotting_array<-c("PlotHouses.R", "PlotNeighborhood.R")
I plan to make these into functions, but I have not had an opportunity to do so just yet.? I plan to convert them into functions in the co...