Skip to content

Commit

Permalink
removed xaxis label from main figure on website
Browse files Browse the repository at this point in the history
  • Loading branch information
emchristensen committed Oct 4, 2017
1 parent caa1559 commit 35b8605
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion forecast_tools.R
Original file line number Diff line number Diff line change
Expand Up @@ -335,5 +335,6 @@ forecast_viz <- function(obs_data, obs_date_col_name, obs_val_col_name, for_data
ggplot(obs_data_sub, aes_string(x = obs_date_col_name)) +
geom_ribbon(data = for_data_sub, mapping = aes_string(x = for_date_col_name, ymin = for_lowerpi_col_name, ymax = for_upperpi_col_name), fill = "lightblue") +
geom_line(aes_string(y = obs_val_col_name)) +
geom_line(data = for_data_sub, mapping = aes_string(x = for_date_col_name, y = for_val_col_name), color = "blue")
geom_line(data = for_data_sub, mapping = aes_string(x = for_date_col_name, y = for_val_col_name), color = "blue") +
theme(axis.title.x=element_blank())
}

0 comments on commit 35b8605

Please sign in to comment.