File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ plot_28_day_frequency_state <- function(df_to_plot) {
1313
1414 covidcast_signal_to_plot = make_covidcast_signal(states_present , df_to_plot , " state" )
1515
16- plot(covidcast_signal_to_plot , range = c(0 ,28 ))
16+ plot(covidcast_signal_to_plot ,
17+ title = " State frequency in last 28 days" ,
18+ range = c(0 , 28 ))
1719}
1820
1921plot_28_day_frequency_county <- function (df_to_plot ) {
@@ -24,5 +26,7 @@ plot_28_day_frequency_county <- function(df_to_plot) {
2426
2527 covidcast_signal_to_plot = make_covidcast_signal(counties_present , df_to_plot , " county" )
2628
27- plot(covidcast_signal_to_plot , range = c(0 ,28 ))
29+ plot(covidcast_signal_to_plot ,
30+ title = " County frequency in last 28 days" ,
31+ range = c(0 , 28 ))
2832}
You can’t perform that action at this time.
0 commit comments