Displaying 1 result from an estimated 1 matches for "plotting_files".
2009 Nov 06
0
R Design Question...
...nt to get away from changing the length of the array, and to something a bit more robust, so the idea is to?move over?to more of a switching logic approach, e.g. ?
plotting_array<-c(PlotHouses = TRUE, PlotNeighborhood = TRUE, LinearRegressionOfHomePrices = FALSE, HistogramSquareFootage = FALSE)
plotting_files<-c("PlotHouses.R", "PlotNeighborhood.R", "LinearRegressionOfHomePrices.R", "HistogramSquareFootage.R")
plotting_df<-data.frame(plotting_array, plotting_files)
plotting_true_df<-plotting_df[which(plotting_df$plotting_array==TRUE),]
source(plotting_tr...