class: center, middle, inverse, title-slide # Tidy data and statistical visualisation <br> to support exploration of temporal data with R ### Earo Wang ### May 29, 2017 <br> <br> Slides on <a href="http://bit.ly/tsvis2017" class="uri">http://bit.ly/tsvis2017</a> --- ## Agenda * Why `tidyverse`? Tidy data * What does `gg` in `ggplot2` stand for? Grammar of graphics * Interactive data visualisation on the web + plotly: `ggplotly()`, `plot_ly`, animation + shiny app: `wanderer4melb` ??? Lemme introduce myself a little bit. I'm currently doing my PhD at Monash, working with Di and Rob. My research is about visualising temporal data. This is what I'm going to cover for the next one hour and half. First, I'll talk about why `tidyverse` is great. `tidyverse` is a collection of R packages that center around the "tidy data" concept. We'll learn some verbs/functions that do the data wrangling to get the tidy temporal data. As data analysts ... Second, we'll learn about the `ggplot2` that handles with plotting. You may wonder why it's called `ggplot2` and what `gg` means. It's grammar of graphics for plots. I'll talk about how the `ggplot2` functions powered by the grammar help us to visualise time series data. In the final bit, I'm going to show you some demos about interactive graphics using `plotly` and `shiny`. --- background-image: url(img/stickers.001.png) background-size: 80% background-position: 60% 90% ## R packages * `tidyverse`: a collection of R packages surrounding "tidy data" * `stringr`: handle string manipulation * `forcats`: handle categorical variables * `lubridate`: lubricate date-times process * `plotly`: create web-based visualisation * `shiny`: build interactive web applications * `knitr`: provide tools for dynamic report generation * `devtools`: help with R packages development ??? Here's a list of R packages that we're going to use for this part. As I said before, `tidyverse` is a set of packages including `ggplot2`, `dplyr`, `readr` etc. `stringr` for strings and `forcats` for categorical variables. `lubridate` is for making dealing with dates easier. `plotly` and `shiny` for interactive graphics on the web. --- class: inverse middle center # Tidy data ??? Okay. Now, let's start with tidy data. --- class: middle ## What is tidy data? * Each variable forms a column. * Each observation forms a row. * Each type of observational unit forms a table. ??? What is tidy data? What makes a dataset tidy? 1.2.3 The data structure is a rectangular cases-by-variables data layout that underlines the `tidyverse`. I'll use three datasets to explain what tidy data actually mean. How important is the tidy data for further data analysis and vis. --- .left-column[ ## Melbourne pedestrian data πΆββοΈ ### - sensor data ] .right-column[ ```r ped_loc <- read_csv("data/sensor_locations.csv") ped_loc %>% select( `Sensor ID`, `Sensor Description`, Longitude, Latitude ) ``` ``` #> # A tibble: 43 x 4 #> `Sensor ID` `Sensor Description` Longitude #> <int> <chr> <dbl> #> 1 22 Flinders St-Elizabeth St (East) 144.9651 #> 2 34 Flinders St-Spark La 144.9742 #> 3 11 Waterfront City 144.9396 #> 4 8 Webb Bridge 144.9472 #> 5 7 Birrarung Marr 144.9714 #> 6 13 Flagstaff Station 144.9566 #> 7 15 State Library 144.9645 #> 8 27 QV Market-Peel St 144.9566 #> 9 12 New Quay 144.9429 #> 10 24 Spencer St-Collins St (North) 144.9545 #> # ... with 33 more rows, and 1 more variables: #> # Latitude <dbl> ``` .footnote[.red[*] source: [the city of Melbourne](http://www.pedestrian.melbourne.vic.gov.au)] ] ??? The first dataset we're going to look at is ... The dataset is sourced from Melbourne Open Data Portal. You can actually click here to check out the web page that hosts the dataset. Since 2009, the city of Melb started to install some sensors that capture the foot traffic every hour. This data can be used for urban planning or business management. For example, if you're a cafe owner, by looking at the hourly traffic to decide the trading hours. Until today, there are 43 sensors have been installed across the city. Here, I read the sensor locations data into R using `read_csv` from `readr` pkg. Rob has talked about the pipe operator. I pass the data to the `select` function and select four colnames, that is ... --- .left-column[ ## Melbourne pedestrian data πΆββοΈ ### - sensor data ### - sensor map ] .right-column[ <img src="figure/ped-map-1.png" style="display: block; margin: auto;" /> ] ??? As I know sensor's long and lat, I could plot these sensors on the map of Melb. It clearly shows the locations of these sensors. --- .left-column[ ## Melbourne pedestrian data πΆββοΈ ### - sensor data ### - sensor map ### - hourly counts ] .right-column[ ```r ped_2017 <- read_csv("data/pedestrian_03_2017.csv") ped_2017 ``` ``` #> # A tibble: 744 x 45 #> Date Hour `State Library` `Collins Place (South)` #> <chr> <int> <int> <int> #> 1 01/03/2017 0 140 36 #> 2 01/03/2017 1 64 17 #> 3 01/03/2017 2 29 11 #> 4 01/03/2017 3 13 9 #> 5 01/03/2017 4 13 10 #> 6 01/03/2017 5 31 84 #> 7 01/03/2017 6 92 252 #> 8 01/03/2017 7 327 767 #> 9 01/03/2017 8 908 1997 #> 10 01/03/2017 9 775 1319 #> # ... with 734 more rows, and 41 more variables: `Collins #> # Place (North)` <int>, `Flagstaff Station` <int>, #> # `Melbourne Central` <int>, `Town Hall (West)` <int>, #> # `Bourke Street Mall (North)` <int>, `Bourke Street Mall #> # (South)` <int>, `Australia on Collins` <int>, `Southern #> # Cross Station` <int>, `Victoria Point` <int>, `New #> # Quay` <int>, `Waterfront City` <int>, `Webb #> # Bridge` <int>, `Princes Bridge` <int>, `Flinders St #> # Station Underpass` <int>, `Sandridge Bridge` <int>, #> # `Birrarung Marr` <int>, `QV Market-Elizabeth #> # (West)` <int>, `Flinders St-Elizabeth St (East)` <int>, #> # `Spencer St-Collins St (North)` <int>, `Spencer #> # St-Collins St (South)` <int>, `Bourke St-Russell St #> # (West)` <int>, `Convention/Exhibition Centre` <int>, #> # `Chinatown-Swanston St (North)` <int>, `Chinatown-Lt #> # Bourke St (South)` <int>, `QV Market-Peel St` <int>, #> # `Vic Arts Centre` <int>, `Lonsdale St (South)` <int>, #> # `Lygon St (West)` <int>, `Flinders St-Spring St #> # (West)` <int>, `Flinders St-Spark Lane` <int>, `Alfred #> # Place` <int>, `Queen Street (West)` <int>, `Lygon #> # Street (East)` <int>, `Flinders St-Swanston St #> # (West)` <int>, `Spring St-Lonsdale St (South)` <int>, #> # `City Square` <int>, `St. Kilda-Alexandra #> # Gardens` <int>, `Grattan St-Swanston St (West)` <int>, #> # `Monash Rd-Swanston St (West)` <int>, `Tin #> # Alley-Swanston St (West)` <int>, Southbank <int> ``` ] ??? Besides the locations, we're more interested in learning about the hourly pedestrian counts at every sensor. I read the second csv file that contains the pedestrian counts in March. For this data, there are 744 obs and 45 columns. ... Date is read into as character ... Lemme me refer to this kind of format as wide format by contrast to long form. I'll explain what I mean by wide and long later. --- background-image: url(img/verb.001.png) background-size: 85% .left-column[ ## Melbourne pedestrian data πΆββοΈ ### - sensor data ### - sensor map ### - hourly counts ### - tidy data ] .right-column[ ] ??? The remedy is converting the wide format to the long data. The top data table is what we have, wide gather the headers to one key variable, and the counts to the value variable. By having more than 40 columns, we have four vars to work with. Looking at this long form, what are the variables become clearer compared to the wide format. Each variable forms a column. from tidyr organise the same data in two different ways. To be consistent, tidy long data used. --- .left-column[ ## Melbourne pedestrian data πΆββοΈ ### - sensor data ### - sensor map ### - hourly counts ### - tidy data ] .right-column[ ```r ped_long <- ped_2017 %>% gather( key = Sensor_Name, value = Counts, `State Library`:Southbank ) %>% mutate( Date_Time = dmy_hms(paste(Date, Hour, "00:00")), Date = dmy(Date) ) ped_long ``` ``` #> # A tibble: 31,992 x 5 #> Date Hour Sensor_Name Counts #> <date> <int> <chr> <int> #> 1 2017-03-01 0 State Library 140 #> 2 2017-03-01 1 State Library 64 #> 3 2017-03-01 2 State Library 29 #> 4 2017-03-01 3 State Library 13 #> 5 2017-03-01 4 State Library 13 #> 6 2017-03-01 5 State Library 31 #> 7 2017-03-01 6 State Library 92 #> 8 2017-03-01 7 State Library 327 #> 9 2017-03-01 8 State Library 908 #> 10 2017-03-01 9 State Library 775 #> # ... with 31,982 more rows, and 1 more variables: #> # Date_Time <dttm> ``` ] ??? Any questions so far? --- .left-column[ ## Otway weather data βοΈ ### - what variables? ] .right-column[ ```r otway_weather <- read_csv("data/weather_2016.csv") head(otway_weather) ``` ``` #> # A tibble: 6 x 35 #> ID YEAR MONTH ELEMENT VALUE1 VALUE2 VALUE3 #> <chr> <int> <chr> <chr> <int> <int> <int> #> 1 ASN00090015 2016 01 TMAX 209 195 193 #> 2 ASN00090015 2016 01 TMIN 175 145 162 #> 3 ASN00090015 2016 01 PRCP 0 0 0 #> 4 ASN00090015 2016 01 TAVG 166 174 175 #> 5 ASN00090015 2016 02 TMAX 217 239 185 #> 6 ASN00090015 2016 02 TMIN 120 146 149 #> # ... with 28 more variables: VALUE4 <int>, VALUE5 <int>, #> # VALUE6 <int>, VALUE7 <int>, VALUE8 <int>, VALUE9 <int>, #> # VALUE10 <int>, VALUE11 <int>, VALUE12 <int>, #> # VALUE13 <int>, VALUE14 <int>, VALUE15 <int>, #> # VALUE16 <int>, VALUE17 <int>, VALUE18 <int>, #> # VALUE19 <int>, VALUE20 <int>, VALUE21 <int>, #> # VALUE22 <int>, VALUE23 <int>, VALUE24 <int>, #> # VALUE25 <int>, VALUE26 <int>, VALUE27 <int>, #> # VALUE28 <int>, VALUE29 <int>, VALUE30 <int>, #> # VALUE31 <int> ``` .footnote[.red[*] source: [global historical climatology network](https://www1.ncdc.noaa.gov/pub/data/ghcn/daily/gsn/)] ] --- .left-column[ ## Otway weather data βοΈ ### - what variables? ### - tidying π ] .right-column[ ```r otway_weather %>% gather(DAY, VALUE, VALUE1:VALUE31) ``` ``` #> # A tibble: 1,488 x 6 #> ID YEAR MONTH ELEMENT DAY VALUE #> <chr> <int> <chr> <chr> <chr> <int> #> 1 ASN00090015 2016 01 TMAX VALUE1 209 #> 2 ASN00090015 2016 01 TMIN VALUE1 175 #> 3 ASN00090015 2016 01 PRCP VALUE1 0 #> 4 ASN00090015 2016 01 TAVG VALUE1 166 #> 5 ASN00090015 2016 02 TMAX VALUE1 217 #> 6 ASN00090015 2016 02 TMIN VALUE1 120 #> 7 ASN00090015 2016 02 PRCP VALUE1 2 #> 8 ASN00090015 2016 02 TAVG VALUE1 187 #> 9 ASN00090015 2016 03 TMAX VALUE1 243 #> 10 ASN00090015 2016 03 TMIN VALUE1 172 #> # ... with 1,478 more rows ``` ] --- .left-column[ ## Otway weather data βοΈ ### - what variables? ### - tidying π ] .right-column[ ```r otway_weather %>% gather(DAY, VALUE, VALUE1:VALUE31) %>% mutate( DAY = str_sub(DAY, start = 6), DATE = ymd(paste(YEAR, MONTH, DAY, sep = "-")) ) %>% arrange(DATE) %>% select(ID, DATE, ELEMENT, VALUE) %>% filter(!(is.na(DATE))) ``` ``` #> # A tibble: 1,464 x 4 #> ID DATE ELEMENT VALUE #> <chr> <date> <chr> <int> #> 1 ASN00090015 2016-01-01 TMAX 209 #> 2 ASN00090015 2016-01-01 TMIN 175 #> 3 ASN00090015 2016-01-01 PRCP 0 #> 4 ASN00090015 2016-01-01 TAVG 166 #> 5 ASN00090015 2016-01-02 TMAX 195 #> 6 ASN00090015 2016-01-02 TMIN 145 #> 7 ASN00090015 2016-01-02 PRCP 0 #> 8 ASN00090015 2016-01-02 TAVG 174 #> 9 ASN00090015 2016-01-03 TMAX 193 #> 10 ASN00090015 2016-01-03 TMIN 162 #> # ... with 1,454 more rows ``` ] --- .left-column[ ## Otway weather data βοΈ ### - what variables? ### - tidying π ] .right-column[ ```r otway_weather %>% gather(DAY, VALUE, VALUE1:VALUE31) %>% mutate( DAY = str_sub(DAY, start = 6), DATE = ymd(paste(YEAR, MONTH, DAY, sep = "-")) ) %>% arrange(DATE) %>% select(ID, DATE, ELEMENT, VALUE) %>% filter(!(is.na(DATE))) %>% mutate( VALUE = if_else(VALUE < -999, NA_integer_, VALUE), VALUE = VALUE / 10 ) %>% spread(ELEMENT, VALUE) ``` ``` #> # A tibble: 366 x 6 #> ID DATE PRCP TAVG TMAX TMIN #> * <chr> <date> <dbl> <dbl> <dbl> <dbl> #> 1 ASN00090015 2016-01-01 0 16.6 20.9 17.5 #> 2 ASN00090015 2016-01-02 0 17.4 19.5 14.5 #> 3 ASN00090015 2016-01-03 0 17.5 19.3 16.2 #> 4 ASN00090015 2016-01-04 0 17.7 20.2 16.7 #> 5 ASN00090015 2016-01-05 0 17.8 20.6 16.1 #> 6 ASN00090015 2016-01-06 0 17.1 20.3 16.5 #> 7 ASN00090015 2016-01-07 0 15.8 19.7 14.8 #> 8 ASN00090015 2016-01-08 0 15.6 18.8 14.2 #> 9 ASN00090015 2016-01-09 0 15.7 19.0 11.3 #> 10 ASN00090015 2016-01-10 0 18.6 25.4 11.9 #> # ... with 356 more rows ``` ] --- .left-column[ ## Otway weather data βοΈ ### - what variables? ### - tidying π ] .right-column[ ```r otway_tidy <- otway_weather %>% gather(DAY, VALUE, VALUE1:VALUE31) %>% mutate( DAY = str_sub(DAY, start = 6), DATE = ymd(paste(YEAR, MONTH, DAY, sep = "-")) ) %>% arrange(DATE) %>% select(ID, DATE, ELEMENT, VALUE) %>% filter(!(is.na(DATE))) %>% mutate( VALUE = if_else(VALUE < -999, NA_integer_, VALUE), VALUE = VALUE / 10 ) %>% spread(ELEMENT, VALUE) %>% mutate(NAVG = (TMAX + TMIN) / 2) head(otway_tidy) ``` ``` #> # A tibble: 6 x 7 #> ID DATE PRCP TAVG TMAX TMIN NAVG #> <chr> <date> <dbl> <dbl> <dbl> <dbl> <dbl> #> 1 ASN00090015 2016-01-01 0 16.6 20.9 17.5 19.20 #> 2 ASN00090015 2016-01-02 0 17.4 19.5 14.5 17.00 #> 3 ASN00090015 2016-01-03 0 17.5 19.3 16.2 17.75 #> 4 ASN00090015 2016-01-04 0 17.7 20.2 16.7 18.45 #> 5 ASN00090015 2016-01-05 0 17.8 20.6 16.1 18.35 #> 6 ASN00090015 2016-01-06 0 17.1 20.3 16.5 18.40 ``` ] ??? TAVG: UTC time zone rather than local time --- .left-column[ ## Your turn ### - billboard data ] .right-column[ `billboard.csv` records the date a song first entered the Billboard Top 100 in 2000 and its rank over 76 weeks. ``` #> # A tibble: 6 x 81 #> year artist track #> <int> <chr> <chr> #> 1 2000 Backstreet Boys, The Shape Of My Heart #> 2 2000 Backstreet Boys, The Show Me The Meaning ... #> 3 2000 Backstreet Boys, The The One #> 4 2000 N'Sync Bye Bye Bye #> 5 2000 N'Sync It's Gonna Be Me #> 6 2000 N'Sync This I Promise You #> # ... with 78 more variables: time <time>, #> # date.entered <date>, `1` <int>, `2` <int>, `3` <int>, #> # `4` <int>, `5` <int>, `6` <int>, `7` <int>, `8` <int>, #> # `9` <int>, `10` <int>, `11` <int>, `12` <int>, #> # `13` <int>, `14` <int>, `15` <int>, `16` <int>, #> # `17` <int>, `18` <int>, `19` <int>, `20` <int>, #> # `21` <int>, `22` <int>, `23` <int>, `24` <int>, #> # `25` <int>, `26` <int>, `27` <chr>, `28` <chr>, #> # `29` <chr>, `30` <chr>, `31` <chr>, `32` <chr>, #> # `33` <chr>, `34` <chr>, `35` <chr>, `36` <chr>, #> # `37` <chr>, `38` <chr>, `39` <chr>, `40` <chr>, #> # `41` <chr>, `42` <chr>, `43` <chr>, `44` <chr>, #> # `45` <chr>, `46` <chr>, `47` <chr>, `48` <chr>, #> # `49` <chr>, `50` <chr>, `51` <chr>, `52` <chr>, #> # `53` <chr>, `54` <chr>, `55` <chr>, `56` <chr>, #> # `57` <chr>, `58` <chr>, `59` <chr>, `60` <chr>, #> # `61` <chr>, `62` <chr>, `63` <chr>, `64` <chr>, #> # `65` <chr>, `66` <chr>, `67` <chr>, `68` <chr>, #> # `69` <chr>, `70` <chr>, `71` <chr>, `72` <chr>, #> # `73` <chr>, `74` <chr>, `75` <chr>, `76` <chr> ``` ] ??? * Old dataset * A song first time entered to the billboard Top 100, when it's entered * The position and if NA, dropped from the Top 100 --- .left-column[ ## Your turn ### - billboard data ### - end products ] .right-column[ ```r song ``` ``` #> # A tibble: 6 x 4 #> id artist track #> <int> <chr> <chr> #> 1 1 Backstreet Boys, The Shape Of My Heart #> 2 2 Backstreet Boys, The Show Me The Meaning ... #> 3 3 Backstreet Boys, The The One #> 4 4 N'Sync Bye Bye Bye #> 5 5 N'Sync It's Gonna Be Me #> 6 6 N'Sync This I Promise You #> # ... with 1 more variables: time <time> ``` ```r rank ``` ``` #> # A tibble: 456 x 4 #> id date.entered week rank #> <int> <date> <chr> <chr> #> 1 1 2000-10-14 1 39 #> 2 2 2000-01-01 1 74 #> 3 3 2000-05-27 1 58 #> 4 4 2000-01-29 1 42 #> 5 5 2000-05-06 1 82 #> 6 6 2000-09-30 1 68 #> 7 1 2000-10-14 2 25 #> 8 2 2000-01-01 2 62 #> 9 3 2000-05-27 2 50 #> 10 4 2000-01-29 2 20 #> # ... with 446 more rows ``` ] ??? * convert wide to long * spit to two data tables * Follows the third point of the tidy data principles: Each type of observational unit forms a table. * 40 mins get done --- class: inverse middle center # Grammar of graphics ??? * basic/good understanding of tidy data structure * bc it builds a solid foundation to statistical vis. --- class: middle ## What is grammar of graphics? * In 1999, "The grammar of graphics" by Leland Wilkinson * In 2008, `ggplot2` by Hadley Wickham * A conceptual framework for mapping variables to graphical elements * The analogue of doing a functional mapping of random variables. For example, `\(n\)` independent and identically distributed RVs `\(X_1, \ldots, X_n\)`, the mean and the standard deviation are defined as `$$\bar{X} = \frac{1}{n} \sum_{i = 1}^{n} X_{i} \qquad S_{n-1} = \frac{1}{n-1} \sum_{i = 1}^{n} \left(X_i - \bar{X} \right)^2.$$` ??? we're going to use some short but comprehensive vocabulary to describe different sorts of graphs. --- .left-column[ ## More on pedestrian data ### - revisit ] .right-column[ ```r ped_long ``` ``` #> # A tibble: 31,992 x 5 #> Date Hour Sensor_Name Counts #> <date> <int> <chr> <int> #> 1 2017-03-01 0 State Library 140 #> 2 2017-03-01 1 State Library 64 #> 3 2017-03-01 2 State Library 29 #> 4 2017-03-01 3 State Library 13 #> 5 2017-03-01 4 State Library 13 #> 6 2017-03-01 5 State Library 31 #> 7 2017-03-01 6 State Library 92 #> 8 2017-03-01 7 State Library 327 #> 9 2017-03-01 8 State Library 908 #> 10 2017-03-01 9 State Library 775 #> # ... with 31,982 more rows, and 1 more variables: #> # Date_Time <dttm> ``` ] --- .left-column[ ## More on pedestrian data ### - revisit ### - `ggplot2` ] .right-column[ ``` data: ped_long layer: mapping: x = Date_Time, y = Counts geom: line, point facet: Sensor_Name ``` <img src="figure/ped-ggplot-1-1.svg" style="display: block; margin: auto;" /> ```r ggplot(ped_long, aes(x = Date_Time, y = Counts)) + geom_line() + geom_point() + facet_grid(Sensor_Name ~ ., scale = "free_y") ``` ] ??? * `autoplot`: against time index * This is how we use graphic gramma to describe the plot * Start with a tidy dataset with clearly defined variables. * geom and other aes make the graph perceivable. * facet: trellis plots or lattice plots. * scale: local for comparing shapes instead of magnitudes. --- .left-column[ ## More on pedestrian data ### - revisit ### - `ggplot2` ] .right-column[ ``` data: ped_long layer: mapping: x = Date_Time, y = Counts, colour = Sensor_Name geom: line, point facet: Sensor_Name ``` <img src="figure/ped-ggplot-2-1.svg" style="display: block; margin: auto;" /> ```r ggplot(ped_long, aes(x = Date_Time, y = Counts)) + geom_line(aes(colour = Sensor_Name)) + geom_point(aes(colour = Sensor_Name)) + facet_grid(Sensor_Name ~ ., scale = "free_y") ``` ] ??? * colour is also the part of aes mapping. * not adding additional info in this case. * pedestrian data interesting and rich * southern x as an example to explore * seems that sx has distinctive patterns b/t weekdays and weekend --- .left-column[ ## More on pedestrian data ### - revisit ### - `ggplot2` ### - southern x π ] .right-column[ ```r wday <- c("Monday", "Tuesday", "Wednesday", "Thursday", "Friday") sx <- ped_long %>% filter(Sensor_Name == "Southern Cross Station") %>% mutate( Wday = wday(Date, label = TRUE, abbr = FALSE), Wday = if_else(Wday %in% wday, "Weekday", "Weekend"), Wday = ordered(Wday) ) sx ``` ``` #> # A tibble: 744 x 6 #> Date Hour Sensor_Name Counts #> <date> <int> <chr> <int> #> 1 2017-03-01 0 Southern Cross Station 16 #> 2 2017-03-01 1 Southern Cross Station 8 #> 3 2017-03-01 2 Southern Cross Station 3 #> 4 2017-03-01 3 Southern Cross Station 4 #> 5 2017-03-01 4 Southern Cross Station 1 #> 6 2017-03-01 5 Southern Cross Station 96 #> 7 2017-03-01 6 Southern Cross Station 581 #> 8 2017-03-01 7 Southern Cross Station 1847 #> 9 2017-03-01 8 Southern Cross Station 3863 #> 10 2017-03-01 9 Southern Cross Station 2063 #> # ... with 734 more rows, and 2 more variables: #> # Date_Time <dttm>, Wday <ord> ``` ] --- .left-column[ ## More on pedestrian data ### - revisit ### - `ggplot2` ### - southern x π ] .right-column[ ``` data: southern-cross layer: mapping: x = Hour, y = Counts, colour = Wday geom: line ``` <img src="figure/x-colour-1.svg" style="display: block; margin: auto;" /> ```r ggplot(sx, aes(Hour, Counts, group = Date)) + geom_line(aes(colour = Wday)) ``` ] ??? * explain activities at some time points. * more spread out in afternoon than in morning. * All the daily series are overlaid each other and use color to differentiate weekday and weekends. --- .left-column[ ## More on pedestrian data ### - revisit ### - `ggplot2` ### - southern x π ] .right-column[ ``` data: southern-cross layer: mapping: x = Hour, y = Counts geom: line facet: Wday ``` <img src="figure/x-facet-1.svg" style="display: block; margin: auto;" /> ```r ggplot(sx, aes(Hour, Counts, group = Date)) + geom_line() + facet_wrap(~ Wday, ncol = 2) ``` ] ??? * weekday and weekends are not yet sufficient. * ?what day would make this behave like a weekend. ---> labour day --- .left-column[ ## More on pedestrian data ### - revisit ### - `ggplot2` ### - southern x π ] .right-column[ Expertise and Google in action  ] --- .left-column[ ## More on pedestrian data ### - revisit ### - `ggplot2` ### - southern x π ] .right-column[ ```r labour <- "Labour Day" # 2013-03-13 adele <- "Adele Day" # 2017-03-18 to 19 # Justin Bieber's gig 2017-03-10 sx_more <- sx %>% mutate( Wday = fct_expand(Wday, labour, adele), Wday = if_else( Date == ymd("2017-03-13"), ordered(labour, levels(Wday)), Wday ), Wday = if_else( Date %in% ymd(c("2017-03-18", "2017-03-19")), ordered(adele, levels(Wday)), Wday ) ) head(sx_more) ``` ``` #> # A tibble: 6 x 6 #> Date Hour Sensor_Name Counts #> <date> <int> <chr> <int> #> 1 2017-03-01 0 Southern Cross Station 16 #> 2 2017-03-01 1 Southern Cross Station 8 #> 3 2017-03-01 2 Southern Cross Station 3 #> 4 2017-03-01 3 Southern Cross Station 4 #> 5 2017-03-01 4 Southern Cross Station 1 #> 6 2017-03-01 5 Southern Cross Station 96 #> # ... with 2 more variables: Date_Time <dttm>, Wday <ord> ``` ] ??? transform the data --- .left-column[ ## More on pedestrian data ### - revisit ### - `ggplot2` ### - southern x π ] .right-column[ ``` data: southern-cross-more layer: mapping: x = Hour, y = Counts geom: line facet: Wday ``` <img src="figure/x-more-p-1.svg" style="display: block; margin: auto;" /> ```r ggplot(sx_more, aes(Hour, Counts, group = Date)) + geom_line() + facet_wrap(~ Wday, ncol = 2) ``` ] ??? grammar remains the same but using transformed data I've just showed you how to use the graphics to explore the data. Notice something unexpected and use your expertise or other resources to explain and produce another graph. Has anyone noticed there's another weired day that I haven't explained/exploited? --- .left-column[ ## More on pedestrian data ### - revisit ### - `ggplot2` ### - southern x π ] .right-column[ ``` data: southern-cross-more layer: mapping: x = Hour, y = Counts geom: line facet: Wday coord: polar ``` <img src="figure/x-polar-1.svg" style="display: block; margin: auto;" /> ```r ggplot(sx_more, aes(Hour, Counts, group = Date)) + geom_line() + facet_wrap(~ Wday, ncol = 2) + coord_polar() ``` ] ??? known as rose plot This slide also shows the advantage of using the grammar. Instead of referring to these as line and rose, the grammar informs you of the difference between the two plots is simply one linear and one polar coordinates. polar: periodic behaviour When you need to decide which plot you should pick up for you presentation, it should be conducted under the statistical hypothesis testing framework, known as visual inference. Be aware of that it provides scientific tools to help with which display is more powerful. --- .left-column[ ## Your turn ### - weather data ] .right-column[ ```r otway_more <- otway_tidy %>% mutate( MONTH = month(DATE, label = TRUE), DAY = mday(DATE) ) otway_more ``` ``` #> # A tibble: 366 x 9 #> ID DATE PRCP TAVG TMAX TMIN NAVG #> <chr> <date> <dbl> <dbl> <dbl> <dbl> <dbl> #> 1 ASN00090015 2016-01-01 0 16.6 20.9 17.5 19.20 #> 2 ASN00090015 2016-01-02 0 17.4 19.5 14.5 17.00 #> 3 ASN00090015 2016-01-03 0 17.5 19.3 16.2 17.75 #> 4 ASN00090015 2016-01-04 0 17.7 20.2 16.7 18.45 #> 5 ASN00090015 2016-01-05 0 17.8 20.6 16.1 18.35 #> 6 ASN00090015 2016-01-06 0 17.1 20.3 16.5 18.40 #> 7 ASN00090015 2016-01-07 0 15.8 19.7 14.8 17.25 #> 8 ASN00090015 2016-01-08 0 15.6 18.8 14.2 16.50 #> 9 ASN00090015 2016-01-09 0 15.7 19.0 11.3 15.15 #> 10 ASN00090015 2016-01-10 0 18.6 25.4 11.9 18.65 #> # ... with 356 more rows, and 2 more variables: #> # MONTH <ord>, DAY <int> ``` ] --- .left-column[ ## Your turn ### - weather data ### - grammar here? ] .right-column[ <img src="figure/otway-month-a-1.svg" style="display: block; margin: auto;" /> ] ??? Discuss with your neighbour what's the graph about and what's the grammar used? --- .left-column[ ## Your turn ### - weather data ### - grammar here? ### - it's ... ] .right-column[ ``` data: otway_more layer: 1. yintercept: year_average geom: hline 2. mapping: xmin = DAY-, xmax = DAY+, ymin = TMIN, ymax = TMAX geom: rect 3. mapping: x = DAY, y = NAVG geom: line facet: MONTH ``` <img src="figure/otway-month-b-1.svg" style="display: block; margin: auto;" /> ] ??? Let them do the lab exercise first without explaining the grammar. 70 mins get done --- background-image: url(img/data-science.png) background-size: 70% background-position: center middle ## Workflow .footnote[.red[*] source: [R for Data Science](http://r4ds.had.co.nz/introduction.html)] ??? * This is the workflow that we followed in the first two parts * The first two sections: transform and visualise * missing component is "model", leave it to Rob * report the findings: communicate using interactive tools --- class: inverse middle center # Interactive data visualisation <br> on the web ??? * bringing interactivity to the graphs provides a different dim to look at the data * serves as an exploratory and communication tool --- .left-column[ ## plotly ### - `ggplotly` ] .right-column[ ```r p <- sx %>% ggplot(aes(Hour, Counts, group = Date)) + geom_line() + facet_wrap(~ Wday, ncol = 2) ggplotly(p) ``` <div id="113553786fc34" style="width:576px;height:324px;" class="plotly html-widget"></div> <script type="application/json" data-for="113553786fc34">{"x":{"data":[{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23],"y":[16,8,3,4,1,96,581,1847,3863,2063,772,771,1747,1441,1012,1180,2512,3340,1477,529,239,136,100,42,null,19,16,7,2,7,97,579,1795,3650,2142,749,684,1529,1446,829,1122,2399,3383,1438,616,204,140,134,57,null,30,11,2,3,8,87,569,1882,3834,2130,780,714,1569,1454,919,1195,2551,2953,1206,469,243,220,154,83,null,22,8,5,5,7,97,577,1969,3920,2181,769,685,1450,1286,858,1071,2452,3568,1475,494,199,141,72,58,null,15,7,4,2,2,94,617,1926,3922,2239,765,723,1596,1705,931,1307,2563,3469,1526,466,216,113,88,54,null,20,3,3,5,4,88,569,1880,3800,2061,781,691,1490,1472,841,1186,2448,3432,1531,448,206,138,134,51,null,19,13,2,2,6,87,574,1886,3788,2104,813,805,1611,1476,873,1121,2509,3391,1443,489,268,115,119,75,null,31,28,12,3,4,90,550,1730,3479,2037,651,717,1574,1480,954,1142,2450,2922,1452,663,255,180,820,352,null,51,21,10,11,7,25,25,166,218,181,151,155,178,191,146,223,238,267,192,118,102,70,62,43,null,20,10,2,1,4,86,468,1911,3759,2185,746,775,1409,1289,779,994,2248,3467,1545,460,225,146,75,41,null,9,6,5,6,9,84,560,1787,3780,2055,738,729,1550,1345,868,1079,2274,3259,1475,472,192,126,73,78,null,20,9,4,0,6,94,613,1732,3733,2209,873,716,1385,1291,847,992,2040,3205,1453,462,219,154,120,51,null,35,18,7,2,5,75,570,1761,3684,1918,697,909,1502,1386,884,1236,2355,2947,1303,573,278,210,171,126,null,36,19,12,12,10,91,551,1792,3861,2100,679,618,1279,1157,759,1094,2455,3511,1510,385,188,145,38,0,null,10,2,7,3,1,76,606,1846,4002,2247,734,646,1421,1089,777,1058,2537,3537,1442,452,147,114,50,32,null,31,2,4,5,6,56,528,1929,3852,2371,780,723,1409,1251,780,1066,2367,3411,1469,499,186,156,101,46,null,17,6,3,1,6,84,624,1856,4087,2279,784,773,1426,1436,956,1129,2557,3570,1763,561,279,160,130,56,null,29,18,9,12,7,96,606,1841,3737,2070,794,773,1476,1249,916,1161,2352,2922,1198,491,216,252,136,90,null,27,6,2,3,8,74,467,1968,4073,2145,743,657,1391,1092,622,796,2336,3464,1451,410,181,97,67,43,null,16,8,4,3,4,86,585,1932,3927,2163,810,735,1369,1316,803,1049,2600,3387,1565,514,233,113,103,36,null,25,10,6,6,3,93,624,2046,3728,2150,782,662,1483,1321,842,1172,2546,3378,1476,444,139,101,62,31,null,13,5,6,0,4,107,605,1946,4026,2230,738,682,1468,1320,839,1113,2622,3731,1474,505,222,186,111,33,null,14,8,3,3,6,89,572,1761,3668,2013,730,729,1436,1332,839,1204,2370,2934,1503,610,270,193,265,134],"text":["Hour: 0<br />Counts: 16<br />Date: 2017-03-01","Hour: 1<br />Counts: 8<br />Date: 2017-03-01","Hour: 2<br />Counts: 3<br />Date: 2017-03-01","Hour: 3<br />Counts: 4<br />Date: 2017-03-01","Hour: 4<br />Counts: 1<br />Date: 2017-03-01","Hour: 5<br />Counts: 96<br />Date: 2017-03-01","Hour: 6<br />Counts: 581<br />Date: 2017-03-01","Hour: 7<br />Counts: 1847<br />Date: 2017-03-01","Hour: 8<br />Counts: 3863<br />Date: 2017-03-01","Hour: 9<br />Counts: 2063<br />Date: 2017-03-01","Hour: 10<br />Counts: 772<br />Date: 2017-03-01","Hour: 11<br />Counts: 771<br />Date: 2017-03-01","Hour: 12<br />Counts: 1747<br />Date: 2017-03-01","Hour: 13<br />Counts: 1441<br />Date: 2017-03-01","Hour: 14<br />Counts: 1012<br />Date: 2017-03-01","Hour: 15<br />Counts: 1180<br />Date: 2017-03-01","Hour: 16<br />Counts: 2512<br />Date: 2017-03-01","Hour: 17<br />Counts: 3340<br />Date: 2017-03-01","Hour: 18<br />Counts: 1477<br />Date: 2017-03-01","Hour: 19<br />Counts: 529<br />Date: 2017-03-01","Hour: 20<br />Counts: 239<br />Date: 2017-03-01","Hour: 21<br />Counts: 136<br />Date: 2017-03-01","Hour: 22<br />Counts: 100<br />Date: 2017-03-01","Hour: 23<br />Counts: 42<br />Date: 2017-03-01",null,"Hour: 0<br />Counts: 19<br />Date: 2017-03-02","Hour: 1<br />Counts: 16<br />Date: 2017-03-02","Hour: 2<br />Counts: 7<br />Date: 2017-03-02","Hour: 3<br />Counts: 2<br />Date: 2017-03-02","Hour: 4<br />Counts: 7<br />Date: 2017-03-02","Hour: 5<br />Counts: 97<br />Date: 2017-03-02","Hour: 6<br />Counts: 579<br />Date: 2017-03-02","Hour: 7<br />Counts: 1795<br />Date: 2017-03-02","Hour: 8<br />Counts: 3650<br />Date: 2017-03-02","Hour: 9<br />Counts: 2142<br />Date: 2017-03-02","Hour: 10<br />Counts: 749<br />Date: 2017-03-02","Hour: 11<br />Counts: 684<br />Date: 2017-03-02","Hour: 12<br />Counts: 1529<br />Date: 2017-03-02","Hour: 13<br />Counts: 1446<br />Date: 2017-03-02","Hour: 14<br />Counts: 829<br />Date: 2017-03-02","Hour: 15<br />Counts: 1122<br />Date: 2017-03-02","Hour: 16<br />Counts: 2399<br />Date: 2017-03-02","Hour: 17<br />Counts: 3383<br />Date: 2017-03-02","Hour: 18<br />Counts: 1438<br />Date: 2017-03-02","Hour: 19<br />Counts: 616<br />Date: 2017-03-02","Hour: 20<br />Counts: 204<br />Date: 2017-03-02","Hour: 21<br />Counts: 140<br />Date: 2017-03-02","Hour: 22<br />Counts: 134<br />Date: 2017-03-02","Hour: 23<br />Counts: 57<br />Date: 2017-03-02",null,"Hour: 0<br />Counts: 30<br />Date: 2017-03-03","Hour: 1<br />Counts: 11<br />Date: 2017-03-03","Hour: 2<br />Counts: 2<br />Date: 2017-03-03","Hour: 3<br />Counts: 3<br />Date: 2017-03-03","Hour: 4<br />Counts: 8<br />Date: 2017-03-03","Hour: 5<br />Counts: 87<br />Date: 2017-03-03","Hour: 6<br />Counts: 569<br />Date: 2017-03-03","Hour: 7<br />Counts: 1882<br />Date: 2017-03-03","Hour: 8<br />Counts: 3834<br />Date: 2017-03-03","Hour: 9<br />Counts: 2130<br />Date: 2017-03-03","Hour: 10<br />Counts: 780<br />Date: 2017-03-03","Hour: 11<br />Counts: 714<br />Date: 2017-03-03","Hour: 12<br />Counts: 1569<br />Date: 2017-03-03","Hour: 13<br />Counts: 1454<br />Date: 2017-03-03","Hour: 14<br />Counts: 919<br />Date: 2017-03-03","Hour: 15<br />Counts: 1195<br />Date: 2017-03-03","Hour: 16<br />Counts: 2551<br />Date: 2017-03-03","Hour: 17<br />Counts: 2953<br />Date: 2017-03-03","Hour: 18<br />Counts: 1206<br />Date: 2017-03-03","Hour: 19<br />Counts: 469<br />Date: 2017-03-03","Hour: 20<br />Counts: 243<br />Date: 2017-03-03","Hour: 21<br />Counts: 220<br />Date: 2017-03-03","Hour: 22<br />Counts: 154<br />Date: 2017-03-03","Hour: 23<br />Counts: 83<br />Date: 2017-03-03",null,"Hour: 0<br />Counts: 22<br />Date: 2017-03-06","Hour: 1<br />Counts: 8<br />Date: 2017-03-06","Hour: 2<br />Counts: 5<br />Date: 2017-03-06","Hour: 3<br />Counts: 5<br />Date: 2017-03-06","Hour: 4<br />Counts: 7<br />Date: 2017-03-06","Hour: 5<br />Counts: 97<br />Date: 2017-03-06","Hour: 6<br />Counts: 577<br />Date: 2017-03-06","Hour: 7<br />Counts: 1969<br />Date: 2017-03-06","Hour: 8<br />Counts: 3920<br />Date: 2017-03-06","Hour: 9<br />Counts: 2181<br />Date: 2017-03-06","Hour: 10<br />Counts: 769<br />Date: 2017-03-06","Hour: 11<br />Counts: 685<br />Date: 2017-03-06","Hour: 12<br />Counts: 1450<br />Date: 2017-03-06","Hour: 13<br />Counts: 1286<br />Date: 2017-03-06","Hour: 14<br />Counts: 858<br />Date: 2017-03-06","Hour: 15<br />Counts: 1071<br />Date: 2017-03-06","Hour: 16<br />Counts: 2452<br />Date: 2017-03-06","Hour: 17<br />Counts: 3568<br />Date: 2017-03-06","Hour: 18<br />Counts: 1475<br />Date: 2017-03-06","Hour: 19<br />Counts: 494<br />Date: 2017-03-06","Hour: 20<br />Counts: 199<br />Date: 2017-03-06","Hour: 21<br />Counts: 141<br />Date: 2017-03-06","Hour: 22<br />Counts: 72<br />Date: 2017-03-06","Hour: 23<br />Counts: 58<br />Date: 2017-03-06",null,"Hour: 0<br />Counts: 15<br />Date: 2017-03-07","Hour: 1<br />Counts: 7<br />Date: 2017-03-07","Hour: 2<br />Counts: 4<br />Date: 2017-03-07","Hour: 3<br />Counts: 2<br />Date: 2017-03-07","Hour: 4<br />Counts: 2<br />Date: 2017-03-07","Hour: 5<br />Counts: 94<br />Date: 2017-03-07","Hour: 6<br />Counts: 617<br />Date: 2017-03-07","Hour: 7<br />Counts: 1926<br />Date: 2017-03-07","Hour: 8<br />Counts: 3922<br />Date: 2017-03-07","Hour: 9<br />Counts: 2239<br />Date: 2017-03-07","Hour: 10<br />Counts: 765<br />Date: 2017-03-07","Hour: 11<br />Counts: 723<br />Date: 2017-03-07","Hour: 12<br />Counts: 1596<br />Date: 2017-03-07","Hour: 13<br />Counts: 1705<br />Date: 2017-03-07","Hour: 14<br />Counts: 931<br />Date: 2017-03-07","Hour: 15<br />Counts: 1307<br />Date: 2017-03-07","Hour: 16<br />Counts: 2563<br />Date: 2017-03-07","Hour: 17<br />Counts: 3469<br />Date: 2017-03-07","Hour: 18<br />Counts: 1526<br />Date: 2017-03-07","Hour: 19<br />Counts: 466<br />Date: 2017-03-07","Hour: 20<br />Counts: 216<br />Date: 2017-03-07","Hour: 21<br />Counts: 113<br />Date: 2017-03-07","Hour: 22<br />Counts: 88<br />Date: 2017-03-07","Hour: 23<br />Counts: 54<br />Date: 2017-03-07",null,"Hour: 0<br />Counts: 20<br />Date: 2017-03-08","Hour: 1<br />Counts: 3<br />Date: 2017-03-08","Hour: 2<br />Counts: 3<br />Date: 2017-03-08","Hour: 3<br />Counts: 5<br />Date: 2017-03-08","Hour: 4<br />Counts: 4<br />Date: 2017-03-08","Hour: 5<br />Counts: 88<br />Date: 2017-03-08","Hour: 6<br />Counts: 569<br />Date: 2017-03-08","Hour: 7<br />Counts: 1880<br />Date: 2017-03-08","Hour: 8<br />Counts: 3800<br />Date: 2017-03-08","Hour: 9<br />Counts: 2061<br />Date: 2017-03-08","Hour: 10<br />Counts: 781<br />Date: 2017-03-08","Hour: 11<br />Counts: 691<br />Date: 2017-03-08","Hour: 12<br />Counts: 1490<br />Date: 2017-03-08","Hour: 13<br />Counts: 1472<br />Date: 2017-03-08","Hour: 14<br />Counts: 841<br />Date: 2017-03-08","Hour: 15<br />Counts: 1186<br />Date: 2017-03-08","Hour: 16<br />Counts: 2448<br />Date: 2017-03-08","Hour: 17<br />Counts: 3432<br />Date: 2017-03-08","Hour: 18<br />Counts: 1531<br />Date: 2017-03-08","Hour: 19<br />Counts: 448<br />Date: 2017-03-08","Hour: 20<br />Counts: 206<br />Date: 2017-03-08","Hour: 21<br />Counts: 138<br />Date: 2017-03-08","Hour: 22<br />Counts: 134<br />Date: 2017-03-08","Hour: 23<br />Counts: 51<br />Date: 2017-03-08",null,"Hour: 0<br />Counts: 19<br />Date: 2017-03-09","Hour: 1<br />Counts: 13<br />Date: 2017-03-09","Hour: 2<br />Counts: 2<br />Date: 2017-03-09","Hour: 3<br />Counts: 2<br />Date: 2017-03-09","Hour: 4<br />Counts: 6<br />Date: 2017-03-09","Hour: 5<br />Counts: 87<br />Date: 2017-03-09","Hour: 6<br />Counts: 574<br />Date: 2017-03-09","Hour: 7<br />Counts: 1886<br />Date: 2017-03-09","Hour: 8<br />Counts: 3788<br />Date: 2017-03-09","Hour: 9<br />Counts: 2104<br />Date: 2017-03-09","Hour: 10<br />Counts: 813<br />Date: 2017-03-09","Hour: 11<br />Counts: 805<br />Date: 2017-03-09","Hour: 12<br />Counts: 1611<br />Date: 2017-03-09","Hour: 13<br />Counts: 1476<br />Date: 2017-03-09","Hour: 14<br />Counts: 873<br />Date: 2017-03-09","Hour: 15<br />Counts: 1121<br />Date: 2017-03-09","Hour: 16<br />Counts: 2509<br />Date: 2017-03-09","Hour: 17<br />Counts: 3391<br />Date: 2017-03-09","Hour: 18<br />Counts: 1443<br />Date: 2017-03-09","Hour: 19<br />Counts: 489<br />Date: 2017-03-09","Hour: 20<br />Counts: 268<br />Date: 2017-03-09","Hour: 21<br />Counts: 115<br />Date: 2017-03-09","Hour: 22<br />Counts: 119<br />Date: 2017-03-09","Hour: 23<br />Counts: 75<br />Date: 2017-03-09",null,"Hour: 0<br />Counts: 31<br />Date: 2017-03-10","Hour: 1<br />Counts: 28<br />Date: 2017-03-10","Hour: 2<br />Counts: 12<br />Date: 2017-03-10","Hour: 3<br />Counts: 3<br />Date: 2017-03-10","Hour: 4<br />Counts: 4<br />Date: 2017-03-10","Hour: 5<br />Counts: 90<br />Date: 2017-03-10","Hour: 6<br />Counts: 550<br />Date: 2017-03-10","Hour: 7<br />Counts: 1730<br />Date: 2017-03-10","Hour: 8<br />Counts: 3479<br />Date: 2017-03-10","Hour: 9<br />Counts: 2037<br />Date: 2017-03-10","Hour: 10<br />Counts: 651<br />Date: 2017-03-10","Hour: 11<br />Counts: 717<br />Date: 2017-03-10","Hour: 12<br />Counts: 1574<br />Date: 2017-03-10","Hour: 13<br />Counts: 1480<br />Date: 2017-03-10","Hour: 14<br />Counts: 954<br />Date: 2017-03-10","Hour: 15<br />Counts: 1142<br />Date: 2017-03-10","Hour: 16<br />Counts: 2450<br />Date: 2017-03-10","Hour: 17<br />Counts: 2922<br />Date: 2017-03-10","Hour: 18<br />Counts: 1452<br />Date: 2017-03-10","Hour: 19<br />Counts: 663<br />Date: 2017-03-10","Hour: 20<br />Counts: 255<br />Date: 2017-03-10","Hour: 21<br />Counts: 180<br />Date: 2017-03-10","Hour: 22<br />Counts: 820<br />Date: 2017-03-10","Hour: 23<br />Counts: 352<br />Date: 2017-03-10",null,"Hour: 0<br />Counts: 51<br />Date: 2017-03-13","Hour: 1<br />Counts: 21<br />Date: 2017-03-13","Hour: 2<br />Counts: 10<br />Date: 2017-03-13","Hour: 3<br />Counts: 11<br />Date: 2017-03-13","Hour: 4<br />Counts: 7<br />Date: 2017-03-13","Hour: 5<br />Counts: 25<br />Date: 2017-03-13","Hour: 6<br />Counts: 25<br />Date: 2017-03-13","Hour: 7<br />Counts: 166<br />Date: 2017-03-13","Hour: 8<br />Counts: 218<br />Date: 2017-03-13","Hour: 9<br />Counts: 181<br />Date: 2017-03-13","Hour: 10<br />Counts: 151<br />Date: 2017-03-13","Hour: 11<br />Counts: 155<br />Date: 2017-03-13","Hour: 12<br />Counts: 178<br />Date: 2017-03-13","Hour: 13<br />Counts: 191<br />Date: 2017-03-13","Hour: 14<br />Counts: 146<br />Date: 2017-03-13","Hour: 15<br />Counts: 223<br />Date: 2017-03-13","Hour: 16<br />Counts: 238<br />Date: 2017-03-13","Hour: 17<br />Counts: 267<br />Date: 2017-03-13","Hour: 18<br />Counts: 192<br />Date: 2017-03-13","Hour: 19<br />Counts: 118<br />Date: 2017-03-13","Hour: 20<br />Counts: 102<br />Date: 2017-03-13","Hour: 21<br />Counts: 70<br />Date: 2017-03-13","Hour: 22<br />Counts: 62<br />Date: 2017-03-13","Hour: 23<br />Counts: 43<br />Date: 2017-03-13",null,"Hour: 0<br />Counts: 20<br />Date: 2017-03-14","Hour: 1<br />Counts: 10<br />Date: 2017-03-14","Hour: 2<br />Counts: 2<br />Date: 2017-03-14","Hour: 3<br />Counts: 1<br />Date: 2017-03-14","Hour: 4<br />Counts: 4<br />Date: 2017-03-14","Hour: 5<br />Counts: 86<br />Date: 2017-03-14","Hour: 6<br />Counts: 468<br />Date: 2017-03-14","Hour: 7<br />Counts: 1911<br />Date: 2017-03-14","Hour: 8<br />Counts: 3759<br />Date: 2017-03-14","Hour: 9<br />Counts: 2185<br />Date: 2017-03-14","Hour: 10<br />Counts: 746<br />Date: 2017-03-14","Hour: 11<br />Counts: 775<br />Date: 2017-03-14","Hour: 12<br />Counts: 1409<br />Date: 2017-03-14","Hour: 13<br />Counts: 1289<br />Date: 2017-03-14","Hour: 14<br />Counts: 779<br />Date: 2017-03-14","Hour: 15<br />Counts: 994<br />Date: 2017-03-14","Hour: 16<br />Counts: 2248<br />Date: 2017-03-14","Hour: 17<br />Counts: 3467<br />Date: 2017-03-14","Hour: 18<br />Counts: 1545<br />Date: 2017-03-14","Hour: 19<br />Counts: 460<br />Date: 2017-03-14","Hour: 20<br />Counts: 225<br />Date: 2017-03-14","Hour: 21<br />Counts: 146<br />Date: 2017-03-14","Hour: 22<br />Counts: 75<br />Date: 2017-03-14","Hour: 23<br />Counts: 41<br />Date: 2017-03-14",null,"Hour: 0<br />Counts: 9<br />Date: 2017-03-15","Hour: 1<br />Counts: 6<br />Date: 2017-03-15","Hour: 2<br />Counts: 5<br />Date: 2017-03-15","Hour: 3<br />Counts: 6<br />Date: 2017-03-15","Hour: 4<br />Counts: 9<br />Date: 2017-03-15","Hour: 5<br />Counts: 84<br />Date: 2017-03-15","Hour: 6<br />Counts: 560<br />Date: 2017-03-15","Hour: 7<br />Counts: 1787<br />Date: 2017-03-15","Hour: 8<br />Counts: 3780<br />Date: 2017-03-15","Hour: 9<br />Counts: 2055<br />Date: 2017-03-15","Hour: 10<br />Counts: 738<br />Date: 2017-03-15","Hour: 11<br />Counts: 729<br />Date: 2017-03-15","Hour: 12<br />Counts: 1550<br />Date: 2017-03-15","Hour: 13<br />Counts: 1345<br />Date: 2017-03-15","Hour: 14<br />Counts: 868<br />Date: 2017-03-15","Hour: 15<br />Counts: 1079<br />Date: 2017-03-15","Hour: 16<br />Counts: 2274<br />Date: 2017-03-15","Hour: 17<br />Counts: 3259<br />Date: 2017-03-15","Hour: 18<br />Counts: 1475<br />Date: 2017-03-15","Hour: 19<br />Counts: 472<br />Date: 2017-03-15","Hour: 20<br />Counts: 192<br />Date: 2017-03-15","Hour: 21<br />Counts: 126<br />Date: 2017-03-15","Hour: 22<br />Counts: 73<br />Date: 2017-03-15","Hour: 23<br />Counts: 78<br />Date: 2017-03-15",null,"Hour: 0<br />Counts: 20<br />Date: 2017-03-16","Hour: 1<br />Counts: 9<br />Date: 2017-03-16","Hour: 2<br />Counts: 4<br />Date: 2017-03-16","Hour: 3<br />Counts: 0<br />Date: 2017-03-16","Hour: 4<br />Counts: 6<br />Date: 2017-03-16","Hour: 5<br />Counts: 94<br />Date: 2017-03-16","Hour: 6<br />Counts: 613<br />Date: 2017-03-16","Hour: 7<br />Counts: 1732<br />Date: 2017-03-16","Hour: 8<br />Counts: 3733<br />Date: 2017-03-16","Hour: 9<br />Counts: 2209<br />Date: 2017-03-16","Hour: 10<br />Counts: 873<br />Date: 2017-03-16","Hour: 11<br />Counts: 716<br />Date: 2017-03-16","Hour: 12<br />Counts: 1385<br />Date: 2017-03-16","Hour: 13<br />Counts: 1291<br />Date: 2017-03-16","Hour: 14<br />Counts: 847<br />Date: 2017-03-16","Hour: 15<br />Counts: 992<br />Date: 2017-03-16","Hour: 16<br />Counts: 2040<br />Date: 2017-03-16","Hour: 17<br />Counts: 3205<br />Date: 2017-03-16","Hour: 18<br />Counts: 1453<br />Date: 2017-03-16","Hour: 19<br />Counts: 462<br />Date: 2017-03-16","Hour: 20<br />Counts: 219<br />Date: 2017-03-16","Hour: 21<br />Counts: 154<br />Date: 2017-03-16","Hour: 22<br />Counts: 120<br />Date: 2017-03-16","Hour: 23<br />Counts: 51<br />Date: 2017-03-16",null,"Hour: 0<br />Counts: 35<br />Date: 2017-03-17","Hour: 1<br />Counts: 18<br />Date: 2017-03-17","Hour: 2<br />Counts: 7<br />Date: 2017-03-17","Hour: 3<br />Counts: 2<br />Date: 2017-03-17","Hour: 4<br />Counts: 5<br />Date: 2017-03-17","Hour: 5<br />Counts: 75<br />Date: 2017-03-17","Hour: 6<br />Counts: 570<br />Date: 2017-03-17","Hour: 7<br />Counts: 1761<br />Date: 2017-03-17","Hour: 8<br />Counts: 3684<br />Date: 2017-03-17","Hour: 9<br />Counts: 1918<br />Date: 2017-03-17","Hour: 10<br />Counts: 697<br />Date: 2017-03-17","Hour: 11<br />Counts: 909<br />Date: 2017-03-17","Hour: 12<br />Counts: 1502<br />Date: 2017-03-17","Hour: 13<br />Counts: 1386<br />Date: 2017-03-17","Hour: 14<br />Counts: 884<br />Date: 2017-03-17","Hour: 15<br />Counts: 1236<br />Date: 2017-03-17","Hour: 16<br />Counts: 2355<br />Date: 2017-03-17","Hour: 17<br />Counts: 2947<br />Date: 2017-03-17","Hour: 18<br />Counts: 1303<br />Date: 2017-03-17","Hour: 19<br />Counts: 573<br />Date: 2017-03-17","Hour: 20<br />Counts: 278<br />Date: 2017-03-17","Hour: 21<br />Counts: 210<br />Date: 2017-03-17","Hour: 22<br />Counts: 171<br />Date: 2017-03-17","Hour: 23<br />Counts: 126<br />Date: 2017-03-17",null,"Hour: 0<br />Counts: 36<br />Date: 2017-03-20","Hour: 1<br />Counts: 19<br />Date: 2017-03-20","Hour: 2<br />Counts: 12<br />Date: 2017-03-20","Hour: 3<br />Counts: 12<br />Date: 2017-03-20","Hour: 4<br />Counts: 10<br />Date: 2017-03-20","Hour: 5<br />Counts: 91<br />Date: 2017-03-20","Hour: 6<br />Counts: 551<br />Date: 2017-03-20","Hour: 7<br />Counts: 1792<br />Date: 2017-03-20","Hour: 8<br />Counts: 3861<br />Date: 2017-03-20","Hour: 9<br />Counts: 2100<br />Date: 2017-03-20","Hour: 10<br />Counts: 679<br />Date: 2017-03-20","Hour: 11<br />Counts: 618<br />Date: 2017-03-20","Hour: 12<br />Counts: 1279<br />Date: 2017-03-20","Hour: 13<br />Counts: 1157<br />Date: 2017-03-20","Hour: 14<br />Counts: 759<br />Date: 2017-03-20","Hour: 15<br />Counts: 1094<br />Date: 2017-03-20","Hour: 16<br />Counts: 2455<br />Date: 2017-03-20","Hour: 17<br />Counts: 3511<br />Date: 2017-03-20","Hour: 18<br />Counts: 1510<br />Date: 2017-03-20","Hour: 19<br />Counts: 385<br />Date: 2017-03-20","Hour: 20<br />Counts: 188<br />Date: 2017-03-20","Hour: 21<br />Counts: 145<br />Date: 2017-03-20","Hour: 22<br />Counts: 38<br />Date: 2017-03-20","Hour: 23<br />Counts: 0<br />Date: 2017-03-20",null,"Hour: 0<br />Counts: 10<br />Date: 2017-03-21","Hour: 1<br />Counts: 2<br />Date: 2017-03-21","Hour: 2<br />Counts: 7<br />Date: 2017-03-21","Hour: 3<br />Counts: 3<br />Date: 2017-03-21","Hour: 4<br />Counts: 1<br />Date: 2017-03-21","Hour: 5<br />Counts: 76<br />Date: 2017-03-21","Hour: 6<br />Counts: 606<br />Date: 2017-03-21","Hour: 7<br />Counts: 1846<br />Date: 2017-03-21","Hour: 8<br />Counts: 4002<br />Date: 2017-03-21","Hour: 9<br />Counts: 2247<br />Date: 2017-03-21","Hour: 10<br />Counts: 734<br />Date: 2017-03-21","Hour: 11<br />Counts: 646<br />Date: 2017-03-21","Hour: 12<br />Counts: 1421<br />Date: 2017-03-21","Hour: 13<br />Counts: 1089<br />Date: 2017-03-21","Hour: 14<br />Counts: 777<br />Date: 2017-03-21","Hour: 15<br />Counts: 1058<br />Date: 2017-03-21","Hour: 16<br />Counts: 2537<br />Date: 2017-03-21","Hour: 17<br />Counts: 3537<br />Date: 2017-03-21","Hour: 18<br />Counts: 1442<br />Date: 2017-03-21","Hour: 19<br />Counts: 452<br />Date: 2017-03-21","Hour: 20<br />Counts: 147<br />Date: 2017-03-21","Hour: 21<br />Counts: 114<br />Date: 2017-03-21","Hour: 22<br />Counts: 50<br />Date: 2017-03-21","Hour: 23<br />Counts: 32<br />Date: 2017-03-21",null,"Hour: 0<br />Counts: 31<br />Date: 2017-03-22","Hour: 1<br />Counts: 2<br />Date: 2017-03-22","Hour: 2<br />Counts: 4<br />Date: 2017-03-22","Hour: 3<br />Counts: 5<br />Date: 2017-03-22","Hour: 4<br />Counts: 6<br />Date: 2017-03-22","Hour: 5<br />Counts: 56<br />Date: 2017-03-22","Hour: 6<br />Counts: 528<br />Date: 2017-03-22","Hour: 7<br />Counts: 1929<br />Date: 2017-03-22","Hour: 8<br />Counts: 3852<br />Date: 2017-03-22","Hour: 9<br />Counts: 2371<br />Date: 2017-03-22","Hour: 10<br />Counts: 780<br />Date: 2017-03-22","Hour: 11<br />Counts: 723<br />Date: 2017-03-22","Hour: 12<br />Counts: 1409<br />Date: 2017-03-22","Hour: 13<br />Counts: 1251<br />Date: 2017-03-22","Hour: 14<br />Counts: 780<br />Date: 2017-03-22","Hour: 15<br />Counts: 1066<br />Date: 2017-03-22","Hour: 16<br />Counts: 2367<br />Date: 2017-03-22","Hour: 17<br />Counts: 3411<br />Date: 2017-03-22","Hour: 18<br />Counts: 1469<br />Date: 2017-03-22","Hour: 19<br />Counts: 499<br />Date: 2017-03-22","Hour: 20<br />Counts: 186<br />Date: 2017-03-22","Hour: 21<br />Counts: 156<br />Date: 2017-03-22","Hour: 22<br />Counts: 101<br />Date: 2017-03-22","Hour: 23<br />Counts: 46<br />Date: 2017-03-22",null,"Hour: 0<br />Counts: 17<br />Date: 2017-03-23","Hour: 1<br />Counts: 6<br />Date: 2017-03-23","Hour: 2<br />Counts: 3<br />Date: 2017-03-23","Hour: 3<br />Counts: 1<br />Date: 2017-03-23","Hour: 4<br />Counts: 6<br />Date: 2017-03-23","Hour: 5<br />Counts: 84<br />Date: 2017-03-23","Hour: 6<br />Counts: 624<br />Date: 2017-03-23","Hour: 7<br />Counts: 1856<br />Date: 2017-03-23","Hour: 8<br />Counts: 4087<br />Date: 2017-03-23","Hour: 9<br />Counts: 2279<br />Date: 2017-03-23","Hour: 10<br />Counts: 784<br />Date: 2017-03-23","Hour: 11<br />Counts: 773<br />Date: 2017-03-23","Hour: 12<br />Counts: 1426<br />Date: 2017-03-23","Hour: 13<br />Counts: 1436<br />Date: 2017-03-23","Hour: 14<br />Counts: 956<br />Date: 2017-03-23","Hour: 15<br />Counts: 1129<br />Date: 2017-03-23","Hour: 16<br />Counts: 2557<br />Date: 2017-03-23","Hour: 17<br />Counts: 3570<br />Date: 2017-03-23","Hour: 18<br />Counts: 1763<br />Date: 2017-03-23","Hour: 19<br />Counts: 561<br />Date: 2017-03-23","Hour: 20<br />Counts: 279<br />Date: 2017-03-23","Hour: 21<br />Counts: 160<br />Date: 2017-03-23","Hour: 22<br />Counts: 130<br />Date: 2017-03-23","Hour: 23<br />Counts: 56<br />Date: 2017-03-23",null,"Hour: 0<br />Counts: 29<br />Date: 2017-03-24","Hour: 1<br />Counts: 18<br />Date: 2017-03-24","Hour: 2<br />Counts: 9<br />Date: 2017-03-24","Hour: 3<br />Counts: 12<br />Date: 2017-03-24","Hour: 4<br />Counts: 7<br />Date: 2017-03-24","Hour: 5<br />Counts: 96<br />Date: 2017-03-24","Hour: 6<br />Counts: 606<br />Date: 2017-03-24","Hour: 7<br />Counts: 1841<br />Date: 2017-03-24","Hour: 8<br />Counts: 3737<br />Date: 2017-03-24","Hour: 9<br />Counts: 2070<br />Date: 2017-03-24","Hour: 10<br />Counts: 794<br />Date: 2017-03-24","Hour: 11<br />Counts: 773<br />Date: 2017-03-24","Hour: 12<br />Counts: 1476<br />Date: 2017-03-24","Hour: 13<br />Counts: 1249<br />Date: 2017-03-24","Hour: 14<br />Counts: 916<br />Date: 2017-03-24","Hour: 15<br />Counts: 1161<br />Date: 2017-03-24","Hour: 16<br />Counts: 2352<br />Date: 2017-03-24","Hour: 17<br />Counts: 2922<br />Date: 2017-03-24","Hour: 18<br />Counts: 1198<br />Date: 2017-03-24","Hour: 19<br />Counts: 491<br />Date: 2017-03-24","Hour: 20<br />Counts: 216<br />Date: 2017-03-24","Hour: 21<br />Counts: 252<br />Date: 2017-03-24","Hour: 22<br />Counts: 136<br />Date: 2017-03-24","Hour: 23<br />Counts: 90<br />Date: 2017-03-24",null,"Hour: 0<br />Counts: 27<br />Date: 2017-03-27","Hour: 1<br />Counts: 6<br />Date: 2017-03-27","Hour: 2<br />Counts: 2<br />Date: 2017-03-27","Hour: 3<br />Counts: 3<br />Date: 2017-03-27","Hour: 4<br />Counts: 8<br />Date: 2017-03-27","Hour: 5<br />Counts: 74<br />Date: 2017-03-27","Hour: 6<br />Counts: 467<br />Date: 2017-03-27","Hour: 7<br />Counts: 1968<br />Date: 2017-03-27","Hour: 8<br />Counts: 4073<br />Date: 2017-03-27","Hour: 9<br />Counts: 2145<br />Date: 2017-03-27","Hour: 10<br />Counts: 743<br />Date: 2017-03-27","Hour: 11<br />Counts: 657<br />Date: 2017-03-27","Hour: 12<br />Counts: 1391<br />Date: 2017-03-27","Hour: 13<br />Counts: 1092<br />Date: 2017-03-27","Hour: 14<br />Counts: 622<br />Date: 2017-03-27","Hour: 15<br />Counts: 796<br />Date: 2017-03-27","Hour: 16<br />Counts: 2336<br />Date: 2017-03-27","Hour: 17<br />Counts: 3464<br />Date: 2017-03-27","Hour: 18<br />Counts: 1451<br />Date: 2017-03-27","Hour: 19<br />Counts: 410<br />Date: 2017-03-27","Hour: 20<br />Counts: 181<br />Date: 2017-03-27","Hour: 21<br />Counts: 97<br />Date: 2017-03-27","Hour: 22<br />Counts: 67<br />Date: 2017-03-27","Hour: 23<br />Counts: 43<br />Date: 2017-03-27",null,"Hour: 0<br />Counts: 16<br />Date: 2017-03-28","Hour: 1<br />Counts: 8<br />Date: 2017-03-28","Hour: 2<br />Counts: 4<br />Date: 2017-03-28","Hour: 3<br />Counts: 3<br />Date: 2017-03-28","Hour: 4<br />Counts: 4<br />Date: 2017-03-28","Hour: 5<br />Counts: 86<br />Date: 2017-03-28","Hour: 6<br />Counts: 585<br />Date: 2017-03-28","Hour: 7<br />Counts: 1932<br />Date: 2017-03-28","Hour: 8<br />Counts: 3927<br />Date: 2017-03-28","Hour: 9<br />Counts: 2163<br />Date: 2017-03-28","Hour: 10<br />Counts: 810<br />Date: 2017-03-28","Hour: 11<br />Counts: 735<br />Date: 2017-03-28","Hour: 12<br />Counts: 1369<br />Date: 2017-03-28","Hour: 13<br />Counts: 1316<br />Date: 2017-03-28","Hour: 14<br />Counts: 803<br />Date: 2017-03-28","Hour: 15<br />Counts: 1049<br />Date: 2017-03-28","Hour: 16<br />Counts: 2600<br />Date: 2017-03-28","Hour: 17<br />Counts: 3387<br />Date: 2017-03-28","Hour: 18<br />Counts: 1565<br />Date: 2017-03-28","Hour: 19<br />Counts: 514<br />Date: 2017-03-28","Hour: 20<br />Counts: 233<br />Date: 2017-03-28","Hour: 21<br />Counts: 113<br />Date: 2017-03-28","Hour: 22<br />Counts: 103<br />Date: 2017-03-28","Hour: 23<br />Counts: 36<br />Date: 2017-03-28",null,"Hour: 0<br />Counts: 25<br />Date: 2017-03-29","Hour: 1<br />Counts: 10<br />Date: 2017-03-29","Hour: 2<br />Counts: 6<br />Date: 2017-03-29","Hour: 3<br />Counts: 6<br />Date: 2017-03-29","Hour: 4<br />Counts: 3<br />Date: 2017-03-29","Hour: 5<br />Counts: 93<br />Date: 2017-03-29","Hour: 6<br />Counts: 624<br />Date: 2017-03-29","Hour: 7<br />Counts: 2046<br />Date: 2017-03-29","Hour: 8<br />Counts: 3728<br />Date: 2017-03-29","Hour: 9<br />Counts: 2150<br />Date: 2017-03-29","Hour: 10<br />Counts: 782<br />Date: 2017-03-29","Hour: 11<br />Counts: 662<br />Date: 2017-03-29","Hour: 12<br />Counts: 1483<br />Date: 2017-03-29","Hour: 13<br />Counts: 1321<br />Date: 2017-03-29","Hour: 14<br />Counts: 842<br />Date: 2017-03-29","Hour: 15<br />Counts: 1172<br />Date: 2017-03-29","Hour: 16<br />Counts: 2546<br />Date: 2017-03-29","Hour: 17<br />Counts: 3378<br />Date: 2017-03-29","Hour: 18<br />Counts: 1476<br />Date: 2017-03-29","Hour: 19<br />Counts: 444<br />Date: 2017-03-29","Hour: 20<br />Counts: 139<br />Date: 2017-03-29","Hour: 21<br />Counts: 101<br />Date: 2017-03-29","Hour: 22<br />Counts: 62<br />Date: 2017-03-29","Hour: 23<br />Counts: 31<br />Date: 2017-03-29",null,"Hour: 0<br />Counts: 13<br />Date: 2017-03-30","Hour: 1<br />Counts: 5<br />Date: 2017-03-30","Hour: 2<br />Counts: 6<br />Date: 2017-03-30","Hour: 3<br />Counts: 0<br />Date: 2017-03-30","Hour: 4<br />Counts: 4<br />Date: 2017-03-30","Hour: 5<br />Counts: 107<br />Date: 2017-03-30","Hour: 6<br />Counts: 605<br />Date: 2017-03-30","Hour: 7<br />Counts: 1946<br />Date: 2017-03-30","Hour: 8<br />Counts: 4026<br />Date: 2017-03-30","Hour: 9<br />Counts: 2230<br />Date: 2017-03-30","Hour: 10<br />Counts: 738<br />Date: 2017-03-30","Hour: 11<br />Counts: 682<br />Date: 2017-03-30","Hour: 12<br />Counts: 1468<br />Date: 2017-03-30","Hour: 13<br />Counts: 1320<br />Date: 2017-03-30","Hour: 14<br />Counts: 839<br />Date: 2017-03-30","Hour: 15<br />Counts: 1113<br />Date: 2017-03-30","Hour: 16<br />Counts: 2622<br />Date: 2017-03-30","Hour: 17<br />Counts: 3731<br />Date: 2017-03-30","Hour: 18<br />Counts: 1474<br />Date: 2017-03-30","Hour: 19<br />Counts: 505<br />Date: 2017-03-30","Hour: 20<br />Counts: 222<br />Date: 2017-03-30","Hour: 21<br />Counts: 186<br />Date: 2017-03-30","Hour: 22<br />Counts: 111<br />Date: 2017-03-30","Hour: 23<br />Counts: 33<br />Date: 2017-03-30",null,"Hour: 0<br />Counts: 14<br />Date: 2017-03-31","Hour: 1<br />Counts: 8<br />Date: 2017-03-31","Hour: 2<br />Counts: 3<br />Date: 2017-03-31","Hour: 3<br />Counts: 3<br />Date: 2017-03-31","Hour: 4<br />Counts: 6<br />Date: 2017-03-31","Hour: 5<br />Counts: 89<br />Date: 2017-03-31","Hour: 6<br />Counts: 572<br />Date: 2017-03-31","Hour: 7<br />Counts: 1761<br />Date: 2017-03-31","Hour: 8<br />Counts: 3668<br />Date: 2017-03-31","Hour: 9<br />Counts: 2013<br />Date: 2017-03-31","Hour: 10<br />Counts: 730<br />Date: 2017-03-31","Hour: 11<br />Counts: 729<br />Date: 2017-03-31","Hour: 12<br />Counts: 1436<br />Date: 2017-03-31","Hour: 13<br />Counts: 1332<br />Date: 2017-03-31","Hour: 14<br />Counts: 839<br />Date: 2017-03-31","Hour: 15<br />Counts: 1204<br />Date: 2017-03-31","Hour: 16<br />Counts: 2370<br />Date: 2017-03-31","Hour: 17<br />Counts: 2934<br />Date: 2017-03-31","Hour: 18<br />Counts: 1503<br />Date: 2017-03-31","Hour: 19<br />Counts: 610<br />Date: 2017-03-31","Hour: 20<br />Counts: 270<br />Date: 2017-03-31","Hour: 21<br />Counts: 193<br />Date: 2017-03-31","Hour: 22<br />Counts: 265<br />Date: 2017-03-31","Hour: 23<br />Counts: 134<br />Date: 2017-03-31"],"type":"scatter","mode":"lines","line":{"width":1.88976377952756,"color":"rgba(0,0,0,1)","dash":"solid"},"hoveron":"points","showlegend":false,"xaxis":"x","yaxis":"y","hoverinfo":"text","frame":null},{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23],"y":[44,34,25,18,12,14,104,121,137,172,171,165,185,170,196,151,175,205,178,138,95,101,97,43,null,49,19,37,14,13,22,22,58,101,108,101,119,111,128,106,124,131,136,158,107,89,76,40,39,null,55,27,26,11,7,34,37,64,143,132,175,171,171,163,124,168,134,211,192,117,101,116,103,115,null,22,26,26,18,24,14,18,41,78,137,131,126,115,144,97,132,141,120,146,151,113,93,72,44,null,38,31,24,15,16,21,66,87,134,133,202,153,229,163,217,218,323,647,614,271,127,103,2169,292,null,59,31,14,17,4,17,9,36,72,130,125,118,150,127,161,168,259,508,491,233,124,86,2009,86,null,54,14,32,18,11,22,81,87,140,187,225,260,192,203,242,241,219,184,214,339,163,106,101,71,null,46,30,26,18,10,14,30,41,82,167,159,208,202,135,153,139,150,181,258,177,117,103,59,48],"text":["Hour: 0<br />Counts: 44<br />Date: 2017-03-04","Hour: 1<br />Counts: 34<br />Date: 2017-03-04","Hour: 2<br />Counts: 25<br />Date: 2017-03-04","Hour: 3<br />Counts: 18<br />Date: 2017-03-04","Hour: 4<br />Counts: 12<br />Date: 2017-03-04","Hour: 5<br />Counts: 14<br />Date: 2017-03-04","Hour: 6<br />Counts: 104<br />Date: 2017-03-04","Hour: 7<br />Counts: 121<br />Date: 2017-03-04","Hour: 8<br />Counts: 137<br />Date: 2017-03-04","Hour: 9<br />Counts: 172<br />Date: 2017-03-04","Hour: 10<br />Counts: 171<br />Date: 2017-03-04","Hour: 11<br />Counts: 165<br />Date: 2017-03-04","Hour: 12<br />Counts: 185<br />Date: 2017-03-04","Hour: 13<br />Counts: 170<br />Date: 2017-03-04","Hour: 14<br />Counts: 196<br />Date: 2017-03-04","Hour: 15<br />Counts: 151<br />Date: 2017-03-04","Hour: 16<br />Counts: 175<br />Date: 2017-03-04","Hour: 17<br />Counts: 205<br />Date: 2017-03-04","Hour: 18<br />Counts: 178<br />Date: 2017-03-04","Hour: 19<br />Counts: 138<br />Date: 2017-03-04","Hour: 20<br />Counts: 95<br />Date: 2017-03-04","Hour: 21<br />Counts: 101<br />Date: 2017-03-04","Hour: 22<br />Counts: 97<br />Date: 2017-03-04","Hour: 23<br />Counts: 43<br />Date: 2017-03-04",null,"Hour: 0<br />Counts: 49<br />Date: 2017-03-05","Hour: 1<br />Counts: 19<br />Date: 2017-03-05","Hour: 2<br />Counts: 37<br />Date: 2017-03-05","Hour: 3<br />Counts: 14<br />Date: 2017-03-05","Hour: 4<br />Counts: 13<br />Date: 2017-03-05","Hour: 5<br />Counts: 22<br />Date: 2017-03-05","Hour: 6<br />Counts: 22<br />Date: 2017-03-05","Hour: 7<br />Counts: 58<br />Date: 2017-03-05","Hour: 8<br />Counts: 101<br />Date: 2017-03-05","Hour: 9<br />Counts: 108<br />Date: 2017-03-05","Hour: 10<br />Counts: 101<br />Date: 2017-03-05","Hour: 11<br />Counts: 119<br />Date: 2017-03-05","Hour: 12<br />Counts: 111<br />Date: 2017-03-05","Hour: 13<br />Counts: 128<br />Date: 2017-03-05","Hour: 14<br />Counts: 106<br />Date: 2017-03-05","Hour: 15<br />Counts: 124<br />Date: 2017-03-05","Hour: 16<br />Counts: 131<br />Date: 2017-03-05","Hour: 17<br />Counts: 136<br />Date: 2017-03-05","Hour: 18<br />Counts: 158<br />Date: 2017-03-05","Hour: 19<br />Counts: 107<br />Date: 2017-03-05","Hour: 20<br />Counts: 89<br />Date: 2017-03-05","Hour: 21<br />Counts: 76<br />Date: 2017-03-05","Hour: 22<br />Counts: 40<br />Date: 2017-03-05","Hour: 23<br />Counts: 39<br />Date: 2017-03-05",null,"Hour: 0<br />Counts: 55<br />Date: 2017-03-11","Hour: 1<br />Counts: 27<br />Date: 2017-03-11","Hour: 2<br />Counts: 26<br />Date: 2017-03-11","Hour: 3<br />Counts: 11<br />Date: 2017-03-11","Hour: 4<br />Counts: 7<br />Date: 2017-03-11","Hour: 5<br />Counts: 34<br />Date: 2017-03-11","Hour: 6<br />Counts: 37<br />Date: 2017-03-11","Hour: 7<br />Counts: 64<br />Date: 2017-03-11","Hour: 8<br />Counts: 143<br />Date: 2017-03-11","Hour: 9<br />Counts: 132<br />Date: 2017-03-11","Hour: 10<br />Counts: 175<br />Date: 2017-03-11","Hour: 11<br />Counts: 171<br />Date: 2017-03-11","Hour: 12<br />Counts: 171<br />Date: 2017-03-11","Hour: 13<br />Counts: 163<br />Date: 2017-03-11","Hour: 14<br />Counts: 124<br />Date: 2017-03-11","Hour: 15<br />Counts: 168<br />Date: 2017-03-11","Hour: 16<br />Counts: 134<br />Date: 2017-03-11","Hour: 17<br />Counts: 211<br />Date: 2017-03-11","Hour: 18<br />Counts: 192<br />Date: 2017-03-11","Hour: 19<br />Counts: 117<br />Date: 2017-03-11","Hour: 20<br />Counts: 101<br />Date: 2017-03-11","Hour: 21<br />Counts: 116<br />Date: 2017-03-11","Hour: 22<br />Counts: 103<br />Date: 2017-03-11","Hour: 23<br />Counts: 115<br />Date: 2017-03-11",null,"Hour: 0<br />Counts: 22<br />Date: 2017-03-12","Hour: 1<br />Counts: 26<br />Date: 2017-03-12","Hour: 2<br />Counts: 26<br />Date: 2017-03-12","Hour: 3<br />Counts: 18<br />Date: 2017-03-12","Hour: 4<br />Counts: 24<br />Date: 2017-03-12","Hour: 5<br />Counts: 14<br />Date: 2017-03-12","Hour: 6<br />Counts: 18<br />Date: 2017-03-12","Hour: 7<br />Counts: 41<br />Date: 2017-03-12","Hour: 8<br />Counts: 78<br />Date: 2017-03-12","Hour: 9<br />Counts: 137<br />Date: 2017-03-12","Hour: 10<br />Counts: 131<br />Date: 2017-03-12","Hour: 11<br />Counts: 126<br />Date: 2017-03-12","Hour: 12<br />Counts: 115<br />Date: 2017-03-12","Hour: 13<br />Counts: 144<br />Date: 2017-03-12","Hour: 14<br />Counts: 97<br />Date: 2017-03-12","Hour: 15<br />Counts: 132<br />Date: 2017-03-12","Hour: 16<br />Counts: 141<br />Date: 2017-03-12","Hour: 17<br />Counts: 120<br />Date: 2017-03-12","Hour: 18<br />Counts: 146<br />Date: 2017-03-12","Hour: 19<br />Counts: 151<br />Date: 2017-03-12","Hour: 20<br />Counts: 113<br />Date: 2017-03-12","Hour: 21<br />Counts: 93<br />Date: 2017-03-12","Hour: 22<br />Counts: 72<br />Date: 2017-03-12","Hour: 23<br />Counts: 44<br />Date: 2017-03-12",null,"Hour: 0<br />Counts: 38<br />Date: 2017-03-18","Hour: 1<br />Counts: 31<br />Date: 2017-03-18","Hour: 2<br />Counts: 24<br />Date: 2017-03-18","Hour: 3<br />Counts: 15<br />Date: 2017-03-18","Hour: 4<br />Counts: 16<br />Date: 2017-03-18","Hour: 5<br />Counts: 21<br />Date: 2017-03-18","Hour: 6<br />Counts: 66<br />Date: 2017-03-18","Hour: 7<br />Counts: 87<br />Date: 2017-03-18","Hour: 8<br />Counts: 134<br />Date: 2017-03-18","Hour: 9<br />Counts: 133<br />Date: 2017-03-18","Hour: 10<br />Counts: 202<br />Date: 2017-03-18","Hour: 11<br />Counts: 153<br />Date: 2017-03-18","Hour: 12<br />Counts: 229<br />Date: 2017-03-18","Hour: 13<br />Counts: 163<br />Date: 2017-03-18","Hour: 14<br />Counts: 217<br />Date: 2017-03-18","Hour: 15<br />Counts: 218<br />Date: 2017-03-18","Hour: 16<br />Counts: 323<br />Date: 2017-03-18","Hour: 17<br />Counts: 647<br />Date: 2017-03-18","Hour: 18<br />Counts: 614<br />Date: 2017-03-18","Hour: 19<br />Counts: 271<br />Date: 2017-03-18","Hour: 20<br />Counts: 127<br />Date: 2017-03-18","Hour: 21<br />Counts: 103<br />Date: 2017-03-18","Hour: 22<br />Counts: 2169<br />Date: 2017-03-18","Hour: 23<br />Counts: 292<br />Date: 2017-03-18",null,"Hour: 0<br />Counts: 59<br />Date: 2017-03-19","Hour: 1<br />Counts: 31<br />Date: 2017-03-19","Hour: 2<br />Counts: 14<br />Date: 2017-03-19","Hour: 3<br />Counts: 17<br />Date: 2017-03-19","Hour: 4<br />Counts: 4<br />Date: 2017-03-19","Hour: 5<br />Counts: 17<br />Date: 2017-03-19","Hour: 6<br />Counts: 9<br />Date: 2017-03-19","Hour: 7<br />Counts: 36<br />Date: 2017-03-19","Hour: 8<br />Counts: 72<br />Date: 2017-03-19","Hour: 9<br />Counts: 130<br />Date: 2017-03-19","Hour: 10<br />Counts: 125<br />Date: 2017-03-19","Hour: 11<br />Counts: 118<br />Date: 2017-03-19","Hour: 12<br />Counts: 150<br />Date: 2017-03-19","Hour: 13<br />Counts: 127<br />Date: 2017-03-19","Hour: 14<br />Counts: 161<br />Date: 2017-03-19","Hour: 15<br />Counts: 168<br />Date: 2017-03-19","Hour: 16<br />Counts: 259<br />Date: 2017-03-19","Hour: 17<br />Counts: 508<br />Date: 2017-03-19","Hour: 18<br />Counts: 491<br />Date: 2017-03-19","Hour: 19<br />Counts: 233<br />Date: 2017-03-19","Hour: 20<br />Counts: 124<br />Date: 2017-03-19","Hour: 21<br />Counts: 86<br />Date: 2017-03-19","Hour: 22<br />Counts: 2009<br />Date: 2017-03-19","Hour: 23<br />Counts: 86<br />Date: 2017-03-19",null,"Hour: 0<br />Counts: 54<br />Date: 2017-03-25","Hour: 1<br />Counts: 14<br />Date: 2017-03-25","Hour: 2<br />Counts: 32<br />Date: 2017-03-25","Hour: 3<br />Counts: 18<br />Date: 2017-03-25","Hour: 4<br />Counts: 11<br />Date: 2017-03-25","Hour: 5<br />Counts: 22<br />Date: 2017-03-25","Hour: 6<br />Counts: 81<br />Date: 2017-03-25","Hour: 7<br />Counts: 87<br />Date: 2017-03-25","Hour: 8<br />Counts: 140<br />Date: 2017-03-25","Hour: 9<br />Counts: 187<br />Date: 2017-03-25","Hour: 10<br />Counts: 225<br />Date: 2017-03-25","Hour: 11<br />Counts: 260<br />Date: 2017-03-25","Hour: 12<br />Counts: 192<br />Date: 2017-03-25","Hour: 13<br />Counts: 203<br />Date: 2017-03-25","Hour: 14<br />Counts: 242<br />Date: 2017-03-25","Hour: 15<br />Counts: 241<br />Date: 2017-03-25","Hour: 16<br />Counts: 219<br />Date: 2017-03-25","Hour: 17<br />Counts: 184<br />Date: 2017-03-25","Hour: 18<br />Counts: 214<br />Date: 2017-03-25","Hour: 19<br />Counts: 339<br />Date: 2017-03-25","Hour: 20<br />Counts: 163<br />Date: 2017-03-25","Hour: 21<br />Counts: 106<br />Date: 2017-03-25","Hour: 22<br />Counts: 101<br />Date: 2017-03-25","Hour: 23<br />Counts: 71<br />Date: 2017-03-25",null,"Hour: 0<br />Counts: 46<br />Date: 2017-03-26","Hour: 1<br />Counts: 30<br />Date: 2017-03-26","Hour: 2<br />Counts: 26<br />Date: 2017-03-26","Hour: 3<br />Counts: 18<br />Date: 2017-03-26","Hour: 4<br />Counts: 10<br />Date: 2017-03-26","Hour: 5<br />Counts: 14<br />Date: 2017-03-26","Hour: 6<br />Counts: 30<br />Date: 2017-03-26","Hour: 7<br />Counts: 41<br />Date: 2017-03-26","Hour: 8<br />Counts: 82<br />Date: 2017-03-26","Hour: 9<br />Counts: 167<br />Date: 2017-03-26","Hour: 10<br />Counts: 159<br />Date: 2017-03-26","Hour: 11<br />Counts: 208<br />Date: 2017-03-26","Hour: 12<br />Counts: 202<br />Date: 2017-03-26","Hour: 13<br />Counts: 135<br />Date: 2017-03-26","Hour: 14<br />Counts: 153<br />Date: 2017-03-26","Hour: 15<br />Counts: 139<br />Date: 2017-03-26","Hour: 16<br />Counts: 150<br />Date: 2017-03-26","Hour: 17<br />Counts: 181<br />Date: 2017-03-26","Hour: 18<br />Counts: 258<br />Date: 2017-03-26","Hour: 19<br />Counts: 177<br />Date: 2017-03-26","Hour: 20<br />Counts: 117<br />Date: 2017-03-26","Hour: 21<br />Counts: 103<br />Date: 2017-03-26","Hour: 22<br />Counts: 59<br />Date: 2017-03-26","Hour: 23<br />Counts: 48<br />Date: 2017-03-26"],"type":"scatter","mode":"lines","line":{"width":1.88976377952756,"color":"rgba(0,0,0,1)","dash":"solid"},"hoveron":"points","showlegend":false,"xaxis":"x2","yaxis":"y","hoverinfo":"text","frame":null}],"layout":{"margin":{"t":50.2419630090863,"r":7.30593607305936,"b":56.4918592315853,"l":69.4063926940639},"plot_bgcolor":"rgba(235,235,235,1)","paper_bgcolor":"rgba(255,255,255,1)","font":{"color":"rgba(0,0,0,1)","family":"","size":14.6118721461187},"xaxis":{"domain":[0,0.490487062404871],"type":"linear","autorange":false,"range":[-1.15,24.15],"tickmode":"array","ticktext":["0","5","10","15","20"],"tickvals":[0,5,10,15,20],"categoryorder":"array","categoryarray":["0","5","10","15","20"],"nticks":null,"ticks":"outside","tickcolor":"rgba(51,51,51,1)","ticklen":3.65296803652968,"tickwidth":0.66417600664176,"showticklabels":true,"tickfont":{"color":"rgba(77,77,77,1)","family":"","size":18.5969281859693},"tickangle":-0,"showline":false,"linecolor":null,"linewidth":0,"showgrid":true,"gridcolor":"rgba(255,255,255,1)","gridwidth":0.66417600664176,"zeroline":false,"anchor":"y","title":"","titlefont":{"color":"rgba(0,0,0,1)","family":"","size":21.2536322125363},"hoverformat":".2f"},"annotations":[{"text":"Hour","x":0.5,"y":-0.076103500761035,"showarrow":false,"ax":0,"ay":0,"font":{"color":"rgba(0,0,0,1)","family":"","size":21.2536322125363},"xref":"paper","yref":"paper","textangle":-0,"xanchor":"center","yanchor":"top","annotationType":"axis"},{"text":"Counts","x":-0.0670229694202297,"y":0.5,"showarrow":false,"ax":0,"ay":0,"font":{"color":"rgba(0,0,0,1)","family":"","size":21.2536322125363},"xref":"paper","yref":"paper","textangle":-90,"xanchor":"right","yanchor":"center","annotationType":"axis"},{"text":"Weekday","x":0.245243531202435,"y":1,"showarrow":false,"ax":0,"ay":0,"font":{"color":"rgba(26,26,26,1)","family":"","size":21.2536322125363},"xref":"paper","yref":"paper","textangle":-0,"xanchor":"center","yanchor":"bottom"},{"text":"Weekend","x":0.754756468797565,"y":1,"showarrow":false,"ax":0,"ay":0,"font":{"color":"rgba(26,26,26,1)","family":"","size":21.2536322125363},"xref":"paper","yref":"paper","textangle":-0,"xanchor":"center","yanchor":"bottom"}],"yaxis":{"domain":[0,1],"type":"linear","autorange":false,"range":[-204.35,4291.35],"tickmode":"array","ticktext":["0","1000","2000","3000","4000"],"tickvals":[-2.8421709430404e-14,1000,2000,3000,4000],"categoryorder":"array","categoryarray":["0","1000","2000","3000","4000"],"nticks":null,"ticks":"outside","tickcolor":"rgba(51,51,51,1)","ticklen":3.65296803652968,"tickwidth":0.66417600664176,"showticklabels":true,"tickfont":{"color":"rgba(77,77,77,1)","family":"","size":18.5969281859693},"tickangle":-0,"showline":false,"linecolor":null,"linewidth":0,"showgrid":true,"gridcolor":"rgba(255,255,255,1)","gridwidth":0.66417600664176,"zeroline":false,"anchor":"x","title":"","titlefont":{"color":"rgba(0,0,0,1)","family":"","size":21.2536322125363},"hoverformat":".2f"},"shapes":[{"type":"rect","fillcolor":null,"line":{"color":null,"width":0,"linetype":[]},"yref":"paper","xref":"paper","x0":0,"x1":0.490487062404871,"y0":0,"y1":1},{"type":"rect","fillcolor":"rgba(217,217,217,1)","line":{"color":"transparent","width":0.66417600664176,"linetype":"solid"},"yref":"paper","xref":"paper","x0":0,"x1":0.490487062404871,"y0":1,"y1":1.13998250218723},{"type":"rect","fillcolor":null,"line":{"color":null,"width":0,"linetype":[]},"yref":"paper","xref":"paper","x0":0.509512937595129,"x1":1,"y0":0,"y1":1},{"type":"rect","fillcolor":"rgba(217,217,217,1)","line":{"color":"transparent","width":0.66417600664176,"linetype":"solid"},"yref":"paper","xref":"paper","x0":0.509512937595129,"x1":1,"y0":1,"y1":1.13998250218723}],"xaxis2":{"type":"linear","autorange":false,"range":[-1.15,24.15],"tickmode":"array","ticktext":["0","5","10","15","20"],"tickvals":[0,5,10,15,20],"categoryorder":"array","categoryarray":["0","5","10","15","20"],"nticks":null,"ticks":"outside","tickcolor":"rgba(51,51,51,1)","ticklen":3.65296803652968,"tickwidth":0.66417600664176,"showticklabels":true,"tickfont":{"color":"rgba(77,77,77,1)","family":"","size":18.5969281859693},"tickangle":-0,"showline":false,"linecolor":null,"linewidth":0,"showgrid":true,"domain":[0.509512937595129,1],"gridcolor":"rgba(255,255,255,1)","gridwidth":0.66417600664176,"zeroline":false,"anchor":"y","title":"","titlefont":{"color":"rgba(0,0,0,1)","family":"","size":21.2536322125363},"hoverformat":".2f"},"showlegend":false,"legend":{"bgcolor":"rgba(255,255,255,1)","bordercolor":"transparent","borderwidth":1.88976377952756,"font":{"color":"rgba(0,0,0,1)","family":"","size":11.689497716895}},"hovermode":"closest","barmode":"relative"},"config":{"doubleClick":"reset","modeBarButtonsToAdd":[{"name":"Collaborate","icon":{"width":1000,"ascent":500,"descent":-50,"path":"M487 375c7-10 9-23 5-36l-79-259c-3-12-11-23-22-31-11-8-22-12-35-12l-263 0c-15 0-29 5-43 15-13 10-23 23-28 37-5 13-5 25-1 37 0 0 0 3 1 7 1 5 1 8 1 11 0 2 0 4-1 6 0 3-1 5-1 6 1 2 2 4 3 6 1 2 2 4 4 6 2 3 4 5 5 7 5 7 9 16 13 26 4 10 7 19 9 26 0 2 0 5 0 9-1 4-1 6 0 8 0 2 2 5 4 8 3 3 5 5 5 7 4 6 8 15 12 26 4 11 7 19 7 26 1 1 0 4 0 9-1 4-1 7 0 8 1 2 3 5 6 8 4 4 6 6 6 7 4 5 8 13 13 24 4 11 7 20 7 28 1 1 0 4 0 7-1 3-1 6-1 7 0 2 1 4 3 6 1 1 3 4 5 6 2 3 3 5 5 6 1 2 3 5 4 9 2 3 3 7 5 10 1 3 2 6 4 10 2 4 4 7 6 9 2 3 4 5 7 7 3 2 7 3 11 3 3 0 8 0 13-1l0-1c7 2 12 2 14 2l218 0c14 0 25-5 32-16 8-10 10-23 6-37l-79-259c-7-22-13-37-20-43-7-7-19-10-37-10l-248 0c-5 0-9-2-11-5-2-3-2-7 0-12 4-13 18-20 41-20l264 0c5 0 10 2 16 5 5 3 8 6 10 11l85 282c2 5 2 10 2 17 7-3 13-7 17-13z m-304 0c-1-3-1-5 0-7 1-1 3-2 6-2l174 0c2 0 4 1 7 2 2 2 4 4 5 7l6 18c0 3 0 5-1 7-1 1-3 2-6 2l-173 0c-3 0-5-1-8-2-2-2-4-4-4-7z m-24-73c-1-3-1-5 0-7 2-2 3-2 6-2l174 0c2 0 5 0 7 2 3 2 4 4 5 7l6 18c1 2 0 5-1 6-1 2-3 3-5 3l-174 0c-3 0-5-1-7-3-3-1-4-4-5-6z"},"click":"function(gd) { \n // is this being viewed in RStudio?\n if (location.search == '?viewer_pane=1') {\n alert('To learn about plotly for collaboration, visit:\\n https://cpsievert.github.io/plotly_book/plot-ly-for-collaboration.html');\n } else {\n window.open('https://cpsievert.github.io/plotly_book/plot-ly-for-collaboration.html', '_blank');\n }\n }"}],"cloud":false},"source":"A","attrs":{"113554d980558":{"x":{},"y":{},"type":"scatter"}},"cur_data":"113554d980558","visdat":{"113554d980558":["function (y) ","x"]},"highlight":{"on":"plotly_click","persistent":false,"dynamic":false,"selectize":false,"opacityDim":0.2,"selected":{"opacity":1}},"base_url":"https://plot.ly"},"evals":["config.modeBarButtonsToAdd.0.click"],"jsHooks":{"render":[{"code":"function(el, x) { var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set({\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1}}); }","data":null}]}}</script> ] ??? * how do I know when these "weired" behaviour happened? If by looking at static plot. * `plotly` * instead of having two different copies of code, `ggplotly` only needs one. * hover info is quite comprehensive using `ggplotly`. --- .left-column[ ## plotly ### - `ggplotly` ### - `plot_ly` ] .right-column[ ```r p1 <- sx %>% filter(Wday == "Weekday") %>% group_by(Date) %>% plot_ly(x = ~ Hour, y = ~ Counts) %>% add_lines() p2 <- sx %>% filter(Wday == "Weekend") %>% group_by(Date) %>% plot_ly(x = ~ Hour, y = ~ Counts) %>% add_lines() layout(subplot(p1, p2, shareY = TRUE), showlegend = FALSE) ``` <div id="1135553b5bdd2" style="width:576px;height:324px;" class="plotly html-widget"></div> <script type="application/json" data-for="1135553b5bdd2">{"x":{"data":[{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23],"y":[16,8,3,4,1,96,581,1847,3863,2063,772,771,1747,1441,1012,1180,2512,3340,1477,529,239,136,100,42,null,19,16,7,2,7,97,579,1795,3650,2142,749,684,1529,1446,829,1122,2399,3383,1438,616,204,140,134,57,null,30,11,2,3,8,87,569,1882,3834,2130,780,714,1569,1454,919,1195,2551,2953,1206,469,243,220,154,83,null,22,8,5,5,7,97,577,1969,3920,2181,769,685,1450,1286,858,1071,2452,3568,1475,494,199,141,72,58,null,15,7,4,2,2,94,617,1926,3922,2239,765,723,1596,1705,931,1307,2563,3469,1526,466,216,113,88,54,null,20,3,3,5,4,88,569,1880,3800,2061,781,691,1490,1472,841,1186,2448,3432,1531,448,206,138,134,51,null,19,13,2,2,6,87,574,1886,3788,2104,813,805,1611,1476,873,1121,2509,3391,1443,489,268,115,119,75,null,31,28,12,3,4,90,550,1730,3479,2037,651,717,1574,1480,954,1142,2450,2922,1452,663,255,180,820,352,null,51,21,10,11,7,25,25,166,218,181,151,155,178,191,146,223,238,267,192,118,102,70,62,43,null,20,10,2,1,4,86,468,1911,3759,2185,746,775,1409,1289,779,994,2248,3467,1545,460,225,146,75,41,null,9,6,5,6,9,84,560,1787,3780,2055,738,729,1550,1345,868,1079,2274,3259,1475,472,192,126,73,78,null,20,9,4,0,6,94,613,1732,3733,2209,873,716,1385,1291,847,992,2040,3205,1453,462,219,154,120,51,null,35,18,7,2,5,75,570,1761,3684,1918,697,909,1502,1386,884,1236,2355,2947,1303,573,278,210,171,126,null,36,19,12,12,10,91,551,1792,3861,2100,679,618,1279,1157,759,1094,2455,3511,1510,385,188,145,38,0,null,10,2,7,3,1,76,606,1846,4002,2247,734,646,1421,1089,777,1058,2537,3537,1442,452,147,114,50,32,null,31,2,4,5,6,56,528,1929,3852,2371,780,723,1409,1251,780,1066,2367,3411,1469,499,186,156,101,46,null,17,6,3,1,6,84,624,1856,4087,2279,784,773,1426,1436,956,1129,2557,3570,1763,561,279,160,130,56,null,29,18,9,12,7,96,606,1841,3737,2070,794,773,1476,1249,916,1161,2352,2922,1198,491,216,252,136,90,null,27,6,2,3,8,74,467,1968,4073,2145,743,657,1391,1092,622,796,2336,3464,1451,410,181,97,67,43,null,16,8,4,3,4,86,585,1932,3927,2163,810,735,1369,1316,803,1049,2600,3387,1565,514,233,113,103,36,null,25,10,6,6,3,93,624,2046,3728,2150,782,662,1483,1321,842,1172,2546,3378,1476,444,139,101,62,31,null,13,5,6,0,4,107,605,1946,4026,2230,738,682,1468,1320,839,1113,2622,3731,1474,505,222,186,111,33,null,14,8,3,3,6,89,572,1761,3668,2013,730,729,1436,1332,839,1204,2370,2934,1503,610,270,193,265,134],"type":"scatter","mode":"lines","line":{"fillcolor":"rgba(31,119,180,1)","color":"rgba(31,119,180,1)"},"xaxis":"x","yaxis":"y","frame":null},{"x":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,null,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23],"y":[44,34,25,18,12,14,104,121,137,172,171,165,185,170,196,151,175,205,178,138,95,101,97,43,null,49,19,37,14,13,22,22,58,101,108,101,119,111,128,106,124,131,136,158,107,89,76,40,39,null,55,27,26,11,7,34,37,64,143,132,175,171,171,163,124,168,134,211,192,117,101,116,103,115,null,22,26,26,18,24,14,18,41,78,137,131,126,115,144,97,132,141,120,146,151,113,93,72,44,null,38,31,24,15,16,21,66,87,134,133,202,153,229,163,217,218,323,647,614,271,127,103,2169,292,null,59,31,14,17,4,17,9,36,72,130,125,118,150,127,161,168,259,508,491,233,124,86,2009,86,null,54,14,32,18,11,22,81,87,140,187,225,260,192,203,242,241,219,184,214,339,163,106,101,71,null,46,30,26,18,10,14,30,41,82,167,159,208,202,135,153,139,150,181,258,177,117,103,59,48],"type":"scatter","mode":"lines","line":{"fillcolor":"rgba(31,119,180,1)","color":"rgba(31,119,180,1)"},"xaxis":"x2","yaxis":"y","frame":null}],"layout":{"xaxis":{"domain":[0,0.48],"anchor":"y"},"xaxis2":{"domain":[0.52,1],"anchor":"y"},"yaxis":{"domain":[0,1],"title":"Counts","anchor":"x"},"margin":{"b":40,"l":60,"t":25,"r":10},"hovermode":"closest","showlegend":false},"attrs":{"11355645e85ab":{"x":{},"y":{},"alpha":1,"sizes":[10,100],"type":"scatter","mode":"lines"},"11355616a60ef":{"x":{},"y":{},"alpha":1,"sizes":[10,100],"type":"scatter","mode":"lines"}},"source":"A","config":{"modeBarButtonsToAdd":[{"name":"Collaborate","icon":{"width":1000,"ascent":500,"descent":-50,"path":"M487 375c7-10 9-23 5-36l-79-259c-3-12-11-23-22-31-11-8-22-12-35-12l-263 0c-15 0-29 5-43 15-13 10-23 23-28 37-5 13-5 25-1 37 0 0 0 3 1 7 1 5 1 8 1 11 0 2 0 4-1 6 0 3-1 5-1 6 1 2 2 4 3 6 1 2 2 4 4 6 2 3 4 5 5 7 5 7 9 16 13 26 4 10 7 19 9 26 0 2 0 5 0 9-1 4-1 6 0 8 0 2 2 5 4 8 3 3 5 5 5 7 4 6 8 15 12 26 4 11 7 19 7 26 1 1 0 4 0 9-1 4-1 7 0 8 1 2 3 5 6 8 4 4 6 6 6 7 4 5 8 13 13 24 4 11 7 20 7 28 1 1 0 4 0 7-1 3-1 6-1 7 0 2 1 4 3 6 1 1 3 4 5 6 2 3 3 5 5 6 1 2 3 5 4 9 2 3 3 7 5 10 1 3 2 6 4 10 2 4 4 7 6 9 2 3 4 5 7 7 3 2 7 3 11 3 3 0 8 0 13-1l0-1c7 2 12 2 14 2l218 0c14 0 25-5 32-16 8-10 10-23 6-37l-79-259c-7-22-13-37-20-43-7-7-19-10-37-10l-248 0c-5 0-9-2-11-5-2-3-2-7 0-12 4-13 18-20 41-20l264 0c5 0 10 2 16 5 5 3 8 6 10 11l85 282c2 5 2 10 2 17 7-3 13-7 17-13z m-304 0c-1-3-1-5 0-7 1-1 3-2 6-2l174 0c2 0 4 1 7 2 2 2 4 4 5 7l6 18c0 3 0 5-1 7-1 1-3 2-6 2l-173 0c-3 0-5-1-8-2-2-2-4-4-4-7z m-24-73c-1-3-1-5 0-7 2-2 3-2 6-2l174 0c2 0 5 0 7 2 3 2 4 4 5 7l6 18c1 2 0 5-1 6-1 2-3 3-5 3l-174 0c-3 0-5-1-7-3-3-1-4-4-5-6z"},"click":"function(gd) { \n // is this being viewed in RStudio?\n if (location.search == '?viewer_pane=1') {\n alert('To learn about plotly for collaboration, visit:\\n https://cpsievert.github.io/plotly_book/plot-ly-for-collaboration.html');\n } else {\n window.open('https://cpsievert.github.io/plotly_book/plot-ly-for-collaboration.html', '_blank');\n }\n }"}],"cloud":false},"highlight":{"on":"plotly_click","persistent":false,"dynamic":false,"selectize":false,"opacityDim":0.2,"selected":{"opacity":1}},"subplot":true,"base_url":"https://plot.ly"},"evals":["config.modeBarButtonsToAdd.0.click"],"jsHooks":{"render":[{"code":"function(el, x) { var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set({\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1}}); }","data":null}]}}</script> ] ??? * `ggplotly` shortcut * authentic `plot_ly` replicate the plot. * hover info needs to be customised. --- .left-column[ ## plotly ### - `ggplotly` ### - `plot_ly` ### - animation ] .right-column[ ```r a10_df <- broom::tidy(zoo::as.zoo(fpp2::a10)) %>% mutate( year = year(index), month = month(index) ) p3 <- a10_df %>% ggplot(aes(month, value)) + geom_line(aes(group = year), alpha = 0.2) + geom_line(aes(frame = year, colour = as.factor(year))) + animation_opts( ggplotly(p3), frame = 1000, easing = "elastic" ) ``` <div id="11355399d616e" style="width:576px;height:324px;" class="plotly html-widget"></div> <script type="application/json" data-for="11355399d616e">{"x":{"data":[{"x":[7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6,7,8,9,10,11,12,null,1,2,3,4,5,6],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371,null,5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917,null,6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622,null,6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348,null,6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792,null,8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721,null,8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339,null,8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902,null,10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428,null,12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184,null,14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509,null,16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784,null,16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561,null,18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325,null,20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291,null,23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206,null,28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609,null,29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 1991<br />month: 7<br />value: 3.526591","year: 1991<br />month: 8<br />value: 3.180891","year: 1991<br />month: 9<br />value: 3.252221","year: 1991<br />month: 10<br />value: 3.611003","year: 1991<br />month: 11<br />value: 3.565869","year: 1991<br />month: 12<br />value: 4.306371",null,"year: 1992<br />month: 1<br />value: 5.088335","year: 1992<br />month: 2<br />value: 2.814520","year: 1992<br />month: 3<br />value: 2.985811","year: 1992<br />month: 4<br />value: 3.204780","year: 1992<br />month: 5<br />value: 3.127578","year: 1992<br />month: 6<br />value: 3.270523","year: 1992<br />month: 7<br />value: 3.737851","year: 1992<br />month: 8<br />value: 3.558776","year: 1992<br />month: 9<br />value: 3.777202","year: 1992<br />month: 10<br />value: 3.924490","year: 1992<br />month: 11<br />value: 4.386531","year: 1992<br />month: 12<br />value: 5.810549",null,"year: 1993<br />month: 1<br />value: 6.192068","year: 1993<br />month: 2<br />value: 3.450857","year: 1993<br />month: 3<br />value: 3.772307","year: 1993<br />month: 4<br />value: 3.734303","year: 1993<br />month: 5<br />value: 3.905399","year: 1993<br />month: 6<br />value: 4.049687","year: 1993<br />month: 7<br />value: 4.315566","year: 1993<br />month: 8<br />value: 4.562185","year: 1993<br />month: 9<br />value: 4.608662","year: 1993<br />month: 10<br />value: 4.667851","year: 1993<br />month: 11<br />value: 5.093841","year: 1993<br />month: 12<br />value: 7.179962",null,"year: 1994<br />month: 1<br />value: 6.731473","year: 1994<br />month: 2<br />value: 3.841278","year: 1994<br />month: 3<br />value: 4.394076","year: 1994<br />month: 4<br />value: 4.075341","year: 1994<br />month: 5<br />value: 4.540645","year: 1994<br />month: 6<br />value: 4.645615","year: 1994<br />month: 7<br />value: 4.752607","year: 1994<br />month: 8<br />value: 5.350605","year: 1994<br />month: 9<br />value: 5.204455","year: 1994<br />month: 10<br />value: 5.301651","year: 1994<br />month: 11<br />value: 5.773742","year: 1994<br />month: 12<br />value: 6.204593",null,"year: 1995<br />month: 1<br />value: 6.749484","year: 1995<br />month: 2<br />value: 4.216067","year: 1995<br />month: 3<br />value: 4.949349","year: 1995<br />month: 4<br />value: 4.823045","year: 1995<br />month: 5<br />value: 5.194754","year: 1995<br />month: 6<br />value: 5.170787","year: 1995<br />month: 7<br />value: 5.256742","year: 1995<br />month: 8<br />value: 5.855277","year: 1995<br />month: 9<br />value: 5.490729","year: 1995<br />month: 10<br />value: 6.115293","year: 1995<br />month: 11<br />value: 6.088473","year: 1995<br />month: 12<br />value: 7.416598",null,"year: 1996<br />month: 1<br />value: 8.329452","year: 1996<br />month: 2<br />value: 5.069796","year: 1996<br />month: 3<br />value: 5.262557","year: 1996<br />month: 4<br />value: 5.597126","year: 1996<br />month: 5<br />value: 6.110296","year: 1996<br />month: 6<br />value: 5.689161","year: 1996<br />month: 7<br />value: 6.486849","year: 1996<br />month: 8<br />value: 6.300569","year: 1996<br />month: 9<br />value: 6.467476","year: 1996<br />month: 10<br />value: 6.828629","year: 1996<br />month: 11<br />value: 6.649078","year: 1996<br />month: 12<br />value: 8.606937",null,"year: 1997<br />month: 1<br />value: 8.524471","year: 1997<br />month: 2<br />value: 5.277918","year: 1997<br />month: 3<br />value: 5.714303","year: 1997<br />month: 4<br />value: 6.214529","year: 1997<br />month: 5<br />value: 6.411929","year: 1997<br />month: 6<br />value: 6.667716","year: 1997<br />month: 7<br />value: 7.050831","year: 1997<br />month: 8<br />value: 6.704919","year: 1997<br />month: 9<br />value: 7.250988","year: 1997<br />month: 10<br />value: 7.819733","year: 1997<br />month: 11<br />value: 7.398101","year: 1997<br />month: 12<br />value: 10.096233",null,"year: 1998<br />month: 1<br />value: 8.798513","year: 1998<br />month: 2<br />value: 5.918261","year: 1998<br />month: 3<br />value: 6.534493","year: 1998<br />month: 4<br />value: 6.675736","year: 1998<br />month: 5<br />value: 7.064201","year: 1998<br />month: 6<br />value: 7.383381","year: 1998<br />month: 7<br />value: 7.813496","year: 1998<br />month: 8<br />value: 7.431892","year: 1998<br />month: 9<br />value: 8.275117","year: 1998<br />month: 10<br />value: 8.260441","year: 1998<br />month: 11<br />value: 8.596156","year: 1998<br />month: 12<br />value: 10.558939",null,"year: 1999<br />month: 1<br />value: 10.391416","year: 1999<br />month: 2<br />value: 6.421535","year: 1999<br />month: 3<br />value: 8.062619","year: 1999<br />month: 4<br />value: 7.297739","year: 1999<br />month: 5<br />value: 7.936916","year: 1999<br />month: 6<br />value: 8.165323","year: 1999<br />month: 7<br />value: 8.717420","year: 1999<br />month: 8<br />value: 9.070964","year: 1999<br />month: 9<br />value: 9.177113","year: 1999<br />month: 10<br />value: 9.251887","year: 1999<br />month: 11<br />value: 9.933136","year: 1999<br />month: 12<br />value: 11.532974",null,"year: 2000<br />month: 1<br />value: 12.511462","year: 2000<br />month: 2<br />value: 7.457199","year: 2000<br />month: 3<br />value: 8.591191","year: 2000<br />month: 4<br />value: 8.474000","year: 2000<br />month: 5<br />value: 9.386803","year: 2000<br />month: 6<br />value: 9.560399","year: 2000<br />month: 7<br />value: 10.834295","year: 2000<br />month: 8<br />value: 10.643751","year: 2000<br />month: 9<br />value: 9.908162","year: 2000<br />month: 10<br />value: 11.710041","year: 2000<br />month: 11<br />value: 11.340151","year: 2000<br />month: 12<br />value: 12.079132",null,"year: 2001<br />month: 1<br />value: 14.497581","year: 2001<br />month: 2<br />value: 8.049275","year: 2001<br />month: 3<br />value: 10.312891","year: 2001<br />month: 4<br />value: 9.753358","year: 2001<br />month: 5<br />value: 10.850382","year: 2001<br />month: 6<br />value: 9.961719","year: 2001<br />month: 7<br />value: 11.443601","year: 2001<br />month: 8<br />value: 11.659239","year: 2001<br />month: 9<br />value: 10.647060","year: 2001<br />month: 10<br />value: 12.652134","year: 2001<br />month: 11<br />value: 13.674466","year: 2001<br />month: 12<br />value: 12.965735",null,"year: 2002<br />month: 1<br />value: 16.300269","year: 2002<br />month: 2<br />value: 9.053485","year: 2002<br />month: 3<br />value: 10.002449","year: 2002<br />month: 4<br />value: 10.788750","year: 2002<br />month: 5<br />value: 12.106705","year: 2002<br />month: 6<br />value: 10.954101","year: 2002<br />month: 7<br />value: 12.844566","year: 2002<br />month: 8<br />value: 12.196500","year: 2002<br />month: 9<br />value: 12.854748","year: 2002<br />month: 10<br />value: 13.542004","year: 2002<br />month: 11<br />value: 13.287640","year: 2002<br />month: 12<br />value: 15.134918",null,"year: 2003<br />month: 1<br />value: 16.828350","year: 2003<br />month: 2<br />value: 9.800215","year: 2003<br />month: 3<br />value: 10.816994","year: 2003<br />month: 4<br />value: 10.654223","year: 2003<br />month: 5<br />value: 12.512323","year: 2003<br />month: 6<br />value: 12.161210","year: 2003<br />month: 7<br />value: 12.998046","year: 2003<br />month: 8<br />value: 12.517276","year: 2003<br />month: 9<br />value: 13.268658","year: 2003<br />month: 10<br />value: 14.733622","year: 2003<br />month: 11<br />value: 13.669382","year: 2003<br />month: 12<br />value: 16.503966",null,"year: 2004<br />month: 1<br />value: 18.003768","year: 2004<br />month: 2<br />value: 11.938030","year: 2004<br />month: 3<br />value: 12.997900","year: 2004<br />month: 4<br />value: 12.882645","year: 2004<br />month: 5<br />value: 13.943447","year: 2004<br />month: 6<br />value: 13.989472","year: 2004<br />month: 7<br />value: 15.339097","year: 2004<br />month: 8<br />value: 15.370764","year: 2004<br />month: 9<br />value: 16.142005","year: 2004<br />month: 10<br />value: 16.685754","year: 2004<br />month: 11<br />value: 17.636728","year: 2004<br />month: 12<br />value: 18.869325",null,"year: 2005<br />month: 1<br />value: 20.778723","year: 2005<br />month: 2<br />value: 12.154552","year: 2005<br />month: 3<br />value: 13.402392","year: 2005<br />month: 4<br />value: 14.459239","year: 2005<br />month: 5<br />value: 14.795102","year: 2005<br />month: 6<br />value: 15.705248","year: 2005<br />month: 7<br />value: 15.829550","year: 2005<br />month: 8<br />value: 17.554701","year: 2005<br />month: 9<br />value: 18.100864","year: 2005<br />month: 10<br />value: 17.496668","year: 2005<br />month: 11<br />value: 19.347265","year: 2005<br />month: 12<br />value: 20.031291",null,"year: 2006<br />month: 1<br />value: 23.486694","year: 2006<br />month: 2<br />value: 12.536987","year: 2006<br />month: 3<br />value: 15.467018","year: 2006<br />month: 4<br />value: 14.233539","year: 2006<br />month: 5<br />value: 17.783058","year: 2006<br />month: 6<br />value: 16.291602","year: 2006<br />month: 7<br />value: 16.980282","year: 2006<br />month: 8<br />value: 18.612189","year: 2006<br />month: 9<br />value: 16.623343","year: 2006<br />month: 10<br />value: 21.430241","year: 2006<br />month: 11<br />value: 23.575517","year: 2006<br />month: 12<br />value: 23.334206",null,"year: 2007<br />month: 1<br />value: 28.038383","year: 2007<br />month: 2<br />value: 16.763869","year: 2007<br />month: 3<br />value: 19.792754","year: 2007<br />month: 4<br />value: 16.427305","year: 2007<br />month: 5<br />value: 21.000742","year: 2007<br />month: 6<br />value: 20.681002","year: 2007<br />month: 7<br />value: 21.834890","year: 2007<br />month: 8<br />value: 23.930204","year: 2007<br />month: 9<br />value: 22.930357","year: 2007<br />month: 10<br />value: 23.263340","year: 2007<br />month: 11<br />value: 25.250030","year: 2007<br />month: 12<br />value: 25.806090",null,"year: 2008<br />month: 1<br />value: 29.665356","year: 2008<br />month: 2<br />value: 21.654285","year: 2008<br />month: 3<br />value: 18.264945","year: 2008<br />month: 4<br />value: 23.107677","year: 2008<br />month: 5<br />value: 22.912510","year: 2008<br />month: 6<br />value: 19.431740"],"type":"scatter","mode":"lines","line":{"width":1.88976377952756,"color":"rgba(0,0,0,0.2)","dash":"solid"},"hoveron":"points","showlegend":false,"xaxis":"x","yaxis":"y","hoverinfo":"text","frame":null},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true}],"layout":{"margin":{"t":28.98833079655,"r":7.30593607305936,"b":56.4918592315853,"l":50.8094645080946},"plot_bgcolor":"rgba(235,235,235,1)","paper_bgcolor":"rgba(255,255,255,1)","font":{"color":"rgba(0,0,0,1)","family":"","size":14.6118721461187},"xaxis":{"domain":[0,1],"type":"linear","autorange":false,"range":[0.45,12.55],"tickmode":"array","ticktext":["J","F","M","A","M","J","J","A","S","O","N","D"],"tickvals":[1,2,3,4,5,6,7,8,9,10,11,12],"categoryorder":"array","categoryarray":["J","F","M","A","M","J","J","A","S","O","N","D"],"nticks":null,"ticks":"outside","tickcolor":"rgba(51,51,51,1)","ticklen":3.65296803652968,"tickwidth":0.66417600664176,"showticklabels":true,"tickfont":{"color":"rgba(77,77,77,1)","family":"","size":18.5969281859693},"tickangle":-0,"showline":false,"linecolor":null,"linewidth":0,"showgrid":true,"gridcolor":"rgba(255,255,255,1)","gridwidth":0.66417600664176,"zeroline":false,"anchor":"y","title":"month","titlefont":{"color":"rgba(0,0,0,1)","family":"","size":21.2536322125363},"hoverformat":".2f"},"yaxis":{"domain":[0,1],"type":"linear","autorange":false,"range":[1.4719782,31.0078978],"tickmode":"array","ticktext":["10","20","30"],"tickvals":[10,20,30],"categoryorder":"array","categoryarray":["10","20","30"],"nticks":null,"ticks":"outside","tickcolor":"rgba(51,51,51,1)","ticklen":3.65296803652968,"tickwidth":0.66417600664176,"showticklabels":true,"tickfont":{"color":"rgba(77,77,77,1)","family":"","size":18.5969281859693},"tickangle":-0,"showline":false,"linecolor":null,"linewidth":0,"showgrid":true,"gridcolor":"rgba(255,255,255,1)","gridwidth":0.66417600664176,"zeroline":false,"anchor":"x","title":"value","titlefont":{"color":"rgba(0,0,0,1)","family":"","size":21.2536322125363},"hoverformat":".2f"},"shapes":[{"type":"rect","fillcolor":null,"line":{"color":null,"width":0,"linetype":[]},"yref":"paper","xref":"paper","x0":0,"x1":1,"y0":0,"y1":1}],"showlegend":true,"legend":{"bgcolor":"rgba(255,255,255,1)","bordercolor":"transparent","borderwidth":1.88976377952756,"font":{"color":"rgba(0,0,0,1)","family":"","size":11.689497716895},"y":0.903762029746282},"annotations":[{"text":"as.factor(year)","x":1.02,"y":1,"showarrow":false,"ax":0,"ay":0,"font":{"color":"rgba(0,0,0,1)","family":"","size":14.6118721461187},"xref":"paper","yref":"paper","textangle":-0,"xanchor":"left","yanchor":"bottom","legendTitle":true}],"hovermode":"closest","barmode":"relative","sliders":[{"currentvalue":{"prefix":"year: ","xanchor":"right","font":{"size":16,"color":"rgba(204,204,204,1)"}},"steps":[{"method":"animate","args":[["1991"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"1991","value":"1991"},{"method":"animate","args":[["1992"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"1992","value":"1992"},{"method":"animate","args":[["1993"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"1993","value":"1993"},{"method":"animate","args":[["1994"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"1994","value":"1994"},{"method":"animate","args":[["1995"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"1995","value":"1995"},{"method":"animate","args":[["1996"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"1996","value":"1996"},{"method":"animate","args":[["1997"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"1997","value":"1997"},{"method":"animate","args":[["1998"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"1998","value":"1998"},{"method":"animate","args":[["1999"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"1999","value":"1999"},{"method":"animate","args":[["2000"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"2000","value":"2000"},{"method":"animate","args":[["2001"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"2001","value":"2001"},{"method":"animate","args":[["2002"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"2002","value":"2002"},{"method":"animate","args":[["2003"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"2003","value":"2003"},{"method":"animate","args":[["2004"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"2004","value":"2004"},{"method":"animate","args":[["2005"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"2005","value":"2005"},{"method":"animate","args":[["2006"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"2006","value":"2006"},{"method":"animate","args":[["2007"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"2007","value":"2007"},{"method":"animate","args":[["2008"],{"transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true},"mode":"immediate"}],"label":"2008","value":"2008"}],"visible":true,"pad":{"t":40}}],"updatemenus":[{"type":"buttons","direction":"right","showactive":false,"y":0,"x":0,"yanchor":"top","xanchor":"right","pad":{"t":60,"r":5},"buttons":[{"label":"Play","method":"animate","args":[null,{"fromcurrent":true,"mode":"immediate","transition":{"duration":1000,"easing":"elastic"},"frame":{"duration":1000,"redraw":true}}]}]}]},"config":{"doubleClick":"reset","modeBarButtonsToAdd":[{"name":"Collaborate","icon":{"width":1000,"ascent":500,"descent":-50,"path":"M487 375c7-10 9-23 5-36l-79-259c-3-12-11-23-22-31-11-8-22-12-35-12l-263 0c-15 0-29 5-43 15-13 10-23 23-28 37-5 13-5 25-1 37 0 0 0 3 1 7 1 5 1 8 1 11 0 2 0 4-1 6 0 3-1 5-1 6 1 2 2 4 3 6 1 2 2 4 4 6 2 3 4 5 5 7 5 7 9 16 13 26 4 10 7 19 9 26 0 2 0 5 0 9-1 4-1 6 0 8 0 2 2 5 4 8 3 3 5 5 5 7 4 6 8 15 12 26 4 11 7 19 7 26 1 1 0 4 0 9-1 4-1 7 0 8 1 2 3 5 6 8 4 4 6 6 6 7 4 5 8 13 13 24 4 11 7 20 7 28 1 1 0 4 0 7-1 3-1 6-1 7 0 2 1 4 3 6 1 1 3 4 5 6 2 3 3 5 5 6 1 2 3 5 4 9 2 3 3 7 5 10 1 3 2 6 4 10 2 4 4 7 6 9 2 3 4 5 7 7 3 2 7 3 11 3 3 0 8 0 13-1l0-1c7 2 12 2 14 2l218 0c14 0 25-5 32-16 8-10 10-23 6-37l-79-259c-7-22-13-37-20-43-7-7-19-10-37-10l-248 0c-5 0-9-2-11-5-2-3-2-7 0-12 4-13 18-20 41-20l264 0c5 0 10 2 16 5 5 3 8 6 10 11l85 282c2 5 2 10 2 17 7-3 13-7 17-13z m-304 0c-1-3-1-5 0-7 1-1 3-2 6-2l174 0c2 0 4 1 7 2 2 2 4 4 5 7l6 18c0 3 0 5-1 7-1 1-3 2-6 2l-173 0c-3 0-5-1-8-2-2-2-4-4-4-7z m-24-73c-1-3-1-5 0-7 2-2 3-2 6-2l174 0c2 0 5 0 7 2 3 2 4 4 5 7l6 18c1 2 0 5-1 6-1 2-3 3-5 3l-174 0c-3 0-5-1-7-3-3-1-4-4-5-6z"},"click":"function(gd) { \n // is this being viewed in RStudio?\n if (location.search == '?viewer_pane=1') {\n alert('To learn about plotly for collaboration, visit:\\n https://cpsievert.github.io/plotly_book/plot-ly-for-collaboration.html');\n } else {\n window.open('https://cpsievert.github.io/plotly_book/plot-ly-for-collaboration.html', '_blank');\n }\n }"}],"cloud":false},"source":"A","attrs":{"1135515accc9a":{"x":{},"y":{},"type":"scatter"},"113553ac9d94":{"frame":{},"colour":{},"x":{},"y":{}}},"cur_data":"1135515accc9a","visdat":{"1135515accc9a":["function (y) ","x"],"113553ac9d94":["function (y) ","x"]},"highlight":{"on":"plotly_click","persistent":false,"dynamic":false,"selectize":false,"opacityDim":0.2,"selected":{"opacity":1}},"frames":[{"name":"1991","data":[{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"1992","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"1993","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"1994","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"1995","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"1996","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"1997","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"1998","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"1999","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"2000","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"2001","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"2002","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"2003","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"2004","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"2005","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"2006","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"2007","data":[{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]},{"name":"2008","data":[{"x":[1,2,3,4,5,6],"y":[29.665356,21.654285,18.264945,23.107677,22.91251,19.43174],"text":["year: 2008<br />as.factor(year): 2008<br />month: 1<br />value: 29.665356","year: 2008<br />as.factor(year): 2008<br />month: 2<br />value: 21.654285","year: 2008<br />as.factor(year): 2008<br />month: 3<br />value: 18.264945","year: 2008<br />as.factor(year): 2008<br />month: 4<br />value: 23.107677","year: 2008<br />as.factor(year): 2008<br />month: 5<br />value: 22.912510","year: 2008<br />as.factor(year): 2008<br />month: 6<br />value: 19.431740"],"frame":"2008","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,105,156,1)","dash":"solid"},"hoveron":"points","name":"2008","legendgroup":"2008","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":true},{"x":[7,8,9,10,11,12],"y":[3.526591,3.180891,3.252221,3.611003,3.565869,4.306371],"text":["year: 1991<br />as.factor(year): 1991<br />month: 7<br />value: 3.526591","year: 1991<br />as.factor(year): 1991<br />month: 8<br />value: 3.180891","year: 1991<br />as.factor(year): 1991<br />month: 9<br />value: 3.252221","year: 1991<br />as.factor(year): 1991<br />month: 10<br />value: 3.611003","year: 1991<br />as.factor(year): 1991<br />month: 11<br />value: 3.565869","year: 1991<br />as.factor(year): 1991<br />month: 12<br />value: 4.306371"],"frame":"1991","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(248,118,109,1)","dash":"solid"},"hoveron":"points","name":"1991","legendgroup":"1991","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[5.088335,2.81452,2.985811,3.20478,3.127578,3.270523,3.73785082,3.55877609,3.77720173,3.92449042,4.38653092,5.81054917],"text":["year: 1992<br />as.factor(year): 1992<br />month: 1<br />value: 5.088335","year: 1992<br />as.factor(year): 1992<br />month: 2<br />value: 2.814520","year: 1992<br />as.factor(year): 1992<br />month: 3<br />value: 2.985811","year: 1992<br />as.factor(year): 1992<br />month: 4<br />value: 3.204780","year: 1992<br />as.factor(year): 1992<br />month: 5<br />value: 3.127578","year: 1992<br />as.factor(year): 1992<br />month: 6<br />value: 3.270523","year: 1992<br />as.factor(year): 1992<br />month: 7<br />value: 3.737851","year: 1992<br />as.factor(year): 1992<br />month: 8<br />value: 3.558776","year: 1992<br />as.factor(year): 1992<br />month: 9<br />value: 3.777202","year: 1992<br />as.factor(year): 1992<br />month: 10<br />value: 3.924490","year: 1992<br />as.factor(year): 1992<br />month: 11<br />value: 4.386531","year: 1992<br />as.factor(year): 1992<br />month: 12<br />value: 5.810549"],"frame":"1992","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(232,133,38,1)","dash":"solid"},"hoveron":"points","name":"1992","legendgroup":"1992","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.19206769,3.45085699,3.77230686,3.7343029,3.90539892,4.04968714,4.31556552,4.56218455,4.60866203,4.66785129,5.09384145,7.1799622],"text":["year: 1993<br />as.factor(year): 1993<br />month: 1<br />value: 6.192068","year: 1993<br />as.factor(year): 1993<br />month: 2<br />value: 3.450857","year: 1993<br />as.factor(year): 1993<br />month: 3<br />value: 3.772307","year: 1993<br />as.factor(year): 1993<br />month: 4<br />value: 3.734303","year: 1993<br />as.factor(year): 1993<br />month: 5<br />value: 3.905399","year: 1993<br />as.factor(year): 1993<br />month: 6<br />value: 4.049687","year: 1993<br />as.factor(year): 1993<br />month: 7<br />value: 4.315566","year: 1993<br />as.factor(year): 1993<br />month: 8<br />value: 4.562185","year: 1993<br />as.factor(year): 1993<br />month: 9<br />value: 4.608662","year: 1993<br />as.factor(year): 1993<br />month: 10<br />value: 4.667851","year: 1993<br />as.factor(year): 1993<br />month: 11<br />value: 5.093841","year: 1993<br />as.factor(year): 1993<br />month: 12<br />value: 7.179962"],"frame":"1993","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(211,146,0,1)","dash":"solid"},"hoveron":"points","name":"1993","legendgroup":"1993","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.73147308,3.84127758,4.39407557,4.07534073,4.5406449,4.64561508,4.75260653,5.35060467,5.20445484,5.3016513,5.77374216,6.20459348],"text":["year: 1994<br />as.factor(year): 1994<br />month: 1<br />value: 6.731473","year: 1994<br />as.factor(year): 1994<br />month: 2<br />value: 3.841278","year: 1994<br />as.factor(year): 1994<br />month: 3<br />value: 4.394076","year: 1994<br />as.factor(year): 1994<br />month: 4<br />value: 4.075341","year: 1994<br />as.factor(year): 1994<br />month: 5<br />value: 4.540645","year: 1994<br />as.factor(year): 1994<br />month: 6<br />value: 4.645615","year: 1994<br />as.factor(year): 1994<br />month: 7<br />value: 4.752607","year: 1994<br />as.factor(year): 1994<br />month: 8<br />value: 5.350605","year: 1994<br />as.factor(year): 1994<br />month: 9<br />value: 5.204455","year: 1994<br />as.factor(year): 1994<br />month: 10<br />value: 5.301651","year: 1994<br />as.factor(year): 1994<br />month: 11<br />value: 5.773742","year: 1994<br />as.factor(year): 1994<br />month: 12<br />value: 6.204593"],"frame":"1994","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(183,159,0,1)","dash":"solid"},"hoveron":"points","name":"1994","legendgroup":"1994","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[6.74948382,4.21606735,4.94934946,4.8230449,5.19475419,5.17078711,5.25674157,5.85527729,5.49072901,6.11529323,6.08847284,7.41659792],"text":["year: 1995<br />as.factor(year): 1995<br />month: 1<br />value: 6.749484","year: 1995<br />as.factor(year): 1995<br />month: 2<br />value: 4.216067","year: 1995<br />as.factor(year): 1995<br />month: 3<br />value: 4.949349","year: 1995<br />as.factor(year): 1995<br />month: 4<br />value: 4.823045","year: 1995<br />as.factor(year): 1995<br />month: 5<br />value: 5.194754","year: 1995<br />as.factor(year): 1995<br />month: 6<br />value: 5.170787","year: 1995<br />as.factor(year): 1995<br />month: 7<br />value: 5.256742","year: 1995<br />as.factor(year): 1995<br />month: 8<br />value: 5.855277","year: 1995<br />as.factor(year): 1995<br />month: 9<br />value: 5.490729","year: 1995<br />as.factor(year): 1995<br />month: 10<br />value: 6.115293","year: 1995<br />as.factor(year): 1995<br />month: 11<br />value: 6.088473","year: 1995<br />as.factor(year): 1995<br />month: 12<br />value: 7.416598"],"frame":"1995","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(147,170,0,1)","dash":"solid"},"hoveron":"points","name":"1995","legendgroup":"1995","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.32945212,5.06979585,5.26255667,5.59712628,6.110296,5.68916084,6.48684933,6.30056933,6.46747574,6.82862939,6.64907826,8.60693721],"text":["year: 1996<br />as.factor(year): 1996<br />month: 1<br />value: 8.329452","year: 1996<br />as.factor(year): 1996<br />month: 2<br />value: 5.069796","year: 1996<br />as.factor(year): 1996<br />month: 3<br />value: 5.262557","year: 1996<br />as.factor(year): 1996<br />month: 4<br />value: 5.597126","year: 1996<br />as.factor(year): 1996<br />month: 5<br />value: 6.110296","year: 1996<br />as.factor(year): 1996<br />month: 6<br />value: 5.689161","year: 1996<br />as.factor(year): 1996<br />month: 7<br />value: 6.486849","year: 1996<br />as.factor(year): 1996<br />month: 8<br />value: 6.300569","year: 1996<br />as.factor(year): 1996<br />month: 9<br />value: 6.467476","year: 1996<br />as.factor(year): 1996<br />month: 10<br />value: 6.828629","year: 1996<br />as.factor(year): 1996<br />month: 11<br />value: 6.649078","year: 1996<br />as.factor(year): 1996<br />month: 12<br />value: 8.606937"],"frame":"1996","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(94,179,0,1)","dash":"solid"},"hoveron":"points","name":"1996","legendgroup":"1996","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.52447101,5.27791837,5.71430345,6.21452908,6.41192919,6.66771564,7.05083102,6.70491861,7.25098761,7.81973318,7.39810106,10.09623339],"text":["year: 1997<br />as.factor(year): 1997<br />month: 1<br />value: 8.524471","year: 1997<br />as.factor(year): 1997<br />month: 2<br />value: 5.277918","year: 1997<br />as.factor(year): 1997<br />month: 3<br />value: 5.714303","year: 1997<br />as.factor(year): 1997<br />month: 4<br />value: 6.214529","year: 1997<br />as.factor(year): 1997<br />month: 5<br />value: 6.411929","year: 1997<br />as.factor(year): 1997<br />month: 6<br />value: 6.667716","year: 1997<br />as.factor(year): 1997<br />month: 7<br />value: 7.050831","year: 1997<br />as.factor(year): 1997<br />month: 8<br />value: 6.704919","year: 1997<br />as.factor(year): 1997<br />month: 9<br />value: 7.250988","year: 1997<br />as.factor(year): 1997<br />month: 10<br />value: 7.819733","year: 1997<br />as.factor(year): 1997<br />month: 11<br />value: 7.398101","year: 1997<br />as.factor(year): 1997<br />month: 12<br />value: 10.096233"],"frame":"1997","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,186,56,1)","dash":"solid"},"hoveron":"points","name":"1997","legendgroup":"1997","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[8.79851303,5.91826076,6.53449298,6.67573561,7.06420058,7.38338118,7.81349587,7.43189221,8.27511722,8.26044138,8.59615575,10.55893902],"text":["year: 1998<br />as.factor(year): 1998<br />month: 1<br />value: 8.798513","year: 1998<br />as.factor(year): 1998<br />month: 2<br />value: 5.918261","year: 1998<br />as.factor(year): 1998<br />month: 3<br />value: 6.534493","year: 1998<br />as.factor(year): 1998<br />month: 4<br />value: 6.675736","year: 1998<br />as.factor(year): 1998<br />month: 5<br />value: 7.064201","year: 1998<br />as.factor(year): 1998<br />month: 6<br />value: 7.383381","year: 1998<br />as.factor(year): 1998<br />month: 7<br />value: 7.813496","year: 1998<br />as.factor(year): 1998<br />month: 8<br />value: 7.431892","year: 1998<br />as.factor(year): 1998<br />month: 9<br />value: 8.275117","year: 1998<br />as.factor(year): 1998<br />month: 10<br />value: 8.260441","year: 1998<br />as.factor(year): 1998<br />month: 11<br />value: 8.596156","year: 1998<br />as.factor(year): 1998<br />month: 12<br />value: 10.558939"],"frame":"1998","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,116,1)","dash":"solid"},"hoveron":"points","name":"1998","legendgroup":"1998","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[10.3914156,6.42153456,8.06261937,7.2977391,7.93691594,8.16532298,8.71742046,9.07096378,9.17711337,9.25188674,9.93313643,11.53297428],"text":["year: 1999<br />as.factor(year): 1999<br />month: 1<br />value: 10.391416","year: 1999<br />as.factor(year): 1999<br />month: 2<br />value: 6.421535","year: 1999<br />as.factor(year): 1999<br />month: 3<br />value: 8.062619","year: 1999<br />as.factor(year): 1999<br />month: 4<br />value: 7.297739","year: 1999<br />as.factor(year): 1999<br />month: 5<br />value: 7.936916","year: 1999<br />as.factor(year): 1999<br />month: 6<br />value: 8.165323","year: 1999<br />as.factor(year): 1999<br />month: 7<br />value: 8.717420","year: 1999<br />as.factor(year): 1999<br />month: 8<br />value: 9.070964","year: 1999<br />as.factor(year): 1999<br />month: 9<br />value: 9.177113","year: 1999<br />as.factor(year): 1999<br />month: 10<br />value: 9.251887","year: 1999<br />as.factor(year): 1999<br />month: 11<br />value: 9.933136","year: 1999<br />as.factor(year): 1999<br />month: 12<br />value: 11.532974"],"frame":"1999","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,193,159,1)","dash":"solid"},"hoveron":"points","name":"1999","legendgroup":"1999","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[12.51146235,7.45719853,8.59119084,8.47400037,9.3868026,9.56039945,10.8342948,10.64375083,9.90816186,11.7100413,11.34015074,12.07913184],"text":["year: 2000<br />as.factor(year): 2000<br />month: 1<br />value: 12.511462","year: 2000<br />as.factor(year): 2000<br />month: 2<br />value: 7.457199","year: 2000<br />as.factor(year): 2000<br />month: 3<br />value: 8.591191","year: 2000<br />as.factor(year): 2000<br />month: 4<br />value: 8.474000","year: 2000<br />as.factor(year): 2000<br />month: 5<br />value: 9.386803","year: 2000<br />as.factor(year): 2000<br />month: 6<br />value: 9.560399","year: 2000<br />as.factor(year): 2000<br />month: 7<br />value: 10.834295","year: 2000<br />as.factor(year): 2000<br />month: 8<br />value: 10.643751","year: 2000<br />as.factor(year): 2000<br />month: 9<br />value: 9.908162","year: 2000<br />as.factor(year): 2000<br />month: 10<br />value: 11.710041","year: 2000<br />as.factor(year): 2000<br />month: 11<br />value: 11.340151","year: 2000<br />as.factor(year): 2000<br />month: 12<br />value: 12.079132"],"frame":"2000","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,191,196,1)","dash":"solid"},"hoveron":"points","name":"2000","legendgroup":"2000","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[14.49758109,8.04927477,10.31289116,9.75335821,10.85038183,9.96171916,11.44360144,11.65923889,10.64705979,12.65213444,13.67446631,12.96573509],"text":["year: 2001<br />as.factor(year): 2001<br />month: 1<br />value: 14.497581","year: 2001<br />as.factor(year): 2001<br />month: 2<br />value: 8.049275","year: 2001<br />as.factor(year): 2001<br />month: 3<br />value: 10.312891","year: 2001<br />as.factor(year): 2001<br />month: 4<br />value: 9.753358","year: 2001<br />as.factor(year): 2001<br />month: 5<br />value: 10.850382","year: 2001<br />as.factor(year): 2001<br />month: 6<br />value: 9.961719","year: 2001<br />as.factor(year): 2001<br />month: 7<br />value: 11.443601","year: 2001<br />as.factor(year): 2001<br />month: 8<br />value: 11.659239","year: 2001<br />as.factor(year): 2001<br />month: 9<br />value: 10.647060","year: 2001<br />as.factor(year): 2001<br />month: 10<br />value: 12.652134","year: 2001<br />as.factor(year): 2001<br />month: 11<br />value: 13.674466","year: 2001<br />as.factor(year): 2001<br />month: 12<br />value: 12.965735"],"frame":"2001","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,185,227,1)","dash":"solid"},"hoveron":"points","name":"2001","legendgroup":"2001","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.30026927,9.05348536,10.00244879,10.78875007,12.10670515,10.95410107,12.84456587,12.19649985,12.85474787,13.54200436,13.28764,15.13491784],"text":["year: 2002<br />as.factor(year): 2002<br />month: 1<br />value: 16.300269","year: 2002<br />as.factor(year): 2002<br />month: 2<br />value: 9.053485","year: 2002<br />as.factor(year): 2002<br />month: 3<br />value: 10.002449","year: 2002<br />as.factor(year): 2002<br />month: 4<br />value: 10.788750","year: 2002<br />as.factor(year): 2002<br />month: 5<br />value: 12.106705","year: 2002<br />as.factor(year): 2002<br />month: 6<br />value: 10.954101","year: 2002<br />as.factor(year): 2002<br />month: 7<br />value: 12.844566","year: 2002<br />as.factor(year): 2002<br />month: 8<br />value: 12.196500","year: 2002<br />as.factor(year): 2002<br />month: 9<br />value: 12.854748","year: 2002<br />as.factor(year): 2002<br />month: 10<br />value: 13.542004","year: 2002<br />as.factor(year): 2002<br />month: 11<br />value: 13.287640","year: 2002<br />as.factor(year): 2002<br />month: 12<br />value: 15.134918"],"frame":"2002","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(0,173,250,1)","dash":"solid"},"hoveron":"points","name":"2002","legendgroup":"2002","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[16.82834968,9.80021461,10.81699371,10.65422256,12.51232269,12.16120969,12.9980462,12.51727568,13.26865761,14.73362169,13.66938174,16.50396561],"text":["year: 2003<br />as.factor(year): 2003<br />month: 1<br />value: 16.828350","year: 2003<br />as.factor(year): 2003<br />month: 2<br />value: 9.800215","year: 2003<br />as.factor(year): 2003<br />month: 3<br />value: 10.816994","year: 2003<br />as.factor(year): 2003<br />month: 4<br />value: 10.654223","year: 2003<br />as.factor(year): 2003<br />month: 5<br />value: 12.512323","year: 2003<br />as.factor(year): 2003<br />month: 6<br />value: 12.161210","year: 2003<br />as.factor(year): 2003<br />month: 7<br />value: 12.998046","year: 2003<br />as.factor(year): 2003<br />month: 8<br />value: 12.517276","year: 2003<br />as.factor(year): 2003<br />month: 9<br />value: 13.268658","year: 2003<br />as.factor(year): 2003<br />month: 10<br />value: 14.733622","year: 2003<br />as.factor(year): 2003<br />month: 11<br />value: 13.669382","year: 2003<br />as.factor(year): 2003<br />month: 12<br />value: 16.503966"],"frame":"2003","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(97,156,255,1)","dash":"solid"},"hoveron":"points","name":"2003","legendgroup":"2003","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[18.00376795,11.93802987,12.9979001,12.88264507,13.94344681,13.9894722,15.33909742,15.37076394,16.142005,16.685754,17.636728,18.869325],"text":["year: 2004<br />as.factor(year): 2004<br />month: 1<br />value: 18.003768","year: 2004<br />as.factor(year): 2004<br />month: 2<br />value: 11.938030","year: 2004<br />as.factor(year): 2004<br />month: 3<br />value: 12.997900","year: 2004<br />as.factor(year): 2004<br />month: 4<br />value: 12.882645","year: 2004<br />as.factor(year): 2004<br />month: 5<br />value: 13.943447","year: 2004<br />as.factor(year): 2004<br />month: 6<br />value: 13.989472","year: 2004<br />as.factor(year): 2004<br />month: 7<br />value: 15.339097","year: 2004<br />as.factor(year): 2004<br />month: 8<br />value: 15.370764","year: 2004<br />as.factor(year): 2004<br />month: 9<br />value: 16.142005","year: 2004<br />as.factor(year): 2004<br />month: 10<br />value: 16.685754","year: 2004<br />as.factor(year): 2004<br />month: 11<br />value: 17.636728","year: 2004<br />as.factor(year): 2004<br />month: 12<br />value: 18.869325"],"frame":"2004","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(174,135,255,1)","dash":"solid"},"hoveron":"points","name":"2004","legendgroup":"2004","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[20.778723,12.154552,13.402392,14.459239,14.795102,15.705248,15.82955,17.554701,18.100864,17.496668,19.347265,20.031291],"text":["year: 2005<br />as.factor(year): 2005<br />month: 1<br />value: 20.778723","year: 2005<br />as.factor(year): 2005<br />month: 2<br />value: 12.154552","year: 2005<br />as.factor(year): 2005<br />month: 3<br />value: 13.402392","year: 2005<br />as.factor(year): 2005<br />month: 4<br />value: 14.459239","year: 2005<br />as.factor(year): 2005<br />month: 5<br />value: 14.795102","year: 2005<br />as.factor(year): 2005<br />month: 6<br />value: 15.705248","year: 2005<br />as.factor(year): 2005<br />month: 7<br />value: 15.829550","year: 2005<br />as.factor(year): 2005<br />month: 8<br />value: 17.554701","year: 2005<br />as.factor(year): 2005<br />month: 9<br />value: 18.100864","year: 2005<br />as.factor(year): 2005<br />month: 10<br />value: 17.496668","year: 2005<br />as.factor(year): 2005<br />month: 11<br />value: 19.347265","year: 2005<br />as.factor(year): 2005<br />month: 12<br />value: 20.031291"],"frame":"2005","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(219,114,251,1)","dash":"solid"},"hoveron":"points","name":"2005","legendgroup":"2005","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[23.486694,12.536987,15.467018,14.233539,17.783058,16.291602,16.980282,18.612189,16.623343,21.430241,23.575517,23.334206],"text":["year: 2006<br />as.factor(year): 2006<br />month: 1<br />value: 23.486694","year: 2006<br />as.factor(year): 2006<br />month: 2<br />value: 12.536987","year: 2006<br />as.factor(year): 2006<br />month: 3<br />value: 15.467018","year: 2006<br />as.factor(year): 2006<br />month: 4<br />value: 14.233539","year: 2006<br />as.factor(year): 2006<br />month: 5<br />value: 17.783058","year: 2006<br />as.factor(year): 2006<br />month: 6<br />value: 16.291602","year: 2006<br />as.factor(year): 2006<br />month: 7<br />value: 16.980282","year: 2006<br />as.factor(year): 2006<br />month: 8<br />value: 18.612189","year: 2006<br />as.factor(year): 2006<br />month: 9<br />value: 16.623343","year: 2006<br />as.factor(year): 2006<br />month: 10<br />value: 21.430241","year: 2006<br />as.factor(year): 2006<br />month: 11<br />value: 23.575517","year: 2006<br />as.factor(year): 2006<br />month: 12<br />value: 23.334206"],"frame":"2006","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(245,100,227,1)","dash":"solid"},"hoveron":"points","name":"2006","legendgroup":"2006","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false},{"x":[1,2,3,4,5,6,7,8,9,10,11,12],"y":[28.038383,16.763869,19.792754,16.427305,21.000742,20.681002,21.83489,23.93020353,22.93035694,23.26333992,25.25003022,25.80609],"text":["year: 2007<br />as.factor(year): 2007<br />month: 1<br />value: 28.038383","year: 2007<br />as.factor(year): 2007<br />month: 2<br />value: 16.763869","year: 2007<br />as.factor(year): 2007<br />month: 3<br />value: 19.792754","year: 2007<br />as.factor(year): 2007<br />month: 4<br />value: 16.427305","year: 2007<br />as.factor(year): 2007<br />month: 5<br />value: 21.000742","year: 2007<br />as.factor(year): 2007<br />month: 6<br />value: 20.681002","year: 2007<br />as.factor(year): 2007<br />month: 7<br />value: 21.834890","year: 2007<br />as.factor(year): 2007<br />month: 8<br />value: 23.930204","year: 2007<br />as.factor(year): 2007<br />month: 9<br />value: 22.930357","year: 2007<br />as.factor(year): 2007<br />month: 10<br />value: 23.263340","year: 2007<br />as.factor(year): 2007<br />month: 11<br />value: 25.250030","year: 2007<br />as.factor(year): 2007<br />month: 12<br />value: 25.806090"],"frame":"2007","type":"scatter","mode":"lines","line":{"width":3.77952755905512,"color":"rgba(255,97,195,1)","dash":"solid"},"hoveron":"points","name":"2007","legendgroup":"2007","showlegend":true,"xaxis":"x","yaxis":"y","hoverinfo":"text","visible":false}],"traces":[1]}],"base_url":"https://plot.ly"},"evals":["config.modeBarButtonsToAdd.0.click"],"jsHooks":{"render":[{"code":"function(el, x) { var ctConfig = crosstalk.var('plotlyCrosstalkOpts').set({\"on\":\"plotly_click\",\"persistent\":false,\"dynamic\":false,\"selectize\":false,\"opacityDim\":0.2,\"selected\":{\"opacity\":1}}); }","data":null}]}}</script> ] ??? * new release of plotly 4.6 comes with a new feature, animation. * explain the code. --- .left-column[ ## bind all together ### - shiny app ] .right-column[ `wanderer4melb`([click me](https://github.com/earowang/wanderer4melb)) is a shiny app for visualising Melbourne pedestrian and weather data in 2016.  ```r # install.packages("devtools") devtools::install_github("earowang/wanderer4melb") library(wanderer4melb) launch_app() ``` ] ??? * let's bind what you've learned before together into a shiny app. * tidy data, grammar of graphics, and plotly * I'm showing a demo * inspiration: we know foot traffic is largely determined by temporal components, for example ... and special events. Any other factors affect the number of ped too? like temperature and rainfall? If it's extremely cold and heavy rain/storm, would you hand out in the city? * explain the layout and the graphs. --- .left-column[ ## bind all together ### - shiny app ### - sugrrants ] .right-column[ `sugrrants` π is an R package (under development) that supports graphics for analysing time series data. ```r devtools::install_github("earowang/sugrrants") library(sugrrants) ``` * It fits into the tidyverse and grammar of graphics suite of methods for exploring temporal data. * Calendar-based graphics are useful for visualising people's daily schedules, and `frame_calendar` π is made available for this. If you find a bug or wanna suggest a new feature, please report/propose it on the [Github page](https://github.com/earowang/sugrrants/issues). Thanks. ] ??? --- .left-column[ ## bind all together ### - shiny app ### - sugrrants ### - calendar plot ] .right-column[ `frame_calendar` rearranges the data into a calendar format using linear algebra tools. ```r sx_cal <- sx %>% frame_calendar( x = Hour, y = Counts, date = Date, nrow = 1, ncol = 1 ) sx_cal ``` ``` #> # A tibble: 744 x 9 #> Date Hour Sensor_Name Counts #> <date> <int> <chr> <int> #> 1 2017-03-01 0 Southern Cross Station 16 #> 2 2017-03-01 1 Southern Cross Station 8 #> 3 2017-03-01 2 Southern Cross Station 3 #> 4 2017-03-01 3 Southern Cross Station 4 #> 5 2017-03-01 4 Southern Cross Station 1 #> 6 2017-03-01 5 Southern Cross Station 96 #> 7 2017-03-01 6 Southern Cross Station 581 #> 8 2017-03-01 7 Southern Cross Station 1847 #> 9 2017-03-01 8 Southern Cross Station 3863 #> 10 2017-03-01 9 Southern Cross Station 2063 #> # ... with 734 more rows, and 5 more variables: #> # Date_Time <dttm>, Wday <ord>, .group_id <dbl>, #> # .x <dbl>, .y <dbl> ``` ] --- .left-column[ ## bind all together ### - shiny app ### - sugrrants ### - calendar plot ] .right-column[ `ggplot2` takes care of plotting a `data.frame` or `tibble` as usual. ```r p_sx <- sx_cal %>% ggplot(aes(.x, .y, group = .group_id, colour = Wday)) + geom_line() p_sx ``` <img src="figure/calendar-ggplot-1.svg" style="display: block; margin: auto;" /> ] --- .left-column[ ## bind all together ### - shiny app ### - sugrrants ### - calendar plot ] .right-column[ `prettify` takes a `ggplot` object and then makes the calendar plot more readable. ```r prettify(p_sx) ``` <img src="figure/calendar-prettify-1.svg" style="display: block; margin: auto;" /> ] --- class: inverse middle center # Done! π π hmm... not yet? --- class: middle ## Acknowledgements * Slides powered by the R package [xaringan](https://github.com/yihui/xaringan) for [remark.js](https://remarkjs.com/) and [R Markdown](https://rmarkdown.rstudio.com) + The source files to reproduce the slides are available [here](https://github.com/earowang/medascin17-tsvis). + Yihui is giving a tutorial on [R Markdown Ecosystem](http://www.datasciencemelbourne.com/medascin2017/session/r-markdown-ecosystem-reports-papers-dashboards-books-websites-and-presentations/) (check it out). * The R packages used for the slides to make analysis easier and more fun: `ggmap`, `plotly`, `stringr`, `forcats`, `forecast`, `tidyverse`, `lubridate`, `broom`, `zoo`, `shiny`, `emo` --- class: inverse middle center # This work is licensed under <br> [<i class="fa fa-creative-commons" aria-hidden="true"></i> Creative Commons](https://creativecommons.org/licenses/by-nc-nd/3.0/us/)