Displaying 1 result from an estimated 1 matches for "plothouses".
2009 Nov 06
0
R Design Question...
This is primarily a design question so?any 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...