Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 1 | # Copyright 2017 Open Networking Foundation (ONF) |
| 2 | # |
| 3 | # Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>, |
| 4 | # the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>, |
| 5 | # or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg> |
| 6 | # |
| 7 | # TestON is free software: you can redistribute it and/or modify |
| 8 | # it under the terms of the GNU General Public License as published by |
| 9 | # the Free Software Foundation, either version 2 of the License, or |
| 10 | # (at your option) any later version. |
| 11 | # |
| 12 | # TestON is distributed in the hope that it will be useful, |
| 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | # GNU General Public License for more details. |
| 16 | # |
| 17 | # You should have received a copy of the GNU General Public License |
| 18 | # along with TestON. If not, see <http://www.gnu.org/licenses/>. |
| 19 | # |
| 20 | # If you have any questions, or if you don't understand R, |
Jeremy Ronquillo | b626884 | 2017-10-03 13:02:58 -0700 | [diff] [blame] | 21 | # please contact Jeremy Ronquillo: j_ronquillo@u.pacific.edu |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 22 | |
| 23 | # ********************************************************** |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 24 | # STEP 1: Data management. |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 25 | # ********************************************************** |
| 26 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 27 | print( "**********************************************************" ) |
| 28 | print( "STEP 1: Data management." ) |
| 29 | print( "**********************************************************" ) |
Devin Lim | 0e96716 | 2017-11-03 15:59:53 -0700 | [diff] [blame] | 30 | database_host = 1 |
| 31 | database_port = 2 |
| 32 | database_u_id = 3 |
| 33 | database_pw = 4 |
| 34 | test_name = 5 |
| 35 | branch_name = 6 |
| 36 | save_directory = 7 |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 37 | |
Jeremy Ronquillo | b626884 | 2017-10-03 13:02:58 -0700 | [diff] [blame] | 38 | # Command line arguments are read. |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 39 | print( "Reading commmand-line args." ) |
| 40 | args <- commandArgs( trailingOnly=TRUE ) |
| 41 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 42 | # ---------------- |
| 43 | # Import Libraries |
| 44 | # ---------------- |
| 45 | |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 46 | print( "Importing libraries." ) |
| 47 | library( ggplot2 ) |
| 48 | library( reshape2 ) |
| 49 | library( RPostgreSQL ) # For databases |
| 50 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 51 | # ------------------- |
| 52 | # Check CLI Arguments |
| 53 | # ------------------- |
| 54 | |
| 55 | print( "Verifying CLI args." ) |
| 56 | |
Devin Lim | 0e96716 | 2017-11-03 15:59:53 -0700 | [diff] [blame] | 57 | if ( is.na( args[ save_directory ] ) ){ |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 58 | |
| 59 | print( paste( "Usage: Rscript SCPFswitchLat", |
| 60 | "<database-host>", |
| 61 | "<database-port>", |
| 62 | "<database-user-id>", |
| 63 | "<database-password>", |
| 64 | "<test-name>", |
| 65 | "<branch-name>", |
| 66 | "<directory-to-save-graphs>", |
| 67 | sep=" ") ) |
| 68 | |
Jeremy Ronquillo | 9ea85d0 | 2017-11-27 10:21:03 -0800 | [diff] [blame] | 69 | quit( status = 1 ) # basically exit(), but in R |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 70 | } |
| 71 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 72 | # ----------------- |
| 73 | # Create File Names |
| 74 | # ----------------- |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 75 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 76 | print( "Creating filenames and title of graph." ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 77 | |
Devin Lim | 0e96716 | 2017-11-03 15:59:53 -0700 | [diff] [blame] | 78 | errBarOutputFileUp <- paste( args[ save_directory ], |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 79 | "SCPFswitchLat_", |
Devin Lim | 0e96716 | 2017-11-03 15:59:53 -0700 | [diff] [blame] | 80 | args[ branch_name ], |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 81 | "_UpErrBarWithStack.jpg", |
| 82 | sep="" ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 83 | |
Devin Lim | 0e96716 | 2017-11-03 15:59:53 -0700 | [diff] [blame] | 84 | errBarOutputFileDown <- paste( args[ save_directory ], |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 85 | "SCPFswitchLat_", |
Devin Lim | 0e96716 | 2017-11-03 15:59:53 -0700 | [diff] [blame] | 86 | args[ branch_name ], |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 87 | "_DownErrBarWithStack.jpg", |
| 88 | sep="" ) |
| 89 | # ------------------ |
| 90 | # SQL Initialization |
| 91 | # ------------------ |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 92 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 93 | print( "Initializing SQL" ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 94 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 95 | con <- dbConnect( dbDriver( "PostgreSQL" ), |
| 96 | dbname = "onostest", |
Devin Lim | 0e96716 | 2017-11-03 15:59:53 -0700 | [diff] [blame] | 97 | host = args[ database_host ], |
| 98 | port = strtoi( args[ database_port ] ), |
| 99 | user = args[ database_u_id ], |
| 100 | password = args[ database_pw ] ) |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 101 | |
| 102 | # -------------------------- |
| 103 | # Switch Latency SQL Command |
| 104 | # -------------------------- |
| 105 | |
| 106 | print( "Generating Switch Latency SQL Command" ) |
| 107 | |
| 108 | command <- paste( "SELECT * FROM switch_latency_details WHERE branch = '", |
Devin Lim | 0e96716 | 2017-11-03 15:59:53 -0700 | [diff] [blame] | 109 | args[ branch_name ], |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 110 | "' AND date IN ( SELECT MAX( date ) FROM switch_latency_details WHERE branch='", |
Devin Lim | 0e96716 | 2017-11-03 15:59:53 -0700 | [diff] [blame] | 111 | args[ branch_name ], |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 112 | "' )", |
| 113 | sep="" ) |
| 114 | |
| 115 | print( "Sending SQL command:" ) |
| 116 | print( command ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 117 | |
| 118 | fileData <- dbGetQuery( con, command ) |
| 119 | |
| 120 | # ********************************************************** |
| 121 | # STEP 2: Organize data. |
| 122 | # ********************************************************** |
| 123 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 124 | print( "**********************************************************" ) |
| 125 | print( "STEP 2: Organize Data." ) |
| 126 | print( "**********************************************************" ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 127 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 128 | # ------------------------------- |
| 129 | # Switch Up Averages Data Sorting |
| 130 | # ------------------------------- |
| 131 | |
| 132 | print( "Sorting data for Switch Up Averages." ) |
| 133 | |
Jeremy Ronquillo | 9ea85d0 | 2017-11-27 10:21:03 -0800 | [diff] [blame] | 134 | requiredColumns <- c( "up_device_to_graph_avg", |
| 135 | "role_reply_to_device_avg", |
| 136 | "role_request_to_role_reply_avg", |
| 137 | "feature_reply_to_role_request_avg", |
| 138 | "tcp_to_feature_reply_avg" ) |
| 139 | |
| 140 | tryCatch( upAvgs <- c( fileData[ requiredColumns] ), |
| 141 | error = function( e ) { |
| 142 | print( "[ERROR] One or more expected columns are missing from the data. Please check that the data and SQL command are valid, then try again." ) |
| 143 | print( "Required columns: " ) |
| 144 | print( requiredColumns ) |
| 145 | print( "Actual columns: " ) |
| 146 | print( names( fileData ) ) |
| 147 | print( "Error dump:" ) |
| 148 | print( e ) |
| 149 | quit( status = 1 ) |
| 150 | } |
| 151 | ) |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 152 | |
| 153 | # ------------------------------ |
| 154 | # Switch Up Construct Data Frame |
| 155 | # ------------------------------ |
| 156 | |
| 157 | print( "Constructing Switch Up data frame." ) |
| 158 | |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 159 | upAvgsData <- melt( upAvgs ) |
| 160 | upAvgsData$scale <- fileData$scale |
| 161 | upAvgsData$up_std <- fileData$up_std |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 162 | upAvgsData <- na.omit( upAvgsData ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 163 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 164 | colnames( upAvgsData ) <- c( "ms", |
| 165 | "type", |
| 166 | "scale", |
| 167 | "stds" ) |
| 168 | |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 169 | upAvgsData$type <- as.character( upAvgsData$type ) |
| 170 | upAvgsData$type <- factor( upAvgsData$type, levels=unique( upAvgsData$type ) ) |
| 171 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 172 | sumOfUpAvgs <- fileData[ 'up_device_to_graph_avg' ] + |
| 173 | fileData[ 'role_reply_to_device_avg' ] + |
| 174 | fileData[ 'role_request_to_role_reply_avg' ] + |
| 175 | fileData[ 'feature_reply_to_role_request_avg' ] + |
| 176 | fileData[ 'tcp_to_feature_reply_avg' ] |
| 177 | |
| 178 | print( "Up Averages Results:" ) |
| 179 | print( upAvgsData ) |
| 180 | |
| 181 | # --------------------------------- |
| 182 | # Switch Down Averages Data Sorting |
| 183 | # --------------------------------- |
| 184 | |
| 185 | print( "Sorting data for Switch Down Averages." ) |
| 186 | |
Jeremy Ronquillo | 9ea85d0 | 2017-11-27 10:21:03 -0800 | [diff] [blame] | 187 | requiredColumns <- c( "down_device_to_graph_avg", |
| 188 | "ack_to_device_avg", |
| 189 | "fin_ack_to_ack_avg" ) |
| 190 | |
| 191 | tryCatch( downAvgs <- c( fileData[ requiredColumns] ), |
| 192 | error = function( e ) { |
| 193 | print( "[ERROR] One or more expected columns are missing from the data. Please check that the data and SQL command are valid, then try again." ) |
| 194 | print( "Required columns: " ) |
| 195 | print( requiredColumns ) |
| 196 | print( "Actual columns: " ) |
| 197 | print( names( fileData ) ) |
| 198 | print( "Error dump:" ) |
| 199 | print( e ) |
| 200 | quit( status = 1 ) |
| 201 | } |
| 202 | ) |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 203 | |
| 204 | # -------------------------------- |
| 205 | # Switch Down Construct Data Frame |
| 206 | # -------------------------------- |
| 207 | |
| 208 | print( "Constructing Switch Down data frame." ) |
| 209 | |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 210 | downAvgsData <- melt( downAvgs ) |
| 211 | downAvgsData$scale <- fileData$scale |
| 212 | downAvgsData$down_std <- fileData$down_std |
| 213 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 214 | colnames( downAvgsData ) <- c( "ms", |
| 215 | "type", |
| 216 | "scale", |
| 217 | "stds" ) |
| 218 | |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 219 | downAvgsData$type <- as.character( downAvgsData$type ) |
| 220 | downAvgsData$type <- factor( downAvgsData$type, levels=unique( downAvgsData$type ) ) |
| 221 | |
Jeremy Ronquillo | 2d2649d | 2017-09-14 12:53:06 -0700 | [diff] [blame] | 222 | downAvgsData <- na.omit( downAvgsData ) |
| 223 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 224 | sumOfDownAvgs <- fileData[ 'down_device_to_graph_avg' ] + |
| 225 | fileData[ 'ack_to_device_avg' ] + |
| 226 | fileData[ 'fin_ack_to_ack_avg' ] |
Jeremy Ronquillo | 2d2649d | 2017-09-14 12:53:06 -0700 | [diff] [blame] | 227 | |
| 228 | print( "Down Averages Results:" ) |
| 229 | print( downAvgsData ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 230 | |
| 231 | # ********************************************************** |
| 232 | # STEP 3: Generate graphs. |
| 233 | # ********************************************************** |
| 234 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 235 | print( "**********************************************************" ) |
| 236 | print( "STEP 3: Generate Graph." ) |
| 237 | print( "**********************************************************" ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 238 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 239 | # ------------------------------------ |
| 240 | # Initialize Variables For Both Graphs |
| 241 | # ------------------------------------ |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 242 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 243 | print( "Initializing variables used in both graphs." ) |
Jeremy Ronquillo | 2d2649d | 2017-09-14 12:53:06 -0700 | [diff] [blame] | 244 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 245 | theme_set( theme_grey( base_size = 22 ) ) # set the default text size of the graphs |
| 246 | xScaleConfig <- scale_x_continuous( breaks = c( 1, 3, 5, 7, 9 ) ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 247 | xLabel <- xlab( "Scale" ) |
| 248 | yLabel <- ylab( "Latency (ms)" ) |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 249 | imageWidth <- 15 |
| 250 | imageHeight <- 10 |
| 251 | imageDPI <- 200 |
| 252 | errorBarColor <- rgb( 140, 140, 140, maxColorValue = 255 ) |
| 253 | barWidth <- 1 |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 254 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 255 | theme <- theme( plot.title = element_text( hjust = 0.5, size = 32, face = 'bold' ), |
| 256 | legend.position = "bottom", |
| 257 | legend.text = element_text( size = 22 ), |
| 258 | legend.title = element_blank(), |
Jeremy Ronquillo | 94f99dd | 2018-01-05 11:11:27 -0800 | [diff] [blame] | 259 | legend.key.size = unit( 1.5, 'lines' ), |
| 260 | plot.subtitle = element_text( size=16, hjust=1.0 ) ) |
| 261 | |
| 262 | subtitle <- paste( "Last Updated: ", format( Sys.time(), format = "%b %d, %Y at %I:%M %p %Z" ), sep="" ) |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 263 | |
| 264 | # ---------------------------- |
| 265 | # Switch Up Generate Main Plot |
| 266 | # ---------------------------- |
| 267 | |
| 268 | print( "Creating main plot (Switch Up Latency)." ) |
| 269 | |
| 270 | mainPlot <- ggplot( data = upAvgsData, aes( x = scale, |
| 271 | y = ms, |
| 272 | fill = type, |
| 273 | ymin = fileData[ 'up_end_to_end_avg' ], |
| 274 | ymax = fileData[ 'up_end_to_end_avg' ] + stds ) ) |
| 275 | |
| 276 | # ---------------------------------------- |
| 277 | # Switch Up Fundamental Variables Assigned |
| 278 | # ---------------------------------------- |
| 279 | |
| 280 | print( "Generating fundamental graph data (Switch Up Latency)." ) |
| 281 | |
Jeremy Ronquillo | 94f99dd | 2018-01-05 11:11:27 -0800 | [diff] [blame] | 282 | title <- labs( title = "Switch Up Latency", subtitle = subtitle ) |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 283 | |
| 284 | fundamentalGraphData <- mainPlot + |
| 285 | xScaleConfig + |
| 286 | xLabel + |
| 287 | yLabel + |
| 288 | theme + |
| 289 | title |
| 290 | |
| 291 | # ------------------------------------- |
| 292 | # Switch Up Generating Bar Graph Format |
| 293 | # ------------------------------------- |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 294 | |
| 295 | print( "Generating bar graph with error bars (Switch Up Latency)." ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 296 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 297 | barGraphFormat <- geom_bar( stat = "identity", width = barWidth ) |
| 298 | errorBarFormat <- geom_errorbar( width = barWidth, color = errorBarColor ) |
| 299 | |
| 300 | barGraphValues <- geom_text( aes( x = upAvgsData$scale, |
| 301 | y = sumOfUpAvgs + 0.04 * max( sumOfUpAvgs ), |
| 302 | label = format( sumOfUpAvgs, |
| 303 | digits = 3, |
| 304 | big.mark = ",", |
| 305 | scientific = FALSE ) ), |
| 306 | size = 7.0, |
| 307 | fontface = "bold" ) |
| 308 | |
| 309 | wrapLegend <- guides( fill = guide_legend( nrow = 2, byrow = TRUE ) ) |
| 310 | |
| 311 | result <- fundamentalGraphData + |
| 312 | barGraphFormat + |
| 313 | errorBarFormat + |
| 314 | barGraphValues + |
| 315 | wrapLegend |
| 316 | |
| 317 | # --------------------------------- |
| 318 | # Switch Up Exporting Graph to File |
| 319 | # --------------------------------- |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 320 | |
| 321 | print( paste( "Saving bar chart with error bars (Switch Up Latency) to", errBarOutputFileUp ) ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 322 | |
Jeremy Ronquillo | 9ea85d0 | 2017-11-27 10:21:03 -0800 | [diff] [blame] | 323 | tryCatch( ggsave( errBarOutputFileUp, |
| 324 | width = imageWidth, |
| 325 | height = imageHeight, |
| 326 | dpi = imageDPI ), |
| 327 | error = function( e ){ |
| 328 | print( "[ERROR] There was a problem saving the graph due to a graph formatting exception. Error dump:" ) |
| 329 | print( e ) |
| 330 | quit( status = 1 ) |
| 331 | } |
| 332 | ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 333 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 334 | print( paste( "[SUCCESS] Successfully wrote bar chart with error bars (Switch Up Latency) out to", errBarOutputFileUp ) ) |
| 335 | |
| 336 | # ------------------------------ |
| 337 | # Switch Down Generate Main Plot |
| 338 | # ------------------------------ |
| 339 | |
| 340 | print( "Creating main plot (Switch Down Latency)." ) |
| 341 | |
| 342 | mainPlot <- ggplot( data = downAvgsData, aes( x = scale, |
| 343 | y = ms, |
| 344 | fill = type, |
| 345 | ymin = fileData[ 'down_end_to_end_avg' ], |
| 346 | ymax = fileData[ 'down_end_to_end_avg' ] + stds ) ) |
| 347 | |
| 348 | # ------------------------------------------ |
| 349 | # Switch Down Fundamental Variables Assigned |
| 350 | # ------------------------------------------ |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 351 | |
| 352 | print( "Generating fundamental graph data (Switch Down Latency)." ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 353 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 354 | colors <- scale_fill_manual( values=c( "#F77670", # Red |
| 355 | "#619DFA", # Blue |
| 356 | "#18BA48" ) ) # Green |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 357 | |
Jeremy Ronquillo | 94f99dd | 2018-01-05 11:11:27 -0800 | [diff] [blame] | 358 | title <- labs( title = "Switch Down Latency", subtitle = subtitle ) |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 359 | |
| 360 | fundamentalGraphData <- mainPlot + |
| 361 | xScaleConfig + |
| 362 | xLabel + |
| 363 | yLabel + |
| 364 | theme + |
| 365 | title |
| 366 | |
| 367 | # --------------------------------------- |
| 368 | # Switch Down Generating Bar Graph Format |
| 369 | # --------------------------------------- |
| 370 | |
| 371 | print( "Generating bar graph with error bars (Switch Down Latency)." ) |
| 372 | barGraphFormat <- geom_bar( stat = "identity", width = barWidth ) |
| 373 | errorBarFormat <- geom_errorbar( width = barWidth, color = errorBarColor ) |
| 374 | |
| 375 | barGraphValues <- geom_text( aes( x = downAvgsData$scale, |
| 376 | y = sumOfDownAvgs + 0.04 * max( sumOfDownAvgs ), |
| 377 | label = format( sumOfDownAvgs, |
| 378 | digits = 3, |
| 379 | big.mark = ",", |
| 380 | scientific = FALSE ) ), |
| 381 | size = 7.0, |
| 382 | fontface = "bold" ) |
| 383 | |
| 384 | wrapLegend <- guides( fill = guide_legend( nrow = 1, byrow = TRUE ) ) |
| 385 | |
| 386 | result <- fundamentalGraphData + |
| 387 | barGraphFormat + |
| 388 | colors + |
| 389 | errorBarFormat + |
| 390 | barGraphValues + |
| 391 | wrapLegend |
| 392 | |
| 393 | # ----------------------------------- |
| 394 | # Switch Down Exporting Graph to File |
| 395 | # ----------------------------------- |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 396 | |
| 397 | print( paste( "Saving bar chart with error bars (Switch Down Latency) to", errBarOutputFileDown ) ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 398 | |
Jeremy Ronquillo | 9ea85d0 | 2017-11-27 10:21:03 -0800 | [diff] [blame] | 399 | tryCatch( ggsave( errBarOutputFileDown, |
| 400 | width = imageWidth, |
| 401 | height = imageHeight, |
| 402 | dpi = imageDPI ), |
| 403 | error = function( e ){ |
| 404 | print( "[ERROR] There was a problem saving the graph due to a graph formatting exception. Error dump:" ) |
| 405 | print( e ) |
| 406 | quit( status = 1 ) |
| 407 | } |
| 408 | ) |
Jeremy Ronquillo | 6df8781 | 2017-08-28 16:17:36 +0000 | [diff] [blame] | 409 | |
Jeremy Ronquillo | 7673f80 | 2017-10-30 09:42:44 -0700 | [diff] [blame] | 410 | print( paste( "[SUCCESS] Successfully wrote bar chart with error bars (Switch Down Latency) out to", errBarOutputFileDown ) ) |
Jeremy Ronquillo | 9ea85d0 | 2017-11-27 10:21:03 -0800 | [diff] [blame] | 411 | quit( status = 0 ) |