<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.9.0">Jekyll</generator><link href="https://jorgel-mendes.github.io/Behold-the-Vision/feed.xml" rel="self" type="application/atom+xml" /><link href="https://jorgel-mendes.github.io/Behold-the-Vision/" rel="alternate" type="text/html" /><updated>2020-10-15T01:19:53+00:00</updated><id>https://jorgel-mendes.github.io/Behold-the-Vision/feed.xml</id><title type="html">Behold the Vision</title><subtitle>Compilation of data visualizations examples and tips. Focused in R.</subtitle><author><name>Jorge Mendes</name></author><entry><title type="html">Tidy Tuesday 03/12/2019 Philadelphia Parking Violations</title><link href="https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Parking/" rel="alternate" type="text/html" title="Tidy Tuesday 03/12/2019 Philadelphia Parking Violations" /><published>2019-12-03T00:00:00+00:00</published><updated>2019-12-03T00:00:00+00:00</updated><id>https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Parking</id><content type="html" xml:base="https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Parking/">&lt;h1 id=&quot;data-description&quot;&gt;Data description&lt;/h1&gt;

&lt;p&gt;From From &lt;a href=&quot;https://github.com/rfordatascience/tidytuesday/tree/master/data/2019/2019-12-03&quot;&gt;TidyTuesdays
github&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;This week’s data is from &lt;a href=&quot;https://www.opendataphilly.org/dataset/parking-violations&quot;&gt;Open Data
Philly&lt;/a&gt; -
there is over 1 GB of data, but I have filtered it down to &amp;lt;100 MB
due to GitHub restrictions. I accomplished this mainly by filtering to
data for only 2017 in Pennsylvania that had lat/long data. If you
would like to use the entire dataset, please see the link above.&lt;/p&gt;

  &lt;p&gt;H/t to &lt;a href=&quot;https://twitter.com/phillynerd&quot;&gt;Jess Streeter&lt;/a&gt; for sharing
this week’s data!&lt;/p&gt;

  &lt;p&gt;Some visualizations from &lt;a href=&quot;https://data.phila.gov/visualizations/parking-violations&quot;&gt;Philly Open
Data&lt;/a&gt; and a
news article by &lt;a href=&quot;https://www.nbcphiladelphia.com/news/local/Nearly-6-Million-Philadelphia-Parking-Authority-Tickets-Are-on-the-Rise-Since-2016-565438131.html&quot;&gt;NBC
Philadelphia&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1 id=&quot;packages-and-data-reading&quot;&gt;Packages and data reading&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tidyverse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;patchwork&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tickets&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;readr&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read_csv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-12-03/tickets.csv&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h1 id=&quot;quick-look&quot;&gt;Quick look&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;tickets&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;glimpse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;## Observations: 1,260,891
## Variables: 7
## $ violation_desc &amp;lt;chr&amp;gt; &quot;BUS ONLY ZONE&quot;, &quot;STOPPING PROHIBITED&quot;, &quot;OVER TIME L...
## $ issue_datetime &amp;lt;dttm&amp;gt; 2017-12-06 12:29:00, 2017-10-16 18:03:00, 2017-11-0...
## $ fine           &amp;lt;dbl&amp;gt; 51, 51, 26, 26, 76, 51, 36, 36, 76, 26, 26, 301, 36,...
## $ issuing_agency &amp;lt;chr&amp;gt; &quot;PPA&quot;, &quot;PPA&quot;, &quot;PPA&quot;, &quot;PPA&quot;, &quot;PPA&quot;, &quot;POLICE&quot;, &quot;PPA&quot;, ...
## $ lat            &amp;lt;dbl&amp;gt; 40.03550, 40.02571, 40.02579, 40.02590, 39.95617, 40...
## $ lon            &amp;lt;dbl&amp;gt; -75.08111, -75.22249, -75.22256, -75.22271, -75.1660...
## $ zip_code       &amp;lt;dbl&amp;gt; 19149, 19127, 19127, 19127, 19102, NA, NA, 19106, 19...
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;How many types of violations?&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;means&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tickets&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;is.na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;issuing_agency&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;group_by&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;issuing_agency&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;summarise&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mean_fine&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;housing_ppa&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ifelse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;issuing_agency&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%in%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'HOUSING'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'PPA'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                              &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'Y'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'N'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ggplot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;reorder&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;issuing_agency&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mean_fine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mean_fine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
             &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;housing_ppa&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_point&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;4&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'Housing fines are high'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;subtitle&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'While PPA\'s bottom in value'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'Issuing Agency'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'Average fine value'&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;coord_flip&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_y_continuous&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scales&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dollar_format&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;())&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_color_manual&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;values&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'darkslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'navyblue'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;guide&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;FALSE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme_bw&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.grid.major.x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.grid.minor&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strip.background&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strip.placement&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'outside'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.border&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_rect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;colour&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;darkslategrey&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strip.text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'slategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.ticks&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'slategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;means&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/phi_poi-1-1.png&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;!-- --&gt;&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;total_log&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tickets&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;is.na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;issuing_agency&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;group_by&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;issuing_agency&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;summarise&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sum_fine&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;housing_ppa&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ifelse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;issuing_agency&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%in%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'HOUSING'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'PPA'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                              &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'Y'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'N'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ggplot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;reorder&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;issuing_agency&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sum_fine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sum_fine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
             &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;housing_ppa&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_point&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;4&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'But PPA collects more money'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;subtitle&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'More than 100 times Housing\'s'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;NULL&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'Total collected (log scale)'&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;coord_flip&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_y_log10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scales&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label_number_si&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;prefix&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'$'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_color_manual&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;values&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'darkslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'navyblue'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;guide&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;FALSE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme_bw&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.grid.major.x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.grid.minor&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strip.background&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strip.placement&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'outside'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.border&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_rect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'slategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;colour&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;darkslategrey&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strip.text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'slategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.ticks&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'slategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;total_log&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/phi_poi-2-1.png&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;!-- --&gt;&lt;/p&gt;

&lt;p&gt;Using patchwork to get the plots together.&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;final_plot&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;means&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;total_log&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;plot_annotation&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'Volume &amp;gt; Value when talking abour Parking Violation Fines'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;subtitle&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'In Philadelphia PPA collects more money from parking tickets besides lowest value for fines issued'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;caption&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'Data from Open Data Philly for 2017'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
      &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;plot.title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'darkslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
      &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;plot.subtitle&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'darkslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
      &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;plot.caption&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
      &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;final_plot&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/phi_poi-3-1.png&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;/p&gt;</content><author><name>Jorge Mendes</name></author><category term="Tidy Tuesday" /><category term="Tidy Tuesday" /><category term="Point plot" /><category term="ggplot" /><category term="patchwork" /><summary type="html">Data description From From TidyTuesdays github: This week’s data is from Open Data Philly - there is over 1 GB of data, but I have filtered it down to &amp;lt;100 MB due to GitHub restrictions. I accomplished this mainly by filtering to data for only 2017 in Pennsylvania that had lat/long data. If you would like to use the entire dataset, please see the link above. H/t to Jess Streeter for sharing this week’s data! Some visualizations from Philly Open Data and a news article by NBC Philadelphia. Packages and data reading library(tidyverse) library(patchwork) tickets &amp;lt;- readr::read_csv(&quot;https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-12-03/tickets.csv&quot;) Quick look tickets %&amp;gt;% glimpse() ## Observations: 1,260,891 ## Variables: 7 ## $ violation_desc &amp;lt;chr&amp;gt; &quot;BUS ONLY ZONE&quot;, &quot;STOPPING PROHIBITED&quot;, &quot;OVER TIME L... ## $ issue_datetime &amp;lt;dttm&amp;gt; 2017-12-06 12:29:00, 2017-10-16 18:03:00, 2017-11-0... ## $ fine &amp;lt;dbl&amp;gt; 51, 51, 26, 26, 76, 51, 36, 36, 76, 26, 26, 301, 36,... ## $ issuing_agency &amp;lt;chr&amp;gt; &quot;PPA&quot;, &quot;PPA&quot;, &quot;PPA&quot;, &quot;PPA&quot;, &quot;PPA&quot;, &quot;POLICE&quot;, &quot;PPA&quot;, ... ## $ lat &amp;lt;dbl&amp;gt; 40.03550, 40.02571, 40.02579, 40.02590, 39.95617, 40... ## $ lon &amp;lt;dbl&amp;gt; -75.08111, -75.22249, -75.22256, -75.22271, -75.1660... ## $ zip_code &amp;lt;dbl&amp;gt; 19149, 19127, 19127, 19127, 19102, NA, NA, 19106, 19... How many types of violations? means &amp;lt;- tickets %&amp;gt;% filter(!is.na(issuing_agency)) %&amp;gt;% group_by(issuing_agency) %&amp;gt;% summarise(mean_fine = mean(fine)) %&amp;gt;% mutate(housing_ppa = ifelse(issuing_agency %in% c('HOUSING', 'PPA'), 'Y', 'N')) %&amp;gt;% ggplot(aes(reorder(issuing_agency, mean_fine), mean_fine, color = housing_ppa)) + geom_point(size = 4) + labs( title = 'Housing fines are high', subtitle = 'While PPA\'s bottom in value', x = 'Issuing Agency', y = 'Average fine value' ) + coord_flip() + scale_y_continuous(labels = scales::dollar_format()) + scale_color_manual(values = c('darkslategrey', 'navyblue'), guide = FALSE) + theme_bw() + theme(panel.grid.major.x = element_blank(), panel.grid.minor = element_blank(), strip.background = element_blank(), strip.placement = 'outside', panel.border = element_rect(color = 'lightslategrey'), title = element_text(colour = &quot;darkslategrey&quot;), strip.text = element_text(color = 'slategrey'), axis.ticks = element_line(color = 'lightslategrey'), axis.text = element_text(color = 'slategrey')) means total_log &amp;lt;- tickets %&amp;gt;% filter(!is.na(issuing_agency)) %&amp;gt;% group_by(issuing_agency) %&amp;gt;% summarise(sum_fine = sum(fine)) %&amp;gt;% mutate(housing_ppa = ifelse(issuing_agency %in% c('HOUSING', 'PPA'), 'Y', 'N')) %&amp;gt;% ggplot(aes(reorder(issuing_agency, sum_fine), sum_fine, color = housing_ppa)) + geom_point(size = 4) + labs( title = 'But PPA collects more money', subtitle = 'More than 100 times Housing\'s', x = NULL, y = 'Total collected (log scale)' ) + coord_flip() + scale_y_log10(labels = scales::label_number_si(prefix = '$')) + scale_color_manual(values = c('darkslategrey', 'navyblue'), guide = FALSE) + theme_bw() + theme(panel.grid.major.x = element_blank(), panel.grid.minor = element_blank(), strip.background = element_blank(), strip.placement = 'outside', panel.border = element_rect(color = 'slategrey'), title = element_text(colour = &quot;darkslategrey&quot;), strip.text = element_text(color = 'slategrey'), axis.ticks = element_line(color = 'lightslategrey'), axis.text = element_text(color = 'slategrey')) total_log Using patchwork to get the plots together. final_plot &amp;lt;- means + total_log + plot_annotation( title = 'Volume &amp;gt; Value when talking abour Parking Violation Fines', subtitle = 'In Philadelphia PPA collects more money from parking tickets besides lowest value for fines issued', caption = 'Data from Open Data Philly for 2017', theme = theme( plot.title = element_text(color = 'darkslategrey'), plot.subtitle = element_text(color = 'darkslategrey'), plot.caption = element_text(color = 'lightslategrey') ) ) final_plot</summary></entry><entry><title type="html">Tidy Tuesday 12/11/2019 Code in CRAN Packages</title><link href="https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-CRAN/" rel="alternate" type="text/html" title="Tidy Tuesday 12/11/2019 Code in CRAN Packages" /><published>2019-11-12T00:00:00+00:00</published><updated>2019-11-12T00:00:00+00:00</updated><id>https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-CRAN</id><content type="html" xml:base="https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-CRAN/">&lt;h1 id=&quot;data-description&quot;&gt;Data description&lt;/h1&gt;

&lt;p&gt;From From &lt;a href=&quot;https://github.com/rfordatascience/tidytuesday/tree/master/data/2019/2019-11-12&quot;&gt;TidyTuesdays
github&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;This week’s data is from the
&lt;a href=&quot;https://cran.r-project.org/src/contrib/&quot;&gt;CRAN&lt;/a&gt; courtesy of &lt;a href=&quot;https://www.pmassicotte.com/post/analyzing-the-programming-languages-used-in-r-packages/&quot;&gt;Phillip
Massicotte&lt;/a&gt;.&lt;/p&gt;

  &lt;p&gt;He analyzed the lines of code and the different languages in all of
the R packages on CRAN.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1 id=&quot;packages-and-data-reading&quot;&gt;Packages and data reading&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tidyverse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cran_code&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;readr&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read_csv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-11-12/loc_cran_packages.csv&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h1 id=&quot;quick-look&quot;&gt;Quick look&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;cran_code&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;glimpse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;## Observations: 34,477
## Variables: 7
## $ file     &amp;lt;dbl&amp;gt; 2, 1, 23, 3, 30, 5, 1, 11, 10, 16, 6, 2, 1, 6, 15, 7, 1…
## $ language &amp;lt;chr&amp;gt; &quot;R&quot;, &quot;HTML&quot;, &quot;R&quot;, &quot;HTML&quot;, &quot;R&quot;, &quot;Markdown&quot;, &quot;HTML&quot;, &quot;R&quot;,…
## $ blank    &amp;lt;dbl&amp;gt; 96, 347, 63, 307, 224, 246, 26, 32, 104, 153, 101, 60, …
## $ comment  &amp;lt;dbl&amp;gt; 353, 5, 325, 9, 636, 0, 1, 202, 333, 62, 330, 46, 0, 0,…
## $ code     &amp;lt;dbl&amp;gt; 365, 2661, 676, 1275, 587, 418, 190, 141, 406, 882, 294…
## $ pkg_name &amp;lt;chr&amp;gt; &quot;A3&quot;, &quot;aaSEA&quot;, &quot;aaSEA&quot;, &quot;abbyyR&quot;, &quot;abbyyR&quot;, &quot;abbyyR&quot;, &quot;…
## $ version  &amp;lt;chr&amp;gt; &quot;1.0.0&quot;, &quot;1.0.0&quot;, &quot;1.0.0&quot;, &quot;0.5.5&quot;, &quot;0.5.5&quot;, &quot;0.5.5&quot;, &quot;…
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Only one version of the packages?&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;cran_code&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;select&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pkg_name&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;version&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;distinct&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;group_by&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pkg_name&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;count&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;version&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;## # A tibble: 0 x 3
## # … with 3 variables: pkg_name &amp;lt;chr&amp;gt;, version &amp;lt;chr&amp;gt;, n &amp;lt;int&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;With this out of our way I think I’ll look into the tidyverse packages.&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;cran_code&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pkg_name&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%in%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
      &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;ggplot2&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
      &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;dplyr&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
      &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;tidyr&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
      &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;readr&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
      &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;purrr&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
      &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;tibble&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
      &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;stringr&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
      &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;focats&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;language&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;==&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;R&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;count&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pkg_name&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;wt&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;file&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sort&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;TRUE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pkg_name&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fct_reorder&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pkg_name&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ggplot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pkg_name&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_col&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;navyblue&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_y_continuous&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;expand&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Number of R files for core tidyverse packages&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;subtitle&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;ggplot2's the clear winner in this inception-like visualization&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;caption&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Source: CRAN&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Package name&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Number of R files&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;coord_flip&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme_bw&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.grid.major&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.grid.minor&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strip.background&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strip.placement&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'outside'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.border&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_rect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;colour&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;slategrey&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strip.text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'slategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.ticks&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'slategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/coc_bar-1.png&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;/p&gt;</content><author><name>Jorge Mendes</name></author><category term="Tidy Tuesday" /><category term="Tidy Tuesday" /><category term="Bar plot" /><category term="ggplot" /><summary type="html">Data description From From TidyTuesdays github: This week’s data is from the CRAN courtesy of Phillip Massicotte. He analyzed the lines of code and the different languages in all of the R packages on CRAN. Packages and data reading library(tidyverse) cran_code &amp;lt;- readr::read_csv(&quot;https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-11-12/loc_cran_packages.csv&quot;) Quick look cran_code %&amp;gt;% glimpse() ## Observations: 34,477 ## Variables: 7 ## $ file &amp;lt;dbl&amp;gt; 2, 1, 23, 3, 30, 5, 1, 11, 10, 16, 6, 2, 1, 6, 15, 7, 1… ## $ language &amp;lt;chr&amp;gt; &quot;R&quot;, &quot;HTML&quot;, &quot;R&quot;, &quot;HTML&quot;, &quot;R&quot;, &quot;Markdown&quot;, &quot;HTML&quot;, &quot;R&quot;,… ## $ blank &amp;lt;dbl&amp;gt; 96, 347, 63, 307, 224, 246, 26, 32, 104, 153, 101, 60, … ## $ comment &amp;lt;dbl&amp;gt; 353, 5, 325, 9, 636, 0, 1, 202, 333, 62, 330, 46, 0, 0,… ## $ code &amp;lt;dbl&amp;gt; 365, 2661, 676, 1275, 587, 418, 190, 141, 406, 882, 294… ## $ pkg_name &amp;lt;chr&amp;gt; &quot;A3&quot;, &quot;aaSEA&quot;, &quot;aaSEA&quot;, &quot;abbyyR&quot;, &quot;abbyyR&quot;, &quot;abbyyR&quot;, &quot;… ## $ version &amp;lt;chr&amp;gt; &quot;1.0.0&quot;, &quot;1.0.0&quot;, &quot;1.0.0&quot;, &quot;0.5.5&quot;, &quot;0.5.5&quot;, &quot;0.5.5&quot;, &quot;… Only one version of the packages? cran_code %&amp;gt;% select(pkg_name, version) %&amp;gt;% distinct() %&amp;gt;% group_by(pkg_name) %&amp;gt;% count(version) %&amp;gt;% filter(n&amp;gt;1) ## # A tibble: 0 x 3 ## # … with 3 variables: pkg_name &amp;lt;chr&amp;gt;, version &amp;lt;chr&amp;gt;, n &amp;lt;int&amp;gt; With this out of our way I think I’ll look into the tidyverse packages. cran_code %&amp;gt;% filter( pkg_name %in% c( &quot;ggplot2&quot;, &quot;dplyr&quot;, &quot;tidyr&quot;, &quot;readr&quot;, &quot;purrr&quot;, &quot;tibble&quot;, &quot;stringr&quot;, &quot;focats&quot; ), language == &quot;R&quot; ) %&amp;gt;% count(pkg_name, wt = file, sort = TRUE) %&amp;gt;% mutate(pkg_name = fct_reorder(pkg_name, n)) %&amp;gt;% ggplot(aes(pkg_name, n)) + geom_col(fill = &quot;navyblue&quot;) + scale_y_continuous(expand = c(0,2)) + labs( title = &quot;Number of R files for core tidyverse packages&quot;, subtitle = &quot;ggplot2's the clear winner in this inception-like visualization&quot;, caption = &quot;Source: CRAN&quot;, x = &quot;Package name&quot;, y = &quot;Number of R files&quot; ) + coord_flip() + theme_bw() + theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(), strip.background = element_blank(), strip.placement = 'outside', panel.border = element_rect(color = 'lightslategrey'), title = element_text(colour = &quot;slategrey&quot;), strip.text = element_text(color = 'slategrey'), axis.ticks = element_line(color = 'lightslategrey'), axis.text = element_text(color = 'slategrey'))</summary></entry><entry><title type="html">Tidy Tuesday 05/11/2019 Modes Less Traveled - Bicycling and Walking to Work in the United States: 2008-2012</title><link href="https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Commute/" rel="alternate" type="text/html" title="Tidy Tuesday 05/11/2019 Modes Less Traveled - Bicycling and Walking to Work in the United States: 2008-2012" /><published>2019-11-05T00:00:00+00:00</published><updated>2019-11-05T00:00:00+00:00</updated><id>https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Commute</id><content type="html" xml:base="https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Commute/">&lt;h1 id=&quot;data-description&quot;&gt;Data description&lt;/h1&gt;

&lt;p&gt;From From &lt;a href=&quot;https://github.com/rfordatascience/tidytuesday/tree/master/data/2019/2019-11-05&quot;&gt;TidyTuesdays
github&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;This week’s data is from the &lt;a href=&quot;https://www.census.gov/library/publications/2014/acs/acs-25.html?#&quot;&gt;ACS
Survey&lt;/a&gt;.
The article and underlying data can be found at the &lt;a href=&quot;https://www.census.gov/library/publications/2014/acs/acs-25.html?#&quot;&gt;Census
Website&lt;/a&gt;.
The PDF report is also available for
&lt;a href=&quot;/data/2019/2019-11-05/acs-25.pdf&quot;&gt;download&lt;/a&gt; if you’d like to try
reading in some of the embedded tables.&lt;/p&gt;

  &lt;p&gt;Please note that the raw excel files are uploaded (6 total), along
with the cleaned/tidy data (&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;commute.csv&lt;/code&gt;). There is also a cleaned up
version of Table 3 from the article, which incorporates summary data
around age, gender, race, children, income, and education for modes of
travel (bike, walk, other). If you work with the ACS table 3 I’d
suggest &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;dplyr::slice()&lt;/code&gt; to grab the specific sub-tables from within
it!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1 id=&quot;packages-and-reading-data&quot;&gt;Packages and reading data&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tidyverse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;commute_mode&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read_csv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-11-05/commute.csv&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h1 id=&quot;first-look&quot;&gt;First look&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;commute_mode&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;glimpse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;## Observations: 3,496
## Variables: 9
## $ city         &amp;lt;chr&amp;gt; &quot;Aberdeen city&quot;, &quot;Acworth city&quot;, &quot;Addison village&quot;,…
## $ state        &amp;lt;chr&amp;gt; &quot;South Dakota&quot;, &quot;Georgia&quot;, &quot;Illinois&quot;, &quot;California&quot;…
## $ city_size    &amp;lt;chr&amp;gt; &quot;Small&quot;, &quot;Small&quot;, &quot;Small&quot;, &quot;Small&quot;, &quot;Small&quot;, &quot;Small…
## $ mode         &amp;lt;chr&amp;gt; &quot;Bike&quot;, &quot;Bike&quot;, &quot;Bike&quot;, &quot;Bike&quot;, &quot;Bike&quot;, &quot;Bike&quot;, &quot;Bi…
## $ n            &amp;lt;dbl&amp;gt; 110, 0, 43, 0, 121, 0, 84, 23, 0, 576, 35, 77, 419,…
## $ percent      &amp;lt;dbl&amp;gt; 0.8, 0.0, 0.2, 0.0, 1.5, 0.0, 0.8, 0.2, 0.0, 1.5, 0…
## $ moe          &amp;lt;dbl&amp;gt; 0.5, 0.4, 0.3, 0.5, 1.0, 0.2, 1.1, 0.3, 0.2, 0.4, 0…
## $ state_abb    &amp;lt;chr&amp;gt; &quot;SD&quot;, &quot;GA&quot;, &quot;IL&quot;, &quot;CA&quot;, &quot;MI&quot;, &quot;MA&quot;, &quot;CA&quot;, &quot;SC&quot;, &quot;AL…
## $ state_region &amp;lt;chr&amp;gt; &quot;North Central&quot;, &quot;South&quot;, &quot;North Central&quot;, &quot;West&quot;, …
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;I’ll look the percents, state_regions and city_size.&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;commute_mode&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;is.na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;state_region&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ggplot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;city_size&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;percent&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_violin&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;white&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;snow&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;stat_summary&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fun.y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;point&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;group&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;mean&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Walking and Bycicling to work by city size (US 2008-2012)&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;subtitle&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Some small cites walk/bike a lot, but the averages for all city sizes are very close&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;NULL&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;City Size&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Percentage of population (Estimation)&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;caption&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Source: ACS Survey&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_y_continuous&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scales&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;percent_format&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_color_manual&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;values&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;darkred&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;  &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;facet_wrap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme_dark&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;colour&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;darkslategrey&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;legend.title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;hjust&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;legend.text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;colour&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;darkslategrey&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.ticks&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'darkslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.line&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.title.x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.background&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_rect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;grey30&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strip.background&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_rect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;grey20&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;legend.key&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_rect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;snow&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/com_vio-1.png&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;/p&gt;</content><author><name>Jorge Mendes</name></author><category term="Tidy Tuesday" /><category term="Tidy Tuesday" /><category term="Violin plot" /><category term="ggplot" /><summary type="html">Data description From From TidyTuesdays github: This week’s data is from the ACS Survey. The article and underlying data can be found at the Census Website. The PDF report is also available for download if you’d like to try reading in some of the embedded tables. Please note that the raw excel files are uploaded (6 total), along with the cleaned/tidy data (commute.csv). There is also a cleaned up version of Table 3 from the article, which incorporates summary data around age, gender, race, children, income, and education for modes of travel (bike, walk, other). If you work with the ACS table 3 I’d suggest dplyr::slice() to grab the specific sub-tables from within it! Packages and reading data library(tidyverse) commute_mode &amp;lt;- read_csv(&quot;https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-11-05/commute.csv&quot;) First look commute_mode %&amp;gt;% glimpse() ## Observations: 3,496 ## Variables: 9 ## $ city &amp;lt;chr&amp;gt; &quot;Aberdeen city&quot;, &quot;Acworth city&quot;, &quot;Addison village&quot;,… ## $ state &amp;lt;chr&amp;gt; &quot;South Dakota&quot;, &quot;Georgia&quot;, &quot;Illinois&quot;, &quot;California&quot;… ## $ city_size &amp;lt;chr&amp;gt; &quot;Small&quot;, &quot;Small&quot;, &quot;Small&quot;, &quot;Small&quot;, &quot;Small&quot;, &quot;Small… ## $ mode &amp;lt;chr&amp;gt; &quot;Bike&quot;, &quot;Bike&quot;, &quot;Bike&quot;, &quot;Bike&quot;, &quot;Bike&quot;, &quot;Bike&quot;, &quot;Bi… ## $ n &amp;lt;dbl&amp;gt; 110, 0, 43, 0, 121, 0, 84, 23, 0, 576, 35, 77, 419,… ## $ percent &amp;lt;dbl&amp;gt; 0.8, 0.0, 0.2, 0.0, 1.5, 0.0, 0.8, 0.2, 0.0, 1.5, 0… ## $ moe &amp;lt;dbl&amp;gt; 0.5, 0.4, 0.3, 0.5, 1.0, 0.2, 1.1, 0.3, 0.2, 0.4, 0… ## $ state_abb &amp;lt;chr&amp;gt; &quot;SD&quot;, &quot;GA&quot;, &quot;IL&quot;, &quot;CA&quot;, &quot;MI&quot;, &quot;MA&quot;, &quot;CA&quot;, &quot;SC&quot;, &quot;AL… ## $ state_region &amp;lt;chr&amp;gt; &quot;North Central&quot;, &quot;South&quot;, &quot;North Central&quot;, &quot;West&quot;, … I’ll look the percents, state_regions and city_size. commute_mode %&amp;gt;% filter(!is.na(state_region)) %&amp;gt;% ggplot(aes(city_size, percent)) + geom_violin(color = &quot;white&quot;, fill = &quot;snow&quot;) + stat_summary(fun.y=mean, geom=&quot;point&quot;, size = 3, aes(group = 1, color = &quot;mean&quot;)) + labs( title = &quot;Walking and Bycicling to work by city size (US 2008-2012)&quot;, subtitle = &quot;Some small cites walk/bike a lot, but the averages for all city sizes are very close&quot;, color = NULL, x = &quot;City Size&quot;, y = &quot;Percentage of population (Estimation)&quot;, caption = &quot;Source: ACS Survey&quot; ) + scale_y_continuous(labels = scales::percent_format(scale = 1)) + scale_color_manual(values = &quot;darkred&quot;) + facet_wrap(~mode) + theme_dark() + theme( title = element_text(colour = &quot;darkslategrey&quot;), legend.title = element_text(hjust = .5), legend.text = element_text(colour = &quot;darkslategrey&quot;), axis.ticks = element_line(color = 'lightslategrey'), axis.text = element_text(color = 'darkslategrey'), axis.line = element_blank(), axis.title.x = element_blank(), panel.background = element_rect(fill = &quot;grey30&quot;), strip.background = element_rect(fill = &quot;grey20&quot;), legend.key = element_rect(fill = &quot;snow&quot;) )</summary></entry><entry><title type="html">Makeover Monday 04/11/2019 Las Vegas Convention Attendance &amp;amp; Visitor Traffic</title><link href="https://jorgel-mendes.github.io/Behold-the-Vision/makeover%20monday/Makeover-Mondays-LasVegas/" rel="alternate" type="text/html" title="Makeover Monday 04/11/2019 Las Vegas Convention Attendance &amp;amp; Visitor Traffic" /><published>2019-11-04T00:00:00+00:00</published><updated>2019-11-04T00:00:00+00:00</updated><id>https://jorgel-mendes.github.io/Behold-the-Vision/makeover%20monday/Makeover-Mondays-LasVegas</id><content type="html" xml:base="https://jorgel-mendes.github.io/Behold-the-Vision/makeover%20monday/Makeover-Mondays-LasVegas/">&lt;h1 id=&quot;2019w45-las-vegas-convention-attendance--visitor-traffic&quot;&gt;2019/W45: Las Vegas Convention Attendance &amp;amp; Visitor Traffic&lt;/h1&gt;

&lt;p&gt;Data from &lt;a href=&quot;https://data.world/makeovermonday/2019w45&quot;&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;h1 id=&quot;interactive-plot&quot;&gt;Interactive plot&lt;/h1&gt;

&lt;div id=&quot;vis&quot;&gt;&lt;/div&gt;
&lt;script&gt;
    (function(vegaEmbed) {
      var spec = {&quot;config&quot;: {&quot;view&quot;: {&quot;width&quot;: 400, &quot;height&quot;: 300, &quot;strokeWidth&quot;: 0}, &quot;mark&quot;: {&quot;tooltip&quot;: null}, &quot;axis&quot;: {&quot;domain&quot;: false, &quot;grid&quot;: false, &quot;labelColor&quot;: &quot;dimgray&quot;, &quot;titleColor&quot;: &quot;dimgray&quot;, &quot;titleFontSize&quot;: 13, &quot;titleFontWeight&quot;: &quot;normal&quot;}, &quot;background&quot;: &quot;Snow&quot;, &quot;title&quot;: {&quot;anchor&quot;: &quot;middle&quot;, &quot;color&quot;: &quot;darkslategray&quot;, &quot;fontSize&quot;: 15}}, &quot;hconcat&quot;: [{&quot;vconcat&quot;: [{&quot;mark&quot;: {&quot;type&quot;: &quot;line&quot;, &quot;point&quot;: true, &quot;size&quot;: 3}, &quot;encoding&quot;: {&quot;color&quot;: {&quot;condition&quot;: {&quot;value&quot;: &quot;darkblue&quot;, &quot;selection&quot;: &quot;selector010&quot;}, &quot;value&quot;: &quot;gray&quot;}, &quot;tooltip&quot;: {&quot;type&quot;: &quot;nominal&quot;, &quot;field&quot;: &quot;Year&quot;, &quot;timeUnit&quot;: &quot;year&quot;}, &quot;x&quot;: {&quot;type&quot;: &quot;temporal&quot;, &quot;field&quot;: &quot;Year&quot;, &quot;title&quot;: null}, &quot;y&quot;: {&quot;type&quot;: &quot;quantitative&quot;, &quot;axis&quot;: {&quot;format&quot;: &quot;~s&quot;}, &quot;field&quot;: &quot;Convention Attendance&quot;, &quot;title&quot;: &quot;Number of attendees&quot;}}, &quot;height&quot;: 93.33333333333333, &quot;selection&quot;: {&quot;selector010&quot;: {&quot;type&quot;: &quot;interval&quot;, &quot;encodings&quot;: [&quot;x&quot;], &quot;empty&quot;: &quot;all&quot;}}, &quot;title&quot;: &quot;Convention Attendance&quot;, &quot;width&quot;: 400}, {&quot;mark&quot;: {&quot;type&quot;: &quot;line&quot;, &quot;point&quot;: true, &quot;size&quot;: 3}, &quot;encoding&quot;: {&quot;color&quot;: {&quot;condition&quot;: {&quot;value&quot;: &quot;darkblue&quot;, &quot;selection&quot;: &quot;selector010&quot;}, &quot;value&quot;: &quot;gray&quot;}, &quot;tooltip&quot;: {&quot;type&quot;: &quot;nominal&quot;, &quot;field&quot;: &quot;Year&quot;, &quot;timeUnit&quot;: &quot;year&quot;}, &quot;x&quot;: {&quot;type&quot;: &quot;temporal&quot;, &quot;field&quot;: &quot;Year&quot;, &quot;title&quot;: null}, &quot;y&quot;: {&quot;type&quot;: &quot;quantitative&quot;, &quot;axis&quot;: {&quot;format&quot;: &quot;~s&quot;}, &quot;field&quot;: &quot;Visitor Volume&quot;, &quot;title&quot;: &quot;Number of visitors&quot;}}, &quot;height&quot;: 300, &quot;selection&quot;: {&quot;selector010&quot;: {&quot;type&quot;: &quot;interval&quot;, &quot;encodings&quot;: [&quot;x&quot;], &quot;empty&quot;: &quot;all&quot;}}, &quot;title&quot;: &quot;Visitor Volume&quot;, &quot;width&quot;: 400}]}, {&quot;vconcat&quot;: [{&quot;mark&quot;: &quot;bar&quot;, &quot;encoding&quot;: {&quot;color&quot;: {&quot;condition&quot;: {&quot;value&quot;: &quot;darkblue&quot;, &quot;selection&quot;: &quot;selector010&quot;}, &quot;value&quot;: &quot;gray&quot;}, &quot;tooltip&quot;: {&quot;type&quot;: &quot;nominal&quot;, &quot;field&quot;: &quot;Year&quot;, &quot;timeUnit&quot;: &quot;year&quot;}, &quot;x&quot;: {&quot;type&quot;: &quot;temporal&quot;, &quot;field&quot;: &quot;Year&quot;, &quot;title&quot;: null}, &quot;y&quot;: {&quot;type&quot;: &quot;quantitative&quot;, &quot;axis&quot;: {&quot;format&quot;: &quot;%&quot;}, &quot;field&quot;: &quot;Proportion&quot;, &quot;title&quot;: null}}, &quot;height&quot;: 93.33333333333333, &quot;selection&quot;: {&quot;selector010&quot;: {&quot;type&quot;: &quot;interval&quot;, &quot;encodings&quot;: [&quot;x&quot;], &quot;empty&quot;: &quot;all&quot;}}, &quot;title&quot;: &quot;Share of Visitors from Conventions&quot;, &quot;width&quot;: 400}, {&quot;mark&quot;: {&quot;type&quot;: &quot;line&quot;, &quot;point&quot;: true, &quot;size&quot;: 3}, &quot;encoding&quot;: {&quot;color&quot;: {&quot;condition&quot;: {&quot;value&quot;: &quot;darkgreen&quot;, &quot;selection&quot;: &quot;selector010&quot;}, &quot;value&quot;: &quot;gray&quot;}, &quot;tooltip&quot;: {&quot;type&quot;: &quot;nominal&quot;, &quot;field&quot;: &quot;Year&quot;, &quot;timeUnit&quot;: &quot;year&quot;}, &quot;x&quot;: {&quot;type&quot;: &quot;temporal&quot;, &quot;field&quot;: &quot;Year&quot;, &quot;title&quot;: null}, &quot;y&quot;: {&quot;type&quot;: &quot;quantitative&quot;, &quot;axis&quot;: {&quot;format&quot;: &quot;~s&quot;}, &quot;field&quot;: &quot;Clark County Gaming Revenue&quot;, &quot;title&quot;: &quot;Dollars&quot;}}, &quot;height&quot;: 300, &quot;selection&quot;: {&quot;selector010&quot;: {&quot;type&quot;: &quot;interval&quot;, &quot;encodings&quot;: [&quot;x&quot;], &quot;empty&quot;: &quot;all&quot;}}, &quot;title&quot;: &quot;Clark County Gaming Revenue&quot;, &quot;width&quot;: 400}]}], &quot;data&quot;: {&quot;name&quot;: &quot;data-271204d0ee93e75baddc369f949e4d49&quot;}, &quot;title&quot;: &quot;Las Vegas Visitors Info 1979 - 2019(October)&quot;, &quot;$schema&quot;: &quot;https://vega.github.io/schema/vega-lite/v3.4.0.json&quot;, &quot;datasets&quot;: {&quot;data-271204d0ee93e75baddc369f949e4d49&quot;: [{&quot;Year&quot;: &quot;1970-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 6787650, &quot;Convention Attendance&quot;: 269129, &quot;Room Inventory&quot;: 25430, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 68.0, &quot;LVCVA Room Tax Collections&quot;: 3751265.0, &quot;En/Deplaned Air Passenger&quot;: 4086973, &quot;Clark County Gaming Revenue&quot;: 369286977, &quot;Proportion&quot;: 0.03964980516084359}, {&quot;Year&quot;: &quot;1971-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 7361783, &quot;Convention Attendance&quot;: 312347, &quot;Room Inventory&quot;: 26044, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 78.3, &quot;LVCVA Room Tax Collections&quot;: 4241630.0, &quot;En/Deplaned Air Passenger&quot;: 4102285, &quot;Clark County Gaming Revenue&quot;: 399410972, &quot;Proportion&quot;: 0.04242817263154863}, {&quot;Year&quot;: &quot;1972-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 7954748, &quot;Convention Attendance&quot;: 290794, &quot;Room Inventory&quot;: 26619, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 81.2, &quot;LVCVA Room Tax Collections&quot;: 4770716.0, &quot;En/Deplaned Air Passenger&quot;: 4608764, &quot;Clark County Gaming Revenue&quot;: 476126720, &quot;Proportion&quot;: 0.036556029179051305}, {&quot;Year&quot;: &quot;1973-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 8474727, &quot;Convention Attendance&quot;: 357248, &quot;Room Inventory&quot;: 29198, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 84.4, &quot;LVCVA Room Tax Collections&quot;: 5556312.0, &quot;En/Deplaned Air Passenger&quot;: 5397017, &quot;Clark County Gaming Revenue&quot;: 588221779, &quot;Proportion&quot;: 0.04215451423980973}, {&quot;Year&quot;: &quot;1974-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 8664751, &quot;Convention Attendance&quot;: 311908, &quot;Room Inventory&quot;: 32826, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 78.7, &quot;LVCVA Room Tax Collections&quot;: 6559315.0, &quot;En/Deplaned Air Passenger&quot;: 5944433, &quot;Clark County Gaming Revenue&quot;: 684714502, &quot;Proportion&quot;: 0.03599734141234988}, {&quot;Year&quot;: &quot;1975-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 9151427, &quot;Convention Attendance&quot;: 349787, &quot;Room Inventory&quot;: 35190, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 79.5, &quot;LVCVA Room Tax Collections&quot;: 7616661.0, &quot;En/Deplaned Air Passenger&quot;: 6500806, &quot;Clark County Gaming Revenue&quot;: 770336695, &quot;Proportion&quot;: 0.03822212645088029}, {&quot;Year&quot;: &quot;1976-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 9769354, &quot;Convention Attendance&quot;: 367322, &quot;Room Inventory&quot;: 36245, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 82.0, &quot;LVCVA Room Tax Collections&quot;: 8890463.0, &quot;En/Deplaned Air Passenger&quot;: 7685817, &quot;Clark County Gaming Revenue&quot;: 845975652, &quot;Proportion&quot;: 0.037599415478239404}, {&quot;Year&quot;: &quot;1977-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 10137021, &quot;Convention Attendance&quot;: 417090, &quot;Room Inventory&quot;: 39350, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 80.8, &quot;LVCVA Room Tax Collections&quot;: 10383259.0, &quot;En/Deplaned Air Passenger&quot;: 7964687, &quot;Clark County Gaming Revenue&quot;: 1015463342, &quot;Proportion&quot;: 0.04114522402587506}, {&quot;Year&quot;: &quot;1978-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 11178111, &quot;Convention Attendance&quot;: 607318, &quot;Room Inventory&quot;: 42620, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 82.0, &quot;LVCVA Room Tax Collections&quot;: 13113511.0, &quot;En/Deplaned Air Passenger&quot;: 9110842, &quot;Clark County Gaming Revenue&quot;: 1236235456, &quot;Proportion&quot;: 0.054331004585658524}, {&quot;Year&quot;: &quot;1979-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 11696073, &quot;Convention Attendance&quot;: 637862, &quot;Room Inventory&quot;: 45035, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 80.9, &quot;LVCVA Room Tax Collections&quot;: 15847040.0, &quot;En/Deplaned Air Passenger&quot;: 10574127, &quot;Clark County Gaming Revenue&quot;: 1423620102, &quot;Proportion&quot;: 0.054536424319513055}, {&quot;Year&quot;: &quot;1980-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 11941524, &quot;Convention Attendance&quot;: 656024, &quot;Room Inventory&quot;: 45815, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 77.2, &quot;LVCVA Room Tax Collections&quot;: 18231548.0, &quot;En/Deplaned Air Passenger&quot;: 10302106, &quot;Clark County Gaming Revenue&quot;: 1617194799, &quot;Proportion&quot;: 0.05493637160550027}, {&quot;Year&quot;: &quot;1981-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 11820788, &quot;Convention Attendance&quot;: 719988, &quot;Room Inventory&quot;: 49614, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 75.7, &quot;LVCVA Room Tax Collections&quot;: 18179761.0, &quot;En/Deplaned Air Passenger&quot;: 9469727, &quot;Clark County Gaming Revenue&quot;: 1676148606, &quot;Proportion&quot;: 0.060908629780011284}, {&quot;Year&quot;: &quot;1982-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 11633728, &quot;Convention Attendance&quot;: 809779, &quot;Room Inventory&quot;: 50270, &quot;Midweek Occupancy Percentage&quot;: null, &quot;Weekend Occupancy Percentage&quot;: null, &quot;Overall Occupancy Percentage&quot;: 70.3, &quot;LVCVA Room Tax Collections&quot;: 19070664.0, &quot;En/Deplaned Air Passenger&quot;: 9438648, &quot;Clark County Gaming Revenue&quot;: 1751421394, &quot;Proportion&quot;: 0.06960614860515907}, {&quot;Year&quot;: &quot;1983-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 12348270, &quot;Convention Attendance&quot;: 943611, &quot;Room Inventory&quot;: 52529, &quot;Midweek Occupancy Percentage&quot;: 67.1, &quot;Weekend Occupancy Percentage&quot;: 86.9, &quot;Overall Occupancy Percentage&quot;: 72.6, &quot;LVCVA Room Tax Collections&quot;: 21731353.0, &quot;En/Deplaned Air Passenger&quot;: 10312842, &quot;Clark County Gaming Revenue&quot;: 1887451717, &quot;Proportion&quot;: 0.07641645347890838}, {&quot;Year&quot;: &quot;1984-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 12843433, &quot;Convention Attendance&quot;: 1050916, &quot;Room Inventory&quot;: 54129, &quot;Midweek Occupancy Percentage&quot;: 66.4, &quot;Weekend Occupancy Percentage&quot;: 88.3, &quot;Overall Occupancy Percentage&quot;: 72.5, &quot;LVCVA Room Tax Collections&quot;: 23921313.0, &quot;En/Deplaned Air Passenger&quot;: 10141809, &quot;Clark County Gaming Revenue&quot;: 2008155460, &quot;Proportion&quot;: 0.08182516310086252}, {&quot;Year&quot;: &quot;1985-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 14194189, &quot;Convention Attendance&quot;: 1072629, &quot;Room Inventory&quot;: 53067, &quot;Midweek Occupancy Percentage&quot;: 74.7, &quot;Weekend Occupancy Percentage&quot;: 93.0, &quot;Overall Occupancy Percentage&quot;: 79.8, &quot;LVCVA Room Tax Collections&quot;: 26956881.0, &quot;En/Deplaned Air Passenger&quot;: 10924047, &quot;Clark County Gaming Revenue&quot;: 2256762736, &quot;Proportion&quot;: 0.07556817793535087}, {&quot;Year&quot;: &quot;1986-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 15196284, &quot;Convention Attendance&quot;: 1519421, &quot;Room Inventory&quot;: 56494, &quot;Midweek Occupancy Percentage&quot;: 76.8, &quot;Weekend Occupancy Percentage&quot;: 93.5, &quot;Overall Occupancy Percentage&quot;: 81.4, &quot;LVCVA Room Tax Collections&quot;: 30587141.0, &quot;En/Deplaned Air Passenger&quot;: 12428748, &quot;Clark County Gaming Revenue&quot;: 2431237168, &quot;Proportion&quot;: 0.0999863519265631}, {&quot;Year&quot;: &quot;1987-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 16216102, &quot;Convention Attendance&quot;: 1677716, &quot;Room Inventory&quot;: 58474, &quot;Midweek Occupancy Percentage&quot;: 79.2, &quot;Weekend Occupancy Percentage&quot;: 94.5, &quot;Overall Occupancy Percentage&quot;: 83.4, &quot;LVCVA Room Tax Collections&quot;: 34443765.0, &quot;En/Deplaned Air Passenger&quot;: 15582302, &quot;Clark County Gaming Revenue&quot;: 2789336000, &quot;Proportion&quot;: 0.10345988203576914}, {&quot;Year&quot;: &quot;1988-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 17199808, &quot;Convention Attendance&quot;: 1702158, &quot;Room Inventory&quot;: 61394, &quot;Midweek Occupancy Percentage&quot;: 81.4, &quot;Weekend Occupancy Percentage&quot;: 93.5, &quot;Overall Occupancy Percentage&quot;: 85.1, &quot;LVCVA Room Tax Collections&quot;: 38175535.0, &quot;En/Deplaned Air Passenger&quot;: 16231199, &quot;Clark County Gaming Revenue&quot;: 3136901000, &quot;Proportion&quot;: 0.09896377913055773}, {&quot;Year&quot;: &quot;1989-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 18129684, &quot;Convention Attendance&quot;: 1508842, &quot;Room Inventory&quot;: 67391, &quot;Midweek Occupancy Percentage&quot;: 81.6, &quot;Weekend Occupancy Percentage&quot;: 94.0, &quot;Overall Occupancy Percentage&quot;: 85.2, &quot;LVCVA Room Tax Collections&quot;: 40528245.0, &quot;En/Deplaned Air Passenger&quot;: 17106948, &quot;Clark County Gaming Revenue&quot;: 3430851000, &quot;Proportion&quot;: 0.08322494755010622}, {&quot;Year&quot;: &quot;1990-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 20954420, &quot;Convention Attendance&quot;: 1742194, &quot;Room Inventory&quot;: 73730, &quot;Midweek Occupancy Percentage&quot;: 80.9, &quot;Weekend Occupancy Percentage&quot;: 93.6, &quot;Overall Occupancy Percentage&quot;: 84.7, &quot;LVCVA Room Tax Collections&quot;: 49493569.0, &quot;En/Deplaned Air Passenger&quot;: 19089684, &quot;Clark County Gaming Revenue&quot;: 4104001000, &quot;Proportion&quot;: 0.0831420769460572}, {&quot;Year&quot;: &quot;1991-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 21315116, &quot;Convention Attendance&quot;: 1794444, &quot;Room Inventory&quot;: 76879, &quot;Midweek Occupancy Percentage&quot;: 76.0, &quot;Weekend Occupancy Percentage&quot;: 89.8, &quot;Overall Occupancy Percentage&quot;: 80.3, &quot;LVCVA Room Tax Collections&quot;: 49396226.0, &quot;En/Deplaned Air Passenger&quot;: 20171969, &quot;Clark County Gaming Revenue&quot;: 4152407000, &quot;Proportion&quot;: 0.08418645246875504}, {&quot;Year&quot;: &quot;1992-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 21886865, &quot;Convention Attendance&quot;: 1969435, &quot;Room Inventory&quot;: 76523, &quot;Midweek Occupancy Percentage&quot;: 80.4, &quot;Weekend Occupancy Percentage&quot;: 92.0, &quot;Overall Occupancy Percentage&quot;: 83.9, &quot;LVCVA Room Tax Collections&quot;: 52259477.0, &quot;En/Deplaned Air Passenger&quot;: 20912585, &quot;Clark County Gaming Revenue&quot;: 4381710000, &quot;Proportion&quot;: 0.08998250777349794}, {&quot;Year&quot;: &quot;1993-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 23522593, &quot;Convention Attendance&quot;: 2439734, &quot;Room Inventory&quot;: 86053, &quot;Midweek Occupancy Percentage&quot;: 84.6, &quot;Weekend Occupancy Percentage&quot;: 94.2, &quot;Overall Occupancy Percentage&quot;: 87.6, &quot;LVCVA Room Tax Collections&quot;: 56125234.0, &quot;En/Deplaned Air Passenger&quot;: 22492156, &quot;Clark County Gaming Revenue&quot;: 4727424000, &quot;Proportion&quot;: 0.10371875243515882}, {&quot;Year&quot;: &quot;1994-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 28214362, &quot;Convention Attendance&quot;: 2684171, &quot;Room Inventory&quot;: 88560, &quot;Midweek Occupancy Percentage&quot;: 86.5, &quot;Weekend Occupancy Percentage&quot;: 94.4, &quot;Overall Occupancy Percentage&quot;: 89.0, &quot;LVCVA Room Tax Collections&quot;: 76876787.0, &quot;En/Deplaned Air Passenger&quot;: 26850486, &quot;Clark County Gaming Revenue&quot;: 5430651000, &quot;Proportion&quot;: 0.09513491745799534}, {&quot;Year&quot;: &quot;1995-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 29002122, &quot;Convention Attendance&quot;: 2924879, &quot;Room Inventory&quot;: 90046, &quot;Midweek Occupancy Percentage&quot;: 85.6, &quot;Weekend Occupancy Percentage&quot;: 93.5, &quot;Overall Occupancy Percentage&quot;: 88.0, &quot;LVCVA Room Tax Collections&quot;: 82135745.0, &quot;En/Deplaned Air Passenger&quot;: 28027239, &quot;Clark County Gaming Revenue&quot;: 5717567000, &quot;Proportion&quot;: 0.10085051707595741}, {&quot;Year&quot;: &quot;1996-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 29636361, &quot;Convention Attendance&quot;: 3305507, &quot;Room Inventory&quot;: 99072, &quot;Midweek Occupancy Percentage&quot;: 88.7, &quot;Weekend Occupancy Percentage&quot;: 94.4, &quot;Overall Occupancy Percentage&quot;: 90.4, &quot;LVCVA Room Tax Collections&quot;: 91565876.0, &quot;En/Deplaned Air Passenger&quot;: 30459965, &quot;Clark County Gaming Revenue&quot;: 5783735000, &quot;Proportion&quot;: 0.11153552219181026}, {&quot;Year&quot;: &quot;1997-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 30464635, &quot;Convention Attendance&quot;: 3519424, &quot;Room Inventory&quot;: 105347, &quot;Midweek Occupancy Percentage&quot;: 84.1, &quot;Weekend Occupancy Percentage&quot;: 91.6, &quot;Overall Occupancy Percentage&quot;: 86.4, &quot;LVCVA Room Tax Collections&quot;: 98186440.0, &quot;En/Deplaned Air Passenger&quot;: 30315094, &quot;Clark County Gaming Revenue&quot;: 6152415000, &quot;Proportion&quot;: 0.11552490289150026}, {&quot;Year&quot;: &quot;1998-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 30605128, &quot;Convention Attendance&quot;: 3301705, &quot;Room Inventory&quot;: 109365, &quot;Midweek Occupancy Percentage&quot;: 83.0, &quot;Weekend Occupancy Percentage&quot;: 92.1, &quot;Overall Occupancy Percentage&quot;: 85.8, &quot;LVCVA Room Tax Collections&quot;: 100468931.0, &quot;En/Deplaned Air Passenger&quot;: 30227287, &quot;Clark County Gaming Revenue&quot;: 6346958000, &quot;Proportion&quot;: 0.10788077736515267}, {&quot;Year&quot;: &quot;1999-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 33809134, &quot;Convention Attendance&quot;: 3772726, &quot;Room Inventory&quot;: 120294, &quot;Midweek Occupancy Percentage&quot;: 85.6, &quot;Weekend Occupancy Percentage&quot;: 93.5, &quot;Overall Occupancy Percentage&quot;: 88.0, &quot;LVCVA Room Tax Collections&quot;: 118299856.0, &quot;En/Deplaned Air Passenger&quot;: 33715129, &quot;Clark County Gaming Revenue&quot;: 7210700000, &quot;Proportion&quot;: 0.11158895699605911}, {&quot;Year&quot;: &quot;2000-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 35849691, &quot;Convention Attendance&quot;: 3853363, &quot;Room Inventory&quot;: 124270, &quot;Midweek Occupancy Percentage&quot;: 86.6, &quot;Weekend Occupancy Percentage&quot;: 94.5, &quot;Overall Occupancy Percentage&quot;: 89.1, &quot;LVCVA Room Tax Collections&quot;: 130550852.0, &quot;En/Deplaned Air Passenger&quot;: 36865866, &quot;Clark County Gaming Revenue&quot;: 7671252000, &quot;Proportion&quot;: 0.10748664472449707}, {&quot;Year&quot;: &quot;2001-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 35017317, &quot;Convention Attendance&quot;: 5014240, &quot;Room Inventory&quot;: 126610, &quot;Midweek Occupancy Percentage&quot;: 81.6, &quot;Weekend Occupancy Percentage&quot;: 91.7, &quot;Overall Occupancy Percentage&quot;: 84.7, &quot;LVCVA Room Tax Collections&quot;: 129053244.0, &quot;En/Deplaned Air Passenger&quot;: 35179960, &quot;Clark County Gaming Revenue&quot;: 7636547000, &quot;Proportion&quot;: 0.14319315211956415}, {&quot;Year&quot;: &quot;2002-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 35071504, &quot;Convention Attendance&quot;: 5105450, &quot;Room Inventory&quot;: 126787, &quot;Midweek Occupancy Percentage&quot;: 80.9, &quot;Weekend Occupancy Percentage&quot;: 91.2, &quot;Overall Occupancy Percentage&quot;: 84.0, &quot;LVCVA Room Tax Collections&quot;: 127102165.0, &quot;En/Deplaned Air Passenger&quot;: 35009011, &quot;Clark County Gaming Revenue&quot;: 7630562000, &quot;Proportion&quot;: 0.145572599338768}, {&quot;Year&quot;: &quot;2003-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 35540126, &quot;Convention Attendance&quot;: 5657796, &quot;Room Inventory&quot;: 130482, &quot;Midweek Occupancy Percentage&quot;: 81.6, &quot;Weekend Occupancy Percentage&quot;: 92.8, &quot;Overall Occupancy Percentage&quot;: 85.0, &quot;LVCVA Room Tax Collections&quot;: 138941106.0, &quot;En/Deplaned Air Passenger&quot;: 36265932, &quot;Clark County Gaming Revenue&quot;: 7830856000, &quot;Proportion&quot;: 0.15919459598989605}, {&quot;Year&quot;: &quot;2004-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 37388781, &quot;Convention Attendance&quot;: 5724864, &quot;Room Inventory&quot;: 131503, &quot;Midweek Occupancy Percentage&quot;: 85.8, &quot;Weekend Occupancy Percentage&quot;: 95.0, &quot;Overall Occupancy Percentage&quot;: 88.6, &quot;LVCVA Room Tax Collections&quot;: 164821755.0, &quot;En/Deplaned Air Passenger&quot;: 41441531, &quot;Clark County Gaming Revenue&quot;: 8711426000, &quot;Proportion&quot;: 0.15311716100078257}, {&quot;Year&quot;: &quot;2005-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 38566717, &quot;Convention Attendance&quot;: 6166194, &quot;Room Inventory&quot;: 133186, &quot;Midweek Occupancy Percentage&quot;: 86.6, &quot;Weekend Occupancy Percentage&quot;: 95.0, &quot;Overall Occupancy Percentage&quot;: 89.2, &quot;LVCVA Room Tax Collections&quot;: 193136789.0, &quot;En/Deplaned Air Passenger&quot;: 44267370, &quot;Clark County Gaming Revenue&quot;: 9717322000, &quot;Proportion&quot;: 0.15988381899346008}, {&quot;Year&quot;: &quot;2006-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 38914889, &quot;Convention Attendance&quot;: 6307961, &quot;Room Inventory&quot;: 132605, &quot;Midweek Occupancy Percentage&quot;: 87.4, &quot;Weekend Occupancy Percentage&quot;: 94.6, &quot;Overall Occupancy Percentage&quot;: 89.7, &quot;LVCVA Room Tax Collections&quot;: 207289931.0, &quot;En/Deplaned Air Passenger&quot;: 46304376, &quot;Clark County Gaming Revenue&quot;: 10630387000, &quot;Proportion&quot;: 0.16209633798518608}, {&quot;Year&quot;: &quot;2007-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 39196761, &quot;Convention Attendance&quot;: 6209253, &quot;Room Inventory&quot;: 132947, &quot;Midweek Occupancy Percentage&quot;: 88.7, &quot;Weekend Occupancy Percentage&quot;: 94.3, &quot;Overall Occupancy Percentage&quot;: 90.4, &quot;LVCVA Room Tax Collections&quot;: 219713911.0, &quot;En/Deplaned Air Passenger&quot;: 47729527, &quot;Clark County Gaming Revenue&quot;: 10868464000, &quot;Proportion&quot;: 0.1584124004531905}, {&quot;Year&quot;: &quot;2008-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 37481552, &quot;Convention Attendance&quot;: 5899725, &quot;Room Inventory&quot;: 140529, &quot;Midweek Occupancy Percentage&quot;: 84.3, &quot;Weekend Occupancy Percentage&quot;: 89.8, &quot;Overall Occupancy Percentage&quot;: 86.0, &quot;LVCVA Room Tax Collections&quot;: 207117817.0, &quot;En/Deplaned Air Passenger&quot;: 44074642, &quot;Clark County Gaming Revenue&quot;: 9796749000, &quot;Proportion&quot;: 0.1574034340947248}, {&quot;Year&quot;: &quot;2009-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 36351469, &quot;Convention Attendance&quot;: 4492275, &quot;Room Inventory&quot;: 148941, &quot;Midweek Occupancy Percentage&quot;: 78.2, &quot;Weekend Occupancy Percentage&quot;: 88.8, &quot;Overall Occupancy Percentage&quot;: 81.5, &quot;LVCVA Room Tax Collections&quot;: 153150310.0, &quot;En/Deplaned Air Passenger&quot;: 40469012, &quot;Clark County Gaming Revenue&quot;: 8838261000, &quot;Proportion&quot;: 0.12357891231300722}, {&quot;Year&quot;: &quot;2010-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 37335436, &quot;Convention Attendance&quot;: 4473134, &quot;Room Inventory&quot;: 148935, &quot;Midweek Occupancy Percentage&quot;: 76.8, &quot;Weekend Occupancy Percentage&quot;: 88.4, &quot;Overall Occupancy Percentage&quot;: 80.4, &quot;LVCVA Room Tax Collections&quot;: 163809985.0, &quot;En/Deplaned Air Passenger&quot;: 39757359, &quot;Clark County Gaming Revenue&quot;: 8908574000, &quot;Proportion&quot;: 0.11980934145244748}, {&quot;Year&quot;: &quot;2011-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 38928708, &quot;Convention Attendance&quot;: 4865272, &quot;Room Inventory&quot;: 150161, &quot;Midweek Occupancy Percentage&quot;: 80.7, &quot;Weekend Occupancy Percentage&quot;: 90.9, &quot;Overall Occupancy Percentage&quot;: 83.8, &quot;LVCVA Room Tax Collections&quot;: 194329584.0, &quot;En/Deplaned Air Passenger&quot;: 41481204, &quot;Clark County Gaming Revenue&quot;: 9222677000, &quot;Proportion&quot;: 0.12497902576165641}, {&quot;Year&quot;: &quot;2012-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 39727022, &quot;Convention Attendance&quot;: 4944014, &quot;Room Inventory&quot;: 150481, &quot;Midweek Occupancy Percentage&quot;: 81.6, &quot;Weekend Occupancy Percentage&quot;: 90.8, &quot;Overall Occupancy Percentage&quot;: 84.4, &quot;LVCVA Room Tax Collections&quot;: 200384250.0, &quot;En/Deplaned Air Passenger&quot;: 41667596, &quot;Clark County Gaming Revenue&quot;: 9399845000, &quot;Proportion&quot;: 0.12444965041678684}, {&quot;Year&quot;: &quot;2013-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 39668221, &quot;Convention Attendance&quot;: 5107416, &quot;Room Inventory&quot;: 150593, &quot;Midweek Occupancy Percentage&quot;: 81.4, &quot;Weekend Occupancy Percentage&quot;: 91.1, &quot;Overall Occupancy Percentage&quot;: 84.3, &quot;LVCVA Room Tax Collections&quot;: 210138974.0, &quot;En/Deplaned Air Passenger&quot;: 41857059, &quot;Clark County Gaming Revenue&quot;: 9674404000, &quot;Proportion&quot;: 0.12875334137116964}, {&quot;Year&quot;: &quot;2014-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 41126512, &quot;Convention Attendance&quot;: 5194580, &quot;Room Inventory&quot;: 150544, &quot;Midweek Occupancy Percentage&quot;: 83.9, &quot;Weekend Occupancy Percentage&quot;: 93.3, &quot;Overall Occupancy Percentage&quot;: 86.8, &quot;LVCVA Room Tax Collections&quot;: 232443537.0, &quot;En/Deplaned Air Passenger&quot;: 42885350, &quot;Clark County Gaming Revenue&quot;: 9553864000, &quot;Proportion&quot;: 0.12630733187390167}, {&quot;Year&quot;: &quot;2015-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 42312216, &quot;Convention Attendance&quot;: 5891151, &quot;Room Inventory&quot;: 149213, &quot;Midweek Occupancy Percentage&quot;: 85.2, &quot;Weekend Occupancy Percentage&quot;: 93.7, &quot;Overall Occupancy Percentage&quot;: 87.7, &quot;LVCVA Room Tax Collections&quot;: 254438208.0, &quot;En/Deplaned Air Passenger&quot;: 45389074, &quot;Clark County Gaming Revenue&quot;: 9617671000, &quot;Proportion&quot;: 0.13923050024134873}, {&quot;Year&quot;: &quot;2016-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 42936100, &quot;Convention Attendance&quot;: 6310600, &quot;Room Inventory&quot;: 149339, &quot;Midweek Occupancy Percentage&quot;: 86.5, &quot;Weekend Occupancy Percentage&quot;: 95.0, &quot;Overall Occupancy Percentage&quot;: 89.1, &quot;LVCVA Room Tax Collections&quot;: 273079478.0, &quot;En/Deplaned Air Passenger&quot;: 47435027, &quot;Clark County Gaming Revenue&quot;: 9713930000, &quot;Proportion&quot;: 0.1469765535295474}, {&quot;Year&quot;: &quot;2017-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 42214200, &quot;Convention Attendance&quot;: 6646200, &quot;Room Inventory&quot;: 148896, &quot;Midweek Occupancy Percentage&quot;: 86.2, &quot;Weekend Occupancy Percentage&quot;: 94.3, &quot;Overall Occupancy Percentage&quot;: 88.7, &quot;LVCVA Room Tax Collections&quot;: 282497037.0, &quot;En/Deplaned Air Passenger&quot;: 48500244, &quot;Clark County Gaming Revenue&quot;: 9978503000, &quot;Proportion&quot;: 0.1574399135835809}, {&quot;Year&quot;: &quot;2018-01-01T00:00:00&quot;, &quot;Months&quot;: 12, &quot;Visitor Volume&quot;: 42116800, &quot;Convention Attendance&quot;: 6501800, &quot;Room Inventory&quot;: 149158, &quot;Midweek Occupancy Percentage&quot;: 85.5, &quot;Weekend Occupancy Percentage&quot;: 94.5, &quot;Overall Occupancy Percentage&quot;: 88.2, &quot;LVCVA Room Tax Collections&quot;: 282596040.0, &quot;En/Deplaned Air Passenger&quot;: 49716584, &quot;Clark County Gaming Revenue&quot;: 10249964000, &quot;Proportion&quot;: 0.15437545112639137}, {&quot;Year&quot;: &quot;2019-01-01T00:00:00&quot;, &quot;Months&quot;: 10, &quot;Visitor Volume&quot;: 31880200, &quot;Convention Attendance&quot;: 5164500, &quot;Room Inventory&quot;: 149050, &quot;Midweek Occupancy Percentage&quot;: 86.7, &quot;Weekend Occupancy Percentage&quot;: 95.1, &quot;Overall Occupancy Percentage&quot;: 89.2, &quot;LVCVA Room Tax Collections&quot;: null, &quot;En/Deplaned Air Passenger&quot;: 38500861, &quot;Clark County Gaming Revenue&quot;: 7753090000, &quot;Proportion&quot;: 0.16199710164929956}]}};
      var embedOpt = {&quot;mode&quot;: &quot;vega-lite&quot;};

      function showError(el, error){
          el.innerHTML = ('&lt;div class=&quot;error&quot; style=&quot;color:red;&quot;&gt;'
                          + '&lt;p&gt;JavaScript Error: ' + error.message + '&lt;/p&gt;'
                          + &quot;&lt;p&gt;This usually means there's a typo in your chart specification. &quot;
                          + &quot;See the javascript console for the full traceback.&lt;/p&gt;&quot;
                          + '&lt;/div&gt;');
          throw error;
      }
      const el = document.getElementById('vis');
      vegaEmbed(&quot;#vis&quot;, spec, embedOpt)
        .catch(error =&gt; showError(el, error));
    })(vegaEmbed);

&lt;/script&gt;

&lt;h1 id=&quot;load-packages-and-import-data&quot;&gt;Load packages and import data&lt;/h1&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pandas&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;altair&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read_csv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'https://query.data.world/s/n3pj6omagl3flwxbzs6mblkjroi45y'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sep&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;se&quot;&gt;\t&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; 
                 &lt;span class=&quot;n&quot;&gt;thousands&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;encoding&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'utf_16_le'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div&gt;
&lt;style scoped=&quot;&quot;&gt;
    .dataframe tbody tr th:only-of-type {
        vertical-align: middle;
    }

    .dataframe tbody tr th {
        vertical-align: top;
    }

    .dataframe thead th {
        text-align: right;
    }
&lt;/style&gt;
&lt;table border=&quot;1&quot; class=&quot;dataframe&quot;&gt;
  &lt;thead&gt;
    &lt;tr style=&quot;text-align: right;&quot;&gt;
      &lt;th&gt;&lt;/th&gt;
      &lt;th&gt;Year&lt;/th&gt;
      &lt;th&gt;Months&lt;/th&gt;
      &lt;th&gt;Visitor Volume&lt;/th&gt;
      &lt;th&gt;Convention Attendance&lt;/th&gt;
      &lt;th&gt;Room Inventory&lt;/th&gt;
      &lt;th&gt;Midweek Occupancy Percentage&lt;/th&gt;
      &lt;th&gt;Weekend Occupancy Percentage&lt;/th&gt;
      &lt;th&gt;Overall Occupancy Percentage&lt;/th&gt;
      &lt;th&gt;LVCVA Room Tax Collections&lt;/th&gt;
      &lt;th&gt;En/Deplaned Air Passenger&lt;/th&gt;
      &lt;th&gt;Clark County Gaming Revenue&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;th&gt;0&lt;/th&gt;
      &lt;td&gt;1970&lt;/td&gt;
      &lt;td&gt;12&lt;/td&gt;
      &lt;td&gt;6787650&lt;/td&gt;
      &lt;td&gt;269129&lt;/td&gt;
      &lt;td&gt;25430&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;68.00%&lt;/td&gt;
      &lt;td&gt;3751265.0&lt;/td&gt;
      &lt;td&gt;4086973&lt;/td&gt;
      &lt;td&gt;369,286,977&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;1&lt;/th&gt;
      &lt;td&gt;1971&lt;/td&gt;
      &lt;td&gt;12&lt;/td&gt;
      &lt;td&gt;7361783&lt;/td&gt;
      &lt;td&gt;312347&lt;/td&gt;
      &lt;td&gt;26044&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;78.30%&lt;/td&gt;
      &lt;td&gt;4241630.0&lt;/td&gt;
      &lt;td&gt;4102285&lt;/td&gt;
      &lt;td&gt;399,410,972&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;2&lt;/th&gt;
      &lt;td&gt;1972&lt;/td&gt;
      &lt;td&gt;12&lt;/td&gt;
      &lt;td&gt;7954748&lt;/td&gt;
      &lt;td&gt;290794&lt;/td&gt;
      &lt;td&gt;26619&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;81.20%&lt;/td&gt;
      &lt;td&gt;4770716.0&lt;/td&gt;
      &lt;td&gt;4608764&lt;/td&gt;
      &lt;td&gt;476,126,720&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;3&lt;/th&gt;
      &lt;td&gt;1973&lt;/td&gt;
      &lt;td&gt;12&lt;/td&gt;
      &lt;td&gt;8474727&lt;/td&gt;
      &lt;td&gt;357248&lt;/td&gt;
      &lt;td&gt;29198&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;84.40%&lt;/td&gt;
      &lt;td&gt;5556312.0&lt;/td&gt;
      &lt;td&gt;5397017&lt;/td&gt;
      &lt;td&gt;588,221,779&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;4&lt;/th&gt;
      &lt;td&gt;1974&lt;/td&gt;
      &lt;td&gt;12&lt;/td&gt;
      &lt;td&gt;8664751&lt;/td&gt;
      &lt;td&gt;311908&lt;/td&gt;
      &lt;td&gt;32826&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;78.70%&lt;/td&gt;
      &lt;td&gt;6559315.0&lt;/td&gt;
      &lt;td&gt;5944433&lt;/td&gt;
      &lt;td&gt;684,714,502&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;

&lt;p&gt;So, every year has 12 months?&lt;/p&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;query&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Months != 12'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div&gt;
&lt;style scoped=&quot;&quot;&gt;
    .dataframe tbody tr th:only-of-type {
        vertical-align: middle;
    }

    .dataframe tbody tr th {
        vertical-align: top;
    }

    .dataframe thead th {
        text-align: right;
    }
&lt;/style&gt;
&lt;table border=&quot;1&quot; class=&quot;dataframe&quot;&gt;
  &lt;thead&gt;
    &lt;tr style=&quot;text-align: right;&quot;&gt;
      &lt;th&gt;&lt;/th&gt;
      &lt;th&gt;Year&lt;/th&gt;
      &lt;th&gt;Months&lt;/th&gt;
      &lt;th&gt;Visitor Volume&lt;/th&gt;
      &lt;th&gt;Convention Attendance&lt;/th&gt;
      &lt;th&gt;Room Inventory&lt;/th&gt;
      &lt;th&gt;Midweek Occupancy Percentage&lt;/th&gt;
      &lt;th&gt;Weekend Occupancy Percentage&lt;/th&gt;
      &lt;th&gt;Overall Occupancy Percentage&lt;/th&gt;
      &lt;th&gt;LVCVA Room Tax Collections&lt;/th&gt;
      &lt;th&gt;En/Deplaned Air Passenger&lt;/th&gt;
      &lt;th&gt;Clark County Gaming Revenue&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;th&gt;49&lt;/th&gt;
      &lt;td&gt;2019&lt;/td&gt;
      &lt;td&gt;10&lt;/td&gt;
      &lt;td&gt;31880200&lt;/td&gt;
      &lt;td&gt;5164500&lt;/td&gt;
      &lt;td&gt;149050&lt;/td&gt;
      &lt;td&gt;86.7%&lt;/td&gt;
      &lt;td&gt;95.1%&lt;/td&gt;
      &lt;td&gt;89.2%&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;38500861&lt;/td&gt;
      &lt;td&gt;$7,753,090,000&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;

&lt;p&gt;Yes, except for the current one, 2019.&lt;/p&gt;

&lt;p&gt;And a quick &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;describe&lt;/code&gt;.&lt;/p&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;describe&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;include&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'all'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div&gt;
&lt;style scoped=&quot;&quot;&gt;
    .dataframe tbody tr th:only-of-type {
        vertical-align: middle;
    }

    .dataframe tbody tr th {
        vertical-align: top;
    }

    .dataframe thead th {
        text-align: right;
    }
&lt;/style&gt;
&lt;table border=&quot;1&quot; class=&quot;dataframe&quot;&gt;
  &lt;thead&gt;
    &lt;tr style=&quot;text-align: right;&quot;&gt;
      &lt;th&gt;&lt;/th&gt;
      &lt;th&gt;Year&lt;/th&gt;
      &lt;th&gt;Months&lt;/th&gt;
      &lt;th&gt;Visitor Volume&lt;/th&gt;
      &lt;th&gt;Convention Attendance&lt;/th&gt;
      &lt;th&gt;Room Inventory&lt;/th&gt;
      &lt;th&gt;Midweek Occupancy Percentage&lt;/th&gt;
      &lt;th&gt;Weekend Occupancy Percentage&lt;/th&gt;
      &lt;th&gt;Overall Occupancy Percentage&lt;/th&gt;
      &lt;th&gt;LVCVA Room Tax Collections&lt;/th&gt;
      &lt;th&gt;En/Deplaned Air Passenger&lt;/th&gt;
      &lt;th&gt;Clark County Gaming Revenue&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;th&gt;count&lt;/th&gt;
      &lt;td&gt;50.00000&lt;/td&gt;
      &lt;td&gt;50.000000&lt;/td&gt;
      &lt;td&gt;5.000000e+01&lt;/td&gt;
      &lt;td&gt;5.000000e+01&lt;/td&gt;
      &lt;td&gt;50.000000&lt;/td&gt;
      &lt;td&gt;37&lt;/td&gt;
      &lt;td&gt;37&lt;/td&gt;
      &lt;td&gt;50&lt;/td&gt;
      &lt;td&gt;4.900000e+01&lt;/td&gt;
      &lt;td&gt;5.000000e+01&lt;/td&gt;
      &lt;td&gt;50&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;unique&lt;/th&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;27&lt;/td&gt;
      &lt;td&gt;27&lt;/td&gt;
      &lt;td&gt;44&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;50&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;top&lt;/th&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;81.60%&lt;/td&gt;
      &lt;td&gt;93.50%&lt;/td&gt;
      &lt;td&gt;89.10%&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;476,126,720&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;freq&lt;/th&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;4&lt;/td&gt;
      &lt;td&gt;4&lt;/td&gt;
      &lt;td&gt;2&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;1&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;mean&lt;/th&gt;
      &lt;td&gt;1994.50000&lt;/td&gt;
      &lt;td&gt;11.960000&lt;/td&gt;
      &lt;td&gt;2.539469e+07&lt;/td&gt;
      &lt;td&gt;3.051318e+06&lt;/td&gt;
      &lt;td&gt;92756.660000&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;9.983591e+07&lt;/td&gt;
      &lt;td&gt;2.589947e+07&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;std&lt;/th&gt;
      &lt;td&gt;14.57738&lt;/td&gt;
      &lt;td&gt;0.282843&lt;/td&gt;
      &lt;td&gt;1.256754e+07&lt;/td&gt;
      &lt;td&gt;2.224790e+06&lt;/td&gt;
      &lt;td&gt;45366.843933&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;8.887047e+07&lt;/td&gt;
      &lt;td&gt;1.544387e+07&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;min&lt;/th&gt;
      &lt;td&gt;1970.00000&lt;/td&gt;
      &lt;td&gt;10.000000&lt;/td&gt;
      &lt;td&gt;6.787650e+06&lt;/td&gt;
      &lt;td&gt;2.691290e+05&lt;/td&gt;
      &lt;td&gt;25430.000000&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;3.751265e+06&lt;/td&gt;
      &lt;td&gt;4.086973e+06&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;25%&lt;/th&gt;
      &lt;td&gt;1982.25000&lt;/td&gt;
      &lt;td&gt;12.000000&lt;/td&gt;
      &lt;td&gt;1.204321e+07&lt;/td&gt;
      &lt;td&gt;8.432370e+05&lt;/td&gt;
      &lt;td&gt;50834.750000&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;1.907066e+07&lt;/td&gt;
      &lt;td&gt;1.030479e+07&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;50%&lt;/th&gt;
      &lt;td&gt;1994.50000&lt;/td&gt;
      &lt;td&gt;12.000000&lt;/td&gt;
      &lt;td&gt;2.860824e+07&lt;/td&gt;
      &lt;td&gt;2.804525e+06&lt;/td&gt;
      &lt;td&gt;89303.000000&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;7.687679e+07&lt;/td&gt;
      &lt;td&gt;2.743886e+07&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;75%&lt;/th&gt;
      &lt;td&gt;2006.75000&lt;/td&gt;
      &lt;td&gt;12.000000&lt;/td&gt;
      &lt;td&gt;3.737544e+07&lt;/td&gt;
      &lt;td&gt;5.106924e+06&lt;/td&gt;
      &lt;td&gt;133126.250000&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;1.648218e+08&lt;/td&gt;
      &lt;td&gt;4.119840e+07&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;max&lt;/th&gt;
      &lt;td&gt;2019.00000&lt;/td&gt;
      &lt;td&gt;12.000000&lt;/td&gt;
      &lt;td&gt;4.293610e+07&lt;/td&gt;
      &lt;td&gt;6.646200e+06&lt;/td&gt;
      &lt;td&gt;150593.000000&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
      &lt;td&gt;2.825960e+08&lt;/td&gt;
      &lt;td&gt;4.971658e+07&lt;/td&gt;
      &lt;td&gt;NaN&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;

&lt;p&gt;Some numeric values are not in the right type. So I’ll take a look and transform them.&lt;/p&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Clark County Gaming Revenue'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;0        369,286,977
1        399,410,972
2        476,126,720
3        588,221,779
4        684,714,502
5        770,336,695
6        845,975,652
7      1,015,463,342
8      1,236,235,456
9      1,423,620,102
10     1,617,194,799
11     1,676,148,606
12     1,751,421,394
13     1,887,451,717
14     2,008,155,460
15     2,256,762,736
16     2,431,237,168
17     2,789,336,000
18     3,136,901,000
19     3,430,851,000
20     4,104,001,000
21     4,152,407,000
22     4,381,710,000
23     4,727,424,000
24     5,430,651,000
25     5,717,567,000
26     5,783,735,000
27     6,152,415,000
28     6,346,958,000
29     7,210,700,000
30     7,671,252,000
31     7,636,547,000
32     7,630,562,000
33     7,830,856,000
34     8,711,426,000
35     9,717,322,000
36    10,630,387,000
37    10,868,464,000
38     9,796,749,000
39     8,838,261,000
40     8,908,574,000
41     9,222,677,000
42     9,399,845,000
43     9,674,404,000
44     9,553,864,000
45     9,617,671,000
46     9,713,930,000
47     9,978,503,000
48    10,249,964,000
49    $7,753,090,000
Name: Clark County Gaming Revenue, dtype: object
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;One value has a &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;$&lt;/code&gt; that is impeding the transformation to numeric. I’ll fix this and alo some other changes to make the data looks better in the plot and creating a new column to see proportion as&lt;/p&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;copy&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Clark County Gaming Revenue'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to_numeric&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Clark County Gaming Revenue'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;].&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;replace&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'[,$]'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;''&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;
                                                       &lt;span class=&quot;n&quot;&gt;downcast&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'integer'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Midweek Occupancy Percentage'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to_numeric&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Midweek Occupancy Percentage'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;].&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;replace&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'%'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;''&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Weekend Occupancy Percentage'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to_numeric&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Weekend Occupancy Percentage'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;].&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;replace&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'%'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;''&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Overall Occupancy Percentage'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to_numeric&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Overall Occupancy Percentage'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;].&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;replace&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'%'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;''&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;#Create new column
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Proportion'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Convention Attendance'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Visitor Volume'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Year'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to_datetime&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Year'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;format&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'%Y'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dtypes&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;Year                            datetime64[ns]
Months                                   int64
Visitor Volume                           int64
Convention Attendance                    int64
Room Inventory                           int64
Midweek Occupancy Percentage           float64
Weekend Occupancy Percentage           float64
Overall Occupancy Percentage           float64
LVCVA Room Tax Collections             float64
En/Deplaned Air Passenger                int64
Clark County Gaming Revenue              int64
Proportion                             float64
dtype: object
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;So the values are now in the correct format. Let’s see if there are &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;NAs&lt;/code&gt; and make the visualization.&lt;/p&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;isnull&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;().&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;Year                             0
Months                           0
Visitor Volume                   0
Convention Attendance            0
Room Inventory                   0
Midweek Occupancy Percentage    13
Weekend Occupancy Percentage    13
Overall Occupancy Percentage     0
LVCVA Room Tax Collections       1
En/Deplaned Air Passenger        0
Clark County Gaming Revenue      0
Proportion                       0
dtype: int64
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Three variables have NA values but I’ll redo the original plot with two plots.&lt;/p&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;brush&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;selection_interval&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;encodings&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'x'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;],&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;empty&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'all'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;base_line_bar&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Chart&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_clean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;encode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;X&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Year'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;condition&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;brush&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ColorValue&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'darkblue'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ColorValue&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'gray'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)),&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;tooltip&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Tooltip&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'year(Year):N'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;add_selection&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;brush&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;#Convention line/scatter
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;chart_convention&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;base_line_bar&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mark_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;point&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;True&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;encode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt; 
    &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Convention Attendance'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Number of attendees'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
           &lt;span class=&quot;n&quot;&gt;axis&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Axis&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;format&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'~s'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;properties&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Convention Attendance'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;400&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;height&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;14&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;45&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; 

&lt;span class=&quot;c1&quot;&gt;#Visitor line/scatter
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;chart_visitors&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;base_line_bar&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mark_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;point&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;True&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;encode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt; 
    &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Visitor Volume'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Number of visitors'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
           &lt;span class=&quot;n&quot;&gt;axis&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Axis&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;format&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'~s'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;properties&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Visitor Volume'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;400&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;height&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;300&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;#Conventionas proportion of total visitors
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;chart_proportion&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;base_line_bar&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mark_bar&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;().&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;encode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Proportion'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
           &lt;span class=&quot;n&quot;&gt;axis&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Axis&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;format&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'%'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;properties&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Share of Visitors from Conventions'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;400&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;height&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;14&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;45&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; 

&lt;span class=&quot;c1&quot;&gt;#Gaming Spending
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;chart_spending&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;base_line_bar&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mark_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;point&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;True&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;3&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;encode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Clark County Gaming Revenue'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Dollars'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
           &lt;span class=&quot;n&quot;&gt;axis&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Axis&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;format&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'~s'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)),&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;condition&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;brush&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ColorValue&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'darkgreen'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ColorValue&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'gray'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;properties&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Clark County Gaming Revenue'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;400&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;height&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;300&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;final_chart&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;chart_convention&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;amp;&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;chart_visitors&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;|&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;chart_proportion&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;amp;&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;chart_spending&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;properties&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;'Las Vegas Visitors Info 1979 - 2019(October)'&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;configure&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;background&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Snow'&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;configure_axis&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;grid&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;False&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;domain&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;False&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;titleFontSize&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;13&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;titleFontWeight&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'normal'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;titleColor&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'dimgray'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;labelColor&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'dimgray'&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;configure_view&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;strokeWidth&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;configure_title&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;fontSize&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;anchor&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'middle'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'darkslategray'&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;final_chart&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;save&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;../docs/assets/images/2019_11_04_MM.png&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;final_chart&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;save&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'2019_11_04_MM.html'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;final_chart&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_11_04_MM.png&quot; alt=&quot;Static&quot; /&gt;&lt;/p&gt;</content><author><name>Jorge Mendes</name></author><category term="Makeover Monday" /><category term="Makeover Monday" /><category term="Bar plots" /><category term="Line plots" /><category term="altair" /><category term="python" /><summary type="html">2019/W45: Las Vegas Convention Attendance &amp;amp; Visitor Traffic Data from here Interactive plot Load packages and import data import pandas as pd import altair as alt df = pd.read_csv('https://query.data.world/s/n3pj6omagl3flwxbzs6mblkjroi45y', sep='\t', thousands=',', encoding='utf_16_le') df.head() Year Months Visitor Volume Convention Attendance Room Inventory Midweek Occupancy Percentage Weekend Occupancy Percentage Overall Occupancy Percentage LVCVA Room Tax Collections En/Deplaned Air Passenger Clark County Gaming Revenue 0 1970 12 6787650 269129 25430 NaN NaN 68.00% 3751265.0 4086973 369,286,977 1 1971 12 7361783 312347 26044 NaN NaN 78.30% 4241630.0 4102285 399,410,972 2 1972 12 7954748 290794 26619 NaN NaN 81.20% 4770716.0 4608764 476,126,720 3 1973 12 8474727 357248 29198 NaN NaN 84.40% 5556312.0 5397017 588,221,779 4 1974 12 8664751 311908 32826 NaN NaN 78.70% 6559315.0 5944433 684,714,502 So, every year has 12 months? df.query('Months != 12') Year Months Visitor Volume Convention Attendance Room Inventory Midweek Occupancy Percentage Weekend Occupancy Percentage Overall Occupancy Percentage LVCVA Room Tax Collections En/Deplaned Air Passenger Clark County Gaming Revenue 49 2019 10 31880200 5164500 149050 86.7% 95.1% 89.2% NaN 38500861 $7,753,090,000 Yes, except for the current one, 2019. And a quick describe. df.describe(include='all') Year Months Visitor Volume Convention Attendance Room Inventory Midweek Occupancy Percentage Weekend Occupancy Percentage Overall Occupancy Percentage LVCVA Room Tax Collections En/Deplaned Air Passenger Clark County Gaming Revenue count 50.00000 50.000000 5.000000e+01 5.000000e+01 50.000000 37 37 50 4.900000e+01 5.000000e+01 50 unique NaN NaN NaN NaN NaN 27 27 44 NaN NaN 50 top NaN NaN NaN NaN NaN 81.60% 93.50% 89.10% NaN NaN 476,126,720 freq NaN NaN NaN NaN NaN 4 4 2 NaN NaN 1 mean 1994.50000 11.960000 2.539469e+07 3.051318e+06 92756.660000 NaN NaN NaN 9.983591e+07 2.589947e+07 NaN std 14.57738 0.282843 1.256754e+07 2.224790e+06 45366.843933 NaN NaN NaN 8.887047e+07 1.544387e+07 NaN min 1970.00000 10.000000 6.787650e+06 2.691290e+05 25430.000000 NaN NaN NaN 3.751265e+06 4.086973e+06 NaN 25% 1982.25000 12.000000 1.204321e+07 8.432370e+05 50834.750000 NaN NaN NaN 1.907066e+07 1.030479e+07 NaN 50% 1994.50000 12.000000 2.860824e+07 2.804525e+06 89303.000000 NaN NaN NaN 7.687679e+07 2.743886e+07 NaN 75% 2006.75000 12.000000 3.737544e+07 5.106924e+06 133126.250000 NaN NaN NaN 1.648218e+08 4.119840e+07 NaN max 2019.00000 12.000000 4.293610e+07 6.646200e+06 150593.000000 NaN NaN NaN 2.825960e+08 4.971658e+07 NaN Some numeric values are not in the right type. So I’ll take a look and transform them. df['Clark County Gaming Revenue'] 0 369,286,977 1 399,410,972 2 476,126,720 3 588,221,779 4 684,714,502 5 770,336,695 6 845,975,652 7 1,015,463,342 8 1,236,235,456 9 1,423,620,102 10 1,617,194,799 11 1,676,148,606 12 1,751,421,394 13 1,887,451,717 14 2,008,155,460 15 2,256,762,736 16 2,431,237,168 17 2,789,336,000 18 3,136,901,000 19 3,430,851,000 20 4,104,001,000 21 4,152,407,000 22 4,381,710,000 23 4,727,424,000 24 5,430,651,000 25 5,717,567,000 26 5,783,735,000 27 6,152,415,000 28 6,346,958,000 29 7,210,700,000 30 7,671,252,000 31 7,636,547,000 32 7,630,562,000 33 7,830,856,000 34 8,711,426,000 35 9,717,322,000 36 10,630,387,000 37 10,868,464,000 38 9,796,749,000 39 8,838,261,000 40 8,908,574,000 41 9,222,677,000 42 9,399,845,000 43 9,674,404,000 44 9,553,864,000 45 9,617,671,000 46 9,713,930,000 47 9,978,503,000 48 10,249,964,000 49 $7,753,090,000 Name: Clark County Gaming Revenue, dtype: object One value has a $ that is impeding the transformation to numeric. I’ll fix this and alo some other changes to make the data looks better in the plot and creating a new column to see proportion as df_clean = df.copy() df_clean['Clark County Gaming Revenue'] = pd.to_numeric(df_clean['Clark County Gaming Revenue'].str.replace('[,$]',''), downcast='integer') df_clean['Midweek Occupancy Percentage'] = pd.to_numeric(df_clean['Midweek Occupancy Percentage'].str.replace('%','')) df_clean['Weekend Occupancy Percentage'] = pd.to_numeric(df_clean['Weekend Occupancy Percentage'].str.replace('%','')) df_clean['Overall Occupancy Percentage'] = pd.to_numeric(df_clean['Overall Occupancy Percentage'].str.replace('%','')) #Create new column df_clean['Proportion'] = df_clean['Convention Attendance']/df_clean['Visitor Volume'] df_clean['Year'] = pd.to_datetime(df_clean['Year'], format='%Y') df_clean.dtypes Year datetime64[ns] Months int64 Visitor Volume int64 Convention Attendance int64 Room Inventory int64 Midweek Occupancy Percentage float64 Weekend Occupancy Percentage float64 Overall Occupancy Percentage float64 LVCVA Room Tax Collections float64 En/Deplaned Air Passenger int64 Clark County Gaming Revenue int64 Proportion float64 dtype: object So the values are now in the correct format. Let’s see if there are NAs and make the visualization. df_clean.isnull().sum() Year 0 Months 0 Visitor Volume 0 Convention Attendance 0 Room Inventory 0 Midweek Occupancy Percentage 13 Weekend Occupancy Percentage 13 Overall Occupancy Percentage 0 LVCVA Room Tax Collections 1 En/Deplaned Air Passenger 0 Clark County Gaming Revenue 0 Proportion 0 dtype: int64 Three variables have NA values but I’ll redo the original plot with two plots. brush = alt.selection_interval(encodings=['x'],empty='all') base_line_bar = alt.Chart(df_clean).encode( x=alt.X('Year', title=None), color=alt.condition(brush, alt.ColorValue('darkblue'), alt.ColorValue('gray')), tooltip=alt.Tooltip('year(Year):N') ).add_selection( brush ) #Convention line/scatter chart_convention = base_line_bar.mark_line(point=True, size=3).encode( y=alt.Y('Convention Attendance', title='Number of attendees', axis=alt.Axis(format='~s')) ).properties( title='Convention Attendance', width=400, height=300*14/45 ) #Visitor line/scatter chart_visitors = base_line_bar.mark_line(point=True, size=3).encode( y=alt.Y('Visitor Volume', title='Number of visitors', axis=alt.Axis(format='~s')) ).properties( title='Visitor Volume', width=400, height=300 ) #Conventionas proportion of total visitors chart_proportion = base_line_bar.mark_bar().encode( y=alt.Y('Proportion', title=None, axis=alt.Axis(format='%')) ).properties( title='Share of Visitors from Conventions', width=400, height=300*14/45 ) #Gaming Spending chart_spending = base_line_bar.mark_line( point=True, size=3 ).encode( y=alt.Y('Clark County Gaming Revenue', title='Dollars', axis=alt.Axis(format='~s')), color=alt.condition(brush, alt.ColorValue('darkgreen'), alt.ColorValue('gray')) ).properties( title='Clark County Gaming Revenue', width=400, height=300 ) final_chart = ( ( chart_convention &amp;amp; chart_visitors ) | ( chart_proportion &amp;amp; chart_spending ) ).properties( title = 'Las Vegas Visitors Info 1979 - 2019(October)' ).configure( background='Snow' ).configure_axis( grid=False, domain=False, titleFontSize=13, titleFontWeight='normal', titleColor='dimgray', labelColor='dimgray' ).configure_view( strokeWidth=0 ).configure_title( fontSize=15, anchor='middle', color='darkslategray' ) final_chart.save(&quot;../docs/assets/images/2019_11_04_MM.png&quot;) final_chart.save('2019_11_04_MM.html') final_chart</summary></entry><entry><title type="html">Tidy Tuesday 29/10/2019 NYC Squirrel Census</title><link href="https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Squirrel/" rel="alternate" type="text/html" title="Tidy Tuesday 29/10/2019 NYC Squirrel Census" /><published>2019-10-29T00:00:00+00:00</published><updated>2019-10-29T00:00:00+00:00</updated><id>https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Squirrel</id><content type="html" xml:base="https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Squirrel/">&lt;h1 id=&quot;data-description&quot;&gt;Data description&lt;/h1&gt;

&lt;p&gt;From From &lt;a href=&quot;https://github.com/rfordatascience/tidytuesday/tree/master/data/2019/2019-10-29&quot;&gt;TidyTuesdays
github&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;This week’s data is from the &lt;a href=&quot;https://www.thesquirrelcensus.com/&quot;&gt;NYC Squirrel
Census&lt;/a&gt; - raw data at &lt;a href=&quot;https://data.cityofnewyork.us/Environment/2018-Central-Park-Squirrel-Census-Squirrel-Data/vfnx-vebw&quot;&gt;NY Data
portal&lt;/a&gt;.&lt;/p&gt;

  &lt;p&gt;H/t to &lt;a href=&quot;https://twitter.com/sastoudt&quot;&gt;Sara Stoudt&lt;/a&gt; for sharing this
data, and &lt;a href=&quot;https://twitter.com/minebocek&quot;&gt;Mine Cetinkaya-Rundel&lt;/a&gt; for
her &lt;a href=&quot;https://github.com/mine-cetinkaya-rundel/nycsquirrels18&quot;&gt;squirrel data
package&lt;/a&gt;
using the same data.&lt;/p&gt;

  &lt;p&gt;CityLab’s &lt;a href=&quot;https://twitter.com/linpoonsays&quot;&gt;Linda Poon&lt;/a&gt; wrote an
&lt;a href=&quot;https://www.citylab.com/life/2019/06/squirrel-census-results-population-central-park-nyc/592162/&quot;&gt;article&lt;/a&gt;
using this data.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1 id=&quot;data-importing&quot;&gt;Data importing&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tidyverse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Now reading the data (using RCurl because my connection with regular
curl is weird)&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;nyc_squirrels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;readr&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read_csv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;RCurl&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;getURL&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-29/nyc_squirrels.csv&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h1 id=&quot;quick-look&quot;&gt;Quick look&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;glimpse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;nyc_squirrels&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;## Observations: 3,023
## Variables: 36
## $ long                                       &amp;lt;dbl&amp;gt; -73.95613, -73.95704,…
## $ lat                                        &amp;lt;dbl&amp;gt; 40.79408, 40.79485, 4…
## $ unique_squirrel_id                         &amp;lt;chr&amp;gt; &quot;37F-PM-1014-03&quot;, &quot;37…
## $ hectare                                    &amp;lt;chr&amp;gt; &quot;37F&quot;, &quot;37E&quot;, &quot;02E&quot;, …
## $ shift                                      &amp;lt;chr&amp;gt; &quot;PM&quot;, &quot;PM&quot;, &quot;AM&quot;, &quot;PM…
## $ date                                       &amp;lt;dbl&amp;gt; 10142018, 10062018, 1…
## $ hectare_squirrel_number                    &amp;lt;dbl&amp;gt; 3, 3, 3, 5, 1, 2, 2, …
## $ age                                        &amp;lt;chr&amp;gt; NA, &quot;Adult&quot;, &quot;Adult&quot;,…
## $ primary_fur_color                          &amp;lt;chr&amp;gt; NA, &quot;Gray&quot;, &quot;Cinnamon…
## $ highlight_fur_color                        &amp;lt;chr&amp;gt; NA, &quot;Cinnamon&quot;, NA, N…
## $ combination_of_primary_and_highlight_color &amp;lt;chr&amp;gt; &quot;+&quot;, &quot;Gray+Cinnamon&quot;,…
## $ color_notes                                &amp;lt;chr&amp;gt; NA, NA, NA, NA, NA, N…
## $ location                                   &amp;lt;chr&amp;gt; NA, &quot;Ground Plane&quot;, &quot;…
## $ above_ground_sighter_measurement           &amp;lt;chr&amp;gt; NA, &quot;FALSE&quot;, &quot;4&quot;, &quot;3&quot;…
## $ specific_location                          &amp;lt;chr&amp;gt; NA, NA, NA, NA, NA, N…
## $ running                                    &amp;lt;lgl&amp;gt; FALSE, TRUE, FALSE, F…
## $ chasing                                    &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, …
## $ climbing                                   &amp;lt;lgl&amp;gt; FALSE, FALSE, TRUE, T…
## $ eating                                     &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, …
## $ foraging                                   &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, …
## $ other_activities                           &amp;lt;chr&amp;gt; NA, NA, NA, NA, &quot;unkn…
## $ kuks                                       &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, …
## $ quaas                                      &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, …
## $ moans                                      &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, …
## $ tail_flags                                 &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, …
## $ tail_twitches                              &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, …
## $ approaches                                 &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, …
## $ indifferent                                &amp;lt;lgl&amp;gt; FALSE, FALSE, TRUE, F…
## $ runs_from                                  &amp;lt;lgl&amp;gt; FALSE, TRUE, FALSE, T…
## $ other_interactions                         &amp;lt;chr&amp;gt; NA, &quot;me&quot;, NA, NA, NA,…
## $ lat_long                                   &amp;lt;chr&amp;gt; &quot;POINT (-73.956134493…
## $ zip_codes                                  &amp;lt;dbl&amp;gt; NA, NA, NA, NA, NA, N…
## $ community_districts                        &amp;lt;dbl&amp;gt; 19, 19, 19, 19, 19, 1…
## $ borough_boundaries                         &amp;lt;dbl&amp;gt; 4, 4, 4, 4, 4, 4, 4, …
## $ city_council_districts                     &amp;lt;dbl&amp;gt; 19, 19, 19, 19, 19, 1…
## $ police_precincts                           &amp;lt;dbl&amp;gt; 13, 13, 13, 13, 13, 1…
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;I’ll look at how high the squirrels go.&lt;/p&gt;

&lt;h1 id=&quot;how-high-care-the-squirrels&quot;&gt;How high care the squirrels?&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;nyc_squirrels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;select&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_ground_sighter_measurement&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;summary&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;##    location         above_ground_sighter_measurement
##  Length:3023        Length:3023                     
##  Class :character   Class :character                
##  Mode  :character   Mode  :character
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Not a lot of sense in above_ground being a character, let’s change
that. And since I’ll be making two bar plots it’s easier to make two
datasets.&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;squirrels_above_below&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;nyc_squirrels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;select&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;is.na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;count&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;location_prop&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location_prop&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location_prop&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location_prop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;squirrels_above_below&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;## # A tibble: 2 x 2
##   location     location_prop
##   &amp;lt;chr&amp;gt;                &amp;lt;dbl&amp;gt;
## 1 Above Ground         0.285
## 2 Ground Plane         0.715
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Now making a data frame for the squirrels sighter measurements.&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;squirrels_sight_measures&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;nyc_squirrels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;==&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Above Ground&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;select&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_ground_sighter_measurement&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_ground_sighter_measurement&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;parse_number&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_ground_sighter_measurement&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;squirrels_sight_measures&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;summary&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;##  above_ground_sighter_measurement
##  Min.   :  0.00                  
##  1st Qu.:  5.00                  
##  Median : 10.00                  
##  Mean   : 15.21                  
##  3rd Qu.: 20.00                  
##  Max.   :180.00                  
##  NA's   :50
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;So the values have 50 NAs, and mostly distributed around 5 and 20.&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;squirrels_sight_measures&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;squirrels_sight_measures&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;height_category&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;case_when&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;is.na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_ground_sighter_measurement&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Unknown&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_ground_sighter_measurement&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;0-5&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_ground_sighter_measurement&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;5-10&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_ground_sighter_measurement&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;10-15&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_ground_sighter_measurement&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;15-20&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_ground_sighter_measurement&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&amp;gt;20&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;height_category&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;factor&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;height_category&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;levels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Unknown&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;0-5&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;5-10&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
                                                  &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;10-15&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;15-20&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&amp;gt;20&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                           &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ordered&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;TRUE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;count&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;height_category&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;above_prop&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_prop&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_prop&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_prop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Great, so now I’ll make a stacked bar chart.&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;ggplot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_col&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;squirrels_above_below&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
           &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location_prop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
           &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;fill&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;white&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;squirrels_above_below&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
            &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location_prop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;group&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
            &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;white&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position_stack&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.8&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;reverse&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;FALSE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_col&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;squirrels_sight_measures&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
           &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_prop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;height_category&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
           &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position_fill&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;reverse&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;TRUE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;white&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;squirrels_sight_measures&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
           &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_prop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scales&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;percent&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;above_prop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
           &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;white&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position_stack&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_segment&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;squirrels_above_below&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;==&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Ground Plane&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
               &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.5&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;xend&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2-.5&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;location_prop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;yend&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
               &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;white&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_segment&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.5&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;xend&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2-.5&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.999&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;yend&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.999&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
               &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;white&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Most squirrels are spoted at ground level&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;subtitle&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;But the ones that are seen above can go really high&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;caption&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Source: NYC Squirrel Census&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_fill_manual&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Height of\n sighting&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;values&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&amp;gt;20&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#08519c&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;15-20&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#3182bd&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                               &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;10-15&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#6baed6&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;5-10&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#9ecae1&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                               &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;0-5&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#c6dbef&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Unknown&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;grey60&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                               &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Above Ground&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;darkblue&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                               &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Ground Plane&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;grey30&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;breaks&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&amp;gt;20&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;15-20&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;10-15&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;5-10&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;0-5&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                             &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Unknown&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;NULL&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;NULL&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_y_continuous&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;NULL&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scales&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;percent&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_x_continuous&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;NULL&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;NULL&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;breaks&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;NULL&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;expand&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.background&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_rect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;grey10&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
          &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.grid&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;())&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;  
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/sqc_bar-1.png&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;/p&gt;</content><author><name>Jorge Mendes</name></author><category term="Tidy Tuesday" /><category term="Tidy Tuesday" /><category term="Bar plot" /><category term="ggplot" /><summary type="html">Data description From From TidyTuesdays github: This week’s data is from the NYC Squirrel Census - raw data at NY Data portal. H/t to Sara Stoudt for sharing this data, and Mine Cetinkaya-Rundel for her squirrel data package using the same data. CityLab’s Linda Poon wrote an article using this data. Data importing library(tidyverse) Now reading the data (using RCurl because my connection with regular curl is weird) nyc_squirrels &amp;lt;- readr::read_csv(RCurl::getURL(&quot;https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-29/nyc_squirrels.csv&quot;)) Quick look glimpse(nyc_squirrels) ## Observations: 3,023 ## Variables: 36 ## $ long &amp;lt;dbl&amp;gt; -73.95613, -73.95704,… ## $ lat &amp;lt;dbl&amp;gt; 40.79408, 40.79485, 4… ## $ unique_squirrel_id &amp;lt;chr&amp;gt; &quot;37F-PM-1014-03&quot;, &quot;37… ## $ hectare &amp;lt;chr&amp;gt; &quot;37F&quot;, &quot;37E&quot;, &quot;02E&quot;, … ## $ shift &amp;lt;chr&amp;gt; &quot;PM&quot;, &quot;PM&quot;, &quot;AM&quot;, &quot;PM… ## $ date &amp;lt;dbl&amp;gt; 10142018, 10062018, 1… ## $ hectare_squirrel_number &amp;lt;dbl&amp;gt; 3, 3, 3, 5, 1, 2, 2, … ## $ age &amp;lt;chr&amp;gt; NA, &quot;Adult&quot;, &quot;Adult&quot;,… ## $ primary_fur_color &amp;lt;chr&amp;gt; NA, &quot;Gray&quot;, &quot;Cinnamon… ## $ highlight_fur_color &amp;lt;chr&amp;gt; NA, &quot;Cinnamon&quot;, NA, N… ## $ combination_of_primary_and_highlight_color &amp;lt;chr&amp;gt; &quot;+&quot;, &quot;Gray+Cinnamon&quot;,… ## $ color_notes &amp;lt;chr&amp;gt; NA, NA, NA, NA, NA, N… ## $ location &amp;lt;chr&amp;gt; NA, &quot;Ground Plane&quot;, &quot;… ## $ above_ground_sighter_measurement &amp;lt;chr&amp;gt; NA, &quot;FALSE&quot;, &quot;4&quot;, &quot;3&quot;… ## $ specific_location &amp;lt;chr&amp;gt; NA, NA, NA, NA, NA, N… ## $ running &amp;lt;lgl&amp;gt; FALSE, TRUE, FALSE, F… ## $ chasing &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, … ## $ climbing &amp;lt;lgl&amp;gt; FALSE, FALSE, TRUE, T… ## $ eating &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, … ## $ foraging &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, … ## $ other_activities &amp;lt;chr&amp;gt; NA, NA, NA, NA, &quot;unkn… ## $ kuks &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, … ## $ quaas &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, … ## $ moans &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, … ## $ tail_flags &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, … ## $ tail_twitches &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, … ## $ approaches &amp;lt;lgl&amp;gt; FALSE, FALSE, FALSE, … ## $ indifferent &amp;lt;lgl&amp;gt; FALSE, FALSE, TRUE, F… ## $ runs_from &amp;lt;lgl&amp;gt; FALSE, TRUE, FALSE, T… ## $ other_interactions &amp;lt;chr&amp;gt; NA, &quot;me&quot;, NA, NA, NA,… ## $ lat_long &amp;lt;chr&amp;gt; &quot;POINT (-73.956134493… ## $ zip_codes &amp;lt;dbl&amp;gt; NA, NA, NA, NA, NA, N… ## $ community_districts &amp;lt;dbl&amp;gt; 19, 19, 19, 19, 19, 1… ## $ borough_boundaries &amp;lt;dbl&amp;gt; 4, 4, 4, 4, 4, 4, 4, … ## $ city_council_districts &amp;lt;dbl&amp;gt; 19, 19, 19, 19, 19, 1… ## $ police_precincts &amp;lt;dbl&amp;gt; 13, 13, 13, 13, 13, 1… I’ll look at how high the squirrels go. How high care the squirrels? nyc_squirrels %&amp;gt;% select(location, above_ground_sighter_measurement) %&amp;gt;% summary() ## location above_ground_sighter_measurement ## Length:3023 Length:3023 ## Class :character Class :character ## Mode :character Mode :character Not a lot of sense in above_ground being a character, let’s change that. And since I’ll be making two bar plots it’s easier to make two datasets. squirrels_above_below &amp;lt;- nyc_squirrels %&amp;gt;% select(location) %&amp;gt;% filter(!is.na(location)) %&amp;gt;% count(location, name = &quot;location_prop&quot;) %&amp;gt;% mutate(location_prop = location_prop/sum(location_prop)) squirrels_above_below ## # A tibble: 2 x 2 ## location location_prop ## &amp;lt;chr&amp;gt; &amp;lt;dbl&amp;gt; ## 1 Above Ground 0.285 ## 2 Ground Plane 0.715 Now making a data frame for the squirrels sighter measurements. squirrels_sight_measures &amp;lt;- nyc_squirrels %&amp;gt;% filter(location == &quot;Above Ground&quot;) %&amp;gt;% select(above_ground_sighter_measurement) %&amp;gt;% mutate(above_ground_sighter_measurement = parse_number(above_ground_sighter_measurement)) squirrels_sight_measures %&amp;gt;% summary() ## above_ground_sighter_measurement ## Min. : 0.00 ## 1st Qu.: 5.00 ## Median : 10.00 ## Mean : 15.21 ## 3rd Qu.: 20.00 ## Max. :180.00 ## NA's :50 So the values have 50 NAs, and mostly distributed around 5 and 20. squirrels_sight_measures &amp;lt;- squirrels_sight_measures %&amp;gt;% mutate(height_category = case_when( is.na(above_ground_sighter_measurement) ~ &quot;Unknown&quot;, above_ground_sighter_measurement &amp;lt; 5 ~ &quot;0-5&quot;, above_ground_sighter_measurement &amp;lt; 10 ~ &quot;5-10&quot;, above_ground_sighter_measurement &amp;lt; 15 ~ &quot;10-15&quot;, above_ground_sighter_measurement &amp;lt; 20 ~ &quot;15-20&quot;, above_ground_sighter_measurement &amp;gt;= 20 ~ &quot;&amp;gt;20&quot; ), height_category = factor(height_category, levels = c(&quot;Unknown&quot;, &quot;0-5&quot;, &quot;5-10&quot;, &quot;10-15&quot;, &quot;15-20&quot;, &quot;&amp;gt;20&quot;), ordered = TRUE) ) %&amp;gt;% count(height_category, name = &quot;above_prop&quot;) %&amp;gt;% mutate(above_prop = above_prop/sum(above_prop)) Great, so now I’ll make a stacked bar chart. ggplot() + geom_col(data = squirrels_above_below, aes(x = 1, y = location_prop, fill = location), position =&quot;fill&quot;, width = .5, color = &quot;white&quot;) + geom_text(data = squirrels_above_below, aes(x = 1, y = location_prop, label = location, group = location), color = &quot;white&quot;, position = position_stack(.8, reverse = FALSE)) + geom_col(data = squirrels_sight_measures, aes(x = 2, y = above_prop, fill = height_category), position = position_fill(reverse = TRUE), width = .5, color = &quot;white&quot;) + geom_text(data = squirrels_sight_measures, aes(x = 2, y = above_prop, label = scales::percent(above_prop)), color = &quot;white&quot;, position = position_stack(.5)) + geom_segment(data = squirrels_above_below %&amp;gt;% filter(location == &quot;Ground Plane&quot;), aes(x = 1 + .5/2, xend = 2-.5/2, y = location_prop, yend = 0), color = &quot;white&quot;) + geom_segment(aes(x = 1 + .5/2, xend = 2-.5/2, y = .999, yend = .999), color = &quot;white&quot;) + labs( title = &quot;Most squirrels are spoted at ground level&quot;, subtitle = &quot;But the ones that are seen above can go really high&quot;, caption = &quot;Source: NYC Squirrel Census&quot; ) + scale_fill_manual(&quot;Height of\n sighting&quot;, values = c(&quot;&amp;gt;20&quot; = &quot;#08519c&quot;, &quot;15-20&quot; = &quot;#3182bd&quot;, &quot;10-15&quot; = &quot;#6baed6&quot;, &quot;5-10&quot; = &quot;#9ecae1&quot;, &quot;0-5&quot; = &quot;#c6dbef&quot;, &quot;Unknown&quot; = &quot;grey60&quot;, &quot;Above Ground&quot; = &quot;darkblue&quot;, &quot;Ground Plane&quot; = &quot;grey30&quot;), breaks=c(&quot;&amp;gt;20&quot;, &quot;15-20&quot;, &quot;10-15&quot;, &quot;5-10&quot;, &quot;0-5&quot;, &quot;Unknown&quot;, NULL, NULL)) + scale_y_continuous(NULL, labels = scales::percent) + scale_x_continuous(NULL, labels = NULL, breaks = NULL, expand = c(.1,.1)) + theme(panel.background = element_rect(fill = &quot;grey10&quot;), panel.grid = element_blank())</summary></entry><entry><title type="html">Makeover Monday 28/10/2019 World Cities Ranked by Annual Sunshine Hours</title><link href="https://jorgel-mendes.github.io/Behold-the-Vision/makeover%20monday/Makeover-Mondays-Sunshine/" rel="alternate" type="text/html" title="Makeover Monday 28/10/2019 World Cities Ranked by Annual Sunshine Hours" /><published>2019-10-28T00:00:00+00:00</published><updated>2019-10-28T00:00:00+00:00</updated><id>https://jorgel-mendes.github.io/Behold-the-Vision/makeover%20monday/Makeover-Mondays-Sunshine</id><content type="html" xml:base="https://jorgel-mendes.github.io/Behold-the-Vision/makeover%20monday/Makeover-Mondays-Sunshine/">&lt;h1 id=&quot;week-44-world-cities-ranked-by-annual-sunshine-hours&quot;&gt;Week 44 World Cities Ranked by Annual Sunshine Hours&lt;/h1&gt;

&lt;p&gt;Data from &lt;a href=&quot;https://data.world/makeovermonday/2019w44&quot;&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;h1 id=&quot;load-packages-and-import-data&quot;&gt;Load packages and import data&lt;/h1&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pandas&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;altair&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read_excel&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'https://query.data.world/s/k5e6ouinen6qpkowpudpowkepydrah'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div&gt;
&lt;style scoped=&quot;&quot;&gt;
    .dataframe tbody tr th:only-of-type {
        vertical-align: middle;
    }

    .dataframe tbody tr th {
        vertical-align: top;
    }

    .dataframe thead th {
        text-align: right;
    }
&lt;/style&gt;
&lt;table border=&quot;1&quot; class=&quot;dataframe&quot;&gt;
  &lt;thead&gt;
    &lt;tr style=&quot;text-align: right;&quot;&gt;
      &lt;th&gt;&lt;/th&gt;
      &lt;th&gt;Continent&lt;/th&gt;
      &lt;th&gt;Country&lt;/th&gt;
      &lt;th&gt;City&lt;/th&gt;
      &lt;th&gt;Jan&lt;/th&gt;
      &lt;th&gt;Feb&lt;/th&gt;
      &lt;th&gt;Mar&lt;/th&gt;
      &lt;th&gt;Apr&lt;/th&gt;
      &lt;th&gt;May&lt;/th&gt;
      &lt;th&gt;Jun&lt;/th&gt;
      &lt;th&gt;Jul&lt;/th&gt;
      &lt;th&gt;Aug&lt;/th&gt;
      &lt;th&gt;Sep&lt;/th&gt;
      &lt;th&gt;Oct&lt;/th&gt;
      &lt;th&gt;Nov&lt;/th&gt;
      &lt;th&gt;Dec&lt;/th&gt;
      &lt;th&gt;Year&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;th&gt;0&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Gagnoa&lt;/td&gt;
      &lt;td&gt;183.0&lt;/td&gt;
      &lt;td&gt;180.0&lt;/td&gt;
      &lt;td&gt;196.0&lt;/td&gt;
      &lt;td&gt;188.0&lt;/td&gt;
      &lt;td&gt;181.0&lt;/td&gt;
      &lt;td&gt;118.0&lt;/td&gt;
      &lt;td&gt;97.0&lt;/td&gt;
      &lt;td&gt;80.0&lt;/td&gt;
      &lt;td&gt;110.0&lt;/td&gt;
      &lt;td&gt;155.0&lt;/td&gt;
      &lt;td&gt;171.0&lt;/td&gt;
      &lt;td&gt;164.0&lt;/td&gt;
      &lt;td&gt;1823.0&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;1&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Bouaké&lt;/td&gt;
      &lt;td&gt;242.0&lt;/td&gt;
      &lt;td&gt;224.0&lt;/td&gt;
      &lt;td&gt;219.0&lt;/td&gt;
      &lt;td&gt;194.0&lt;/td&gt;
      &lt;td&gt;208.0&lt;/td&gt;
      &lt;td&gt;145.0&lt;/td&gt;
      &lt;td&gt;104.0&lt;/td&gt;
      &lt;td&gt;82.0&lt;/td&gt;
      &lt;td&gt;115.0&lt;/td&gt;
      &lt;td&gt;170.0&lt;/td&gt;
      &lt;td&gt;191.0&lt;/td&gt;
      &lt;td&gt;198.0&lt;/td&gt;
      &lt;td&gt;2092.0&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;2&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Abidjan&lt;/td&gt;
      &lt;td&gt;223.0&lt;/td&gt;
      &lt;td&gt;223.0&lt;/td&gt;
      &lt;td&gt;239.0&lt;/td&gt;
      &lt;td&gt;214.0&lt;/td&gt;
      &lt;td&gt;205.0&lt;/td&gt;
      &lt;td&gt;128.0&lt;/td&gt;
      &lt;td&gt;137.0&lt;/td&gt;
      &lt;td&gt;125.0&lt;/td&gt;
      &lt;td&gt;139.0&lt;/td&gt;
      &lt;td&gt;215.0&lt;/td&gt;
      &lt;td&gt;224.0&lt;/td&gt;
      &lt;td&gt;224.0&lt;/td&gt;
      &lt;td&gt;2296.0&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;3&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Odienné&lt;/td&gt;
      &lt;td&gt;242.0&lt;/td&gt;
      &lt;td&gt;220.2&lt;/td&gt;
      &lt;td&gt;217.3&lt;/td&gt;
      &lt;td&gt;214.7&lt;/td&gt;
      &lt;td&gt;248.8&lt;/td&gt;
      &lt;td&gt;221.8&lt;/td&gt;
      &lt;td&gt;183.5&lt;/td&gt;
      &lt;td&gt;174.5&lt;/td&gt;
      &lt;td&gt;185.4&lt;/td&gt;
      &lt;td&gt;235.8&lt;/td&gt;
      &lt;td&gt;252.0&lt;/td&gt;
      &lt;td&gt;242.6&lt;/td&gt;
      &lt;td&gt;2638.6&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;4&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Ferké&lt;/td&gt;
      &lt;td&gt;279.0&lt;/td&gt;
      &lt;td&gt;249.0&lt;/td&gt;
      &lt;td&gt;253.0&lt;/td&gt;
      &lt;td&gt;229.0&lt;/td&gt;
      &lt;td&gt;251.0&lt;/td&gt;
      &lt;td&gt;221.0&lt;/td&gt;
      &lt;td&gt;183.0&lt;/td&gt;
      &lt;td&gt;151.0&lt;/td&gt;
      &lt;td&gt;173.0&lt;/td&gt;
      &lt;td&gt;245.0&lt;/td&gt;
      &lt;td&gt;261.0&lt;/td&gt;
      &lt;td&gt;262.0&lt;/td&gt;
      &lt;td&gt;2757.0&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;

&lt;p&gt;So we have a line for each country/city and a column for each month. In ggplot, and probably Altair, it’s not ideal, so I’ll try to create a &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;month&lt;/code&gt; column.&lt;/p&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;df_pivot&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;melt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;([&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Continent'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;'Country'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;'City'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;'Year'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;var_name&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;'Month'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;value_name&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;'Sunshine'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_pivot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div&gt;
&lt;style scoped=&quot;&quot;&gt;
    .dataframe tbody tr th:only-of-type {
        vertical-align: middle;
    }

    .dataframe tbody tr th {
        vertical-align: top;
    }

    .dataframe thead th {
        text-align: right;
    }
&lt;/style&gt;
&lt;table border=&quot;1&quot; class=&quot;dataframe&quot;&gt;
  &lt;thead&gt;
    &lt;tr style=&quot;text-align: right;&quot;&gt;
      &lt;th&gt;&lt;/th&gt;
      &lt;th&gt;Continent&lt;/th&gt;
      &lt;th&gt;Country&lt;/th&gt;
      &lt;th&gt;City&lt;/th&gt;
      &lt;th&gt;Year&lt;/th&gt;
      &lt;th&gt;Month&lt;/th&gt;
      &lt;th&gt;Sunshine&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;th&gt;0&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Gagnoa&lt;/td&gt;
      &lt;td&gt;1823.0&lt;/td&gt;
      &lt;td&gt;Jan&lt;/td&gt;
      &lt;td&gt;183.0&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;1&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Bouaké&lt;/td&gt;
      &lt;td&gt;2092.0&lt;/td&gt;
      &lt;td&gt;Jan&lt;/td&gt;
      &lt;td&gt;242.0&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;2&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Abidjan&lt;/td&gt;
      &lt;td&gt;2296.0&lt;/td&gt;
      &lt;td&gt;Jan&lt;/td&gt;
      &lt;td&gt;223.0&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;3&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Odienné&lt;/td&gt;
      &lt;td&gt;2638.6&lt;/td&gt;
      &lt;td&gt;Jan&lt;/td&gt;
      &lt;td&gt;242.0&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;4&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Ferké&lt;/td&gt;
      &lt;td&gt;2757.0&lt;/td&gt;
      &lt;td&gt;Jan&lt;/td&gt;
      &lt;td&gt;279.0&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;

&lt;p&gt;Now creating variables for minimum/maximum monthly sunshine.&lt;/p&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;c1&quot;&gt;#### data frame with max vs min sunshine time
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_plot&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;drop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;columns&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Year'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_plot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'max_sunshine'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_plot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;loc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[:,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;'Jan'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Dec'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;].&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;max&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_plot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'min_sunshine'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_plot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;loc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[:,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;'Jan'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Dec'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;].&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;min&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_plot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div&gt;
&lt;style scoped=&quot;&quot;&gt;
    .dataframe tbody tr th:only-of-type {
        vertical-align: middle;
    }

    .dataframe tbody tr th {
        vertical-align: top;
    }

    .dataframe thead th {
        text-align: right;
    }
&lt;/style&gt;
&lt;table border=&quot;1&quot; class=&quot;dataframe&quot;&gt;
  &lt;thead&gt;
    &lt;tr style=&quot;text-align: right;&quot;&gt;
      &lt;th&gt;&lt;/th&gt;
      &lt;th&gt;Continent&lt;/th&gt;
      &lt;th&gt;Country&lt;/th&gt;
      &lt;th&gt;City&lt;/th&gt;
      &lt;th&gt;Jan&lt;/th&gt;
      &lt;th&gt;Feb&lt;/th&gt;
      &lt;th&gt;Mar&lt;/th&gt;
      &lt;th&gt;Apr&lt;/th&gt;
      &lt;th&gt;May&lt;/th&gt;
      &lt;th&gt;Jun&lt;/th&gt;
      &lt;th&gt;Jul&lt;/th&gt;
      &lt;th&gt;Aug&lt;/th&gt;
      &lt;th&gt;Sep&lt;/th&gt;
      &lt;th&gt;Oct&lt;/th&gt;
      &lt;th&gt;Nov&lt;/th&gt;
      &lt;th&gt;Dec&lt;/th&gt;
      &lt;th&gt;max_sunshine&lt;/th&gt;
      &lt;th&gt;min_sunshine&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;th&gt;0&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Gagnoa&lt;/td&gt;
      &lt;td&gt;183.0&lt;/td&gt;
      &lt;td&gt;180.0&lt;/td&gt;
      &lt;td&gt;196.0&lt;/td&gt;
      &lt;td&gt;188.0&lt;/td&gt;
      &lt;td&gt;181.0&lt;/td&gt;
      &lt;td&gt;118.0&lt;/td&gt;
      &lt;td&gt;97.0&lt;/td&gt;
      &lt;td&gt;80.0&lt;/td&gt;
      &lt;td&gt;110.0&lt;/td&gt;
      &lt;td&gt;155.0&lt;/td&gt;
      &lt;td&gt;171.0&lt;/td&gt;
      &lt;td&gt;164.0&lt;/td&gt;
      &lt;td&gt;196.0&lt;/td&gt;
      &lt;td&gt;80.0&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;1&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Bouaké&lt;/td&gt;
      &lt;td&gt;242.0&lt;/td&gt;
      &lt;td&gt;224.0&lt;/td&gt;
      &lt;td&gt;219.0&lt;/td&gt;
      &lt;td&gt;194.0&lt;/td&gt;
      &lt;td&gt;208.0&lt;/td&gt;
      &lt;td&gt;145.0&lt;/td&gt;
      &lt;td&gt;104.0&lt;/td&gt;
      &lt;td&gt;82.0&lt;/td&gt;
      &lt;td&gt;115.0&lt;/td&gt;
      &lt;td&gt;170.0&lt;/td&gt;
      &lt;td&gt;191.0&lt;/td&gt;
      &lt;td&gt;198.0&lt;/td&gt;
      &lt;td&gt;242.0&lt;/td&gt;
      &lt;td&gt;82.0&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;2&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Abidjan&lt;/td&gt;
      &lt;td&gt;223.0&lt;/td&gt;
      &lt;td&gt;223.0&lt;/td&gt;
      &lt;td&gt;239.0&lt;/td&gt;
      &lt;td&gt;214.0&lt;/td&gt;
      &lt;td&gt;205.0&lt;/td&gt;
      &lt;td&gt;128.0&lt;/td&gt;
      &lt;td&gt;137.0&lt;/td&gt;
      &lt;td&gt;125.0&lt;/td&gt;
      &lt;td&gt;139.0&lt;/td&gt;
      &lt;td&gt;215.0&lt;/td&gt;
      &lt;td&gt;224.0&lt;/td&gt;
      &lt;td&gt;224.0&lt;/td&gt;
      &lt;td&gt;239.0&lt;/td&gt;
      &lt;td&gt;125.0&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;3&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Odienné&lt;/td&gt;
      &lt;td&gt;242.0&lt;/td&gt;
      &lt;td&gt;220.2&lt;/td&gt;
      &lt;td&gt;217.3&lt;/td&gt;
      &lt;td&gt;214.7&lt;/td&gt;
      &lt;td&gt;248.8&lt;/td&gt;
      &lt;td&gt;221.8&lt;/td&gt;
      &lt;td&gt;183.5&lt;/td&gt;
      &lt;td&gt;174.5&lt;/td&gt;
      &lt;td&gt;185.4&lt;/td&gt;
      &lt;td&gt;235.8&lt;/td&gt;
      &lt;td&gt;252.0&lt;/td&gt;
      &lt;td&gt;242.6&lt;/td&gt;
      &lt;td&gt;252.0&lt;/td&gt;
      &lt;td&gt;174.5&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;th&gt;4&lt;/th&gt;
      &lt;td&gt;Africa&lt;/td&gt;
      &lt;td&gt;Ivory Coast&lt;/td&gt;
      &lt;td&gt;Ferké&lt;/td&gt;
      &lt;td&gt;279.0&lt;/td&gt;
      &lt;td&gt;249.0&lt;/td&gt;
      &lt;td&gt;253.0&lt;/td&gt;
      &lt;td&gt;229.0&lt;/td&gt;
      &lt;td&gt;251.0&lt;/td&gt;
      &lt;td&gt;221.0&lt;/td&gt;
      &lt;td&gt;183.0&lt;/td&gt;
      &lt;td&gt;151.0&lt;/td&gt;
      &lt;td&gt;173.0&lt;/td&gt;
      &lt;td&gt;245.0&lt;/td&gt;
      &lt;td&gt;261.0&lt;/td&gt;
      &lt;td&gt;262.0&lt;/td&gt;
      &lt;td&gt;279.0&lt;/td&gt;
      &lt;td&gt;151.0&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;/div&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;selection&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;selection_multi&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fields&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Continent'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;condition&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;selection&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                    &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Color&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Continent:N'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;
                    &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;value&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'lightgray'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;base_chart&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Chart&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_plot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mark_point&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;().&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;encode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'min_sunshine'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Minimun monthly sunshine hours'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;X&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'max_sunshine'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Scale&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;domain&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;50&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;450&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]),&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Maximum monthly sunshine hours'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;tooltip&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Country'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'City'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;add_selection&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;selection&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;df_line&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;DataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;({&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'x'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;250&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;'y'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;150&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]})&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;v_line&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Chart&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mark_rule&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'black'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;strokeWidth&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;encode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'x:Q'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;h_line&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Chart&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mark_rule&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'black'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;strokeWidth&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;encode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'y:Q'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;chart&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;base_chart&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;v_line&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;h_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;configure&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;background&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'Snow'&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;properties&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'How does sunshine hours change between the sunniest and least sunny months?'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;600&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;height&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;450&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;configure_legend&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;orient&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'top'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;offset&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;5&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;configure_axis&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;grid&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;False&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;domain&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;False&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;titleFontSize&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;11&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;titleFontWeight&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'normal'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;titleColor&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'slategray'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;labelColor&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'slategray'&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;configure_view&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;strokeWidth&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;stroke&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'slategrey'&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;configure_title&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;fontSize&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;anchor&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'start'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'gray'&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;chart&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;save&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;../docs/assets/images/2019_10_28_MM.png&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;chart&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;save&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'2019_10_28_MM.html'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Static view of the plot as a png:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_28_MM.png&quot; alt=&quot;Static&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Interactive view:&lt;/p&gt;

&lt;div id=&quot;vis&quot;&gt;&lt;/div&gt;
&lt;script&gt;
  (function(vegaEmbed) {
    var spec = {&quot;config&quot;: {&quot;view&quot;: {&quot;width&quot;: 400, &quot;height&quot;: 300, &quot;stroke&quot;: &quot;slategrey&quot;, &quot;strokeWidth&quot;: 1}, &quot;mark&quot;: {&quot;tooltip&quot;: null}, &quot;axis&quot;: {&quot;domain&quot;: false, &quot;grid&quot;: false, &quot;labelColor&quot;: &quot;slategray&quot;, &quot;titleColor&quot;: &quot;slategray&quot;, &quot;titleFontSize&quot;: 11, &quot;titleFontWeight&quot;: &quot;normal&quot;}, &quot;background&quot;: &quot;Snow&quot;, &quot;legend&quot;: {&quot;offset&quot;: 5, &quot;orient&quot;: &quot;top&quot;, &quot;title&quot;: null}, &quot;title&quot;: {&quot;anchor&quot;: &quot;start&quot;, &quot;color&quot;: &quot;gray&quot;, &quot;fontSize&quot;: 15}}, &quot;layer&quot;: [{&quot;data&quot;: {&quot;name&quot;: &quot;data-2ef48ac15845f2097af12a5da817b68a&quot;}, &quot;mark&quot;: &quot;point&quot;, &quot;encoding&quot;: {&quot;color&quot;: {&quot;condition&quot;: {&quot;type&quot;: &quot;nominal&quot;, &quot;field&quot;: &quot;Continent&quot;, &quot;selection&quot;: &quot;selector001&quot;}, &quot;value&quot;: &quot;lightgray&quot;}, &quot;tooltip&quot;: [{&quot;type&quot;: &quot;nominal&quot;, &quot;field&quot;: &quot;Country&quot;}, {&quot;type&quot;: &quot;nominal&quot;, &quot;field&quot;: &quot;City&quot;}], &quot;x&quot;: {&quot;type&quot;: &quot;quantitative&quot;, &quot;field&quot;: &quot;max_sunshine&quot;, &quot;scale&quot;: {&quot;domain&quot;: [50, 450]}, &quot;title&quot;: &quot;Maximum monthly sunshine hours&quot;}, &quot;y&quot;: {&quot;type&quot;: &quot;quantitative&quot;, &quot;field&quot;: &quot;min_sunshine&quot;, &quot;title&quot;: &quot;Minimun monthly sunshine hours&quot;}}, &quot;selection&quot;: {&quot;selector001&quot;: {&quot;type&quot;: &quot;multi&quot;, &quot;fields&quot;: [&quot;Continent&quot;]}}}, {&quot;data&quot;: {&quot;name&quot;: &quot;data-61c5f85c1114f9505a2bee7885c31dad&quot;}, &quot;mark&quot;: {&quot;type&quot;: &quot;rule&quot;, &quot;color&quot;: &quot;black&quot;, &quot;strokeWidth&quot;: 1}, &quot;encoding&quot;: {&quot;x&quot;: {&quot;type&quot;: &quot;quantitative&quot;, &quot;field&quot;: &quot;x&quot;}}}, {&quot;data&quot;: {&quot;name&quot;: &quot;data-61c5f85c1114f9505a2bee7885c31dad&quot;}, &quot;mark&quot;: {&quot;type&quot;: &quot;rule&quot;, &quot;color&quot;: &quot;black&quot;, &quot;strokeWidth&quot;: 1}, &quot;encoding&quot;: {&quot;y&quot;: {&quot;type&quot;: &quot;quantitative&quot;, &quot;field&quot;: &quot;y&quot;}}}], &quot;height&quot;: 450, &quot;title&quot;: &quot;How does sunshine hours change between the sunniest and least sunny months?&quot;, &quot;width&quot;: 600, &quot;$schema&quot;: &quot;https://vega.github.io/schema/vega-lite/v3.4.0.json&quot;, &quot;datasets&quot;: {&quot;data-2ef48ac15845f2097af12a5da817b68a&quot;: [{&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Ivory Coast&quot;, &quot;City&quot;: &quot;Gagnoa&quot;, &quot;Jan&quot;: 183.0, &quot;Feb&quot;: 180.0, &quot;Mar&quot;: 196.0, &quot;Apr&quot;: 188.0, &quot;May&quot;: 181.0, &quot;Jun&quot;: 118.0, &quot;Jul&quot;: 97.0, &quot;Aug&quot;: 80.0, &quot;Sep&quot;: 110.0, &quot;Oct&quot;: 155.0, &quot;Nov&quot;: 171.0, &quot;Dec&quot;: 164.0, &quot;max_sunshine&quot;: 196.0, &quot;min_sunshine&quot;: 80.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Ivory Coast&quot;, &quot;City&quot;: &quot;Bouak\u00e9&quot;, &quot;Jan&quot;: 242.0, &quot;Feb&quot;: 224.0, &quot;Mar&quot;: 219.0, &quot;Apr&quot;: 194.0, &quot;May&quot;: 208.0, &quot;Jun&quot;: 145.0, &quot;Jul&quot;: 104.0, &quot;Aug&quot;: 82.0, &quot;Sep&quot;: 115.0, &quot;Oct&quot;: 170.0, &quot;Nov&quot;: 191.0, &quot;Dec&quot;: 198.0, &quot;max_sunshine&quot;: 242.0, &quot;min_sunshine&quot;: 82.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Ivory Coast&quot;, &quot;City&quot;: &quot;Abidjan&quot;, &quot;Jan&quot;: 223.0, &quot;Feb&quot;: 223.0, &quot;Mar&quot;: 239.0, &quot;Apr&quot;: 214.0, &quot;May&quot;: 205.0, &quot;Jun&quot;: 128.0, &quot;Jul&quot;: 137.0, &quot;Aug&quot;: 125.0, &quot;Sep&quot;: 139.0, &quot;Oct&quot;: 215.0, &quot;Nov&quot;: 224.0, &quot;Dec&quot;: 224.0, &quot;max_sunshine&quot;: 239.0, &quot;min_sunshine&quot;: 125.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Ivory Coast&quot;, &quot;City&quot;: &quot;Odienn\u00e9&quot;, &quot;Jan&quot;: 242.0, &quot;Feb&quot;: 220.2, &quot;Mar&quot;: 217.3, &quot;Apr&quot;: 214.7, &quot;May&quot;: 248.8, &quot;Jun&quot;: 221.8, &quot;Jul&quot;: 183.5, &quot;Aug&quot;: 174.5, &quot;Sep&quot;: 185.4, &quot;Oct&quot;: 235.8, &quot;Nov&quot;: 252.0, &quot;Dec&quot;: 242.6, &quot;max_sunshine&quot;: 252.0, &quot;min_sunshine&quot;: 174.5}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Ivory Coast&quot;, &quot;City&quot;: &quot;Ferk\u00e9&quot;, &quot;Jan&quot;: 279.0, &quot;Feb&quot;: 249.0, &quot;Mar&quot;: 253.0, &quot;Apr&quot;: 229.0, &quot;May&quot;: 251.0, &quot;Jun&quot;: 221.0, &quot;Jul&quot;: 183.0, &quot;Aug&quot;: 151.0, &quot;Sep&quot;: 173.0, &quot;Oct&quot;: 245.0, &quot;Nov&quot;: 261.0, &quot;Dec&quot;: 262.0, &quot;max_sunshine&quot;: 279.0, &quot;min_sunshine&quot;: 151.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Benin&quot;, &quot;City&quot;: &quot;Cotonou&quot;, &quot;Jan&quot;: 213.9, &quot;Feb&quot;: 210.0, &quot;Mar&quot;: 223.2, &quot;Apr&quot;: 219.0, &quot;May&quot;: 213.9, &quot;Jun&quot;: 141.0, &quot;Jul&quot;: 136.4, &quot;Aug&quot;: 148.8, &quot;Sep&quot;: 165.0, &quot;Oct&quot;: 207.7, &quot;Nov&quot;: 243.0, &quot;Dec&quot;: 223.2, &quot;max_sunshine&quot;: 243.0, &quot;min_sunshine&quot;: 136.4}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Benin&quot;, &quot;City&quot;: &quot;Parakou&quot;, &quot;Jan&quot;: 261.0, &quot;Feb&quot;: 243.0, &quot;Mar&quot;: 252.0, &quot;Apr&quot;: 230.0, &quot;May&quot;: 239.0, &quot;Jun&quot;: 193.0, &quot;Jul&quot;: 133.0, &quot;Aug&quot;: 104.0, &quot;Sep&quot;: 129.0, &quot;Oct&quot;: 217.0, &quot;Nov&quot;: 252.0, &quot;Dec&quot;: 248.0, &quot;max_sunshine&quot;: 261.0, &quot;min_sunshine&quot;: 104.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Benin&quot;, &quot;City&quot;: &quot;Kandi&quot;, &quot;Jan&quot;: 279.0, &quot;Feb&quot;: 257.6, &quot;Mar&quot;: 260.4, &quot;Apr&quot;: 255.0, &quot;May&quot;: 272.8, &quot;Jun&quot;: 252.0, &quot;Jul&quot;: 223.2, &quot;Aug&quot;: 195.3, &quot;Sep&quot;: 213.0, &quot;Oct&quot;: 275.9, &quot;Nov&quot;: 282.0, &quot;Dec&quot;: 279.0, &quot;max_sunshine&quot;: 282.0, &quot;min_sunshine&quot;: 195.3}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Togo&quot;, &quot;City&quot;: &quot;Lom\u00e9&quot;, &quot;Jan&quot;: 217.5, &quot;Feb&quot;: 214.0, &quot;Mar&quot;: 227.9, &quot;Apr&quot;: 201.9, &quot;May&quot;: 208.6, &quot;Jun&quot;: 146.0, &quot;Jul&quot;: 141.6, &quot;Aug&quot;: 148.8, &quot;Sep&quot;: 152.5, &quot;Oct&quot;: 205.5, &quot;Nov&quot;: 234.0, &quot;Dec&quot;: 235.6, &quot;max_sunshine&quot;: 235.6, &quot;min_sunshine&quot;: 141.6}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Togo&quot;, &quot;City&quot;: &quot;Mango&quot;, &quot;Jan&quot;: 285.0, &quot;Feb&quot;: 254.0, &quot;Mar&quot;: 270.0, &quot;Apr&quot;: 241.0, &quot;May&quot;: 261.0, &quot;Jun&quot;: 219.0, &quot;Jul&quot;: 168.0, &quot;Aug&quot;: 131.0, &quot;Sep&quot;: 161.0, &quot;Oct&quot;: 273.0, &quot;Nov&quot;: 284.0, &quot;Dec&quot;: 279.0, &quot;max_sunshine&quot;: 285.0, &quot;min_sunshine&quot;: 131.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Ghana&quot;, &quot;City&quot;: &quot;Accra&quot;, &quot;Jan&quot;: 217.0, &quot;Feb&quot;: 226.0, &quot;Mar&quot;: 217.0, &quot;Apr&quot;: 210.0, &quot;May&quot;: 217.0, &quot;Jun&quot;: 150.0, &quot;Jul&quot;: 155.0, &quot;Aug&quot;: 155.0, &quot;Sep&quot;: 180.0, &quot;Oct&quot;: 217.0, &quot;Nov&quot;: 240.0, &quot;Dec&quot;: 248.0, &quot;max_sunshine&quot;: 248.0, &quot;min_sunshine&quot;: 150.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Ghana&quot;, &quot;City&quot;: &quot;Tamale&quot;, &quot;Jan&quot;: 265.6, &quot;Feb&quot;: 235.7, &quot;Mar&quot;: 249.6, &quot;Apr&quot;: 229.0, &quot;May&quot;: 248.0, &quot;Jun&quot;: 212.0, &quot;Jul&quot;: 171.5, &quot;Aug&quot;: 139.0, &quot;Sep&quot;: 161.0, &quot;Oct&quot;: 260.9, &quot;Nov&quot;: 283.0, &quot;Dec&quot;: 263.5, &quot;max_sunshine&quot;: 283.0, &quot;min_sunshine&quot;: 139.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Ghana&quot;, &quot;City&quot;: &quot;Kumasi&quot;, &quot;Jan&quot;: 186.6, &quot;Feb&quot;: 187.2, &quot;Mar&quot;: 205.4, &quot;Apr&quot;: 204.0, &quot;May&quot;: 204.7, &quot;Jun&quot;: 146.3, &quot;Jul&quot;: 101.2, &quot;Aug&quot;: 77.0, &quot;Sep&quot;: 106.2, &quot;Oct&quot;: 161.4, &quot;Nov&quot;: 193.8, &quot;Dec&quot;: 178.0, &quot;max_sunshine&quot;: 205.4, &quot;min_sunshine&quot;: 77.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Cameroon&quot;, &quot;City&quot;: &quot;Garoua&quot;, &quot;Jan&quot;: 275.0, &quot;Feb&quot;: 252.6, &quot;Mar&quot;: 260.1, &quot;Apr&quot;: 245.4, &quot;May&quot;: 256.7, &quot;Jun&quot;: 224.4, &quot;Jul&quot;: 194.0, &quot;Aug&quot;: 187.2, &quot;Sep&quot;: 204.5, &quot;Oct&quot;: 261.5, &quot;Nov&quot;: 279.2, &quot;Dec&quot;: 286.5, &quot;max_sunshine&quot;: 286.5, &quot;min_sunshine&quot;: 187.2}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Cameroon&quot;, &quot;City&quot;: &quot;N'Gaound\u00e9r\u00e9&quot;, &quot;Jan&quot;: 286.4, &quot;Feb&quot;: 258.7, &quot;Mar&quot;: 235.4, &quot;Apr&quot;: 195.5, &quot;May&quot;: 195.4, &quot;Jun&quot;: 165.7, &quot;Jul&quot;: 128.0, &quot;Aug&quot;: 127.8, &quot;Sep&quot;: 139.0, &quot;Oct&quot;: 184.0, &quot;Nov&quot;: 264.1, &quot;Dec&quot;: 291.4, &quot;max_sunshine&quot;: 291.4, &quot;min_sunshine&quot;: 127.8}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Cameroon&quot;, &quot;City&quot;: &quot;Douala&quot;, &quot;Jan&quot;: 184.0, &quot;Feb&quot;: 179.0, &quot;Mar&quot;: 170.0, &quot;Apr&quot;: 174.0, &quot;May&quot;: 169.0, &quot;Jun&quot;: 107.0, &quot;Jul&quot;: 55.0, &quot;Aug&quot;: 46.0, &quot;Sep&quot;: 79.0, &quot;Oct&quot;: 120.0, &quot;Nov&quot;: 160.0, &quot;Dec&quot;: 175.0, &quot;max_sunshine&quot;: 184.0, &quot;min_sunshine&quot;: 46.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Cameroon&quot;, &quot;City&quot;: &quot;Yaound\u00e9&quot;, &quot;Jan&quot;: 177.0, &quot;Feb&quot;: 172.0, &quot;Mar&quot;: 149.0, &quot;Apr&quot;: 153.0, &quot;May&quot;: 158.0, &quot;Jun&quot;: 112.0, &quot;Jul&quot;: 85.0, &quot;Aug&quot;: 83.0, &quot;Sep&quot;: 97.0, &quot;Oct&quot;: 120.0, &quot;Nov&quot;: 159.0, &quot;Dec&quot;: 179.0, &quot;max_sunshine&quot;: 179.0, &quot;min_sunshine&quot;: 83.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Gabon&quot;, &quot;City&quot;: &quot;Libreville&quot;, &quot;Jan&quot;: 175.2, &quot;Feb&quot;: 176.8, &quot;Mar&quot;: 176.9, &quot;Apr&quot;: 176.8, &quot;May&quot;: 159.5, &quot;Jun&quot;: 130.6, &quot;Jul&quot;: 119.2, &quot;Aug&quot;: 90.4, &quot;Sep&quot;: 95.9, &quot;Oct&quot;: 112.9, &quot;Nov&quot;: 134.6, &quot;Dec&quot;: 167.8, &quot;max_sunshine&quot;: 176.9, &quot;min_sunshine&quot;: 90.4}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Gabon&quot;, &quot;City&quot;: &quot;Port-Gentil&quot;, &quot;Jan&quot;: 150.4, &quot;Feb&quot;: 160.8, &quot;Mar&quot;: 154.5, &quot;Apr&quot;: 151.5, &quot;May&quot;: 147.8, &quot;Jun&quot;: 156.3, &quot;Jul&quot;: 163.1, &quot;Aug&quot;: 135.3, &quot;Sep&quot;: 125.7, &quot;Oct&quot;: 116.1, &quot;Nov&quot;: 115.1, &quot;Dec&quot;: 147.2, &quot;max_sunshine&quot;: 163.1, &quot;min_sunshine&quot;: 115.1}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Nigeria&quot;, &quot;City&quot;: &quot;Lagos&quot;, &quot;Jan&quot;: 164.3, &quot;Feb&quot;: 169.5, &quot;Mar&quot;: 173.6, &quot;Apr&quot;: 180.0, &quot;May&quot;: 176.7, &quot;Jun&quot;: 114.0, &quot;Jul&quot;: 99.2, &quot;Aug&quot;: 108.5, &quot;Sep&quot;: 114.0, &quot;Oct&quot;: 167.4, &quot;Nov&quot;: 186.0, &quot;Dec&quot;: 192.2, &quot;max_sunshine&quot;: 192.2, &quot;min_sunshine&quot;: 99.2}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Nigeria&quot;, &quot;City&quot;: &quot;Makurdi&quot;, &quot;Jan&quot;: 236.0, &quot;Feb&quot;: 226.0, &quot;Mar&quot;: 223.0, &quot;Apr&quot;: 216.0, &quot;May&quot;: 223.0, &quot;Jun&quot;: 177.0, &quot;Jul&quot;: 143.0, &quot;Aug&quot;: 118.0, &quot;Sep&quot;: 144.0, &quot;Oct&quot;: 198.0, &quot;Nov&quot;: 228.0, &quot;Dec&quot;: 248.0, &quot;max_sunshine&quot;: 248.0, &quot;min_sunshine&quot;: 118.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Nigeria&quot;, &quot;City&quot;: &quot;Jos&quot;, &quot;Jan&quot;: 307.0, &quot;Feb&quot;: 274.0, &quot;Mar&quot;: 260.0, &quot;Apr&quot;: 220.0, &quot;May&quot;: 208.0, &quot;Jun&quot;: 201.0, &quot;Jul&quot;: 151.0, &quot;Aug&quot;: 127.0, &quot;Sep&quot;: 171.0, &quot;Oct&quot;: 242.0, &quot;Nov&quot;: 294.0, &quot;Dec&quot;: 313.0, &quot;max_sunshine&quot;: 313.0, &quot;min_sunshine&quot;: 127.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Nigeria&quot;, &quot;City&quot;: &quot;Kano&quot;, &quot;Jan&quot;: 275.0, &quot;Feb&quot;: 255.0, &quot;Mar&quot;: 267.0, &quot;Apr&quot;: 252.0, &quot;May&quot;: 273.0, &quot;Jun&quot;: 261.0, &quot;Jul&quot;: 233.0, &quot;Aug&quot;: 186.0, &quot;Sep&quot;: 237.0, &quot;Oct&quot;: 295.0, &quot;Nov&quot;: 297.0, &quot;Dec&quot;: 285.0, &quot;max_sunshine&quot;: 297.0, &quot;min_sunshine&quot;: 186.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Nigeria&quot;, &quot;City&quot;: &quot;Sokoto&quot;, &quot;Jan&quot;: 279.0, &quot;Feb&quot;: 269.0, &quot;Mar&quot;: 282.0, &quot;Apr&quot;: 255.0, &quot;May&quot;: 279.0, &quot;Jun&quot;: 282.0, &quot;Jul&quot;: 229.0, &quot;Aug&quot;: 208.0, &quot;Sep&quot;: 243.0, &quot;Oct&quot;: 307.0, &quot;Nov&quot;: 297.0, &quot;Dec&quot;: 288.0, &quot;max_sunshine&quot;: 307.0, &quot;min_sunshine&quot;: 208.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Sudan&quot;, &quot;City&quot;: &quot;Port Sudan&quot;, &quot;Jan&quot;: 214.0, &quot;Feb&quot;: 230.0, &quot;Mar&quot;: 282.0, &quot;Apr&quot;: 312.0, &quot;May&quot;: 338.0, &quot;Jun&quot;: 309.0, &quot;Jul&quot;: 307.0, &quot;Aug&quot;: 298.0, &quot;Sep&quot;: 300.0, &quot;Oct&quot;: 307.0, &quot;Nov&quot;: 249.0, &quot;Dec&quot;: 236.0, &quot;max_sunshine&quot;: 338.0, &quot;min_sunshine&quot;: 214.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Sudan&quot;, &quot;City&quot;: &quot;Khartoum&quot;, &quot;Jan&quot;: 341.0, &quot;Feb&quot;: 311.0, &quot;Mar&quot;: 310.0, &quot;Apr&quot;: 330.0, &quot;May&quot;: 300.0, &quot;Jun&quot;: 300.0, &quot;Jul&quot;: 279.0, &quot;Aug&quot;: 279.0, &quot;Sep&quot;: 300.0, &quot;Oct&quot;: 310.0, &quot;Nov&quot;: 330.0, &quot;Dec&quot;: 341.0, &quot;max_sunshine&quot;: 341.0, &quot;min_sunshine&quot;: 279.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Eritrea&quot;, &quot;City&quot;: &quot;Asmara&quot;, &quot;Jan&quot;: 304.7, &quot;Feb&quot;: 289.1, &quot;Mar&quot;: 300.7, &quot;Apr&quot;: 300.5, &quot;May&quot;: 298.5, &quot;Jun&quot;: 271.5, &quot;Jul&quot;: 217.9, &quot;Aug&quot;: 220.1, &quot;Sep&quot;: 260.4, &quot;Oct&quot;: 301.0, &quot;Nov&quot;: 292.5, &quot;Dec&quot;: 299.1, &quot;max_sunshine&quot;: 304.7, &quot;min_sunshine&quot;: 217.9}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Burkina Faso&quot;, &quot;City&quot;: &quot;Ouagadougou&quot;, &quot;Jan&quot;: 287.0, &quot;Feb&quot;: 263.0, &quot;Mar&quot;: 264.0, &quot;Apr&quot;: 256.0, &quot;May&quot;: 277.0, &quot;Jun&quot;: 264.0, &quot;Jul&quot;: 240.0, &quot;Aug&quot;: 223.0, &quot;Sep&quot;: 217.0, &quot;Oct&quot;: 273.0, &quot;Nov&quot;: 288.0, &quot;Dec&quot;: 284.0, &quot;max_sunshine&quot;: 288.0, &quot;min_sunshine&quot;: 217.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Burkina Faso&quot;, &quot;City&quot;: &quot;Ouahigouya&quot;, &quot;Jan&quot;: 291.0, &quot;Feb&quot;: 267.0, &quot;Mar&quot;: 280.0, &quot;Apr&quot;: 268.0, &quot;May&quot;: 284.0, &quot;Jun&quot;: 272.0, &quot;Jul&quot;: 258.0, &quot;Aug&quot;: 253.0, &quot;Sep&quot;: 261.0, &quot;Oct&quot;: 280.0, &quot;Nov&quot;: 288.0, &quot;Dec&quot;: 280.0, &quot;max_sunshine&quot;: 291.0, &quot;min_sunshine&quot;: 253.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Niger&quot;, &quot;City&quot;: &quot;Niamey&quot;, &quot;Jan&quot;: 297.6, &quot;Feb&quot;: 263.2, &quot;Mar&quot;: 269.7, &quot;Apr&quot;: 252.0, &quot;May&quot;: 279.0, &quot;Jun&quot;: 267.0, &quot;Jul&quot;: 257.3, &quot;Aug&quot;: 235.6, &quot;Sep&quot;: 235.6, &quot;Oct&quot;: 282.6, &quot;Nov&quot;: 282.0, &quot;Dec&quot;: 279.0, &quot;max_sunshine&quot;: 297.6, &quot;min_sunshine&quot;: 235.6}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Chad&quot;, &quot;City&quot;: &quot;N'Djamena&quot;, &quot;Jan&quot;: 297.6, &quot;Feb&quot;: 277.2, &quot;Mar&quot;: 282.1, &quot;Apr&quot;: 273.0, &quot;May&quot;: 285.2, &quot;Jun&quot;: 258.0, &quot;Jul&quot;: 213.9, &quot;Aug&quot;: 201.5, &quot;Sep&quot;: 228.0, &quot;Oct&quot;: 285.2, &quot;Nov&quot;: 300.0, &quot;Dec&quot;: 303.8, &quot;max_sunshine&quot;: 303.8, &quot;min_sunshine&quot;: 201.5}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Chad&quot;, &quot;City&quot;: &quot;Ab\u00e9ch\u00e9&quot;, &quot;Jan&quot;: 316.2, &quot;Feb&quot;: 291.2, &quot;Mar&quot;: 300.7, &quot;Apr&quot;: 300.0, &quot;May&quot;: 313.1, &quot;Jun&quot;: 300.0, &quot;Jul&quot;: 254.2, &quot;Aug&quot;: 226.3, &quot;Sep&quot;: 261.0, &quot;Oct&quot;: 306.9, &quot;Nov&quot;: 312.0, &quot;Dec&quot;: 319.3, &quot;max_sunshine&quot;: 319.3, &quot;min_sunshine&quot;: 226.3}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Gambia&quot;, &quot;City&quot;: &quot;Banjul&quot;, &quot;Jan&quot;: 279.0, &quot;Feb&quot;: 282.0, &quot;Mar&quot;: 310.0, &quot;Apr&quot;: 300.0, &quot;May&quot;: 310.0, &quot;Jun&quot;: 270.0, &quot;Jul&quot;: 186.0, &quot;Aug&quot;: 186.0, &quot;Sep&quot;: 180.0, &quot;Oct&quot;: 248.0, &quot;Nov&quot;: 240.0, &quot;Dec&quot;: 279.0, &quot;max_sunshine&quot;: 310.0, &quot;min_sunshine&quot;: 180.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Senegal&quot;, &quot;City&quot;: &quot;Dakar&quot;, &quot;Jan&quot;: 253.0, &quot;Feb&quot;: 249.0, &quot;Mar&quot;: 303.0, &quot;Apr&quot;: 301.0, &quot;May&quot;: 299.0, &quot;Jun&quot;: 259.0, &quot;Jul&quot;: 233.0, &quot;Aug&quot;: 204.0, &quot;Sep&quot;: 219.0, &quot;Oct&quot;: 254.0, &quot;Nov&quot;: 256.0, &quot;Dec&quot;: 249.0, &quot;max_sunshine&quot;: 303.0, &quot;min_sunshine&quot;: 204.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Senegal&quot;, &quot;City&quot;: &quot;Thi\u00e8s&quot;, &quot;Jan&quot;: 267.0, &quot;Feb&quot;: 260.0, &quot;Mar&quot;: 325.0, &quot;Apr&quot;: 332.0, &quot;May&quot;: 324.0, &quot;Jun&quot;: 276.0, &quot;Jul&quot;: 226.0, &quot;Aug&quot;: 188.0, &quot;Sep&quot;: 221.0, &quot;Oct&quot;: 267.0, &quot;Nov&quot;: 271.0, &quot;Dec&quot;: 257.0, &quot;max_sunshine&quot;: 332.0, &quot;min_sunshine&quot;: 188.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Somalia&quot;, &quot;City&quot;: &quot;Mogadishu&quot;, &quot;Jan&quot;: 268.0, &quot;Feb&quot;: 251.0, &quot;Mar&quot;: 282.0, &quot;Apr&quot;: 260.0, &quot;May&quot;: 273.0, &quot;Jun&quot;: 218.0, &quot;Jul&quot;: 226.0, &quot;Aug&quot;: 253.0, &quot;Sep&quot;: 265.0, &quot;Oct&quot;: 267.0, &quot;Nov&quot;: 261.0, &quot;Dec&quot;: 259.0, &quot;max_sunshine&quot;: 282.0, &quot;min_sunshine&quot;: 218.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Somalia&quot;, &quot;City&quot;: &quot;Buloburde&quot;, &quot;Jan&quot;: 290.0, &quot;Feb&quot;: 283.0, &quot;Mar&quot;: 293.0, &quot;Apr&quot;: 249.0, &quot;May&quot;: 287.0, &quot;Jun&quot;: 261.0, &quot;Jul&quot;: 216.0, &quot;Aug&quot;: 238.0, &quot;Sep&quot;: 262.0, &quot;Oct&quot;: 230.0, &quot;Nov&quot;: 246.0, &quot;Dec&quot;: 268.0, &quot;max_sunshine&quot;: 293.0, &quot;min_sunshine&quot;: 216.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Djibouti&quot;, &quot;City&quot;: &quot;Djibouti City&quot;, &quot;Jan&quot;: 254.0, &quot;Feb&quot;: 249.0, &quot;Mar&quot;: 279.0, &quot;Apr&quot;: 279.0, &quot;May&quot;: 310.0, &quot;Jun&quot;: 237.0, &quot;Jul&quot;: 236.0, &quot;Aug&quot;: 276.0, &quot;Sep&quot;: 282.0, &quot;Oct&quot;: 310.0, &quot;Nov&quot;: 291.0, &quot;Dec&quot;: 276.0, &quot;max_sunshine&quot;: 310.0, &quot;min_sunshine&quot;: 236.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Mali&quot;, &quot;City&quot;: &quot;S\u00e9gou&quot;, &quot;Jan&quot;: 292.0, &quot;Feb&quot;: 276.0, &quot;Mar&quot;: 292.0, &quot;Apr&quot;: 263.0, &quot;May&quot;: 274.0, &quot;Jun&quot;: 266.0, &quot;Jul&quot;: 254.0, &quot;Aug&quot;: 223.0, &quot;Sep&quot;: 242.0, &quot;Oct&quot;: 283.0, &quot;Nov&quot;: 287.0, &quot;Dec&quot;: 287.0, &quot;max_sunshine&quot;: 292.0, &quot;min_sunshine&quot;: 223.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Mali&quot;, &quot;City&quot;: &quot;Timbuktu&quot;, &quot;Jan&quot;: 283.0, &quot;Feb&quot;: 288.0, &quot;Mar&quot;: 297.0, &quot;Apr&quot;: 283.0, &quot;May&quot;: 306.0, &quot;Jun&quot;: 284.0, &quot;Jul&quot;: 294.0, &quot;Aug&quot;: 281.0, &quot;Sep&quot;: 279.0, &quot;Oct&quot;: 291.0, &quot;Nov&quot;: 287.0, &quot;Dec&quot;: 276.0, &quot;max_sunshine&quot;: 306.0, &quot;min_sunshine&quot;: 276.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Mali&quot;, &quot;City&quot;: &quot;Bamako&quot;, &quot;Jan&quot;: 277.4, &quot;Feb&quot;: 253.0, &quot;Mar&quot;: 268.1, &quot;Apr&quot;: 230.4, &quot;May&quot;: 242.6, &quot;Jun&quot;: 233.6, &quot;Jul&quot;: 216.6, &quot;Aug&quot;: 218.3, &quot;Sep&quot;: 221.7, &quot;Oct&quot;: 253.7, &quot;Nov&quot;: 270.7, &quot;Dec&quot;: 268.9, &quot;max_sunshine&quot;: 277.4, &quot;min_sunshine&quot;: 216.6}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Algeria&quot;, &quot;City&quot;: &quot;Algiers&quot;, &quot;Jan&quot;: 149.0, &quot;Feb&quot;: 165.0, &quot;Mar&quot;: 202.0, &quot;Apr&quot;: 258.0, &quot;May&quot;: 319.0, &quot;Jun&quot;: 318.0, &quot;Jul&quot;: 350.0, &quot;Aug&quot;: 319.0, &quot;Sep&quot;: 237.0, &quot;Oct&quot;: 229.0, &quot;Nov&quot;: 165.0, &quot;Dec&quot;: 136.0, &quot;max_sunshine&quot;: 350.0, &quot;min_sunshine&quot;: 136.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Algeria&quot;, &quot;City&quot;: &quot;Tamanrasset&quot;, &quot;Jan&quot;: 297.6, &quot;Feb&quot;: 275.5, &quot;Mar&quot;: 322.4, &quot;Apr&quot;: 327.0, &quot;May&quot;: 328.6, &quot;Jun&quot;: 306.0, &quot;Jul&quot;: 356.5, &quot;Aug&quot;: 331.7, &quot;Sep&quot;: 288.0, &quot;Oct&quot;: 310.0, &quot;Nov&quot;: 285.0, &quot;Dec&quot;: 272.8, &quot;max_sunshine&quot;: 356.5, &quot;min_sunshine&quot;: 272.8}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Tunisia&quot;, &quot;City&quot;: &quot;Tunis&quot;, &quot;Jan&quot;: 145.7, &quot;Feb&quot;: 165.3, &quot;Mar&quot;: 198.4, &quot;Apr&quot;: 225.0, &quot;May&quot;: 282.1, &quot;Jun&quot;: 309.0, &quot;Jul&quot;: 356.5, &quot;Aug&quot;: 328.6, &quot;Sep&quot;: 258.0, &quot;Oct&quot;: 217.0, &quot;Nov&quot;: 174.0, &quot;Dec&quot;: 148.8, &quot;max_sunshine&quot;: 356.5, &quot;min_sunshine&quot;: 145.7}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Tunisia&quot;, &quot;City&quot;: &quot;Gabes&quot;, &quot;Jan&quot;: 220.1, &quot;Feb&quot;: 215.6, &quot;Mar&quot;: 251.1, &quot;Apr&quot;: 267.0, &quot;May&quot;: 313.1, &quot;Jun&quot;: 321.0, &quot;Jul&quot;: 372.0, &quot;Aug&quot;: 353.4, &quot;Sep&quot;: 279.0, &quot;Oct&quot;: 260.4, &quot;Nov&quot;: 228.0, &quot;Dec&quot;: 210.8, &quot;max_sunshine&quot;: 372.0, &quot;min_sunshine&quot;: 210.8}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Morocco&quot;, &quot;City&quot;: &quot;Rabat&quot;, &quot;Jan&quot;: 179.8, &quot;Feb&quot;: 183.6, &quot;Mar&quot;: 232.5, &quot;Apr&quot;: 255.0, &quot;May&quot;: 291.4, &quot;Jun&quot;: 288.0, &quot;Jul&quot;: 316.2, &quot;Aug&quot;: 306.9, &quot;Sep&quot;: 261.0, &quot;Oct&quot;: 235.6, &quot;Nov&quot;: 189.0, &quot;Dec&quot;: 179.8, &quot;max_sunshine&quot;: 316.2, &quot;min_sunshine&quot;: 179.8}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Morocco&quot;, &quot;City&quot;: &quot;Marrakech&quot;, &quot;Jan&quot;: 220.1, &quot;Feb&quot;: 211.8, &quot;Mar&quot;: 248.0, &quot;Apr&quot;: 255.0, &quot;May&quot;: 288.3, &quot;Jun&quot;: 315.0, &quot;Jul&quot;: 334.8, &quot;Aug&quot;: 316.2, &quot;Sep&quot;: 264.0, &quot;Oct&quot;: 244.9, &quot;Nov&quot;: 213.0, &quot;Dec&quot;: 220.1, &quot;max_sunshine&quot;: 334.8, &quot;min_sunshine&quot;: 211.8}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Morocco&quot;, &quot;City&quot;: &quot;Ouarzazate&quot;, &quot;Jan&quot;: 251.8, &quot;Feb&quot;: 244.9, &quot;Mar&quot;: 297.2, &quot;Apr&quot;: 315.2, &quot;May&quot;: 332.7, &quot;Jun&quot;: 335.0, &quot;Jul&quot;: 317.7, &quot;Aug&quot;: 293.2, &quot;Sep&quot;: 266.4, &quot;Oct&quot;: 271.3, &quot;Nov&quot;: 242.9, &quot;Dec&quot;: 248.1, &quot;max_sunshine&quot;: 335.0, &quot;min_sunshine&quot;: 242.9}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Egypt&quot;, &quot;City&quot;: &quot;Cairo&quot;, &quot;Jan&quot;: 229.4, &quot;Feb&quot;: 234.9, &quot;Mar&quot;: 279.0, &quot;Apr&quot;: 306.0, &quot;May&quot;: 331.7, &quot;Jun&quot;: 363.0, &quot;Jul&quot;: 372.0, &quot;Aug&quot;: 356.5, &quot;Sep&quot;: 318.0, &quot;Oct&quot;: 294.5, &quot;Nov&quot;: 246.0, &quot;Dec&quot;: 210.8, &quot;max_sunshine&quot;: 372.0, &quot;min_sunshine&quot;: 210.8}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Egypt&quot;, &quot;City&quot;: &quot;Alexandria&quot;, &quot;Jan&quot;: 217.0, &quot;Feb&quot;: 226.2, &quot;Mar&quot;: 279.0, &quot;Apr&quot;: 318.0, &quot;May&quot;: 337.9, &quot;Jun&quot;: 357.0, &quot;Jul&quot;: 372.0, &quot;Aug&quot;: 368.9, &quot;Sep&quot;: 333.0, &quot;Oct&quot;: 306.9, &quot;Nov&quot;: 246.0, &quot;Dec&quot;: 207.7, &quot;max_sunshine&quot;: 372.0, &quot;min_sunshine&quot;: 207.7}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Egypt&quot;, &quot;City&quot;: &quot;Helwan&quot;, &quot;Jan&quot;: 235.6, &quot;Feb&quot;: 246.5, &quot;Mar&quot;: 291.4, &quot;Apr&quot;: 318.0, &quot;May&quot;: 353.4, &quot;Jun&quot;: 384.0, &quot;Jul&quot;: 390.6, &quot;Aug&quot;: 375.1, &quot;Sep&quot;: 333.0, &quot;Oct&quot;: 303.8, &quot;Nov&quot;: 258.0, &quot;Dec&quot;: 235.6, &quot;max_sunshine&quot;: 390.6, &quot;min_sunshine&quot;: 235.6}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Libya&quot;, &quot;City&quot;: &quot;Tripoli&quot;, &quot;Jan&quot;: 206.0, &quot;Feb&quot;: 214.0, &quot;Mar&quot;: 237.0, &quot;Apr&quot;: 250.0, &quot;May&quot;: 315.0, &quot;Jun&quot;: 312.0, &quot;Jul&quot;: 376.0, &quot;Aug&quot;: 352.0, &quot;Sep&quot;: 271.0, &quot;Oct&quot;: 244.0, &quot;Nov&quot;: 212.0, &quot;Dec&quot;: 198.0, &quot;max_sunshine&quot;: 376.0, &quot;min_sunshine&quot;: 198.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Libya&quot;, &quot;City&quot;: &quot;Benghazi&quot;, &quot;Jan&quot;: 179.8, &quot;Feb&quot;: 192.0, &quot;Mar&quot;: 232.5, &quot;Apr&quot;: 252.0, &quot;May&quot;: 319.3, &quot;Jun&quot;: 327.0, &quot;Jul&quot;: 381.3, &quot;Aug&quot;: 365.8, &quot;Sep&quot;: 288.0, &quot;Oct&quot;: 251.1, &quot;Nov&quot;: 213.0, &quot;Dec&quot;: 167.4, &quot;max_sunshine&quot;: 381.3, &quot;min_sunshine&quot;: 167.4}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Kenya&quot;, &quot;City&quot;: &quot;Mombasa&quot;, &quot;Jan&quot;: 269.7, &quot;Feb&quot;: 257.1, &quot;Mar&quot;: 269.7, &quot;Apr&quot;: 225.0, &quot;May&quot;: 204.6, &quot;Jun&quot;: 207.0, &quot;Jul&quot;: 210.8, &quot;Aug&quot;: 244.9, &quot;Sep&quot;: 246.0, &quot;Oct&quot;: 272.8, &quot;Nov&quot;: 264.0, &quot;Dec&quot;: 260.4, &quot;max_sunshine&quot;: 272.8, &quot;min_sunshine&quot;: 204.6}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Kenya&quot;, &quot;City&quot;: &quot;Nairobi&quot;, &quot;Jan&quot;: 288.3, &quot;Feb&quot;: 266.0, &quot;Mar&quot;: 266.6, &quot;Apr&quot;: 204.0, &quot;May&quot;: 189.1, &quot;Jun&quot;: 159.0, &quot;Jul&quot;: 130.2, &quot;Aug&quot;: 127.1, &quot;Sep&quot;: 180.0, &quot;Oct&quot;: 226.3, &quot;Nov&quot;: 198.0, &quot;Dec&quot;: 257.3, &quot;max_sunshine&quot;: 288.3, &quot;min_sunshine&quot;: 127.1}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Kenya&quot;, &quot;City&quot;: &quot;Garissa&quot;, &quot;Jan&quot;: 251.1, &quot;Feb&quot;: 235.2, &quot;Mar&quot;: 263.5, &quot;Apr&quot;: 273.0, &quot;May&quot;: 282.1, &quot;Jun&quot;: 255.0, &quot;Jul&quot;: 254.2, &quot;Aug&quot;: 257.3, &quot;Sep&quot;: 270.0, &quot;Oct&quot;: 279.0, &quot;Nov&quot;: 252.0, &quot;Dec&quot;: 241.8, &quot;max_sunshine&quot;: 282.1, &quot;min_sunshine&quot;: 235.2}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Kenya&quot;, &quot;City&quot;: &quot;Lodwar&quot;, &quot;Jan&quot;: 319.0, &quot;Feb&quot;: 280.0, &quot;Mar&quot;: 282.0, &quot;Apr&quot;: 279.0, &quot;May&quot;: 307.0, &quot;Jun&quot;: 297.0, &quot;Jul&quot;: 279.0, &quot;Aug&quot;: 310.0, &quot;Sep&quot;: 321.0, &quot;Oct&quot;: 316.0, &quot;Nov&quot;: 282.0, &quot;Dec&quot;: 310.0, &quot;max_sunshine&quot;: 321.0, &quot;min_sunshine&quot;: 279.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Angola&quot;, &quot;City&quot;: &quot;Luanda&quot;, &quot;Jan&quot;: 219.0, &quot;Feb&quot;: 208.0, &quot;Mar&quot;: 213.0, &quot;Apr&quot;: 199.0, &quot;May&quot;: 233.0, &quot;Jun&quot;: 223.0, &quot;Jul&quot;: 175.0, &quot;Aug&quot;: 150.0, &quot;Sep&quot;: 145.0, &quot;Oct&quot;: 164.0, &quot;Nov&quot;: 199.0, &quot;Dec&quot;: 212.0, &quot;max_sunshine&quot;: 233.0, &quot;min_sunshine&quot;: 145.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;South Sudan&quot;, &quot;City&quot;: &quot;Juba&quot;, &quot;Jan&quot;: 288.3, &quot;Feb&quot;: 237.8, &quot;Mar&quot;: 220.1, &quot;Apr&quot;: 195.0, &quot;May&quot;: 241.8, &quot;Jun&quot;: 225.0, &quot;Jul&quot;: 182.9, &quot;Aug&quot;: 213.9, &quot;Sep&quot;: 225.0, &quot;Oct&quot;: 235.6, &quot;Nov&quot;: 237.0, &quot;Dec&quot;: 251.1, &quot;max_sunshine&quot;: 288.3, &quot;min_sunshine&quot;: 182.9}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;South Sudan&quot;, &quot;City&quot;: &quot;Wau&quot;, &quot;Jan&quot;: 300.7, &quot;Feb&quot;: 269.7, &quot;Mar&quot;: 260.4, &quot;Apr&quot;: 228.0, &quot;May&quot;: 254.2, &quot;Jun&quot;: 237.0, &quot;Jul&quot;: 176.7, &quot;Aug&quot;: 192.2, &quot;Sep&quot;: 210.0, &quot;Oct&quot;: 229.4, &quot;Nov&quot;: 267.0, &quot;Dec&quot;: 303.8, &quot;max_sunshine&quot;: 303.8, &quot;min_sunshine&quot;: 176.7}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Tanzania&quot;, &quot;City&quot;: &quot;Dar-es-Salaam&quot;, &quot;Jan&quot;: 251.0, &quot;Feb&quot;: 241.0, &quot;Mar&quot;: 217.0, &quot;Apr&quot;: 156.0, &quot;May&quot;: 192.0, &quot;Jun&quot;: 231.0, &quot;Jul&quot;: 251.0, &quot;Aug&quot;: 242.0, &quot;Sep&quot;: 243.0, &quot;Oct&quot;: 254.0, &quot;Nov&quot;: 270.0, &quot;Dec&quot;: 287.0, &quot;max_sunshine&quot;: 287.0, &quot;min_sunshine&quot;: 156.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Tanzania&quot;, &quot;City&quot;: &quot;Zanzibar&quot;, &quot;Jan&quot;: 251.0, &quot;Feb&quot;: 243.0, &quot;Mar&quot;: 213.0, &quot;Apr&quot;: 180.0, &quot;May&quot;: 210.0, &quot;Jun&quot;: 220.0, &quot;Jul&quot;: 235.0, &quot;Aug&quot;: 253.0, &quot;Sep&quot;: 254.0, &quot;Oct&quot;: 270.0, &quot;Nov&quot;: 250.0, &quot;Dec&quot;: 259.0, &quot;max_sunshine&quot;: 270.0, &quot;min_sunshine&quot;: 180.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Tanzania&quot;, &quot;City&quot;: &quot;Tabora&quot;, &quot;Jan&quot;: 216.0, &quot;Feb&quot;: 218.0, &quot;Mar&quot;: 219.0, &quot;Apr&quot;: 227.0, &quot;May&quot;: 283.0, &quot;Jun&quot;: 303.0, &quot;Jul&quot;: 310.0, &quot;Aug&quot;: 297.0, &quot;Sep&quot;: 312.0, &quot;Oct&quot;: 301.0, &quot;Nov&quot;: 240.0, &quot;Dec&quot;: 217.0, &quot;max_sunshine&quot;: 312.0, &quot;min_sunshine&quot;: 216.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Tanzania&quot;, &quot;City&quot;: &quot;Dodoma&quot;, &quot;Jan&quot;: 241.8, &quot;Feb&quot;: 217.5, &quot;Mar&quot;: 241.8, &quot;Apr&quot;: 240.0, &quot;May&quot;: 279.0, &quot;Jun&quot;: 294.0, &quot;Jul&quot;: 341.0, &quot;Aug&quot;: 297.6, &quot;Sep&quot;: 300.0, &quot;Oct&quot;: 310.0, &quot;Nov&quot;: 303.0, &quot;Dec&quot;: 269.7, &quot;max_sunshine&quot;: 341.0, &quot;min_sunshine&quot;: 217.5}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Ethiopia&quot;, &quot;City&quot;: &quot;Mekelle&quot;, &quot;Jan&quot;: 294.2, &quot;Feb&quot;: 276.7, &quot;Mar&quot;: 279.9, &quot;Apr&quot;: 277.2, &quot;May&quot;: 303.2, &quot;Jun&quot;: 230.1, &quot;Jul&quot;: 165.5, &quot;Aug&quot;: 166.5, &quot;Sep&quot;: 248.7, &quot;Oct&quot;: 291.1, &quot;Nov&quot;: 292.8, &quot;Dec&quot;: 303.5, &quot;max_sunshine&quot;: 303.5, &quot;min_sunshine&quot;: 165.5}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Ethiopia&quot;, &quot;City&quot;: &quot;Addis Abeba&quot;, &quot;Jan&quot;: 269.7, &quot;Feb&quot;: 246.5, &quot;Mar&quot;: 248.0, &quot;Apr&quot;: 213.0, &quot;May&quot;: 217.0, &quot;Jun&quot;: 156.0, &quot;Jul&quot;: 68.2, &quot;Aug&quot;: 83.7, &quot;Sep&quot;: 138.0, &quot;Oct&quot;: 266.6, &quot;Nov&quot;: 267.0, &quot;Dec&quot;: 266.6, &quot;max_sunshine&quot;: 269.7, &quot;min_sunshine&quot;: 68.2}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Congo&quot;, &quot;City&quot;: &quot;Brazaville&quot;, &quot;Jan&quot;: 168.0, &quot;Feb&quot;: 152.0, &quot;Mar&quot;: 194.0, &quot;Apr&quot;: 185.0, &quot;May&quot;: 188.0, &quot;Jun&quot;: 153.0, &quot;Jul&quot;: 127.0, &quot;Aug&quot;: 149.0, &quot;Sep&quot;: 145.0, &quot;Oct&quot;: 150.0, &quot;Nov&quot;: 157.0, &quot;Dec&quot;: 147.0, &quot;max_sunshine&quot;: 194.0, &quot;min_sunshine&quot;: 127.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Congo&quot;, &quot;City&quot;: &quot;Pointe-Noire&quot;, &quot;Jan&quot;: 157.0, &quot;Feb&quot;: 156.0, &quot;Mar&quot;: 164.0, &quot;Apr&quot;: 160.0, &quot;May&quot;: 150.0, &quot;Jun&quot;: 132.0, &quot;Jul&quot;: 119.0, &quot;Aug&quot;: 106.0, &quot;Sep&quot;: 70.0, &quot;Oct&quot;: 93.0, &quot;Nov&quot;: 123.0, &quot;Dec&quot;: 144.0, &quot;max_sunshine&quot;: 164.0, &quot;min_sunshine&quot;: 70.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Congo&quot;, &quot;City&quot;: &quot;Dolisie&quot;, &quot;Jan&quot;: 153.0, &quot;Feb&quot;: 164.0, &quot;Mar&quot;: 159.0, &quot;Apr&quot;: 152.0, &quot;May&quot;: 151.0, &quot;Jun&quot;: 136.0, &quot;Jul&quot;: 119.0, &quot;Aug&quot;: 105.0, &quot;Sep&quot;: 91.0, &quot;Oct&quot;: 116.0, &quot;Nov&quot;: 128.0, &quot;Dec&quot;: 133.0, &quot;max_sunshine&quot;: 164.0, &quot;min_sunshine&quot;: 91.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Democratic Republic of the Congo&quot;, &quot;City&quot;: &quot;Kinshasa&quot;, &quot;Jan&quot;: 124.0, &quot;Feb&quot;: 140.0, &quot;Mar&quot;: 155.0, &quot;Apr&quot;: 150.0, &quot;May&quot;: 155.0, &quot;Jun&quot;: 120.0, &quot;Jul&quot;: 124.0, &quot;Aug&quot;: 155.0, &quot;Sep&quot;: 120.0, &quot;Oct&quot;: 155.0, &quot;Nov&quot;: 150.0, &quot;Dec&quot;: 124.0, &quot;max_sunshine&quot;: 155.0, &quot;min_sunshine&quot;: 120.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Democratic Republic of the Congo&quot;, &quot;City&quot;: &quot;Lubumbashi&quot;, &quot;Jan&quot;: 129.0, &quot;Feb&quot;: 120.0, &quot;Mar&quot;: 174.0, &quot;Apr&quot;: 234.0, &quot;May&quot;: 291.0, &quot;Jun&quot;: 295.0, &quot;Jul&quot;: 315.0, &quot;Aug&quot;: 318.0, &quot;Sep&quot;: 294.0, &quot;Oct&quot;: 282.0, &quot;Nov&quot;: 194.0, &quot;Dec&quot;: 132.0, &quot;max_sunshine&quot;: 318.0, &quot;min_sunshine&quot;: 120.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Mauritania&quot;, &quot;City&quot;: &quot;Nouadhibou&quot;, &quot;Jan&quot;: 271.0, &quot;Feb&quot;: 248.0, &quot;Mar&quot;: 300.0, &quot;Apr&quot;: 295.0, &quot;May&quot;: 315.0, &quot;Jun&quot;: 303.0, &quot;Jul&quot;: 275.0, &quot;Aug&quot;: 281.0, &quot;Sep&quot;: 261.0, &quot;Oct&quot;: 260.0, &quot;Nov&quot;: 257.0, &quot;Dec&quot;: 264.0, &quot;max_sunshine&quot;: 315.0, &quot;min_sunshine&quot;: 248.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Mauritania&quot;, &quot;City&quot;: &quot;Nouakchott&quot;, &quot;Jan&quot;: 267.0, &quot;Feb&quot;: 250.0, &quot;Mar&quot;: 302.0, &quot;Apr&quot;: 311.0, &quot;May&quot;: 320.0, &quot;Jun&quot;: 284.0, &quot;Jul&quot;: 271.0, &quot;Aug&quot;: 265.0, &quot;Sep&quot;: 266.0, &quot;Oct&quot;: 263.0, &quot;Nov&quot;: 268.0, &quot;Dec&quot;: 267.0, &quot;max_sunshine&quot;: 320.0, &quot;min_sunshine&quot;: 250.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;South Africa&quot;, &quot;City&quot;: &quot;Pretoria&quot;, &quot;Jan&quot;: 261.0, &quot;Feb&quot;: 235.0, &quot;Mar&quot;: 254.0, &quot;Apr&quot;: 246.6, &quot;May&quot;: 283.0, &quot;Jun&quot;: 271.0, &quot;Jul&quot;: 289.0, &quot;Aug&quot;: 296.0, &quot;Sep&quot;: 284.0, &quot;Oct&quot;: 275.0, &quot;Nov&quot;: 254.0, &quot;Dec&quot;: 272.0, &quot;max_sunshine&quot;: 296.0, &quot;min_sunshine&quot;: 235.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;South Africa&quot;, &quot;City&quot;: &quot;Cape Town&quot;, &quot;Jan&quot;: 337.9, &quot;Feb&quot;: 297.4, &quot;Mar&quot;: 292.9, &quot;Apr&quot;: 233.5, &quot;May&quot;: 205.3, &quot;Jun&quot;: 175.4, &quot;Jul&quot;: 193.1, &quot;Aug&quot;: 212.1, &quot;Sep&quot;: 224.7, &quot;Oct&quot;: 277.7, &quot;Nov&quot;: 309.8, &quot;Dec&quot;: 334.2, &quot;max_sunshine&quot;: 337.9, &quot;min_sunshine&quot;: 175.4}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;South Africa&quot;, &quot;City&quot;: &quot;Johannesburg&quot;, &quot;Jan&quot;: 250.1, &quot;Feb&quot;: 224.8, &quot;Mar&quot;: 238.8, &quot;Apr&quot;: 236.9, &quot;May&quot;: 276.0, &quot;Jun&quot;: 266.9, &quot;Jul&quot;: 283.9, &quot;Aug&quot;: 284.1, &quot;Sep&quot;: 280.8, &quot;Oct&quot;: 269.5, &quot;Nov&quot;: 248.7, &quot;Dec&quot;: 263.9, &quot;max_sunshine&quot;: 284.1, &quot;min_sunshine&quot;: 224.8}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;South Africa&quot;, &quot;City&quot;: &quot;Bloemfontein&quot;, &quot;Jan&quot;: 296.3, &quot;Feb&quot;: 247.9, &quot;Mar&quot;: 258.6, &quot;Apr&quot;: 250.2, &quot;May&quot;: 266.0, &quot;Jun&quot;: 249.9, &quot;Jul&quot;: 272.6, &quot;Aug&quot;: 285.9, &quot;Sep&quot;: 278.0, &quot;Oct&quot;: 290.9, &quot;Nov&quot;: 296.5, &quot;Dec&quot;: 319.5, &quot;max_sunshine&quot;: 319.5, &quot;min_sunshine&quot;: 247.9}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;South Africa&quot;, &quot;City&quot;: &quot;Upington&quot;, &quot;Jan&quot;: 352.9, &quot;Feb&quot;: 298.7, &quot;Mar&quot;: 297.5, &quot;Apr&quot;: 283.5, &quot;May&quot;: 290.5, &quot;Jun&quot;: 270.3, &quot;Jul&quot;: 289.8, &quot;Aug&quot;: 307.3, &quot;Sep&quot;: 300.2, &quot;Oct&quot;: 328.9, &quot;Nov&quot;: 345.2, &quot;Dec&quot;: 367.0, &quot;max_sunshine&quot;: 367.0, &quot;min_sunshine&quot;: 270.3}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;South Africa&quot;, &quot;City&quot;: &quot;Durban&quot;, &quot;Jan&quot;: 184.0, &quot;Feb&quot;: 178.8, &quot;Mar&quot;: 201.6, &quot;Apr&quot;: 206.4, &quot;May&quot;: 223.6, &quot;Jun&quot;: 224.9, &quot;Jul&quot;: 230.4, &quot;Aug&quot;: 217.0, &quot;Sep&quot;: 173.3, &quot;Oct&quot;: 169.4, &quot;Nov&quot;: 166.1, &quot;Dec&quot;: 189.9, &quot;max_sunshine&quot;: 230.4, &quot;min_sunshine&quot;: 166.1}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Botswana&quot;, &quot;City&quot;: &quot;Maun&quot;, &quot;Jan&quot;: 245.0, &quot;Feb&quot;: 207.0, &quot;Mar&quot;: 257.0, &quot;Apr&quot;: 282.0, &quot;May&quot;: 310.0, &quot;Jun&quot;: 300.0, &quot;Jul&quot;: 313.0, &quot;Aug&quot;: 332.0, &quot;Sep&quot;: 315.0, &quot;Oct&quot;: 291.0, &quot;Nov&quot;: 264.0, &quot;Dec&quot;: 214.0, &quot;max_sunshine&quot;: 332.0, &quot;min_sunshine&quot;: 207.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Botswana&quot;, &quot;City&quot;: &quot;Gaborone&quot;, &quot;Jan&quot;: 280.6, &quot;Feb&quot;: 261.5, &quot;Mar&quot;: 264.4, &quot;Apr&quot;: 260.5, &quot;May&quot;: 284.2, &quot;Jun&quot;: 260.0, &quot;Jul&quot;: 292.4, &quot;Aug&quot;: 313.6, &quot;Sep&quot;: 308.4, &quot;Oct&quot;: 295.4, &quot;Nov&quot;: 265.5, &quot;Dec&quot;: 285.2, &quot;max_sunshine&quot;: 313.6, &quot;min_sunshine&quot;: 260.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Botswana&quot;, &quot;City&quot;: &quot;Ghanzi&quot;, &quot;Jan&quot;: 295.0, &quot;Feb&quot;: 280.0, &quot;Mar&quot;: 313.0, &quot;Apr&quot;: 282.0, &quot;May&quot;: 316.0, &quot;Jun&quot;: 306.0, &quot;Jul&quot;: 316.0, &quot;Aug&quot;: 319.0, &quot;Sep&quot;: 305.0, &quot;Oct&quot;: 279.0, &quot;Nov&quot;: 300.0, &quot;Dec&quot;: 267.0, &quot;max_sunshine&quot;: 319.0, &quot;min_sunshine&quot;: 267.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Zambia&quot;, &quot;City&quot;: &quot;Ndola&quot;, &quot;Jan&quot;: 151.9, &quot;Feb&quot;: 142.8, &quot;Mar&quot;: 192.2, &quot;Apr&quot;: 243.0, &quot;May&quot;: 279.0, &quot;Jun&quot;: 276.0, &quot;Jul&quot;: 297.6, &quot;Aug&quot;: 297.6, &quot;Sep&quot;: 279.0, &quot;Oct&quot;: 269.7, &quot;Nov&quot;: 207.0, &quot;Dec&quot;: 158.1, &quot;max_sunshine&quot;: 297.6, &quot;min_sunshine&quot;: 142.8}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Zambia&quot;, &quot;City&quot;: &quot;Lusaka&quot;, &quot;Jan&quot;: 176.7, &quot;Feb&quot;: 168.0, &quot;Mar&quot;: 220.1, &quot;Apr&quot;: 246.0, &quot;May&quot;: 275.9, &quot;Jun&quot;: 270.0, &quot;Jul&quot;: 294.5, &quot;Aug&quot;: 303.8, &quot;Sep&quot;: 291.0, &quot;Oct&quot;: 272.8, &quot;Nov&quot;: 234.0, &quot;Dec&quot;: 182.9, &quot;max_sunshine&quot;: 303.8, &quot;min_sunshine&quot;: 168.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Zambia&quot;, &quot;City&quot;: &quot;Livingstone&quot;, &quot;Jan&quot;: 213.9, &quot;Feb&quot;: 196.0, &quot;Mar&quot;: 251.1, &quot;Apr&quot;: 273.0, &quot;May&quot;: 303.8, &quot;Jun&quot;: 288.0, &quot;Jul&quot;: 310.0, &quot;Aug&quot;: 319.3, &quot;Sep&quot;: 297.0, &quot;Oct&quot;: 279.0, &quot;Nov&quot;: 228.0, &quot;Dec&quot;: 207.7, &quot;max_sunshine&quot;: 319.3, &quot;min_sunshine&quot;: 196.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Zimbabwe&quot;, &quot;City&quot;: &quot;Harare&quot;, &quot;Jan&quot;: 217.0, &quot;Feb&quot;: 190.4, &quot;Mar&quot;: 232.5, &quot;Apr&quot;: 249.0, &quot;May&quot;: 269.7, &quot;Jun&quot;: 264.0, &quot;Jul&quot;: 279.0, &quot;Aug&quot;: 300.7, &quot;Sep&quot;: 294.0, &quot;Oct&quot;: 285.2, &quot;Nov&quot;: 231.0, &quot;Dec&quot;: 198.4, &quot;max_sunshine&quot;: 300.7, &quot;min_sunshine&quot;: 190.4}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Zimbabwe&quot;, &quot;City&quot;: &quot;Bulawayo&quot;, &quot;Jan&quot;: 244.9, &quot;Feb&quot;: 212.8, &quot;Mar&quot;: 251.1, &quot;Apr&quot;: 252.0, &quot;May&quot;: 279.0, &quot;Jun&quot;: 267.0, &quot;Jul&quot;: 288.3, &quot;Aug&quot;: 300.7, &quot;Sep&quot;: 288.0, &quot;Oct&quot;: 272.8, &quot;Nov&quot;: 237.0, &quot;Dec&quot;: 226.3, &quot;max_sunshine&quot;: 300.7, &quot;min_sunshine&quot;: 212.8}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Malawi&quot;, &quot;City&quot;: &quot;Karonga&quot;, &quot;Jan&quot;: 176.7, &quot;Feb&quot;: 170.8, &quot;Mar&quot;: 207.7, &quot;Apr&quot;: 222.0, &quot;May&quot;: 254.2, &quot;Jun&quot;: 264.0, &quot;Jul&quot;: 285.2, &quot;Aug&quot;: 306.9, &quot;Sep&quot;: 306.0, &quot;Oct&quot;: 319.3, &quot;Nov&quot;: 273.0, &quot;Dec&quot;: 213.9, &quot;max_sunshine&quot;: 319.3, &quot;min_sunshine&quot;: 170.8}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Malawi&quot;, &quot;City&quot;: &quot;Blantyre&quot;, &quot;Jan&quot;: 198.4, &quot;Feb&quot;: 182.0, &quot;Mar&quot;: 217.0, &quot;Apr&quot;: 237.0, &quot;May&quot;: 260.4, &quot;Jun&quot;: 237.0, &quot;Jul&quot;: 232.3, &quot;Aug&quot;: 260.4, &quot;Sep&quot;: 270.0, &quot;Oct&quot;: 275.9, &quot;Nov&quot;: 228.0, &quot;Dec&quot;: 198.4, &quot;max_sunshine&quot;: 275.9, &quot;min_sunshine&quot;: 182.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Malawi&quot;, &quot;City&quot;: &quot;Mzuzu&quot;, &quot;Jan&quot;: 145.7, &quot;Feb&quot;: 142.1, &quot;Mar&quot;: 164.3, &quot;Apr&quot;: 171.0, &quot;May&quot;: 217.0, &quot;Jun&quot;: 219.0, &quot;Jul&quot;: 238.5, &quot;Aug&quot;: 275.9, &quot;Sep&quot;: 288.0, &quot;Oct&quot;: 300.7, &quot;Nov&quot;: 252.0, &quot;Dec&quot;: 176.7, &quot;max_sunshine&quot;: 300.7, &quot;min_sunshine&quot;: 142.1}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Madagascar&quot;, &quot;City&quot;: &quot;Fianarantsoa&quot;, &quot;Jan&quot;: 191.1, &quot;Feb&quot;: 171.0, &quot;Mar&quot;: 175.4, &quot;Apr&quot;: 184.8, &quot;May&quot;: 186.0, &quot;Jun&quot;: 165.9, &quot;Jul&quot;: 163.5, &quot;Aug&quot;: 191.1, &quot;Sep&quot;: 220.5, &quot;Oct&quot;: 230.4, &quot;Nov&quot;: 208.0, &quot;Dec&quot;: 190.1, &quot;max_sunshine&quot;: 230.4, &quot;min_sunshine&quot;: 163.5}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Madagascar&quot;, &quot;City&quot;: &quot;Toamasina&quot;, &quot;Jan&quot;: 224.7, &quot;Feb&quot;: 198.2, &quot;Mar&quot;: 191.0, &quot;Apr&quot;: 196.9, &quot;May&quot;: 192.1, &quot;Jun&quot;: 162.5, &quot;Jul&quot;: 162.8, &quot;Aug&quot;: 184.6, &quot;Sep&quot;: 209.7, &quot;Oct&quot;: 232.7, &quot;Nov&quot;: 236.0, &quot;Dec&quot;: 219.2, &quot;max_sunshine&quot;: 236.0, &quot;min_sunshine&quot;: 162.5}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Madagascar&quot;, &quot;City&quot;: &quot;Antananarivo&quot;, &quot;Jan&quot;: 210.5, &quot;Feb&quot;: 178.0, &quot;Mar&quot;: 199.1, &quot;Apr&quot;: 220.5, &quot;May&quot;: 228.8, &quot;Jun&quot;: 206.1, &quot;Jul&quot;: 213.9, &quot;Aug&quot;: 235.0, &quot;Sep&quot;: 249.5, &quot;Oct&quot;: 251.0, &quot;Nov&quot;: 232.7, &quot;Dec&quot;: 201.1, &quot;max_sunshine&quot;: 251.0, &quot;min_sunshine&quot;: 178.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Madagascar&quot;, &quot;City&quot;: &quot;Antsiranana&quot;, &quot;Jan&quot;: 189.2, &quot;Feb&quot;: 170.0, &quot;Mar&quot;: 214.9, &quot;Apr&quot;: 256.4, &quot;May&quot;: 284.8, &quot;Jun&quot;: 256.5, &quot;Jul&quot;: 273.1, &quot;Aug&quot;: 283.6, &quot;Sep&quot;: 293.3, &quot;Oct&quot;: 306.8, &quot;Nov&quot;: 281.5, &quot;Dec&quot;: 228.9, &quot;max_sunshine&quot;: 306.8, &quot;min_sunshine&quot;: 170.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Madagascar&quot;, &quot;City&quot;: &quot;Mahajanga&quot;, &quot;Jan&quot;: 209.0, &quot;Feb&quot;: 184.9, &quot;Mar&quot;: 244.8, &quot;Apr&quot;: 269.9, &quot;May&quot;: 294.9, &quot;Jun&quot;: 282.9, &quot;Jul&quot;: 291.5, &quot;Aug&quot;: 303.1, &quot;Sep&quot;: 307.0, &quot;Oct&quot;: 319.7, &quot;Nov&quot;: 288.2, &quot;Dec&quot;: 227.3, &quot;max_sunshine&quot;: 319.7, &quot;min_sunshine&quot;: 184.9}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Madagascar&quot;, &quot;City&quot;: &quot;Toliara&quot;, &quot;Jan&quot;: 305.0, &quot;Feb&quot;: 285.0, &quot;Mar&quot;: 296.0, &quot;Apr&quot;: 302.0, &quot;May&quot;: 306.0, &quot;Jun&quot;: 277.0, &quot;Jul&quot;: 291.0, &quot;Aug&quot;: 298.0, &quot;Sep&quot;: 307.0, &quot;Oct&quot;: 324.0, &quot;Nov&quot;: 313.0, &quot;Dec&quot;: 306.0, &quot;max_sunshine&quot;: 324.0, &quot;min_sunshine&quot;: 277.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Mozambique&quot;, &quot;City&quot;: &quot;Maputo&quot;, &quot;Jan&quot;: 248.0, &quot;Feb&quot;: 226.0, &quot;Mar&quot;: 248.0, &quot;Apr&quot;: 240.0, &quot;May&quot;: 248.0, &quot;Jun&quot;: 240.0, &quot;Jul&quot;: 248.0, &quot;Aug&quot;: 248.0, &quot;Sep&quot;: 248.0, &quot;Oct&quot;: 217.0, &quot;Nov&quot;: 210.0, &quot;Dec&quot;: 217.0, &quot;max_sunshine&quot;: 248.0, &quot;min_sunshine&quot;: 210.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Central African Republic&quot;, &quot;City&quot;: &quot;Bangui&quot;, &quot;Jan&quot;: 217.0, &quot;Feb&quot;: 196.0, &quot;Mar&quot;: 186.0, &quot;Apr&quot;: 180.0, &quot;May&quot;: 186.0, &quot;Jun&quot;: 180.0, &quot;Jul&quot;: 124.0, &quot;Aug&quot;: 124.0, &quot;Sep&quot;: 150.0, &quot;Oct&quot;: 155.0, &quot;Nov&quot;: 180.0, &quot;Dec&quot;: 217.0, &quot;max_sunshine&quot;: 217.0, &quot;min_sunshine&quot;: 124.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Central African Republic&quot;, &quot;City&quot;: &quot;Birao&quot;, &quot;Jan&quot;: 289.6, &quot;Feb&quot;: 275.0, &quot;Mar&quot;: 270.6, &quot;Apr&quot;: 248.1, &quot;May&quot;: 255.7, &quot;Jun&quot;: 216.9, &quot;Jul&quot;: 190.7, &quot;Aug&quot;: 186.5, &quot;Sep&quot;: 210.0, &quot;Oct&quot;: 267.2, &quot;Nov&quot;: 290.3, &quot;Dec&quot;: 297.4, &quot;max_sunshine&quot;: 297.4, &quot;min_sunshine&quot;: 186.5}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Uganda&quot;, &quot;City&quot;: &quot;Kampala&quot;, &quot;Jan&quot;: 238.0, &quot;Feb&quot;: 193.0, &quot;Mar&quot;: 189.0, &quot;Apr&quot;: 195.0, &quot;May&quot;: 187.0, &quot;Jun&quot;: 189.0, &quot;Jul&quot;: 139.0, &quot;Aug&quot;: 168.0, &quot;Sep&quot;: 157.0, &quot;Oct&quot;: 172.0, &quot;Nov&quot;: 178.0, &quot;Dec&quot;: 205.0, &quot;max_sunshine&quot;: 238.0, &quot;min_sunshine&quot;: 139.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Uganda&quot;, &quot;City&quot;: &quot;Kampala&quot;, &quot;Jan&quot;: 238.0, &quot;Feb&quot;: 193.0, &quot;Mar&quot;: 189.0, &quot;Apr&quot;: 195.0, &quot;May&quot;: 187.0, &quot;Jun&quot;: 189.0, &quot;Jul&quot;: 139.0, &quot;Aug&quot;: 168.0, &quot;Sep&quot;: 157.0, &quot;Oct&quot;: 172.0, &quot;Nov&quot;: 178.0, &quot;Dec&quot;: 205.0, &quot;max_sunshine&quot;: 238.0, &quot;min_sunshine&quot;: 139.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Uganda&quot;, &quot;City&quot;: &quot;Entebbe&quot;, &quot;Jan&quot;: 233.0, &quot;Feb&quot;: 204.0, &quot;Mar&quot;: 205.0, &quot;Apr&quot;: 180.0, &quot;May&quot;: 192.0, &quot;Jun&quot;: 186.0, &quot;Jul&quot;: 198.0, &quot;Aug&quot;: 195.0, &quot;Sep&quot;: 195.0, &quot;Oct&quot;: 201.0, &quot;Nov&quot;: 198.0, &quot;Dec&quot;: 211.0, &quot;max_sunshine&quot;: 233.0, &quot;min_sunshine&quot;: 180.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Burundi&quot;, &quot;City&quot;: &quot;Bujumbura&quot;, &quot;Jan&quot;: 167.4, &quot;Feb&quot;: 158.2, &quot;Mar&quot;: 176.7, &quot;Apr&quot;: 165.0, &quot;May&quot;: 210.8, &quot;Jun&quot;: 255.0, &quot;Jul&quot;: 272.8, &quot;Aug&quot;: 251.1, &quot;Sep&quot;: 213.0, &quot;Oct&quot;: 189.1, &quot;Nov&quot;: 150.0, &quot;Dec&quot;: 164.3, &quot;max_sunshine&quot;: 272.8, &quot;min_sunshine&quot;: 150.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Guinea&quot;, &quot;City&quot;: &quot;Conakry&quot;, &quot;Jan&quot;: 223.0, &quot;Feb&quot;: 224.0, &quot;Mar&quot;: 251.0, &quot;Apr&quot;: 222.0, &quot;May&quot;: 208.0, &quot;Jun&quot;: 153.0, &quot;Jul&quot;: 109.0, &quot;Aug&quot;: 87.0, &quot;Sep&quot;: 135.0, &quot;Oct&quot;: 189.0, &quot;Nov&quot;: 207.0, &quot;Dec&quot;: 214.0, &quot;max_sunshine&quot;: 251.0, &quot;min_sunshine&quot;: 87.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Guinea&quot;, &quot;City&quot;: &quot;Kankan&quot;, &quot;Jan&quot;: 262.0, &quot;Feb&quot;: 236.0, &quot;Mar&quot;: 249.0, &quot;Apr&quot;: 220.0, &quot;May&quot;: 234.0, &quot;Jun&quot;: 216.0, &quot;Jul&quot;: 169.0, &quot;Aug&quot;: 159.0, &quot;Sep&quot;: 191.0, &quot;Oct&quot;: 221.0, &quot;Nov&quot;: 241.0, &quot;Dec&quot;: 260.0, &quot;max_sunshine&quot;: 262.0, &quot;min_sunshine&quot;: 159.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Guinea-Bissau&quot;, &quot;City&quot;: &quot;Bissau&quot;, &quot;Jan&quot;: 248.0, &quot;Feb&quot;: 226.0, &quot;Mar&quot;: 279.0, &quot;Apr&quot;: 270.0, &quot;May&quot;: 248.0, &quot;Jun&quot;: 210.0, &quot;Jul&quot;: 186.0, &quot;Aug&quot;: 155.0, &quot;Sep&quot;: 180.0, &quot;Oct&quot;: 217.0, &quot;Nov&quot;: 240.0, &quot;Dec&quot;: 248.0, &quot;max_sunshine&quot;: 279.0, &quot;min_sunshine&quot;: 155.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Equatorial Guinea&quot;, &quot;City&quot;: &quot;Bata&quot;, &quot;Jan&quot;: 201.5, &quot;Feb&quot;: 192.1, &quot;Mar&quot;: 173.6, &quot;Apr&quot;: 177.0, &quot;May&quot;: 189.1, &quot;Jun&quot;: 147.0, &quot;Jul&quot;: 142.6, &quot;Aug&quot;: 142.6, &quot;Sep&quot;: 114.0, &quot;Oct&quot;: 114.7, &quot;Nov&quot;: 141.0, &quot;Dec&quot;: 186.0, &quot;max_sunshine&quot;: 201.5, &quot;min_sunshine&quot;: 114.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Equatorial Guinea&quot;, &quot;City&quot;: &quot;Malabo&quot;, &quot;Jan&quot;: 148.8, &quot;Feb&quot;: 152.5, &quot;Mar&quot;: 108.5, &quot;Apr&quot;: 120.0, &quot;May&quot;: 117.8, &quot;Jun&quot;: 69.0, &quot;Jul&quot;: 46.5, &quot;Aug&quot;: 58.9, &quot;Sep&quot;: 48.0, &quot;Oct&quot;: 68.2, &quot;Nov&quot;: 99.0, &quot;Dec&quot;: 139.5, &quot;max_sunshine&quot;: 152.5, &quot;min_sunshine&quot;: 46.5}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Egypt&quot;, &quot;City&quot;: &quot;Marsa Alam&quot;, &quot;Jan&quot;: 279.0, &quot;Feb&quot;: 283.0, &quot;Mar&quot;: 310.0, &quot;Apr&quot;: 330.0, &quot;May&quot;: 372.0, &quot;Jun&quot;: 390.0, &quot;Jul&quot;: 403.0, &quot;Aug&quot;: 372.0, &quot;Sep&quot;: 330.0, &quot;Oct&quot;: 310.0, &quot;Nov&quot;: 300.0, &quot;Dec&quot;: 279.0, &quot;max_sunshine&quot;: 403.0, &quot;min_sunshine&quot;: 279.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Egypt&quot;, &quot;City&quot;: &quot;Kharga&quot;, &quot;Jan&quot;: 287.8, &quot;Feb&quot;: 274.4, &quot;Mar&quot;: 297.8, &quot;Apr&quot;: 307.2, &quot;May&quot;: 336.8, &quot;Jun&quot;: 361.6, &quot;Jul&quot;: 359.9, &quot;Aug&quot;: 364.9, &quot;Sep&quot;: 321.1, &quot;Oct&quot;: 313.0, &quot;Nov&quot;: 289.7, &quot;Dec&quot;: 276.6, &quot;max_sunshine&quot;: 364.9, &quot;min_sunshine&quot;: 274.4}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Egypt&quot;, &quot;City&quot;: &quot;Dakhla Oasis&quot;, &quot;Jan&quot;: 294.5, &quot;Feb&quot;: 279.7, &quot;Mar&quot;: 316.2, &quot;Apr&quot;: 315.0, &quot;May&quot;: 356.5, &quot;Jun&quot;: 366.0, &quot;Jul&quot;: 384.4, &quot;Aug&quot;: 375.1, &quot;Sep&quot;: 336.0, &quot;Oct&quot;: 328.6, &quot;Nov&quot;: 300.0, &quot;Dec&quot;: 291.4, &quot;max_sunshine&quot;: 384.4, &quot;min_sunshine&quot;: 279.7}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Namibia&quot;, &quot;City&quot;: &quot;Keetmanshoop&quot;, &quot;Jan&quot;: 353.0, &quot;Feb&quot;: 300.0, &quot;Mar&quot;: 312.0, &quot;Apr&quot;: 306.0, &quot;May&quot;: 304.0, &quot;Jun&quot;: 287.0, &quot;Jul&quot;: 305.0, &quot;Aug&quot;: 323.0, &quot;Sep&quot;: 319.0, &quot;Oct&quot;: 343.0, &quot;Nov&quot;: 348.0, &quot;Dec&quot;: 348.0, &quot;max_sunshine&quot;: 353.0, &quot;min_sunshine&quot;: 287.0}, {&quot;Continent&quot;: &quot;Africa&quot;, &quot;Country&quot;: &quot;Namibia&quot;, &quot;City&quot;: &quot;Windhoek&quot;, &quot;Jan&quot;: 288.0, &quot;Feb&quot;: 254.0, &quot;Mar&quot;: 282.0, &quot;Apr&quot;: 273.0, &quot;May&quot;: 310.0, &quot;Jun&quot;: 309.0, &quot;Jul&quot;: 326.0, &quot;Aug&quot;: 341.0, &quot;Sep&quot;: 321.0, &quot;Oct&quot;: 319.0, &quot;Nov&quot;: 297.0, &quot;Dec&quot;: 285.0, &quot;max_sunshine&quot;: 341.0, &quot;min_sunshine&quot;: 254.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Afghanistan&quot;, &quot;City&quot;: &quot;Kabul&quot;, &quot;Jan&quot;: 177.2, &quot;Feb&quot;: 178.6, &quot;Mar&quot;: 204.5, &quot;Apr&quot;: 232.5, &quot;May&quot;: 310.3, &quot;Jun&quot;: 353.4, &quot;Jul&quot;: 356.8, &quot;Aug&quot;: 339.7, &quot;Sep&quot;: 303.9, &quot;Oct&quot;: 282.6, &quot;Nov&quot;: 253.2, &quot;Dec&quot;: 182.4, &quot;max_sunshine&quot;: 356.8, &quot;min_sunshine&quot;: 177.2}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Azerbaijan&quot;, &quot;City&quot;: &quot;Baku&quot;, &quot;Jan&quot;: 89.9, &quot;Feb&quot;: 89.0, &quot;Mar&quot;: 124.0, &quot;Apr&quot;: 195.0, &quot;May&quot;: 257.3, &quot;Jun&quot;: 294.0, &quot;Jul&quot;: 313.1, &quot;Aug&quot;: 282.1, &quot;Sep&quot;: 222.0, &quot;Oct&quot;: 145.7, &quot;Nov&quot;: 93.0, &quot;Dec&quot;: 102.3, &quot;max_sunshine&quot;: 313.1, &quot;min_sunshine&quot;: 89.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Bangladesh&quot;, &quot;City&quot;: &quot;Dhaka&quot;, &quot;Jan&quot;: 279.0, &quot;Feb&quot;: 226.0, &quot;Mar&quot;: 217.0, &quot;Apr&quot;: 180.0, &quot;May&quot;: 155.0, &quot;Jun&quot;: 90.0, &quot;Jul&quot;: 62.0, &quot;Aug&quot;: 62.0, &quot;Sep&quot;: 90.0, &quot;Oct&quot;: 186.0, &quot;Nov&quot;: 240.0, &quot;Dec&quot;: 279.0, &quot;max_sunshine&quot;: 279.0, &quot;min_sunshine&quot;: 62.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;China&quot;, &quot;City&quot;: &quot;Beijing&quot;, &quot;Jan&quot;: 194.1, &quot;Feb&quot;: 194.7, &quot;Mar&quot;: 231.8, &quot;Apr&quot;: 251.9, &quot;May&quot;: 283.4, &quot;Jun&quot;: 261.4, &quot;Jul&quot;: 212.4, &quot;Aug&quot;: 220.9, &quot;Sep&quot;: 232.1, &quot;Oct&quot;: 222.1, &quot;Nov&quot;: 185.3, &quot;Dec&quot;: 180.7, &quot;max_sunshine&quot;: 283.4, &quot;min_sunshine&quot;: 180.7}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;China&quot;, &quot;City&quot;: &quot;Chongqing&quot;, &quot;Jan&quot;: 20.6, &quot;Feb&quot;: 29.7, &quot;Mar&quot;: 64.9, &quot;Apr&quot;: 93.6, &quot;May&quot;: 109.4, &quot;Jun&quot;: 97.7, &quot;Jul&quot;: 158.6, &quot;Aug&quot;: 167.0, &quot;Sep&quot;: 106.6, &quot;Oct&quot;: 50.4, &quot;Nov&quot;: 35.9, &quot;Dec&quot;: 20.4, &quot;max_sunshine&quot;: 167.0, &quot;min_sunshine&quot;: 20.4}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;China&quot;, &quot;City&quot;: &quot;Lhasa&quot;, &quot;Jan&quot;: 250.9, &quot;Feb&quot;: 226.7, &quot;Mar&quot;: 246.1, &quot;Apr&quot;: 248.9, &quot;May&quot;: 276.6, &quot;Jun&quot;: 257.3, &quot;Jul&quot;: 227.4, &quot;Aug&quot;: 219.6, &quot;Sep&quot;: 229.0, &quot;Oct&quot;: 281.7, &quot;Nov&quot;: 267.4, &quot;Dec&quot;: 258.6, &quot;max_sunshine&quot;: 281.7, &quot;min_sunshine&quot;: 219.6}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;China&quot;, &quot;City&quot;: &quot;Shanghai&quot;, &quot;Jan&quot;: 114.3, &quot;Feb&quot;: 119.9, &quot;Mar&quot;: 128.5, &quot;Apr&quot;: 148.5, &quot;May&quot;: 169.8, &quot;Jun&quot;: 130.9, &quot;Jul&quot;: 190.8, &quot;Aug&quot;: 185.7, &quot;Sep&quot;: 167.5, &quot;Oct&quot;: 161.4, &quot;Nov&quot;: 131.1, &quot;Dec&quot;: 127.4, &quot;max_sunshine&quot;: 190.8, &quot;min_sunshine&quot;: 114.3}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;China&quot;, &quot;City&quot;: &quot;\u00dcr\u00fcmqi&quot;, &quot;Jan&quot;: 101.6, &quot;Feb&quot;: 128.8, &quot;Mar&quot;: 180.5, &quot;Apr&quot;: 248.0, &quot;May&quot;: 283.3, &quot;Jun&quot;: 282.7, &quot;Jul&quot;: 298.7, &quot;Aug&quot;: 301.0, &quot;Sep&quot;: 262.6, &quot;Oct&quot;: 224.4, &quot;Nov&quot;: 127.4, &quot;Dec&quot;: 84.3, &quot;max_sunshine&quot;: 301.0, &quot;min_sunshine&quot;: 84.3}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Hong Kong&quot;, &quot;City&quot;: &quot;Hong Kong&quot;, &quot;Jan&quot;: 143.0, &quot;Feb&quot;: 94.2, &quot;Mar&quot;: 90.8, &quot;Apr&quot;: 101.7, &quot;May&quot;: 140.4, &quot;Jun&quot;: 146.1, &quot;Jul&quot;: 212.0, &quot;Aug&quot;: 188.9, &quot;Sep&quot;: 172.3, &quot;Oct&quot;: 193.9, &quot;Nov&quot;: 180.1, &quot;Dec&quot;: 172.2, &quot;max_sunshine&quot;: 212.0, &quot;min_sunshine&quot;: 90.8}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;India&quot;, &quot;City&quot;: &quot;Delhi&quot;, &quot;Jan&quot;: 214.6, &quot;Feb&quot;: 216.1, &quot;Mar&quot;: 239.1, &quot;Apr&quot;: 261.0, &quot;May&quot;: 263.1, &quot;Jun&quot;: 196.5, &quot;Jul&quot;: 165.9, &quot;Aug&quot;: 177.0, &quot;Sep&quot;: 219.0, &quot;Oct&quot;: 269.3, &quot;Nov&quot;: 247.2, &quot;Dec&quot;: 215.8, &quot;max_sunshine&quot;: 269.3, &quot;min_sunshine&quot;: 165.9}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;India&quot;, &quot;City&quot;: &quot;Kolkata&quot;, &quot;Jan&quot;: 203.9, &quot;Feb&quot;: 201.2, &quot;Mar&quot;: 225.8, &quot;Apr&quot;: 235.4, &quot;May&quot;: 227.1, &quot;Jun&quot;: 123.1, &quot;Jul&quot;: 93.1, &quot;Aug&quot;: 104.9, &quot;Sep&quot;: 116.2, &quot;Oct&quot;: 182.6, &quot;Nov&quot;: 190.8, &quot;Dec&quot;: 203.4, &quot;max_sunshine&quot;: 235.4, &quot;min_sunshine&quot;: 93.1}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;India&quot;, &quot;City&quot;: &quot;Mumbai&quot;, &quot;Jan&quot;: 269.5, &quot;Feb&quot;: 257.6, &quot;Mar&quot;: 274.3, &quot;Apr&quot;: 283.7, &quot;May&quot;: 296.2, &quot;Jun&quot;: 148.6, &quot;Jul&quot;: 73.4, &quot;Aug&quot;: 75.9, &quot;Sep&quot;: 165.1, &quot;Oct&quot;: 240.2, &quot;Nov&quot;: 245.8, &quot;Dec&quot;: 253.2, &quot;max_sunshine&quot;: 296.2, &quot;min_sunshine&quot;: 73.4}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;India&quot;, &quot;City&quot;: &quot;Bangalore&quot;, &quot;Jan&quot;: 262.0, &quot;Feb&quot;: 248.0, &quot;Mar&quot;: 271.0, &quot;Apr&quot;: 257.0, &quot;May&quot;: 241.0, &quot;Jun&quot;: 137.0, &quot;Jul&quot;: 112.0, &quot;Aug&quot;: 114.0, &quot;Sep&quot;: 144.0, &quot;Oct&quot;: 173.0, &quot;Nov&quot;: 190.0, &quot;Dec&quot;: 212.0, &quot;max_sunshine&quot;: 271.0, &quot;min_sunshine&quot;: 112.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Indonesia&quot;, &quot;City&quot;: &quot;Jakarta&quot;, &quot;Jan&quot;: 189.1, &quot;Feb&quot;: 180.8, &quot;Mar&quot;: 238.7, &quot;Apr&quot;: 255.0, &quot;May&quot;: 260.4, &quot;Jun&quot;: 255.0, &quot;Jul&quot;: 282.1, &quot;Aug&quot;: 294.5, &quot;Sep&quot;: 300.7, &quot;Oct&quot;: 279.0, &quot;Nov&quot;: 231.0, &quot;Dec&quot;: 217.0, &quot;max_sunshine&quot;: 300.7, &quot;min_sunshine&quot;: 180.8}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Iran&quot;, &quot;City&quot;: &quot;Tehran&quot;, &quot;Jan&quot;: 137.2, &quot;Feb&quot;: 151.1, &quot;Mar&quot;: 186.0, &quot;Apr&quot;: 219.1, &quot;May&quot;: 279.8, &quot;Jun&quot;: 328.7, &quot;Jul&quot;: 336.6, &quot;Aug&quot;: 336.8, &quot;Sep&quot;: 300.5, &quot;Oct&quot;: 246.8, &quot;Nov&quot;: 169.4, &quot;Dec&quot;: 134.1, &quot;max_sunshine&quot;: 336.8, &quot;min_sunshine&quot;: 134.1}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Iraq&quot;, &quot;City&quot;: &quot;Baghdad&quot;, &quot;Jan&quot;: 192.2, &quot;Feb&quot;: 203.3, &quot;Mar&quot;: 244.9, &quot;Apr&quot;: 255.0, &quot;May&quot;: 300.7, &quot;Jun&quot;: 348.0, &quot;Jul&quot;: 347.2, &quot;Aug&quot;: 353.4, &quot;Sep&quot;: 315.0, &quot;Oct&quot;: 272.8, &quot;Nov&quot;: 213.0, &quot;Dec&quot;: 195.3, &quot;max_sunshine&quot;: 353.4, &quot;min_sunshine&quot;: 192.2}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Israel&quot;, &quot;City&quot;: &quot;Tel Aviv&quot;, &quot;Jan&quot;: 192.2, &quot;Feb&quot;: 200.1, &quot;Mar&quot;: 235.6, &quot;Apr&quot;: 270.0, &quot;May&quot;: 328.6, &quot;Jun&quot;: 357.0, &quot;Jul&quot;: 368.9, &quot;Aug&quot;: 356.5, &quot;Sep&quot;: 300.0, &quot;Oct&quot;: 279.0, &quot;Nov&quot;: 234.0, &quot;Dec&quot;: 189.1, &quot;max_sunshine&quot;: 368.9, &quot;min_sunshine&quot;: 189.1}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Japan&quot;, &quot;City&quot;: &quot;Sapporo&quot;, &quot;Jan&quot;: 92.5, &quot;Feb&quot;: 104.0, &quot;Mar&quot;: 146.6, &quot;Apr&quot;: 176.5, &quot;May&quot;: 198.4, &quot;Jun&quot;: 187.8, &quot;Jul&quot;: 164.9, &quot;Aug&quot;: 171.0, &quot;Sep&quot;: 160.5, &quot;Oct&quot;: 152.3, &quot;Nov&quot;: 100.0, &quot;Dec&quot;: 85.9, &quot;max_sunshine&quot;: 198.4, &quot;min_sunshine&quot;: 85.9}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Japan&quot;, &quot;City&quot;: &quot;Tokyo&quot;, &quot;Jan&quot;: 184.5, &quot;Feb&quot;: 165.8, &quot;Mar&quot;: 163.1, &quot;Apr&quot;: 176.9, &quot;May&quot;: 167.8, &quot;Jun&quot;: 125.4, &quot;Jul&quot;: 146.4, &quot;Aug&quot;: 169.0, &quot;Sep&quot;: 120.9, &quot;Oct&quot;: 131.0, &quot;Nov&quot;: 147.9, &quot;Dec&quot;: 178.0, &quot;max_sunshine&quot;: 184.5, &quot;min_sunshine&quot;: 120.9}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Kazakhstan&quot;, &quot;City&quot;: &quot;Almaty&quot;, &quot;Jan&quot;: 118.0, &quot;Feb&quot;: 119.0, &quot;Mar&quot;: 147.0, &quot;Apr&quot;: 194.0, &quot;May&quot;: 241.0, &quot;Jun&quot;: 280.0, &quot;Jul&quot;: 306.0, &quot;Aug&quot;: 294.0, &quot;Sep&quot;: 245.0, &quot;Oct&quot;: 184.0, &quot;Nov&quot;: 127.0, &quot;Dec&quot;: 101.0, &quot;max_sunshine&quot;: 306.0, &quot;min_sunshine&quot;: 101.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Kazakhstan&quot;, &quot;City&quot;: &quot;Astana&quot;, &quot;Jan&quot;: 103.0, &quot;Feb&quot;: 147.0, &quot;Mar&quot;: 192.0, &quot;Apr&quot;: 238.0, &quot;May&quot;: 301.0, &quot;Jun&quot;: 336.0, &quot;Jul&quot;: 336.0, &quot;Aug&quot;: 294.0, &quot;Sep&quot;: 230.0, &quot;Oct&quot;: 136.0, &quot;Nov&quot;: 100.0, &quot;Dec&quot;: 94.0, &quot;max_sunshine&quot;: 336.0, &quot;min_sunshine&quot;: 94.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Macau&quot;, &quot;City&quot;: &quot;Macau&quot;, &quot;Jan&quot;: 127.4, &quot;Feb&quot;: 79.4, &quot;Mar&quot;: 71.5, &quot;Apr&quot;: 85.3, &quot;May&quot;: 136.4, &quot;Jun&quot;: 155.3, &quot;Jul&quot;: 223.2, &quot;Aug&quot;: 195.4, &quot;Sep&quot;: 176.5, &quot;Oct&quot;: 192.3, &quot;Nov&quot;: 172.2, &quot;Dec&quot;: 159.1, &quot;max_sunshine&quot;: 223.2, &quot;min_sunshine&quot;: 71.5}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Mongolia&quot;, &quot;City&quot;: &quot;Ulaanbaatar&quot;, &quot;Jan&quot;: 179.1, &quot;Feb&quot;: 204.8, &quot;Mar&quot;: 265.2, &quot;Apr&quot;: 262.5, &quot;May&quot;: 299.3, &quot;Jun&quot;: 269.0, &quot;Jul&quot;: 249.3, &quot;Aug&quot;: 258.3, &quot;Sep&quot;: 245.7, &quot;Oct&quot;: 227.5, &quot;Nov&quot;: 177.4, &quot;Dec&quot;: 156.4, &quot;max_sunshine&quot;: 299.3, &quot;min_sunshine&quot;: 156.4}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;North Korea&quot;, &quot;City&quot;: &quot;Pyongyang&quot;, &quot;Jan&quot;: 184.0, &quot;Feb&quot;: 197.0, &quot;Mar&quot;: 231.0, &quot;Apr&quot;: 237.0, &quot;May&quot;: 263.0, &quot;Jun&quot;: 229.0, &quot;Jul&quot;: 181.0, &quot;Aug&quot;: 204.0, &quot;Sep&quot;: 222.0, &quot;Oct&quot;: 214.0, &quot;Nov&quot;: 165.0, &quot;Dec&quot;: 165.0, &quot;max_sunshine&quot;: 263.0, &quot;min_sunshine&quot;: 165.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Oman&quot;, &quot;City&quot;: &quot;Muscat&quot;, &quot;Jan&quot;: 268.6, &quot;Feb&quot;: 244.8, &quot;Mar&quot;: 278.3, &quot;Apr&quot;: 292.5, &quot;May&quot;: 347.4, &quot;Jun&quot;: 325.7, &quot;Jul&quot;: 277.7, &quot;Aug&quot;: 278.6, &quot;Sep&quot;: 303.9, &quot;Oct&quot;: 316.9, &quot;Nov&quot;: 291.9, &quot;Dec&quot;: 267.0, &quot;max_sunshine&quot;: 347.4, &quot;min_sunshine&quot;: 244.8}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Pakistan&quot;, &quot;City&quot;: &quot;Karachi&quot;, &quot;Jan&quot;: 270.7, &quot;Feb&quot;: 249.4, &quot;Mar&quot;: 271.6, &quot;Apr&quot;: 277.4, &quot;May&quot;: 299.1, &quot;Jun&quot;: 231.8, &quot;Jul&quot;: 155.0, &quot;Aug&quot;: 147.7, &quot;Sep&quot;: 218.8, &quot;Oct&quot;: 283.5, &quot;Nov&quot;: 273.3, &quot;Dec&quot;: 272.0, &quot;max_sunshine&quot;: 299.1, &quot;min_sunshine&quot;: 147.7}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Pakistan&quot;, &quot;City&quot;: &quot;Lahore&quot;, &quot;Jan&quot;: 218.8, &quot;Feb&quot;: 215.0, &quot;Mar&quot;: 245.8, &quot;Apr&quot;: 276.6, &quot;May&quot;: 308.3, &quot;Jun&quot;: 269.0, &quot;Jul&quot;: 227.5, &quot;Aug&quot;: 234.9, &quot;Sep&quot;: 265.6, &quot;Oct&quot;: 290.0, &quot;Nov&quot;: 259.6, &quot;Dec&quot;: 222.9, &quot;max_sunshine&quot;: 308.3, &quot;min_sunshine&quot;: 215.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Philippines&quot;, &quot;City&quot;: &quot;Manila&quot;, &quot;Jan&quot;: 176.7, &quot;Feb&quot;: 197.8, &quot;Mar&quot;: 225.8, &quot;Apr&quot;: 258.0, &quot;May&quot;: 222.7, &quot;Jun&quot;: 162.0, &quot;Jul&quot;: 132.8, &quot;Aug&quot;: 132.8, &quot;Sep&quot;: 132.0, &quot;Oct&quot;: 157.6, &quot;Nov&quot;: 153.0, &quot;Dec&quot;: 151.9, &quot;max_sunshine&quot;: 258.0, &quot;min_sunshine&quot;: 132.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Russia&quot;, &quot;City&quot;: &quot;Dikson&quot;, &quot;Jan&quot;: 0.0, &quot;Feb&quot;: 22.6, &quot;Mar&quot;: 127.1, &quot;Apr&quot;: 237.0, &quot;May&quot;: 189.1, &quot;Jun&quot;: 141.0, &quot;Jul&quot;: 223.2, &quot;Aug&quot;: 139.5, &quot;Sep&quot;: 60.0, &quot;Oct&quot;: 24.8, &quot;Nov&quot;: 0.0, &quot;Dec&quot;: 0.0, &quot;max_sunshine&quot;: 237.0, &quot;min_sunshine&quot;: 0.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Russia&quot;, &quot;City&quot;: &quot;Irkutsk&quot;, &quot;Jan&quot;: 93.0, &quot;Feb&quot;: 149.0, &quot;Mar&quot;: 207.0, &quot;Apr&quot;: 223.0, &quot;May&quot;: 266.0, &quot;Jun&quot;: 264.0, &quot;Jul&quot;: 243.0, &quot;Aug&quot;: 218.0, &quot;Sep&quot;: 182.0, &quot;Oct&quot;: 152.0, &quot;Nov&quot;: 93.0, &quot;Dec&quot;: 62.0, &quot;max_sunshine&quot;: 266.0, &quot;min_sunshine&quot;: 62.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Russia&quot;, &quot;City&quot;: &quot;Omsk&quot;, &quot;Jan&quot;: 68.0, &quot;Feb&quot;: 125.0, &quot;Mar&quot;: 184.0, &quot;Apr&quot;: 235.0, &quot;May&quot;: 284.0, &quot;Jun&quot;: 319.0, &quot;Jul&quot;: 321.0, &quot;Aug&quot;: 248.0, &quot;Sep&quot;: 180.0, &quot;Oct&quot;: 105.0, &quot;Nov&quot;: 71.0, &quot;Dec&quot;: 61.0, &quot;max_sunshine&quot;: 321.0, &quot;min_sunshine&quot;: 61.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Russia&quot;, &quot;City&quot;: &quot;Petropavlovsk-Kamchatsky&quot;, &quot;Jan&quot;: 105.4, &quot;Feb&quot;: 115.8, &quot;Mar&quot;: 176.7, &quot;Apr&quot;: 192.0, &quot;May&quot;: 192.2, &quot;Jun&quot;: 192.0, &quot;Jul&quot;: 170.5, &quot;Aug&quot;: 176.7, &quot;Sep&quot;: 177.0, &quot;Oct&quot;: 158.1, &quot;Nov&quot;: 123.0, &quot;Dec&quot;: 93.0, &quot;max_sunshine&quot;: 192.2, &quot;min_sunshine&quot;: 93.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Russia&quot;, &quot;City&quot;: &quot;Vladivostok&quot;, &quot;Jan&quot;: 178.0, &quot;Feb&quot;: 184.0, &quot;Mar&quot;: 216.0, &quot;Apr&quot;: 192.0, &quot;May&quot;: 199.0, &quot;Jun&quot;: 130.0, &quot;Jul&quot;: 122.0, &quot;Aug&quot;: 149.0, &quot;Sep&quot;: 197.0, &quot;Oct&quot;: 205.0, &quot;Nov&quot;: 168.0, &quot;Dec&quot;: 156.0, &quot;max_sunshine&quot;: 216.0, &quot;min_sunshine&quot;: 122.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Russia&quot;, &quot;City&quot;: &quot;Yakutsk&quot;, &quot;Jan&quot;: 18.6, &quot;Feb&quot;: 98.0, &quot;Mar&quot;: 232.5, &quot;Apr&quot;: 273.0, &quot;May&quot;: 303.8, &quot;Jun&quot;: 333.0, &quot;Jul&quot;: 347.2, &quot;Aug&quot;: 272.8, &quot;Sep&quot;: 174.0, &quot;Oct&quot;: 105.4, &quot;Nov&quot;: 60.0, &quot;Dec&quot;: 9.3, &quot;max_sunshine&quot;: 347.2, &quot;min_sunshine&quot;: 9.3}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Saudi Arabia&quot;, &quot;City&quot;: &quot;Abha&quot;, &quot;Jan&quot;: 266.6, &quot;Feb&quot;: 265.6, &quot;Mar&quot;: 294.5, &quot;Apr&quot;: 282.0, &quot;May&quot;: 288.3, &quot;Jun&quot;: 276.0, &quot;Jul&quot;: 232.5, &quot;Aug&quot;: 238.7, &quot;Sep&quot;: 273.0, &quot;Oct&quot;: 291.4, &quot;Nov&quot;: 273.0, &quot;Dec&quot;: 266.6, &quot;max_sunshine&quot;: 294.5, &quot;min_sunshine&quot;: 232.5}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Saudi Arabia&quot;, &quot;City&quot;: &quot;Riyadh&quot;, &quot;Jan&quot;: 212.4, &quot;Feb&quot;: 226.6, &quot;Mar&quot;: 219.8, &quot;Apr&quot;: 242.3, &quot;May&quot;: 287.7, &quot;Jun&quot;: 328.2, &quot;Jul&quot;: 332.1, &quot;Aug&quot;: 309.2, &quot;Sep&quot;: 271.6, &quot;Oct&quot;: 311.4, &quot;Nov&quot;: 269.2, &quot;Dec&quot;: 214.3, &quot;max_sunshine&quot;: 332.1, &quot;min_sunshine&quot;: 212.4}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Singapore&quot;, &quot;City&quot;: &quot;Singapore&quot;, &quot;Jan&quot;: 172.4, &quot;Feb&quot;: 183.2, &quot;Mar&quot;: 192.7, &quot;Apr&quot;: 173.6, &quot;May&quot;: 179.8, &quot;Jun&quot;: 177.7, &quot;Jul&quot;: 187.9, &quot;Aug&quot;: 180.6, &quot;Sep&quot;: 156.2, &quot;Oct&quot;: 155.2, &quot;Nov&quot;: 129.6, &quot;Dec&quot;: 133.5, &quot;max_sunshine&quot;: 192.7, &quot;min_sunshine&quot;: 129.6}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;South Korea&quot;, &quot;City&quot;: &quot;Busan&quot;, &quot;Jan&quot;: 199.0, &quot;Feb&quot;: 182.5, &quot;Mar&quot;: 193.0, &quot;Apr&quot;: 210.0, &quot;May&quot;: 221.7, &quot;Jun&quot;: 179.7, &quot;Jul&quot;: 165.8, &quot;Aug&quot;: 200.9, &quot;Sep&quot;: 167.2, &quot;Oct&quot;: 208.9, &quot;Nov&quot;: 194.4, &quot;Dec&quot;: 204.3, &quot;max_sunshine&quot;: 221.7, &quot;min_sunshine&quot;: 165.8}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;South Korea&quot;, &quot;City&quot;: &quot;Seoul&quot;, &quot;Jan&quot;: 160.3, &quot;Feb&quot;: 163.3, &quot;Mar&quot;: 189.0, &quot;Apr&quot;: 205.0, &quot;May&quot;: 213.0, &quot;Jun&quot;: 182.0, &quot;Jul&quot;: 120.0, &quot;Aug&quot;: 152.5, &quot;Sep&quot;: 176.2, &quot;Oct&quot;: 198.8, &quot;Nov&quot;: 153.2, &quot;Dec&quot;: 152.6, &quot;max_sunshine&quot;: 213.0, &quot;min_sunshine&quot;: 120.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Taiwan&quot;, &quot;City&quot;: &quot;Kaohsiung&quot;, &quot;Jan&quot;: 174.7, &quot;Feb&quot;: 165.8, &quot;Mar&quot;: 187.0, &quot;Apr&quot;: 189.1, &quot;May&quot;: 198.5, &quot;Jun&quot;: 199.9, &quot;Jul&quot;: 221.4, &quot;Aug&quot;: 193.7, &quot;Sep&quot;: 175.7, &quot;Oct&quot;: 182.4, &quot;Nov&quot;: 162.2, &quot;Dec&quot;: 161.8, &quot;max_sunshine&quot;: 221.4, &quot;min_sunshine&quot;: 161.8}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Taiwan&quot;, &quot;City&quot;: &quot;Taichung&quot;, &quot;Jan&quot;: 176.6, &quot;Feb&quot;: 140.6, &quot;Mar&quot;: 149.9, &quot;Apr&quot;: 137.8, &quot;May&quot;: 158.7, &quot;Jun&quot;: 160.1, &quot;Jul&quot;: 199.6, &quot;Aug&quot;: 178.7, &quot;Sep&quot;: 175.8, &quot;Oct&quot;: 203.7, &quot;Nov&quot;: 179.4, &quot;Dec&quot;: 182.3, &quot;max_sunshine&quot;: 203.7, &quot;min_sunshine&quot;: 137.8}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Taiwan&quot;, &quot;City&quot;: &quot;Taipei&quot;, &quot;Jan&quot;: 80.6, &quot;Feb&quot;: 71.3, &quot;Mar&quot;: 89.6, &quot;Apr&quot;: 92.6, &quot;May&quot;: 113.7, &quot;Jun&quot;: 121.7, &quot;Jul&quot;: 179.0, &quot;Aug&quot;: 188.9, &quot;Sep&quot;: 153.7, &quot;Oct&quot;: 124.0, &quot;Nov&quot;: 99.4, &quot;Dec&quot;: 90.7, &quot;max_sunshine&quot;: 188.9, &quot;min_sunshine&quot;: 71.3}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Thailand&quot;, &quot;City&quot;: &quot;Bangkok&quot;, &quot;Jan&quot;: 272.5, &quot;Feb&quot;: 249.9, &quot;Mar&quot;: 269.0, &quot;Apr&quot;: 256.7, &quot;May&quot;: 216.4, &quot;Jun&quot;: 178.0, &quot;Jul&quot;: 171.8, &quot;Aug&quot;: 160.3, &quot;Sep&quot;: 154.9, &quot;Oct&quot;: 198.1, &quot;Nov&quot;: 234.2, &quot;Dec&quot;: 262.0, &quot;max_sunshine&quot;: 272.5, &quot;min_sunshine&quot;: 154.9}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Thailand&quot;, &quot;City&quot;: &quot;Chiang Mai&quot;, &quot;Jan&quot;: 272.8, &quot;Feb&quot;: 257.1, &quot;Mar&quot;: 294.5, &quot;Apr&quot;: 279.0, &quot;May&quot;: 198.4, &quot;Jun&quot;: 156.0, &quot;Jul&quot;: 120.9, &quot;Aug&quot;: 117.8, &quot;Sep&quot;: 144.0, &quot;Oct&quot;: 201.5, &quot;Nov&quot;: 216.0, &quot;Dec&quot;: 254.2, &quot;max_sunshine&quot;: 294.5, &quot;min_sunshine&quot;: 117.8}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Thailand&quot;, &quot;City&quot;: &quot;Hat Yai&quot;, &quot;Jan&quot;: 182.9, &quot;Feb&quot;: 166.7, &quot;Mar&quot;: 186.0, &quot;Apr&quot;: 144.0, &quot;May&quot;: 114.7, &quot;Jun&quot;: 111.0, &quot;Jul&quot;: 114.7, &quot;Aug&quot;: 114.7, &quot;Sep&quot;: 108.0, &quot;Oct&quot;: 111.6, &quot;Nov&quot;: 105.0, &quot;Dec&quot;: 108.5, &quot;max_sunshine&quot;: 186.0, &quot;min_sunshine&quot;: 105.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Thailand&quot;, &quot;City&quot;: &quot;Nakhon Ratchasima&quot;, &quot;Jan&quot;: 226.3, &quot;Feb&quot;: 211.9, &quot;Mar&quot;: 201.5, &quot;Apr&quot;: 186.0, &quot;May&quot;: 155.0, &quot;Jun&quot;: 114.0, &quot;Jul&quot;: 117.8, &quot;Aug&quot;: 117.8, &quot;Sep&quot;: 108.0, &quot;Oct&quot;: 145.7, &quot;Nov&quot;: 186.0, &quot;Dec&quot;: 226.3, &quot;max_sunshine&quot;: 226.3, &quot;min_sunshine&quot;: 108.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Turkey&quot;, &quot;City&quot;: &quot;Ankara&quot;, &quot;Jan&quot;: 77.5, &quot;Feb&quot;: 98.9, &quot;Mar&quot;: 161.2, &quot;Apr&quot;: 189.0, &quot;May&quot;: 260.4, &quot;Jun&quot;: 306.0, &quot;Jul&quot;: 350.3, &quot;Aug&quot;: 328.6, &quot;Sep&quot;: 276.0, &quot;Oct&quot;: 198.4, &quot;Nov&quot;: 132.0, &quot;Dec&quot;: 71.3, &quot;max_sunshine&quot;: 350.3, &quot;min_sunshine&quot;: 71.3}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;United Arab Emirates&quot;, &quot;City&quot;: &quot;Dubai&quot;, &quot;Jan&quot;: 254.2, &quot;Feb&quot;: 229.6, &quot;Mar&quot;: 254.2, &quot;Apr&quot;: 294.0, &quot;May&quot;: 344.1, &quot;Jun&quot;: 342.0, &quot;Jul&quot;: 322.4, &quot;Aug&quot;: 316.2, &quot;Sep&quot;: 309.0, &quot;Oct&quot;: 303.8, &quot;Nov&quot;: 285.0, &quot;Dec&quot;: 254.2, &quot;max_sunshine&quot;: 344.1, &quot;min_sunshine&quot;: 229.6}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Uzbekistan&quot;, &quot;City&quot;: &quot;Tashkent&quot;, &quot;Jan&quot;: 117.8, &quot;Feb&quot;: 127.1, &quot;Mar&quot;: 164.3, &quot;Apr&quot;: 216.0, &quot;May&quot;: 303.8, &quot;Jun&quot;: 363.0, &quot;Jul&quot;: 384.4, &quot;Aug&quot;: 365.8, &quot;Sep&quot;: 300.0, &quot;Oct&quot;: 226.3, &quot;Nov&quot;: 150.0, &quot;Dec&quot;: 105.4, &quot;max_sunshine&quot;: 384.4, &quot;min_sunshine&quot;: 105.4}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Vietnam&quot;, &quot;City&quot;: &quot;Da Lat&quot;, &quot;Jan&quot;: 255.0, &quot;Feb&quot;: 234.0, &quot;Mar&quot;: 255.0, &quot;Apr&quot;: 202.0, &quot;May&quot;: 190.0, &quot;Jun&quot;: 147.0, &quot;Jul&quot;: 157.0, &quot;Aug&quot;: 136.0, &quot;Sep&quot;: 133.0, &quot;Oct&quot;: 140.0, &quot;Nov&quot;: 172.0, &quot;Dec&quot;: 215.0, &quot;max_sunshine&quot;: 255.0, &quot;min_sunshine&quot;: 133.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Vietnam&quot;, &quot;City&quot;: &quot;Da Nang&quot;, &quot;Jan&quot;: 139.0, &quot;Feb&quot;: 145.0, &quot;Mar&quot;: 188.0, &quot;Apr&quot;: 209.0, &quot;May&quot;: 246.0, &quot;Jun&quot;: 239.0, &quot;Jul&quot;: 253.0, &quot;Aug&quot;: 218.0, &quot;Sep&quot;: 176.0, &quot;Oct&quot;: 145.0, &quot;Nov&quot;: 120.0, &quot;Dec&quot;: 103.0, &quot;max_sunshine&quot;: 253.0, &quot;min_sunshine&quot;: 103.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Vietnam&quot;, &quot;City&quot;: &quot;Hanoi&quot;, &quot;Jan&quot;: 74.0, &quot;Feb&quot;: 47.0, &quot;Mar&quot;: 47.0, &quot;Apr&quot;: 90.0, &quot;May&quot;: 183.0, &quot;Jun&quot;: 172.0, &quot;Jul&quot;: 195.0, &quot;Aug&quot;: 174.0, &quot;Sep&quot;: 176.0, &quot;Oct&quot;: 167.0, &quot;Nov&quot;: 137.0, &quot;Dec&quot;: 124.0, &quot;max_sunshine&quot;: 195.0, &quot;min_sunshine&quot;: 47.0}, {&quot;Continent&quot;: &quot;Asia&quot;, &quot;Country&quot;: &quot;Vietnam&quot;, &quot;City&quot;: &quot;Ho Chi Minh City&quot;, &quot;Jan&quot;: 245.0, &quot;Feb&quot;: 246.0, &quot;Mar&quot;: 272.0, &quot;Apr&quot;: 239.0, &quot;May&quot;: 195.0, &quot;Jun&quot;: 171.0, &quot;Jul&quot;: 180.0, &quot;Aug&quot;: 172.0, &quot;Sep&quot;: 162.0, &quot;Oct&quot;: 182.0, &quot;Nov&quot;: 200.0, &quot;Dec&quot;: 226.0, &quot;max_sunshine&quot;: 272.0, &quot;min_sunshine&quot;: 162.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Albania&quot;, &quot;City&quot;: &quot;Tirana&quot;, &quot;Jan&quot;: 124.0, &quot;Feb&quot;: 125.0, &quot;Mar&quot;: 165.0, &quot;Apr&quot;: 191.0, &quot;May&quot;: 263.0, &quot;Jun&quot;: 298.0, &quot;Jul&quot;: 354.0, &quot;Aug&quot;: 327.0, &quot;Sep&quot;: 264.0, &quot;Oct&quot;: 218.0, &quot;Nov&quot;: 127.0, &quot;Dec&quot;: 88.0, &quot;max_sunshine&quot;: 354.0, &quot;min_sunshine&quot;: 88.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Armenia&quot;, &quot;City&quot;: &quot;Yerevan&quot;, &quot;Jan&quot;: 93.0, &quot;Feb&quot;: 108.0, &quot;Mar&quot;: 162.0, &quot;Apr&quot;: 177.0, &quot;May&quot;: 242.0, &quot;Jun&quot;: 297.0, &quot;Jul&quot;: 343.0, &quot;Aug&quot;: 332.0, &quot;Sep&quot;: 278.0, &quot;Oct&quot;: 212.0, &quot;Nov&quot;: 138.0, &quot;Dec&quot;: 92.0, &quot;max_sunshine&quot;: 343.0, &quot;min_sunshine&quot;: 92.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Austria&quot;, &quot;City&quot;: &quot;Vienna&quot;, &quot;Jan&quot;: 66.0, &quot;Feb&quot;: 106.0, &quot;Mar&quot;: 128.0, &quot;Apr&quot;: 183.0, &quot;May&quot;: 239.0, &quot;Jun&quot;: 228.0, &quot;Jul&quot;: 260.0, &quot;Aug&quot;: 251.0, &quot;Sep&quot;: 168.0, &quot;Oct&quot;: 139.0, &quot;Nov&quot;: 66.0, &quot;Dec&quot;: 51.0, &quot;max_sunshine&quot;: 260.0, &quot;min_sunshine&quot;: 51.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Belarus&quot;, &quot;City&quot;: &quot;Minsk&quot;, &quot;Jan&quot;: 34.0, &quot;Feb&quot;: 72.0, &quot;Mar&quot;: 133.0, &quot;Apr&quot;: 185.0, &quot;May&quot;: 270.0, &quot;Jun&quot;: 267.0, &quot;Jul&quot;: 271.0, &quot;Aug&quot;: 251.0, &quot;Sep&quot;: 154.0, &quot;Oct&quot;: 103.0, &quot;Nov&quot;: 39.0, &quot;Dec&quot;: 28.0, &quot;max_sunshine&quot;: 271.0, &quot;min_sunshine&quot;: 28.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Belgium&quot;, &quot;City&quot;: &quot;Brussels&quot;, &quot;Jan&quot;: 59.0, &quot;Feb&quot;: 77.0, &quot;Mar&quot;: 114.0, &quot;Apr&quot;: 159.0, &quot;May&quot;: 191.0, &quot;Jun&quot;: 188.0, &quot;Jul&quot;: 201.0, &quot;Aug&quot;: 190.0, &quot;Sep&quot;: 143.0, &quot;Oct&quot;: 113.0, &quot;Nov&quot;: 66.0, &quot;Dec&quot;: 45.0, &quot;max_sunshine&quot;: 201.0, &quot;min_sunshine&quot;: 45.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Bosnia and Herzegovina&quot;, &quot;City&quot;: &quot;Sarajevo&quot;, &quot;Jan&quot;: 57.0, &quot;Feb&quot;: 84.0, &quot;Mar&quot;: 126.0, &quot;Apr&quot;: 152.0, &quot;May&quot;: 192.0, &quot;Jun&quot;: 207.0, &quot;Jul&quot;: 256.0, &quot;Aug&quot;: 238.0, &quot;Sep&quot;: 187.0, &quot;Oct&quot;: 149.0, &quot;Nov&quot;: 81.0, &quot;Dec&quot;: 41.0, &quot;max_sunshine&quot;: 256.0, &quot;min_sunshine&quot;: 41.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Bulgaria&quot;, &quot;City&quot;: &quot;Sofia&quot;, &quot;Jan&quot;: 88.0, &quot;Feb&quot;: 114.0, &quot;Mar&quot;: 160.0, &quot;Apr&quot;: 182.0, &quot;May&quot;: 230.0, &quot;Jun&quot;: 258.0, &quot;Jul&quot;: 302.0, &quot;Aug&quot;: 288.0, &quot;Sep&quot;: 220.0, &quot;Oct&quot;: 164.0, &quot;Nov&quot;: 106.0, &quot;Dec&quot;: 66.0, &quot;max_sunshine&quot;: 302.0, &quot;min_sunshine&quot;: 66.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Croatia&quot;, &quot;City&quot;: &quot;Zagreb&quot;, &quot;Jan&quot;: 59.0, &quot;Feb&quot;: 96.0, &quot;Mar&quot;: 140.0, &quot;Apr&quot;: 175.0, &quot;May&quot;: 234.0, &quot;Jun&quot;: 244.0, &quot;Jul&quot;: 281.0, &quot;Aug&quot;: 256.0, &quot;Sep&quot;: 187.0, &quot;Oct&quot;: 131.0, &quot;Nov&quot;: 66.0, &quot;Dec&quot;: 45.0, &quot;max_sunshine&quot;: 281.0, &quot;min_sunshine&quot;: 45.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Czech Republic&quot;, &quot;City&quot;: &quot;Prague&quot;, &quot;Jan&quot;: 50.0, &quot;Feb&quot;: 72.0, &quot;Mar&quot;: 125.0, &quot;Apr&quot;: 168.0, &quot;May&quot;: 214.0, &quot;Jun&quot;: 218.0, &quot;Jul&quot;: 226.0, &quot;Aug&quot;: 212.0, &quot;Sep&quot;: 161.0, &quot;Oct&quot;: 121.0, &quot;Nov&quot;: 54.0, &quot;Dec&quot;: 47.0, &quot;max_sunshine&quot;: 226.0, &quot;min_sunshine&quot;: 47.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Cyprus&quot;, &quot;City&quot;: &quot;Nicosia&quot;, &quot;Jan&quot;: 182.9, &quot;Feb&quot;: 200.1, &quot;Mar&quot;: 238.7, &quot;Apr&quot;: 267.0, &quot;May&quot;: 331.7, &quot;Jun&quot;: 369.0, &quot;Jul&quot;: 387.5, &quot;Aug&quot;: 365.8, &quot;Sep&quot;: 312.0, &quot;Oct&quot;: 275.9, &quot;Nov&quot;: 213.0, &quot;Dec&quot;: 170.5, &quot;max_sunshine&quot;: 387.5, &quot;min_sunshine&quot;: 170.5}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Denmark&quot;, &quot;City&quot;: &quot;Copenhagen&quot;, &quot;Jan&quot;: 46.0, &quot;Feb&quot;: 62.0, &quot;Mar&quot;: 148.0, &quot;Apr&quot;: 214.0, &quot;May&quot;: 243.0, &quot;Jun&quot;: 238.0, &quot;Jul&quot;: 243.0, &quot;Aug&quot;: 194.0, &quot;Sep&quot;: 166.0, &quot;Oct&quot;: 105.0, &quot;Nov&quot;: 46.0, &quot;Dec&quot;: 34.0, &quot;max_sunshine&quot;: 243.0, &quot;min_sunshine&quot;: 34.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Estonia&quot;, &quot;City&quot;: &quot;Tallinn&quot;, &quot;Jan&quot;: 25.0, &quot;Feb&quot;: 56.0, &quot;Mar&quot;: 129.0, &quot;Apr&quot;: 203.0, &quot;May&quot;: 293.0, &quot;Jun&quot;: 286.0, &quot;Jul&quot;: 307.0, &quot;Aug&quot;: 241.0, &quot;Sep&quot;: 152.0, &quot;Oct&quot;: 87.0, &quot;Nov&quot;: 29.0, &quot;Dec&quot;: 19.0, &quot;max_sunshine&quot;: 307.0, &quot;min_sunshine&quot;: 19.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Faroe Islands&quot;, &quot;City&quot;: &quot;T\u00f3rshavn&quot;, &quot;Jan&quot;: 14.0, &quot;Feb&quot;: 36.0, &quot;Mar&quot;: 71.0, &quot;Apr&quot;: 106.0, &quot;May&quot;: 124.0, &quot;Jun&quot;: 125.0, &quot;Jul&quot;: 111.0, &quot;Aug&quot;: 98.0, &quot;Sep&quot;: 80.0, &quot;Oct&quot;: 49.0, &quot;Nov&quot;: 20.0, &quot;Dec&quot;: 6.0, &quot;max_sunshine&quot;: 125.0, &quot;min_sunshine&quot;: 6.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Finland&quot;, &quot;City&quot;: &quot;Helsinki&quot;, &quot;Jan&quot;: 38.0, &quot;Feb&quot;: 70.0, &quot;Mar&quot;: 138.0, &quot;Apr&quot;: 194.0, &quot;May&quot;: 284.0, &quot;Jun&quot;: 297.0, &quot;Jul&quot;: 291.0, &quot;Aug&quot;: 238.0, &quot;Sep&quot;: 150.0, &quot;Oct&quot;: 93.0, &quot;Nov&quot;: 36.0, &quot;Dec&quot;: 29.0, &quot;max_sunshine&quot;: 297.0, &quot;min_sunshine&quot;: 29.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;France&quot;, &quot;City&quot;: &quot;Marseille&quot;, &quot;Jan&quot;: 150.0, &quot;Feb&quot;: 156.0, &quot;Mar&quot;: 215.0, &quot;Apr&quot;: 245.0, &quot;May&quot;: 293.0, &quot;Jun&quot;: 326.0, &quot;Jul&quot;: 366.0, &quot;Aug&quot;: 327.0, &quot;Sep&quot;: 254.0, &quot;Oct&quot;: 205.0, &quot;Nov&quot;: 156.0, &quot;Dec&quot;: 143.0, &quot;max_sunshine&quot;: 366.0, &quot;min_sunshine&quot;: 143.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;France&quot;, &quot;City&quot;: &quot;Paris&quot;, &quot;Jan&quot;: 63.0, &quot;Feb&quot;: 79.0, &quot;Mar&quot;: 129.0, &quot;Apr&quot;: 166.0, &quot;May&quot;: 194.0, &quot;Jun&quot;: 202.0, &quot;Jul&quot;: 212.0, &quot;Aug&quot;: 212.0, &quot;Sep&quot;: 168.0, &quot;Oct&quot;: 118.0, &quot;Nov&quot;: 68.0, &quot;Dec&quot;: 51.0, &quot;max_sunshine&quot;: 212.0, &quot;min_sunshine&quot;: 51.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Georgia&quot;, &quot;City&quot;: &quot;Tbilisi&quot;, &quot;Jan&quot;: 99.0, &quot;Feb&quot;: 102.0, &quot;Mar&quot;: 142.0, &quot;Apr&quot;: 171.0, &quot;May&quot;: 213.0, &quot;Jun&quot;: 249.0, &quot;Jul&quot;: 256.0, &quot;Aug&quot;: 248.0, &quot;Sep&quot;: 206.0, &quot;Oct&quot;: 164.0, &quot;Nov&quot;: 103.0, &quot;Dec&quot;: 93.0, &quot;max_sunshine&quot;: 256.0, &quot;min_sunshine&quot;: 93.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Germany&quot;, &quot;City&quot;: &quot;Berlin&quot;, &quot;Jan&quot;: 47.0, &quot;Feb&quot;: 74.0, &quot;Mar&quot;: 121.0, &quot;Apr&quot;: 159.0, &quot;May&quot;: 220.0, &quot;Jun&quot;: 222.0, &quot;Jul&quot;: 217.0, &quot;Aug&quot;: 211.0, &quot;Sep&quot;: 156.0, &quot;Oct&quot;: 112.0, &quot;Nov&quot;: 51.0, &quot;Dec&quot;: 37.0, &quot;max_sunshine&quot;: 222.0, &quot;min_sunshine&quot;: 37.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Germany&quot;, &quot;City&quot;: &quot;Frankfurt&quot;, &quot;Jan&quot;: 50.0, &quot;Feb&quot;: 80.0, &quot;Mar&quot;: 121.0, &quot;Apr&quot;: 178.0, &quot;May&quot;: 211.0, &quot;Jun&quot;: 219.0, &quot;Jul&quot;: 233.0, &quot;Aug&quot;: 219.0, &quot;Sep&quot;: 156.0, &quot;Oct&quot;: 103.0, &quot;Nov&quot;: 51.0, &quot;Dec&quot;: 41.0, &quot;max_sunshine&quot;: 233.0, &quot;min_sunshine&quot;: 41.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Greece&quot;, &quot;City&quot;: &quot;Athens&quot;, &quot;Jan&quot;: 158.0, &quot;Feb&quot;: 168.0, &quot;Mar&quot;: 189.0, &quot;Apr&quot;: 225.0, &quot;May&quot;: 304.0, &quot;Jun&quot;: 360.0, &quot;Jul&quot;: 384.0, &quot;Aug&quot;: 360.0, &quot;Sep&quot;: 252.0, &quot;Oct&quot;: 198.0, &quot;Nov&quot;: 144.0, &quot;Dec&quot;: 105.0, &quot;max_sunshine&quot;: 384.0, &quot;min_sunshine&quot;: 105.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Greece&quot;, &quot;City&quot;: &quot;Ierapetra&quot;, &quot;Jan&quot;: 156.0, &quot;Feb&quot;: 159.0, &quot;Mar&quot;: 208.0, &quot;Apr&quot;: 240.0, &quot;May&quot;: 319.0, &quot;Jun&quot;: 355.0, &quot;Jul&quot;: 385.0, &quot;Aug&quot;: 368.0, &quot;Sep&quot;: 308.0, &quot;Oct&quot;: 236.0, &quot;Nov&quot;: 201.0, &quot;Dec&quot;: 167.0, &quot;max_sunshine&quot;: 385.0, &quot;min_sunshine&quot;: 156.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Hungary&quot;, &quot;City&quot;: &quot;Budapest&quot;, &quot;Jan&quot;: 62.0, &quot;Feb&quot;: 93.0, &quot;Mar&quot;: 137.0, &quot;Apr&quot;: 177.0, &quot;May&quot;: 234.0, &quot;Jun&quot;: 250.0, &quot;Jul&quot;: 271.0, &quot;Aug&quot;: 255.0, &quot;Sep&quot;: 187.0, &quot;Oct&quot;: 141.0, &quot;Nov&quot;: 69.0, &quot;Dec&quot;: 52.0, &quot;max_sunshine&quot;: 271.0, &quot;min_sunshine&quot;: 52.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Iceland&quot;, &quot;City&quot;: &quot;Reykjavik&quot;, &quot;Jan&quot;: 20.0, &quot;Feb&quot;: 60.0, &quot;Mar&quot;: 109.0, &quot;Apr&quot;: 164.0, &quot;May&quot;: 201.0, &quot;Jun&quot;: 174.0, &quot;Jul&quot;: 168.0, &quot;Aug&quot;: 155.0, &quot;Sep&quot;: 120.0, &quot;Oct&quot;: 93.0, &quot;Nov&quot;: 41.0, &quot;Dec&quot;: 22.0, &quot;max_sunshine&quot;: 201.0, &quot;min_sunshine&quot;: 20.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Ireland&quot;, &quot;City&quot;: &quot;Dublin&quot;, &quot;Jan&quot;: 59.0, &quot;Feb&quot;: 75.0, &quot;Mar&quot;: 109.0, &quot;Apr&quot;: 160.0, &quot;May&quot;: 195.0, &quot;Jun&quot;: 179.0, &quot;Jul&quot;: 164.0, &quot;Aug&quot;: 157.0, &quot;Sep&quot;: 129.0, &quot;Oct&quot;: 103.0, &quot;Nov&quot;: 71.0, &quot;Dec&quot;: 53.0, &quot;max_sunshine&quot;: 195.0, &quot;min_sunshine&quot;: 53.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Italy&quot;, &quot;City&quot;: &quot;Milan&quot;, &quot;Jan&quot;: 59.0, &quot;Feb&quot;: 96.0, &quot;Mar&quot;: 152.0, &quot;Apr&quot;: 177.0, &quot;May&quot;: 211.0, &quot;Jun&quot;: 243.0, &quot;Jul&quot;: 285.0, &quot;Aug&quot;: 251.0, &quot;Sep&quot;: 186.0, &quot;Oct&quot;: 130.0, &quot;Nov&quot;: 66.0, &quot;Dec&quot;: 59.0, &quot;max_sunshine&quot;: 285.0, &quot;min_sunshine&quot;: 59.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Italy&quot;, &quot;City&quot;: &quot;Rome&quot;, &quot;Jan&quot;: 121.0, &quot;Feb&quot;: 133.0, &quot;Mar&quot;: 167.0, &quot;Apr&quot;: 201.0, &quot;May&quot;: 264.0, &quot;Jun&quot;: 285.0, &quot;Jul&quot;: 332.0, &quot;Aug&quot;: 298.0, &quot;Sep&quot;: 237.0, &quot;Oct&quot;: 195.0, &quot;Nov&quot;: 129.0, &quot;Dec&quot;: 112.0, &quot;max_sunshine&quot;: 332.0, &quot;min_sunshine&quot;: 112.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Latvia&quot;, &quot;City&quot;: &quot;Riga&quot;, &quot;Jan&quot;: 31.0, &quot;Feb&quot;: 62.0, &quot;Mar&quot;: 127.0, &quot;Apr&quot;: 183.0, &quot;May&quot;: 264.0, &quot;Jun&quot;: 288.0, &quot;Jul&quot;: 264.0, &quot;Aug&quot;: 229.0, &quot;Sep&quot;: 153.0, &quot;Oct&quot;: 93.0, &quot;Nov&quot;: 39.0, &quot;Dec&quot;: 22.0, &quot;max_sunshine&quot;: 288.0, &quot;min_sunshine&quot;: 22.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Lithuania&quot;, &quot;City&quot;: &quot;Vilnius&quot;, &quot;Jan&quot;: 36.0, &quot;Feb&quot;: 71.0, &quot;Mar&quot;: 117.0, &quot;Apr&quot;: 164.0, &quot;May&quot;: 241.0, &quot;Jun&quot;: 231.0, &quot;Jul&quot;: 219.0, &quot;Aug&quot;: 217.0, &quot;Sep&quot;: 140.0, &quot;Oct&quot;: 94.0, &quot;Nov&quot;: 33.0, &quot;Dec&quot;: 25.0, &quot;max_sunshine&quot;: 241.0, &quot;min_sunshine&quot;: 25.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Malta&quot;, &quot;City&quot;: &quot;Valletta&quot;, &quot;Jan&quot;: 169.0, &quot;Feb&quot;: 178.0, &quot;Mar&quot;: 227.0, &quot;Apr&quot;: 254.0, &quot;May&quot;: 310.0, &quot;Jun&quot;: 337.0, &quot;Jul&quot;: 377.0, &quot;Aug&quot;: 352.0, &quot;Sep&quot;: 270.0, &quot;Oct&quot;: 224.0, &quot;Nov&quot;: 195.0, &quot;Dec&quot;: 161.0, &quot;max_sunshine&quot;: 377.0, &quot;min_sunshine&quot;: 161.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Moldova&quot;, &quot;City&quot;: &quot;Chi\u0219in\u0103u&quot;, &quot;Jan&quot;: 75.0, &quot;Feb&quot;: 80.0, &quot;Mar&quot;: 125.0, &quot;Apr&quot;: 187.0, &quot;May&quot;: 254.0, &quot;Jun&quot;: 283.0, &quot;Jul&quot;: 299.0, &quot;Aug&quot;: 295.0, &quot;Sep&quot;: 226.0, &quot;Oct&quot;: 169.0, &quot;Nov&quot;: 75.0, &quot;Dec&quot;: 58.0, &quot;max_sunshine&quot;: 299.0, &quot;min_sunshine&quot;: 58.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Montenegro&quot;, &quot;City&quot;: &quot;Podgorica&quot;, &quot;Jan&quot;: 123.0, &quot;Feb&quot;: 126.0, &quot;Mar&quot;: 170.0, &quot;Apr&quot;: 194.0, &quot;May&quot;: 251.0, &quot;Jun&quot;: 276.0, &quot;Jul&quot;: 340.0, &quot;Aug&quot;: 314.0, &quot;Sep&quot;: 252.0, &quot;Oct&quot;: 201.0, &quot;Nov&quot;: 126.0, &quot;Dec&quot;: 109.0, &quot;max_sunshine&quot;: 340.0, &quot;min_sunshine&quot;: 109.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Netherlands&quot;, &quot;City&quot;: &quot;Amsterdam&quot;, &quot;Jan&quot;: 63.0, &quot;Feb&quot;: 88.0, &quot;Mar&quot;: 126.0, &quot;Apr&quot;: 183.0, &quot;May&quot;: 222.0, &quot;Jun&quot;: 206.0, &quot;Jul&quot;: 217.0, &quot;Aug&quot;: 197.0, &quot;Sep&quot;: 139.0, &quot;Oct&quot;: 109.0, &quot;Nov&quot;: 62.0, &quot;Dec&quot;: 51.0, &quot;max_sunshine&quot;: 222.0, &quot;min_sunshine&quot;: 51.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;North Macedonia&quot;, &quot;City&quot;: &quot;Skopje&quot;, &quot;Jan&quot;: 87.0, &quot;Feb&quot;: 113.0, &quot;Mar&quot;: 161.0, &quot;Apr&quot;: 198.0, &quot;May&quot;: 245.0, &quot;Jun&quot;: 276.0, &quot;Jul&quot;: 323.0, &quot;Aug&quot;: 305.0, &quot;Sep&quot;: 248.0, &quot;Oct&quot;: 188.0, &quot;Nov&quot;: 115.0, &quot;Dec&quot;: 80.0, &quot;max_sunshine&quot;: 323.0, &quot;min_sunshine&quot;: 80.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Norway&quot;, &quot;City&quot;: &quot;Oslo&quot;, &quot;Jan&quot;: 40.0, &quot;Feb&quot;: 76.0, &quot;Mar&quot;: 126.0, &quot;Apr&quot;: 178.0, &quot;May&quot;: 220.0, &quot;Jun&quot;: 250.0, &quot;Jul&quot;: 246.0, &quot;Aug&quot;: 216.0, &quot;Sep&quot;: 144.0, &quot;Oct&quot;: 86.0, &quot;Nov&quot;: 51.0, &quot;Dec&quot;: 35.0, &quot;max_sunshine&quot;: 250.0, &quot;min_sunshine&quot;: 35.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Poland&quot;, &quot;City&quot;: &quot;Warsaw&quot;, &quot;Jan&quot;: 43.0, &quot;Feb&quot;: 59.0, &quot;Mar&quot;: 115.0, &quot;Apr&quot;: 150.0, &quot;May&quot;: 211.0, &quot;Jun&quot;: 237.0, &quot;Jul&quot;: 226.0, &quot;Aug&quot;: 214.0, &quot;Sep&quot;: 153.0, &quot;Oct&quot;: 99.0, &quot;Nov&quot;: 39.0, &quot;Dec&quot;: 25.0, &quot;max_sunshine&quot;: 237.0, &quot;min_sunshine&quot;: 25.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Portugal&quot;, &quot;City&quot;: &quot;Lisbon&quot;, &quot;Jan&quot;: 143.0, &quot;Feb&quot;: 157.0, &quot;Mar&quot;: 208.0, &quot;Apr&quot;: 234.0, &quot;May&quot;: 291.0, &quot;Jun&quot;: 303.0, &quot;Jul&quot;: 353.0, &quot;Aug&quot;: 344.0, &quot;Sep&quot;: 261.0, &quot;Oct&quot;: 214.0, &quot;Nov&quot;: 156.0, &quot;Dec&quot;: 143.0, &quot;max_sunshine&quot;: 353.0, &quot;min_sunshine&quot;: 143.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Romania&quot;, &quot;City&quot;: &quot;Bucharest&quot;, &quot;Jan&quot;: 71.0, &quot;Feb&quot;: 85.0, &quot;Mar&quot;: 140.0, &quot;Apr&quot;: 186.0, &quot;May&quot;: 245.0, &quot;Jun&quot;: 267.0, &quot;Jul&quot;: 288.0, &quot;Aug&quot;: 282.0, &quot;Sep&quot;: 225.0, &quot;Oct&quot;: 177.0, &quot;Nov&quot;: 87.0, &quot;Dec&quot;: 62.0, &quot;max_sunshine&quot;: 288.0, &quot;min_sunshine&quot;: 62.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Russia&quot;, &quot;City&quot;: &quot;Moscow&quot;, &quot;Jan&quot;: 37.0, &quot;Feb&quot;: 65.0, &quot;Mar&quot;: 142.0, &quot;Apr&quot;: 213.0, &quot;May&quot;: 274.0, &quot;Jun&quot;: 299.0, &quot;Jul&quot;: 323.0, &quot;Aug&quot;: 242.0, &quot;Sep&quot;: 171.0, &quot;Oct&quot;: 88.0, &quot;Nov&quot;: 33.0, &quot;Dec&quot;: 14.0, &quot;max_sunshine&quot;: 323.0, &quot;min_sunshine&quot;: 14.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Russia&quot;, &quot;City&quot;: &quot;Sochi&quot;, &quot;Jan&quot;: 96.0, &quot;Feb&quot;: 107.0, &quot;Mar&quot;: 146.0, &quot;Apr&quot;: 162.0, &quot;May&quot;: 220.0, &quot;Jun&quot;: 258.0, &quot;Jul&quot;: 279.0, &quot;Aug&quot;: 282.0, &quot;Sep&quot;: 225.0, &quot;Oct&quot;: 195.0, &quot;Nov&quot;: 120.0, &quot;Dec&quot;: 87.0, &quot;max_sunshine&quot;: 282.0, &quot;min_sunshine&quot;: 87.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Serbia&quot;, &quot;City&quot;: &quot;Belgrade&quot;, &quot;Jan&quot;: 72.0, &quot;Feb&quot;: 102.0, &quot;Mar&quot;: 153.0, &quot;Apr&quot;: 188.0, &quot;May&quot;: 242.0, &quot;Jun&quot;: 261.0, &quot;Jul&quot;: 291.0, &quot;Aug&quot;: 274.0, &quot;Sep&quot;: 204.0, &quot;Oct&quot;: 163.0, &quot;Nov&quot;: 97.0, &quot;Dec&quot;: 65.0, &quot;max_sunshine&quot;: 291.0, &quot;min_sunshine&quot;: 65.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Slovakia&quot;, &quot;City&quot;: &quot;Bratislava&quot;, &quot;Jan&quot;: 65.0, &quot;Feb&quot;: 82.0, &quot;Mar&quot;: 152.0, &quot;Apr&quot;: 204.0, &quot;May&quot;: 264.0, &quot;Jun&quot;: 270.0, &quot;Jul&quot;: 276.0, &quot;Aug&quot;: 270.0, &quot;Sep&quot;: 207.0, &quot;Oct&quot;: 143.0, &quot;Nov&quot;: 60.0, &quot;Dec&quot;: 47.0, &quot;max_sunshine&quot;: 276.0, &quot;min_sunshine&quot;: 47.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Slovenia&quot;, &quot;City&quot;: &quot;Ljubljana&quot;, &quot;Jan&quot;: 71.0, &quot;Feb&quot;: 114.0, &quot;Mar&quot;: 149.0, &quot;Apr&quot;: 178.0, &quot;May&quot;: 235.0, &quot;Jun&quot;: 246.0, &quot;Jul&quot;: 293.0, &quot;Aug&quot;: 264.0, &quot;Sep&quot;: 183.0, &quot;Oct&quot;: 120.0, &quot;Nov&quot;: 66.0, &quot;Dec&quot;: 56.0, &quot;max_sunshine&quot;: 293.0, &quot;min_sunshine&quot;: 56.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Spain&quot;, &quot;City&quot;: &quot;Barcelona&quot;, &quot;Jan&quot;: 158.0, &quot;Feb&quot;: 171.0, &quot;Mar&quot;: 206.0, &quot;Apr&quot;: 239.0, &quot;May&quot;: 258.0, &quot;Jun&quot;: 287.0, &quot;Jul&quot;: 293.0, &quot;Aug&quot;: 264.0, &quot;Sep&quot;: 229.0, &quot;Oct&quot;: 196.0, &quot;Nov&quot;: 153.0, &quot;Dec&quot;: 137.0, &quot;max_sunshine&quot;: 293.0, &quot;min_sunshine&quot;: 137.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Spain&quot;, &quot;City&quot;: &quot;Madrid&quot;, &quot;Jan&quot;: 148.0, &quot;Feb&quot;: 157.0, &quot;Mar&quot;: 214.0, &quot;Apr&quot;: 231.0, &quot;May&quot;: 272.0, &quot;Jun&quot;: 310.0, &quot;Jul&quot;: 359.0, &quot;Aug&quot;: 335.0, &quot;Sep&quot;: 261.0, &quot;Oct&quot;: 198.0, &quot;Nov&quot;: 157.0, &quot;Dec&quot;: 124.0, &quot;max_sunshine&quot;: 359.0, &quot;min_sunshine&quot;: 124.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Spain&quot;, &quot;City&quot;: &quot;Seville&quot;, &quot;Jan&quot;: 179.0, &quot;Feb&quot;: 183.0, &quot;Mar&quot;: 224.0, &quot;Apr&quot;: 234.0, &quot;May&quot;: 287.0, &quot;Jun&quot;: 312.0, &quot;Jul&quot;: 351.0, &quot;Aug&quot;: 328.0, &quot;Sep&quot;: 250.0, &quot;Oct&quot;: 218.0, &quot;Nov&quot;: 186.0, &quot;Dec&quot;: 154.0, &quot;max_sunshine&quot;: 351.0, &quot;min_sunshine&quot;: 154.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Sweden&quot;, &quot;City&quot;: &quot;Gothenburg&quot;, &quot;Jan&quot;: 48.0, &quot;Feb&quot;: 75.0, &quot;Mar&quot;: 151.0, &quot;Apr&quot;: 201.0, &quot;May&quot;: 274.0, &quot;Jun&quot;: 286.0, &quot;Jul&quot;: 285.0, &quot;Aug&quot;: 245.0, &quot;Sep&quot;: 178.0, &quot;Oct&quot;: 108.0, &quot;Nov&quot;: 47.0, &quot;Dec&quot;: 29.0, &quot;max_sunshine&quot;: 286.0, &quot;min_sunshine&quot;: 29.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Sweden&quot;, &quot;City&quot;: &quot;Stockholm&quot;, &quot;Jan&quot;: 40.0, &quot;Feb&quot;: 72.0, &quot;Mar&quot;: 135.0, &quot;Apr&quot;: 185.0, &quot;May&quot;: 276.0, &quot;Jun&quot;: 292.0, &quot;Jul&quot;: 260.0, &quot;Aug&quot;: 221.0, &quot;Sep&quot;: 154.0, &quot;Oct&quot;: 99.0, &quot;Nov&quot;: 54.0, &quot;Dec&quot;: 33.0, &quot;max_sunshine&quot;: 292.0, &quot;min_sunshine&quot;: 33.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Switzerland&quot;, &quot;City&quot;: &quot;Zurich&quot;, &quot;Jan&quot;: 48.0, &quot;Feb&quot;: 77.0, &quot;Mar&quot;: 125.0, &quot;Apr&quot;: 159.0, &quot;May&quot;: 186.0, &quot;Jun&quot;: 204.0, &quot;Jul&quot;: 230.0, &quot;Aug&quot;: 208.0, &quot;Sep&quot;: 151.0, &quot;Oct&quot;: 93.0, &quot;Nov&quot;: 50.0, &quot;Dec&quot;: 35.0, &quot;max_sunshine&quot;: 230.0, &quot;min_sunshine&quot;: 35.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Turkey&quot;, &quot;City&quot;: &quot;Istanbul&quot;, &quot;Jan&quot;: 71.0, &quot;Feb&quot;: 88.0, &quot;Mar&quot;: 133.0, &quot;Apr&quot;: 180.0, &quot;May&quot;: 251.0, &quot;Jun&quot;: 300.0, &quot;Jul&quot;: 322.0, &quot;Aug&quot;: 295.0, &quot;Sep&quot;: 243.0, &quot;Oct&quot;: 164.0, &quot;Nov&quot;: 102.0, &quot;Dec&quot;: 68.0, &quot;max_sunshine&quot;: 322.0, &quot;min_sunshine&quot;: 68.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;Ukraine&quot;, &quot;City&quot;: &quot;Kiev&quot;, &quot;Jan&quot;: 31.0, &quot;Feb&quot;: 57.0, &quot;Mar&quot;: 124.0, &quot;Apr&quot;: 180.0, &quot;May&quot;: 279.0, &quot;Jun&quot;: 270.0, &quot;Jul&quot;: 310.0, &quot;Aug&quot;: 248.0, &quot;Sep&quot;: 210.0, &quot;Oct&quot;: 155.0, &quot;Nov&quot;: 60.0, &quot;Dec&quot;: 31.0, &quot;max_sunshine&quot;: 310.0, &quot;min_sunshine&quot;: 31.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;United Kingdom&quot;, &quot;City&quot;: &quot;Edinburgh&quot;, &quot;Jan&quot;: 54.0, &quot;Feb&quot;: 79.0, &quot;Mar&quot;: 115.0, &quot;Apr&quot;: 145.0, &quot;May&quot;: 188.0, &quot;Jun&quot;: 166.0, &quot;Jul&quot;: 172.0, &quot;Aug&quot;: 162.0, &quot;Sep&quot;: 129.0, &quot;Oct&quot;: 101.0, &quot;Nov&quot;: 71.0, &quot;Dec&quot;: 46.0, &quot;max_sunshine&quot;: 188.0, &quot;min_sunshine&quot;: 46.0}, {&quot;Continent&quot;: &quot;Europe&quot;, &quot;Country&quot;: &quot;United Kingdom&quot;, &quot;City&quot;: &quot;London&quot;, &quot;Jan&quot;: 62.0, &quot;Feb&quot;: 78.0, &quot;Mar&quot;: 115.0, &quot;Apr&quot;: 169.0, &quot;May&quot;: 199.0, &quot;Jun&quot;: 204.0, &quot;Jul&quot;: 212.0, &quot;Aug&quot;: 205.0, &quot;Sep&quot;: 149.0, &quot;Oct&quot;: 117.0, &quot;Nov&quot;: 73.0, &quot;Dec&quot;: 52.0, &quot;max_sunshine&quot;: 212.0, &quot;min_sunshine&quot;: 52.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Canada&quot;, &quot;City&quot;: &quot;Calgary&quot;, &quot;Jan&quot;: 119.5, &quot;Feb&quot;: 144.6, &quot;Mar&quot;: 177.2, &quot;Apr&quot;: 220.2, &quot;May&quot;: 249.4, &quot;Jun&quot;: 269.9, &quot;Jul&quot;: 314.1, &quot;Aug&quot;: 284.0, &quot;Sep&quot;: 207.0, &quot;Oct&quot;: 175.4, &quot;Nov&quot;: 121.1, &quot;Dec&quot;: 114.0, &quot;max_sunshine&quot;: 314.1, &quot;min_sunshine&quot;: 114.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Canada&quot;, &quot;City&quot;: &quot;Churchill&quot;, &quot;Jan&quot;: 79.7, &quot;Feb&quot;: 117.7, &quot;Mar&quot;: 177.8, &quot;Apr&quot;: 198.2, &quot;May&quot;: 197.0, &quot;Jun&quot;: 243.0, &quot;Jul&quot;: 281.7, &quot;Aug&quot;: 225.9, &quot;Sep&quot;: 112.0, &quot;Oct&quot;: 58.1, &quot;Nov&quot;: 55.3, &quot;Dec&quot;: 53.1, &quot;max_sunshine&quot;: 281.7, &quot;min_sunshine&quot;: 53.1}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Canada&quot;, &quot;City&quot;: &quot;Edmonton&quot;, &quot;Jan&quot;: 100.8, &quot;Feb&quot;: 121.7, &quot;Mar&quot;: 176.3, &quot;Apr&quot;: 244.2, &quot;May&quot;: 279.9, &quot;Jun&quot;: 285.9, &quot;Jul&quot;: 307.5, &quot;Aug&quot;: 282.3, &quot;Sep&quot;: 192.7, &quot;Oct&quot;: 170.8, &quot;Nov&quot;: 98.4, &quot;Dec&quot;: 84.5, &quot;max_sunshine&quot;: 307.5, &quot;min_sunshine&quot;: 84.5}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Canada&quot;, &quot;City&quot;: &quot;Iqaluit&quot;, &quot;Jan&quot;: 32.4, &quot;Feb&quot;: 94.0, &quot;Mar&quot;: 172.2, &quot;Apr&quot;: 216.5, &quot;May&quot;: 180.5, &quot;Jun&quot;: 200.2, &quot;Jul&quot;: 236.8, &quot;Aug&quot;: 156.8, &quot;Sep&quot;: 87.9, &quot;Oct&quot;: 51.4, &quot;Nov&quot;: 35.6, &quot;Dec&quot;: 12.6, &quot;max_sunshine&quot;: 236.8, &quot;min_sunshine&quot;: 12.6}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Canada&quot;, &quot;City&quot;: &quot;Montreal&quot;, &quot;Jan&quot;: 101.0, &quot;Feb&quot;: 128.0, &quot;Mar&quot;: 164.0, &quot;Apr&quot;: 178.0, &quot;May&quot;: 229.0, &quot;Jun&quot;: 240.0, &quot;Jul&quot;: 272.0, &quot;Aug&quot;: 246.0, &quot;Sep&quot;: 182.0, &quot;Oct&quot;: 144.0, &quot;Nov&quot;: 84.0, &quot;Dec&quot;: 84.0, &quot;max_sunshine&quot;: 272.0, &quot;min_sunshine&quot;: 84.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Canada&quot;, &quot;City&quot;: &quot;Toronto&quot;, &quot;Jan&quot;: 85.9, &quot;Feb&quot;: 111.3, &quot;Mar&quot;: 161.0, &quot;Apr&quot;: 180.0, &quot;May&quot;: 227.7, &quot;Jun&quot;: 259.6, &quot;Jul&quot;: 279.6, &quot;Aug&quot;: 245.6, &quot;Sep&quot;: 194.4, &quot;Oct&quot;: 154.3, &quot;Nov&quot;: 88.9, &quot;Dec&quot;: 78.1, &quot;max_sunshine&quot;: 279.6, &quot;min_sunshine&quot;: 78.1}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Canada&quot;, &quot;City&quot;: &quot;Vancouver&quot;, &quot;Jan&quot;: 60.1, &quot;Feb&quot;: 91.0, &quot;Mar&quot;: 134.8, &quot;Apr&quot;: 185.0, &quot;May&quot;: 222.5, &quot;Jun&quot;: 226.9, &quot;Jul&quot;: 289.8, &quot;Aug&quot;: 277.1, &quot;Sep&quot;: 212.8, &quot;Oct&quot;: 120.7, &quot;Nov&quot;: 60.4, &quot;Dec&quot;: 56.5, &quot;max_sunshine&quot;: 289.8, &quot;min_sunshine&quot;: 56.5}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Canada&quot;, &quot;City&quot;: &quot;Whitehorse&quot;, &quot;Jan&quot;: 43.8, &quot;Feb&quot;: 105.5, &quot;Mar&quot;: 163.2, &quot;Apr&quot;: 238.5, &quot;May&quot;: 251.1, &quot;Jun&quot;: 266.7, &quot;Jul&quot;: 247.6, &quot;Aug&quot;: 226.5, &quot;Sep&quot;: 132.7, &quot;Oct&quot;: 84.9, &quot;Nov&quot;: 39.8, &quot;Dec&quot;: 26.8, &quot;max_sunshine&quot;: 266.7, &quot;min_sunshine&quot;: 26.8}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Canada&quot;, &quot;City&quot;: &quot;Winnipeg&quot;, &quot;Jan&quot;: 114.7, &quot;Feb&quot;: 133.9, &quot;Mar&quot;: 181.9, &quot;Apr&quot;: 241.4, &quot;May&quot;: 285.3, &quot;Jun&quot;: 276.3, &quot;Jul&quot;: 308.3, &quot;Aug&quot;: 281.4, &quot;Sep&quot;: 189.0, &quot;Oct&quot;: 147.4, &quot;Nov&quot;: 93.9, &quot;Dec&quot;: 99.5, &quot;max_sunshine&quot;: 308.3, &quot;min_sunshine&quot;: 93.9}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Mexico&quot;, &quot;City&quot;: &quot;La Paz&quot;, &quot;Jan&quot;: 200.0, &quot;Feb&quot;: 234.0, &quot;Mar&quot;: 271.0, &quot;Apr&quot;: 292.0, &quot;May&quot;: 332.0, &quot;Jun&quot;: 322.0, &quot;Jul&quot;: 287.0, &quot;Aug&quot;: 258.0, &quot;Sep&quot;: 257.0, &quot;Oct&quot;: 272.0, &quot;Nov&quot;: 233.0, &quot;Dec&quot;: 190.0, &quot;max_sunshine&quot;: 332.0, &quot;min_sunshine&quot;: 190.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Mexico&quot;, &quot;City&quot;: &quot;Mexico City&quot;, &quot;Jan&quot;: 240.0, &quot;Feb&quot;: 234.0, &quot;Mar&quot;: 268.0, &quot;Apr&quot;: 232.0, &quot;May&quot;: 225.0, &quot;Jun&quot;: 183.0, &quot;Jul&quot;: 176.0, &quot;Aug&quot;: 176.0, &quot;Sep&quot;: 157.0, &quot;Oct&quot;: 194.0, &quot;Nov&quot;: 232.0, &quot;Dec&quot;: 236.0, &quot;max_sunshine&quot;: 268.0, &quot;min_sunshine&quot;: 157.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Mexico&quot;, &quot;City&quot;: &quot;Monterrey&quot;, &quot;Jan&quot;: 142.0, &quot;Feb&quot;: 154.0, &quot;Mar&quot;: 195.0, &quot;Apr&quot;: 193.0, &quot;May&quot;: 192.0, &quot;Jun&quot;: 206.0, &quot;Jul&quot;: 249.0, &quot;Aug&quot;: 242.0, &quot;Sep&quot;: 200.0, &quot;Oct&quot;: 170.0, &quot;Nov&quot;: 163.0, &quot;Dec&quot;: 133.0, &quot;max_sunshine&quot;: 249.0, &quot;min_sunshine&quot;: 133.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Mexico&quot;, &quot;City&quot;: &quot;Villahermosa&quot;, &quot;Jan&quot;: 168.0, &quot;Feb&quot;: 185.0, &quot;Mar&quot;: 252.0, &quot;Apr&quot;: 215.0, &quot;May&quot;: 278.0, &quot;Jun&quot;: 217.0, &quot;Jul&quot;: 252.0, &quot;Aug&quot;: 245.0, &quot;Sep&quot;: 167.0, &quot;Oct&quot;: 150.0, &quot;Nov&quot;: 170.0, &quot;Dec&quot;: 144.0, &quot;max_sunshine&quot;: 278.0, &quot;min_sunshine&quot;: 144.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Albuquerque&quot;, &quot;Jan&quot;: 234.2, &quot;Feb&quot;: 225.3, &quot;Mar&quot;: 270.2, &quot;Apr&quot;: 304.6, &quot;May&quot;: 347.4, &quot;Jun&quot;: 359.3, &quot;Jul&quot;: 335.0, &quot;Aug&quot;: 314.2, &quot;Sep&quot;: 286.7, &quot;Oct&quot;: 281.4, &quot;Nov&quot;: 233.8, &quot;Dec&quot;: 223.3, &quot;max_sunshine&quot;: 359.3, &quot;min_sunshine&quot;: 223.3}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Anchorage&quot;, &quot;Jan&quot;: 82.9, &quot;Feb&quot;: 120.5, &quot;Mar&quot;: 195.8, &quot;Apr&quot;: 235.3, &quot;May&quot;: 288.7, &quot;Jun&quot;: 274.7, &quot;Jul&quot;: 250.1, &quot;Aug&quot;: 203.9, &quot;Sep&quot;: 159.8, &quot;Oct&quot;: 117.1, &quot;Nov&quot;: 80.6, &quot;Dec&quot;: 51.8, &quot;max_sunshine&quot;: 288.7, &quot;min_sunshine&quot;: 51.8}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Juneau&quot;, &quot;Jan&quot;: 80.9, &quot;Feb&quot;: 89.2, &quot;Mar&quot;: 137.3, &quot;Apr&quot;: 182.3, &quot;May&quot;: 231.7, &quot;Jun&quot;: 189.3, &quot;Jul&quot;: 182.9, &quot;Aug&quot;: 161.6, &quot;Sep&quot;: 109.6, &quot;Oct&quot;: 66.2, &quot;Nov&quot;: 58.5, &quot;Dec&quot;: 41.2, &quot;max_sunshine&quot;: 231.7, &quot;min_sunshine&quot;: 41.2}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Atlanta&quot;, &quot;Jan&quot;: 164.0, &quot;Feb&quot;: 171.7, &quot;Mar&quot;: 220.5, &quot;Apr&quot;: 261.2, &quot;May&quot;: 288.6, &quot;Jun&quot;: 284.8, &quot;Jul&quot;: 273.8, &quot;Aug&quot;: 258.6, &quot;Sep&quot;: 227.5, &quot;Oct&quot;: 238.5, &quot;Nov&quot;: 185.1, &quot;Dec&quot;: 164.0, &quot;max_sunshine&quot;: 288.6, &quot;min_sunshine&quot;: 164.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Austin&quot;, &quot;Jan&quot;: 163.8, &quot;Feb&quot;: 169.3, &quot;Mar&quot;: 205.9, &quot;Apr&quot;: 205.8, &quot;May&quot;: 227.1, &quot;Jun&quot;: 285.5, &quot;Jul&quot;: 317.2, &quot;Aug&quot;: 297.9, &quot;Sep&quot;: 233.8, &quot;Oct&quot;: 215.6, &quot;Nov&quot;: 168.3, &quot;Dec&quot;: 153.5, &quot;max_sunshine&quot;: 317.2, &quot;min_sunshine&quot;: 153.5}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Baltimore&quot;, &quot;Jan&quot;: 155.4, &quot;Feb&quot;: 164.0, &quot;Mar&quot;: 215.0, &quot;Apr&quot;: 230.7, &quot;May&quot;: 254.5, &quot;Jun&quot;: 277.3, &quot;Jul&quot;: 290.1, &quot;Aug&quot;: 264.4, &quot;Sep&quot;: 221.8, &quot;Oct&quot;: 205.5, &quot;Nov&quot;: 158.5, &quot;Dec&quot;: 144.5, &quot;max_sunshine&quot;: 290.1, &quot;min_sunshine&quot;: 144.5}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Boise&quot;, &quot;Jan&quot;: 109.3, &quot;Feb&quot;: 151.9, &quot;Mar&quot;: 238.6, &quot;Apr&quot;: 281.4, &quot;May&quot;: 335.5, &quot;Jun&quot;: 351.6, &quot;Jul&quot;: 399.8, &quot;Aug&quot;: 358.8, &quot;Sep&quot;: 303.6, &quot;Oct&quot;: 238.1, &quot;Nov&quot;: 119.6, &quot;Dec&quot;: 105.2, &quot;max_sunshine&quot;: 399.8, &quot;min_sunshine&quot;: 105.2}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Boston&quot;, &quot;Jan&quot;: 163.4, &quot;Feb&quot;: 168.4, &quot;Mar&quot;: 213.7, &quot;Apr&quot;: 227.2, &quot;May&quot;: 267.3, &quot;Jun&quot;: 286.5, &quot;Jul&quot;: 300.9, &quot;Aug&quot;: 277.3, &quot;Sep&quot;: 237.1, &quot;Oct&quot;: 206.3, &quot;Nov&quot;: 143.2, &quot;Dec&quot;: 142.3, &quot;max_sunshine&quot;: 300.9, &quot;min_sunshine&quot;: 142.3}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Charlotte&quot;, &quot;Jan&quot;: 173.3, &quot;Feb&quot;: 180.3, &quot;Mar&quot;: 234.8, &quot;Apr&quot;: 269.6, &quot;May&quot;: 292.1, &quot;Jun&quot;: 289.2, &quot;Jul&quot;: 290.0, &quot;Aug&quot;: 272.9, &quot;Sep&quot;: 241.4, &quot;Oct&quot;: 230.5, &quot;Nov&quot;: 178.4, &quot;Dec&quot;: 168.5, &quot;max_sunshine&quot;: 292.1, &quot;min_sunshine&quot;: 168.5}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Chicago&quot;, &quot;Jan&quot;: 135.8, &quot;Feb&quot;: 136.2, &quot;Mar&quot;: 187.0, &quot;Apr&quot;: 215.3, &quot;May&quot;: 281.9, &quot;Jun&quot;: 311.4, &quot;Jul&quot;: 318.4, &quot;Aug&quot;: 283.0, &quot;Sep&quot;: 226.6, &quot;Oct&quot;: 193.2, &quot;Nov&quot;: 113.3, &quot;Dec&quot;: 106.3, &quot;max_sunshine&quot;: 318.4, &quot;min_sunshine&quot;: 106.3}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Cleveland&quot;, &quot;Jan&quot;: 101.0, &quot;Feb&quot;: 122.3, &quot;Mar&quot;: 167.0, &quot;Apr&quot;: 216.0, &quot;May&quot;: 263.6, &quot;Jun&quot;: 294.6, &quot;Jul&quot;: 307.2, &quot;Aug&quot;: 262.2, &quot;Sep&quot;: 219.0, &quot;Oct&quot;: 169.5, &quot;Nov&quot;: 89.8, &quot;Dec&quot;: 67.8, &quot;max_sunshine&quot;: 307.2, &quot;min_sunshine&quot;: 67.8}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Columbus&quot;, &quot;Jan&quot;: 110.6, &quot;Feb&quot;: 126.3, &quot;Mar&quot;: 162.0, &quot;Apr&quot;: 201.8, &quot;May&quot;: 243.4, &quot;Jun&quot;: 258.1, &quot;Jul&quot;: 260.9, &quot;Aug&quot;: 235.9, &quot;Sep&quot;: 212.0, &quot;Oct&quot;: 183.1, &quot;Nov&quot;: 104.2, &quot;Dec&quot;: 84.3, &quot;max_sunshine&quot;: 260.9, &quot;min_sunshine&quot;: 84.3}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Dallas&quot;, &quot;Jan&quot;: 183.5, &quot;Feb&quot;: 178.3, &quot;Mar&quot;: 227.7, &quot;Apr&quot;: 236.0, &quot;May&quot;: 258.4, &quot;Jun&quot;: 297.8, &quot;Jul&quot;: 332.4, &quot;Aug&quot;: 304.5, &quot;Sep&quot;: 246.2, &quot;Oct&quot;: 228.1, &quot;Nov&quot;: 183.8, &quot;Dec&quot;: 173.0, &quot;max_sunshine&quot;: 332.4, &quot;min_sunshine&quot;: 173.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Denver&quot;, &quot;Jan&quot;: 215.3, &quot;Feb&quot;: 211.1, &quot;Mar&quot;: 255.6, &quot;Apr&quot;: 276.2, &quot;May&quot;: 290.0, &quot;Jun&quot;: 315.3, &quot;Jul&quot;: 325.0, &quot;Aug&quot;: 306.4, &quot;Sep&quot;: 272.3, &quot;Oct&quot;: 249.2, &quot;Nov&quot;: 194.3, &quot;Dec&quot;: 195.9, &quot;max_sunshine&quot;: 325.0, &quot;min_sunshine&quot;: 194.3}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Detroit&quot;, &quot;Jan&quot;: 119.9, &quot;Feb&quot;: 138.3, &quot;Mar&quot;: 184.9, &quot;Apr&quot;: 217.0, &quot;May&quot;: 275.9, &quot;Jun&quot;: 301.8, &quot;Jul&quot;: 317.0, &quot;Aug&quot;: 283.5, &quot;Sep&quot;: 227.6, &quot;Oct&quot;: 176.0, &quot;Nov&quot;: 106.3, &quot;Dec&quot;: 87.7, &quot;max_sunshine&quot;: 317.0, &quot;min_sunshine&quot;: 87.7}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;El Paso&quot;, &quot;Jan&quot;: 254.5, &quot;Feb&quot;: 263.0, &quot;Mar&quot;: 326.0, &quot;Apr&quot;: 348.0, &quot;May&quot;: 384.7, &quot;Jun&quot;: 384.1, &quot;Jul&quot;: 360.2, &quot;Aug&quot;: 335.4, &quot;Sep&quot;: 304.1, &quot;Oct&quot;: 298.6, &quot;Nov&quot;: 257.6, &quot;Dec&quot;: 246.3, &quot;max_sunshine&quot;: 384.7, &quot;min_sunshine&quot;: 246.3}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Fresno&quot;, &quot;Jan&quot;: 141.5, &quot;Feb&quot;: 196.9, &quot;Mar&quot;: 286.2, &quot;Apr&quot;: 335.5, &quot;May&quot;: 398.9, &quot;Jun&quot;: 412.2, &quot;Jul&quot;: 428.2, &quot;Aug&quot;: 399.6, &quot;Sep&quot;: 345.9, &quot;Oct&quot;: 302.3, &quot;Nov&quot;: 189.9, &quot;Dec&quot;: 127.1, &quot;max_sunshine&quot;: 428.2, &quot;min_sunshine&quot;: 127.1}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Honolulu&quot;, &quot;Jan&quot;: 213.5, &quot;Feb&quot;: 212.7, &quot;Mar&quot;: 259.2, &quot;Apr&quot;: 251.8, &quot;May&quot;: 280.6, &quot;Jun&quot;: 286.1, &quot;Jul&quot;: 306.2, &quot;Aug&quot;: 303.1, &quot;Sep&quot;: 278.8, &quot;Oct&quot;: 244.0, &quot;Nov&quot;: 200.4, &quot;Dec&quot;: 199.5, &quot;max_sunshine&quot;: 306.2, &quot;min_sunshine&quot;: 199.5}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Houston&quot;, &quot;Jan&quot;: 143.4, &quot;Feb&quot;: 155.0, &quot;Mar&quot;: 192.5, &quot;Apr&quot;: 209.8, &quot;May&quot;: 249.2, &quot;Jun&quot;: 281.3, &quot;Jul&quot;: 293.9, &quot;Aug&quot;: 270.5, &quot;Sep&quot;: 236.5, &quot;Oct&quot;: 228.8, &quot;Nov&quot;: 168.3, &quot;Dec&quot;: 148.7, &quot;max_sunshine&quot;: 293.9, &quot;min_sunshine&quot;: 143.4}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Indianapolis&quot;, &quot;Jan&quot;: 132.1, &quot;Feb&quot;: 145.7, &quot;Mar&quot;: 178.3, &quot;Apr&quot;: 214.8, &quot;May&quot;: 264.7, &quot;Jun&quot;: 287.2, &quot;Jul&quot;: 295.2, &quot;Aug&quot;: 273.7, &quot;Sep&quot;: 232.6, &quot;Oct&quot;: 196.6, &quot;Nov&quot;: 117.1, &quot;Dec&quot;: 102.4, &quot;max_sunshine&quot;: 295.2, &quot;min_sunshine&quot;: 102.4}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Jacksonville&quot;, &quot;Jan&quot;: 189.4, &quot;Feb&quot;: 193.8, &quot;Mar&quot;: 257.9, &quot;Apr&quot;: 286.4, &quot;May&quot;: 303.9, &quot;Jun&quot;: 283.6, &quot;Jul&quot;: 282.0, &quot;Aug&quot;: 262.4, &quot;Sep&quot;: 228.2, &quot;Oct&quot;: 214.6, &quot;Nov&quot;: 193.9, &quot;Dec&quot;: 183.6, &quot;max_sunshine&quot;: 303.9, &quot;min_sunshine&quot;: 183.6}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Kansas City&quot;, &quot;Jan&quot;: 183.7, &quot;Feb&quot;: 174.3, &quot;Mar&quot;: 223.9, &quot;Apr&quot;: 257.8, &quot;May&quot;: 285.0, &quot;Jun&quot;: 305.5, &quot;Jul&quot;: 329.3, &quot;Aug&quot;: 293.9, &quot;Sep&quot;: 240.5, &quot;Oct&quot;: 213.6, &quot;Nov&quot;: 155.3, &quot;Dec&quot;: 147.1, &quot;max_sunshine&quot;: 329.3, &quot;min_sunshine&quot;: 147.1}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Las Vegas&quot;, &quot;Jan&quot;: 245.2, &quot;Feb&quot;: 246.7, &quot;Mar&quot;: 314.6, &quot;Apr&quot;: 346.1, &quot;May&quot;: 388.1, &quot;Jun&quot;: 401.7, &quot;Jul&quot;: 390.9, &quot;Aug&quot;: 368.5, &quot;Sep&quot;: 337.1, &quot;Oct&quot;: 304.4, &quot;Nov&quot;: 246.0, &quot;Dec&quot;: 236.0, &quot;max_sunshine&quot;: 401.7, &quot;min_sunshine&quot;: 236.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Los Angeles&quot;, &quot;Jan&quot;: 225.3, &quot;Feb&quot;: 222.5, &quot;Mar&quot;: 267.0, &quot;Apr&quot;: 303.5, &quot;May&quot;: 276.2, &quot;Jun&quot;: 275.8, &quot;Jul&quot;: 364.1, &quot;Aug&quot;: 349.5, &quot;Sep&quot;: 278.5, &quot;Oct&quot;: 255.1, &quot;Nov&quot;: 217.3, &quot;Dec&quot;: 219.4, &quot;max_sunshine&quot;: 364.1, &quot;min_sunshine&quot;: 217.3}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Louisville&quot;, &quot;Jan&quot;: 140.5, &quot;Feb&quot;: 148.9, &quot;Mar&quot;: 188.6, &quot;Apr&quot;: 221.1, &quot;May&quot;: 263.4, &quot;Jun&quot;: 288.9, &quot;Jul&quot;: 293.6, &quot;Aug&quot;: 272.6, &quot;Sep&quot;: 234.3, &quot;Oct&quot;: 208.5, &quot;Nov&quot;: 135.7, &quot;Dec&quot;: 118.3, &quot;max_sunshine&quot;: 293.6, &quot;min_sunshine&quot;: 118.3}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Memphis&quot;, &quot;Jan&quot;: 166.6, &quot;Feb&quot;: 173.8, &quot;Mar&quot;: 215.3, &quot;Apr&quot;: 254.6, &quot;May&quot;: 301.5, &quot;Jun&quot;: 320.6, &quot;Jul&quot;: 326.9, &quot;Aug&quot;: 307.0, &quot;Sep&quot;: 251.2, &quot;Oct&quot;: 245.9, &quot;Nov&quot;: 173.0, &quot;Dec&quot;: 151.9, &quot;max_sunshine&quot;: 326.9, &quot;min_sunshine&quot;: 151.9}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Miami&quot;, &quot;Jan&quot;: 219.8, &quot;Feb&quot;: 216.9, &quot;Mar&quot;: 277.2, &quot;Apr&quot;: 293.8, &quot;May&quot;: 301.3, &quot;Jun&quot;: 288.7, &quot;Jul&quot;: 308.7, &quot;Aug&quot;: 288.3, &quot;Sep&quot;: 262.2, &quot;Oct&quot;: 260.2, &quot;Nov&quot;: 220.8, &quot;Dec&quot;: 216.1, &quot;max_sunshine&quot;: 308.7, &quot;min_sunshine&quot;: 216.1}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Milwaukee&quot;, &quot;Jan&quot;: 140.2, &quot;Feb&quot;: 151.5, &quot;Mar&quot;: 185.4, &quot;Apr&quot;: 213.5, &quot;May&quot;: 275.5, &quot;Jun&quot;: 304.5, &quot;Jul&quot;: 321.1, &quot;Aug&quot;: 281.2, &quot;Sep&quot;: 215.1, &quot;Oct&quot;: 178.0, &quot;Nov&quot;: 112.8, &quot;Dec&quot;: 104.8, &quot;max_sunshine&quot;: 321.1, &quot;min_sunshine&quot;: 104.8}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Minneapolis&quot;, &quot;Jan&quot;: 156.7, &quot;Feb&quot;: 178.3, &quot;Mar&quot;: 217.5, &quot;Apr&quot;: 242.1, &quot;May&quot;: 295.2, &quot;Jun&quot;: 321.9, &quot;Jul&quot;: 350.5, &quot;Aug&quot;: 307.2, &quot;Sep&quot;: 233.2, &quot;Oct&quot;: 181.0, &quot;Nov&quot;: 112.8, &quot;Dec&quot;: 114.3, &quot;max_sunshine&quot;: 350.5, &quot;min_sunshine&quot;: 112.8}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Nashville&quot;, &quot;Jan&quot;: 139.6, &quot;Feb&quot;: 145.2, &quot;Mar&quot;: 191.3, &quot;Apr&quot;: 231.5, &quot;May&quot;: 261.8, &quot;Jun&quot;: 277.7, &quot;Jul&quot;: 279.0, &quot;Aug&quot;: 262.1, &quot;Sep&quot;: 226.4, &quot;Oct&quot;: 216.8, &quot;Nov&quot;: 148.1, &quot;Dec&quot;: 130.6, &quot;max_sunshine&quot;: 279.0, &quot;min_sunshine&quot;: 130.6}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;New Orleans&quot;, &quot;Jan&quot;: 153.0, &quot;Feb&quot;: 161.5, &quot;Mar&quot;: 219.4, &quot;Apr&quot;: 251.9, &quot;May&quot;: 278.9, &quot;Jun&quot;: 274.3, &quot;Jul&quot;: 257.1, &quot;Aug&quot;: 251.9, &quot;Sep&quot;: 228.7, &quot;Oct&quot;: 242.6, &quot;Nov&quot;: 171.8, &quot;Dec&quot;: 157.8, &quot;max_sunshine&quot;: 278.9, &quot;min_sunshine&quot;: 153.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;New York&quot;, &quot;Jan&quot;: 162.7, &quot;Feb&quot;: 163.1, &quot;Mar&quot;: 212.5, &quot;Apr&quot;: 225.6, &quot;May&quot;: 256.6, &quot;Jun&quot;: 257.3, &quot;Jul&quot;: 268.2, &quot;Aug&quot;: 268.2, &quot;Sep&quot;: 219.3, &quot;Oct&quot;: 211.2, &quot;Nov&quot;: 151.0, &quot;Dec&quot;: 139.0, &quot;max_sunshine&quot;: 268.2, &quot;min_sunshine&quot;: 139.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Oklahoma City&quot;, &quot;Jan&quot;: 200.8, &quot;Feb&quot;: 189.7, &quot;Mar&quot;: 244.2, &quot;Apr&quot;: 271.3, &quot;May&quot;: 295.2, &quot;Jun&quot;: 326.1, &quot;Jul&quot;: 356.6, &quot;Aug&quot;: 329.3, &quot;Sep&quot;: 263.7, &quot;Oct&quot;: 245.1, &quot;Nov&quot;: 186.5, &quot;Dec&quot;: 180.9, &quot;max_sunshine&quot;: 356.6, &quot;min_sunshine&quot;: 180.9}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Omaha&quot;, &quot;Jan&quot;: 167.8, &quot;Feb&quot;: 157.6, &quot;Mar&quot;: 206.4, &quot;Apr&quot;: 230.1, &quot;May&quot;: 277.1, &quot;Jun&quot;: 314.0, &quot;Jul&quot;: 332.5, &quot;Aug&quot;: 296.3, &quot;Sep&quot;: 245.5, &quot;Oct&quot;: 217.5, &quot;Nov&quot;: 148.0, &quot;Dec&quot;: 134.1, &quot;max_sunshine&quot;: 332.5, &quot;min_sunshine&quot;: 134.1}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Philadelphia&quot;, &quot;Jan&quot;: 155.7, &quot;Feb&quot;: 154.7, &quot;Mar&quot;: 202.8, &quot;Apr&quot;: 217.0, &quot;May&quot;: 245.1, &quot;Jun&quot;: 271.2, &quot;Jul&quot;: 275.6, &quot;Aug&quot;: 260.1, &quot;Sep&quot;: 219.3, &quot;Oct&quot;: 204.5, &quot;Nov&quot;: 154.7, &quot;Dec&quot;: 137.7, &quot;max_sunshine&quot;: 275.6, &quot;min_sunshine&quot;: 137.7}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Phoenix&quot;, &quot;Jan&quot;: 256.0, &quot;Feb&quot;: 257.2, &quot;Mar&quot;: 318.4, &quot;Apr&quot;: 353.6, &quot;May&quot;: 401.0, &quot;Jun&quot;: 407.8, &quot;Jul&quot;: 378.5, &quot;Aug&quot;: 360.8, &quot;Sep&quot;: 328.6, &quot;Oct&quot;: 308.9, &quot;Nov&quot;: 256.0, &quot;Dec&quot;: 244.8, &quot;max_sunshine&quot;: 407.8, &quot;min_sunshine&quot;: 244.8}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Pittsburgh&quot;, &quot;Jan&quot;: 93.9, &quot;Feb&quot;: 108.5, &quot;Mar&quot;: 155.4, &quot;Apr&quot;: 182.8, &quot;May&quot;: 217.4, &quot;Jun&quot;: 242.2, &quot;Jul&quot;: 254.9, &quot;Aug&quot;: 228.4, &quot;Sep&quot;: 196.7, &quot;Oct&quot;: 167.3, &quot;Nov&quot;: 99.4, &quot;Dec&quot;: 74.4, &quot;max_sunshine&quot;: 254.9, &quot;min_sunshine&quot;: 74.4}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Portland&quot;, &quot;Jan&quot;: 85.6, &quot;Feb&quot;: 116.4, &quot;Mar&quot;: 191.1, &quot;Apr&quot;: 221.1, &quot;May&quot;: 276.1, &quot;Jun&quot;: 290.2, &quot;Jul&quot;: 331.9, &quot;Aug&quot;: 298.1, &quot;Sep&quot;: 235.7, &quot;Oct&quot;: 151.7, &quot;Nov&quot;: 79.3, &quot;Dec&quot;: 63.7, &quot;max_sunshine&quot;: 331.9, &quot;min_sunshine&quot;: 63.7}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Raleigh&quot;, &quot;Jan&quot;: 163.8, &quot;Feb&quot;: 173.1, &quot;Mar&quot;: 228.9, &quot;Apr&quot;: 250.7, &quot;May&quot;: 258.4, &quot;Jun&quot;: 267.7, &quot;Jul&quot;: 259.5, &quot;Aug&quot;: 239.6, &quot;Sep&quot;: 217.6, &quot;Oct&quot;: 215.4, &quot;Nov&quot;: 174.0, &quot;Dec&quot;: 157.6, &quot;max_sunshine&quot;: 267.7, &quot;min_sunshine&quot;: 157.6}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Richmond&quot;, &quot;Jan&quot;: 172.5, &quot;Feb&quot;: 179.7, &quot;Mar&quot;: 233.3, &quot;Apr&quot;: 261.6, &quot;May&quot;: 288.0, &quot;Jun&quot;: 306.4, &quot;Jul&quot;: 301.4, &quot;Aug&quot;: 278.9, &quot;Sep&quot;: 237.9, &quot;Oct&quot;: 222.8, &quot;Nov&quot;: 183.5, &quot;Dec&quot;: 163.0, &quot;max_sunshine&quot;: 306.4, &quot;min_sunshine&quot;: 163.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Sacramento&quot;, &quot;Jan&quot;: 145.5, &quot;Feb&quot;: 201.3, &quot;Mar&quot;: 278.0, &quot;Apr&quot;: 329.6, &quot;May&quot;: 406.3, &quot;Jun&quot;: 419.5, &quot;Jul&quot;: 440.2, &quot;Aug&quot;: 406.9, &quot;Sep&quot;: 347.8, &quot;Oct&quot;: 296.7, &quot;Nov&quot;: 194.9, &quot;Dec&quot;: 141.1, &quot;max_sunshine&quot;: 440.2, &quot;min_sunshine&quot;: 141.1}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Salt Lake City&quot;, &quot;Jan&quot;: 127.4, &quot;Feb&quot;: 163.1, &quot;Mar&quot;: 241.9, &quot;Apr&quot;: 269.1, &quot;May&quot;: 321.7, &quot;Jun&quot;: 360.5, &quot;Jul&quot;: 380.5, &quot;Aug&quot;: 352.5, &quot;Sep&quot;: 301.1, &quot;Oct&quot;: 248.1, &quot;Nov&quot;: 150.4, &quot;Dec&quot;: 113.1, &quot;max_sunshine&quot;: 380.5, &quot;min_sunshine&quot;: 113.1}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;San Antonio&quot;, &quot;Jan&quot;: 159.4, &quot;Feb&quot;: 169.7, &quot;Mar&quot;: 215.5, &quot;Apr&quot;: 209.7, &quot;May&quot;: 221.8, &quot;Jun&quot;: 275.9, &quot;Jul&quot;: 308.8, &quot;Aug&quot;: 293.9, &quot;Sep&quot;: 234.9, &quot;Oct&quot;: 218.0, &quot;Nov&quot;: 171.9, &quot;Dec&quot;: 149.7, &quot;max_sunshine&quot;: 308.8, &quot;min_sunshine&quot;: 149.7}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;San Diego&quot;, &quot;Jan&quot;: 239.3, &quot;Feb&quot;: 227.4, &quot;Mar&quot;: 261.0, &quot;Apr&quot;: 276.2, &quot;May&quot;: 250.5, &quot;Jun&quot;: 242.4, &quot;Jul&quot;: 304.7, &quot;Aug&quot;: 295.0, &quot;Sep&quot;: 253.3, &quot;Oct&quot;: 243.4, &quot;Nov&quot;: 230.1, &quot;Dec&quot;: 231.3, &quot;max_sunshine&quot;: 304.7, &quot;min_sunshine&quot;: 227.4}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;San Francisco&quot;, &quot;Jan&quot;: 185.9, &quot;Feb&quot;: 207.7, &quot;Mar&quot;: 269.1, &quot;Apr&quot;: 309.3, &quot;May&quot;: 325.1, &quot;Jun&quot;: 311.4, &quot;Jul&quot;: 313.3, &quot;Aug&quot;: 287.4, &quot;Sep&quot;: 271.4, &quot;Oct&quot;: 247.1, &quot;Nov&quot;: 173.4, &quot;Dec&quot;: 160.6, &quot;max_sunshine&quot;: 325.1, &quot;min_sunshine&quot;: 160.6}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Seattle&quot;, &quot;Jan&quot;: 69.8, &quot;Feb&quot;: 108.8, &quot;Mar&quot;: 178.4, &quot;Apr&quot;: 207.3, &quot;May&quot;: 253.7, &quot;Jun&quot;: 268.4, &quot;Jul&quot;: 312.0, &quot;Aug&quot;: 281.4, &quot;Sep&quot;: 221.7, &quot;Oct&quot;: 142.6, &quot;Nov&quot;: 72.7, &quot;Dec&quot;: 52.9, &quot;max_sunshine&quot;: 312.0, &quot;min_sunshine&quot;: 52.9}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;St. Louis&quot;, &quot;Jan&quot;: 161.2, &quot;Feb&quot;: 158.3, &quot;Mar&quot;: 198.3, &quot;Apr&quot;: 223.5, &quot;May&quot;: 266.5, &quot;Jun&quot;: 291.9, &quot;Jul&quot;: 308.9, &quot;Aug&quot;: 269.8, &quot;Sep&quot;: 236.1, &quot;Oct&quot;: 208.4, &quot;Nov&quot;: 140.9, &quot;Dec&quot;: 129.9, &quot;max_sunshine&quot;: 308.9, &quot;min_sunshine&quot;: 129.9}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Tampa&quot;, &quot;Jan&quot;: 199.9, &quot;Feb&quot;: 202.7, &quot;Mar&quot;: 267.5, &quot;Apr&quot;: 299.1, &quot;May&quot;: 314.5, &quot;Jun&quot;: 277.8, &quot;Jul&quot;: 265.3, &quot;Aug&quot;: 249.5, &quot;Sep&quot;: 223.0, &quot;Oct&quot;: 233.9, &quot;Nov&quot;: 201.7, &quot;Dec&quot;: 191.6, &quot;max_sunshine&quot;: 314.5, &quot;min_sunshine&quot;: 191.6}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Tucson&quot;, &quot;Jan&quot;: 259.9, &quot;Feb&quot;: 258.2, &quot;Mar&quot;: 320.7, &quot;Apr&quot;: 357.2, &quot;May&quot;: 400.8, &quot;Jun&quot;: 396.9, &quot;Jul&quot;: 342.7, &quot;Aug&quot;: 335.6, &quot;Sep&quot;: 316.4, &quot;Oct&quot;: 307.4, &quot;Nov&quot;: 264.4, &quot;Dec&quot;: 245.8, &quot;max_sunshine&quot;: 400.8, &quot;min_sunshine&quot;: 245.8}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Tulsa&quot;, &quot;Jan&quot;: 175.8, &quot;Feb&quot;: 171.7, &quot;Mar&quot;: 219.6, &quot;Apr&quot;: 244.4, &quot;May&quot;: 266.7, &quot;Jun&quot;: 294.8, &quot;Jul&quot;: 334.7, &quot;Aug&quot;: 305.3, &quot;Sep&quot;: 232.5, &quot;Oct&quot;: 218.6, &quot;Nov&quot;: 161.1, &quot;Dec&quot;: 160.8, &quot;max_sunshine&quot;: 334.7, &quot;min_sunshine&quot;: 160.8}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Virginia Beach&quot;, &quot;Jan&quot;: 171.5, &quot;Feb&quot;: 175.2, &quot;Mar&quot;: 229.3, &quot;Apr&quot;: 252.8, &quot;May&quot;: 271.7, &quot;Jun&quot;: 280.1, &quot;Jul&quot;: 278.3, &quot;Aug&quot;: 260.4, &quot;Sep&quot;: 231.4, &quot;Oct&quot;: 208.3, &quot;Nov&quot;: 175.7, &quot;Dec&quot;: 160.4, &quot;max_sunshine&quot;: 280.1, &quot;min_sunshine&quot;: 160.4}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Washington&quot;, &quot;Jan&quot;: 144.6, &quot;Feb&quot;: 151.8, &quot;Mar&quot;: 204.0, &quot;Apr&quot;: 228.2, &quot;May&quot;: 260.5, &quot;Jun&quot;: 283.2, &quot;Jul&quot;: 280.5, &quot;Aug&quot;: 263.1, &quot;Sep&quot;: 225.0, &quot;Oct&quot;: 203.6, &quot;Nov&quot;: 150.2, &quot;Dec&quot;: 133.0, &quot;max_sunshine&quot;: 283.2, &quot;min_sunshine&quot;: 133.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Wichita&quot;, &quot;Jan&quot;: 190.9, &quot;Feb&quot;: 186.4, &quot;Mar&quot;: 230.4, &quot;Apr&quot;: 257.8, &quot;May&quot;: 289.8, &quot;Jun&quot;: 305.0, &quot;Jul&quot;: 342.1, &quot;Aug&quot;: 309.2, &quot;Sep&quot;: 245.6, &quot;Oct&quot;: 226.3, &quot;Nov&quot;: 170.2, &quot;Dec&quot;: 168.7, &quot;max_sunshine&quot;: 342.1, &quot;min_sunshine&quot;: 168.7}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;United States&quot;, &quot;City&quot;: &quot;Yuma&quot;, &quot;Jan&quot;: 268.4, &quot;Feb&quot;: 270.8, &quot;Mar&quot;: 335.5, &quot;Apr&quot;: 365.5, &quot;May&quot;: 407.4, &quot;Jun&quot;: 415.4, &quot;Jul&quot;: 392.6, &quot;Aug&quot;: 375.6, &quot;Sep&quot;: 341.7, &quot;Oct&quot;: 319.6, &quot;Nov&quot;: 270.1, &quot;Dec&quot;: 252.7, &quot;max_sunshine&quot;: 415.4, &quot;min_sunshine&quot;: 252.7}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Honduras&quot;, &quot;City&quot;: &quot;La Ceiba&quot;, &quot;Jan&quot;: 170.5, &quot;Feb&quot;: 192.1, &quot;Mar&quot;: 217.0, &quot;Apr&quot;: 234.0, &quot;May&quot;: 213.9, &quot;Jun&quot;: 192.0, &quot;Jul&quot;: 201.5, &quot;Aug&quot;: 217.0, &quot;Sep&quot;: 174.0, &quot;Oct&quot;: 151.9, &quot;Nov&quot;: 144.0, &quot;Dec&quot;: 151.9, &quot;max_sunshine&quot;: 234.0, &quot;min_sunshine&quot;: 144.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Nicaragua&quot;, &quot;City&quot;: &quot;Managua&quot;, &quot;Jan&quot;: 263.5, &quot;Feb&quot;: 254.2, &quot;Mar&quot;: 291.4, &quot;Apr&quot;: 276.0, &quot;May&quot;: 229.4, &quot;Jun&quot;: 186.0, &quot;Jul&quot;: 151.9, &quot;Aug&quot;: 195.3, &quot;Sep&quot;: 210.0, &quot;Oct&quot;: 223.2, &quot;Nov&quot;: 231.0, &quot;Dec&quot;: 248.0, &quot;max_sunshine&quot;: 291.4, &quot;min_sunshine&quot;: 151.9}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Panama&quot;, &quot;City&quot;: &quot;Panama City&quot;, &quot;Jan&quot;: 228.9, &quot;Feb&quot;: 245.2, &quot;Mar&quot;: 183.9, &quot;Apr&quot;: 173.1, &quot;May&quot;: 108.5, &quot;Jun&quot;: 116.3, &quot;Jul&quot;: 106.1, &quot;Aug&quot;: 118.1, &quot;Sep&quot;: 99.2, &quot;Oct&quot;: 103.9, &quot;Nov&quot;: 139.8, &quot;Dec&quot;: 120.5, &quot;max_sunshine&quot;: 245.2, &quot;min_sunshine&quot;: 99.2}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Puerto Rico&quot;, &quot;City&quot;: &quot;San Juan&quot;, &quot;Jan&quot;: 118.9, &quot;Feb&quot;: 200.2, &quot;Mar&quot;: 288.9, &quot;Apr&quot;: 153.1, &quot;May&quot;: 214.5, &quot;Jun&quot;: 310.3, &quot;Jul&quot;: 302.1, &quot;Aug&quot;: 268.1, &quot;Sep&quot;: 212.2, &quot;Oct&quot;: 222.9, &quot;Nov&quot;: 139.8, &quot;Dec&quot;: 120.5, &quot;max_sunshine&quot;: 310.3, &quot;min_sunshine&quot;: 118.9}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;El Salvador&quot;, &quot;City&quot;: &quot;San Salvador&quot;, &quot;Jan&quot;: 301.0, &quot;Feb&quot;: 277.0, &quot;Mar&quot;: 294.0, &quot;Apr&quot;: 243.0, &quot;May&quot;: 220.0, &quot;Jun&quot;: 174.0, &quot;Jul&quot;: 239.0, &quot;Aug&quot;: 257.0, &quot;Sep&quot;: 180.0, &quot;Oct&quot;: 211.0, &quot;Nov&quot;: 267.0, &quot;Dec&quot;: 294.0, &quot;max_sunshine&quot;: 301.0, &quot;min_sunshine&quot;: 174.0}, {&quot;Continent&quot;: &quot;North America&quot;, &quot;Country&quot;: &quot;Saint Pierre and Miquelon&quot;, &quot;City&quot;: &quot;Saint-Pierre&quot;, &quot;Jan&quot;: 49.6, &quot;Feb&quot;: 70.2, &quot;Mar&quot;: 115.5, &quot;Apr&quot;: 131.9, &quot;May&quot;: 165.8, &quot;Jun&quot;: 172.6, &quot;Jul&quot;: 164.8, &quot;Aug&quot;: 173.5, &quot;Sep&quot;: 156.1, &quot;Oct&quot;: 119.0, &quot;Nov&quot;: 63.0, &quot;Dec&quot;: 45.4, &quot;max_sunshine&quot;: 173.5, &quot;min_sunshine&quot;: 45.4}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Argentina&quot;, &quot;City&quot;: &quot;Buenos Aires&quot;, &quot;Jan&quot;: 279.0, &quot;Feb&quot;: 240.8, &quot;Mar&quot;: 229.0, &quot;Apr&quot;: 220.0, &quot;May&quot;: 173.6, &quot;Jun&quot;: 132.0, &quot;Jul&quot;: 142.6, &quot;Aug&quot;: 173.6, &quot;Sep&quot;: 189.0, &quot;Oct&quot;: 227.0, &quot;Nov&quot;: 252.0, &quot;Dec&quot;: 266.6, &quot;max_sunshine&quot;: 279.0, &quot;min_sunshine&quot;: 132.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Argentina&quot;, &quot;City&quot;: &quot;Ushuaia&quot;, &quot;Jan&quot;: 180.2, &quot;Feb&quot;: 150.4, &quot;Mar&quot;: 124.9, &quot;Apr&quot;: 92.7, &quot;May&quot;: 78.0, &quot;Jun&quot;: 50.3, &quot;Jul&quot;: 35.0, &quot;Aug&quot;: 58.3, &quot;Sep&quot;: 87.6, &quot;Oct&quot;: 113.0, &quot;Nov&quot;: 140.0, &quot;Dec&quot;: 170.8, &quot;max_sunshine&quot;: 180.2, &quot;min_sunshine&quot;: 35.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Argentina&quot;, &quot;City&quot;: &quot;Mendoza&quot;, &quot;Jan&quot;: 297.6, &quot;Feb&quot;: 257.6, &quot;Mar&quot;: 235.6, &quot;Apr&quot;: 219.0, &quot;May&quot;: 195.3, &quot;Jun&quot;: 168.0, &quot;Jul&quot;: 182.9, &quot;Aug&quot;: 229.4, &quot;Sep&quot;: 225.0, &quot;Oct&quot;: 282.1, &quot;Nov&quot;: 294.0, &quot;Dec&quot;: 285.2, &quot;max_sunshine&quot;: 297.6, &quot;min_sunshine&quot;: 168.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Argentina&quot;, &quot;City&quot;: &quot;La Plata&quot;, &quot;Jan&quot;: 251.1, &quot;Feb&quot;: 229.6, &quot;Mar&quot;: 210.8, &quot;Apr&quot;: 186.0, &quot;May&quot;: 155.0, &quot;Jun&quot;: 120.0, &quot;Jul&quot;: 127.1, &quot;Aug&quot;: 161.2, &quot;Sep&quot;: 171.0, &quot;Oct&quot;: 207.7, &quot;Nov&quot;: 225.0, &quot;Dec&quot;: 238.7, &quot;max_sunshine&quot;: 251.1, &quot;min_sunshine&quot;: 120.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Bolivia&quot;, &quot;City&quot;: &quot;La Paz&quot;, &quot;Jan&quot;: 182.9, &quot;Feb&quot;: 152.6, &quot;Mar&quot;: 148.8, &quot;Apr&quot;: 165.0, &quot;May&quot;: 222.7, &quot;Jun&quot;: 240.0, &quot;Jul&quot;: 235.6, &quot;Aug&quot;: 217.0, &quot;Sep&quot;: 189.0, &quot;Oct&quot;: 179.8, &quot;Nov&quot;: 171.0, &quot;Dec&quot;: 186.0, &quot;max_sunshine&quot;: 240.0, &quot;min_sunshine&quot;: 148.8}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Brazil&quot;, &quot;City&quot;: &quot;S\u00e3o Paulo&quot;, &quot;Jan&quot;: 170.6, &quot;Feb&quot;: 162.2, &quot;Mar&quot;: 167.1, &quot;Apr&quot;: 165.8, &quot;May&quot;: 182.3, &quot;Jun&quot;: 172.6, &quot;Jul&quot;: 187.1, &quot;Aug&quot;: 175.3, &quot;Sep&quot;: 152.6, &quot;Oct&quot;: 153.9, &quot;Nov&quot;: 163.0, &quot;Dec&quot;: 150.8, &quot;max_sunshine&quot;: 187.1, &quot;min_sunshine&quot;: 150.8}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Brazil&quot;, &quot;City&quot;: &quot;Bras\u00edlia&quot;, &quot;Jan&quot;: 154.4, &quot;Feb&quot;: 157.5, &quot;Mar&quot;: 180.9, &quot;Apr&quot;: 201.1, &quot;May&quot;: 234.3, &quot;Jun&quot;: 253.4, &quot;Jul&quot;: 266.5, &quot;Aug&quot;: 262.9, &quot;Sep&quot;: 203.2, &quot;Oct&quot;: 168.2, &quot;Nov&quot;: 142.5, &quot;Dec&quot;: 138.1, &quot;max_sunshine&quot;: 266.5, &quot;min_sunshine&quot;: 138.1}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Brazil&quot;, &quot;City&quot;: &quot;Rio de Janeiro&quot;, &quot;Jan&quot;: 211.9, &quot;Feb&quot;: 201.3, &quot;Mar&quot;: 206.4, &quot;Apr&quot;: 181.0, &quot;May&quot;: 186.3, &quot;Jun&quot;: 175.1, &quot;Jul&quot;: 188.6, &quot;Aug&quot;: 184.8, &quot;Sep&quot;: 146.2, &quot;Oct&quot;: 152.1, &quot;Nov&quot;: 168.5, &quot;Dec&quot;: 179.6, &quot;max_sunshine&quot;: 211.9, &quot;min_sunshine&quot;: 146.2}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Brazil&quot;, &quot;City&quot;: &quot;Fortaleza&quot;, &quot;Jan&quot;: 225.2, &quot;Feb&quot;: 182.3, &quot;Mar&quot;: 150.0, &quot;Apr&quot;: 157.1, &quot;May&quot;: 208.4, &quot;Jun&quot;: 238.7, &quot;Jul&quot;: 268.3, &quot;Aug&quot;: 295.9, &quot;Sep&quot;: 281.6, &quot;Oct&quot;: 291.4, &quot;Nov&quot;: 282.2, &quot;Dec&quot;: 262.3, &quot;max_sunshine&quot;: 295.9, &quot;min_sunshine&quot;: 150.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Brazil&quot;, &quot;City&quot;: &quot;Manaus&quot;, &quot;Jan&quot;: 114.3, &quot;Feb&quot;: 87.7, &quot;Mar&quot;: 98.5, &quot;Apr&quot;: 111.9, &quot;May&quot;: 148.6, &quot;Jun&quot;: 184.8, &quot;Jul&quot;: 214.2, &quot;Aug&quot;: 225.0, &quot;Sep&quot;: 200.5, &quot;Oct&quot;: 171.2, &quot;Nov&quot;: 140.9, &quot;Dec&quot;: 130.9, &quot;max_sunshine&quot;: 225.0, &quot;min_sunshine&quot;: 87.7}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Brazil&quot;, &quot;City&quot;: &quot;Curitiba&quot;, &quot;Jan&quot;: 184.4, &quot;Feb&quot;: 160.8, &quot;Mar&quot;: 172.0, &quot;Apr&quot;: 164.2, &quot;May&quot;: 178.3, &quot;Jun&quot;: 160.2, &quot;Jul&quot;: 173.4, &quot;Aug&quot;: 175.4, &quot;Sep&quot;: 134.1, &quot;Oct&quot;: 155.5, &quot;Nov&quot;: 177.0, &quot;Dec&quot;: 170.9, &quot;max_sunshine&quot;: 184.4, &quot;min_sunshine&quot;: 134.1}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Colombia&quot;, &quot;City&quot;: &quot;Bogot\u00e1&quot;, &quot;Jan&quot;: 156.0, &quot;Feb&quot;: 128.0, &quot;Mar&quot;: 107.0, &quot;Apr&quot;: 88.0, &quot;May&quot;: 83.0, &quot;Jun&quot;: 94.0, &quot;Jul&quot;: 114.0, &quot;Aug&quot;: 117.0, &quot;Sep&quot;: 109.0, &quot;Oct&quot;: 96.0, &quot;Nov&quot;: 103.0, &quot;Dec&quot;: 138.0, &quot;max_sunshine&quot;: 156.0, &quot;min_sunshine&quot;: 83.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Colombia&quot;, &quot;City&quot;: &quot;Barranquilla&quot;, &quot;Jan&quot;: 283.0, &quot;Feb&quot;: 245.0, &quot;Mar&quot;: 241.0, &quot;Apr&quot;: 211.0, &quot;May&quot;: 187.0, &quot;Jun&quot;: 194.0, &quot;Jul&quot;: 217.0, &quot;Aug&quot;: 208.0, &quot;Sep&quot;: 166.0, &quot;Oct&quot;: 167.0, &quot;Nov&quot;: 191.0, &quot;Dec&quot;: 252.0, &quot;max_sunshine&quot;: 283.0, &quot;min_sunshine&quot;: 166.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Colombia&quot;, &quot;City&quot;: &quot;Medell\u00edn&quot;, &quot;Jan&quot;: 175.5, &quot;Feb&quot;: 149.0, &quot;Mar&quot;: 154.2, &quot;Apr&quot;: 127.9, &quot;May&quot;: 138.9, &quot;Jun&quot;: 173.0, &quot;Jul&quot;: 203.2, &quot;Aug&quot;: 191.6, &quot;Sep&quot;: 153.4, &quot;Oct&quot;: 132.9, &quot;Nov&quot;: 136.4, &quot;Dec&quot;: 156.2, &quot;max_sunshine&quot;: 203.2, &quot;min_sunshine&quot;: 127.9}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Colombia&quot;, &quot;City&quot;: &quot;Cali&quot;, &quot;Jan&quot;: 183.0, &quot;Feb&quot;: 155.8, &quot;Mar&quot;: 166.5, &quot;Apr&quot;: 139.0, &quot;May&quot;: 147.1, &quot;Jun&quot;: 153.1, &quot;Jul&quot;: 189.9, &quot;Aug&quot;: 175.1, &quot;Sep&quot;: 157.4, &quot;Oct&quot;: 151.1, &quot;Nov&quot;: 153.8, &quot;Dec&quot;: 170.1, &quot;max_sunshine&quot;: 189.9, &quot;min_sunshine&quot;: 139.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Colombia&quot;, &quot;City&quot;: &quot;Buenaventura&quot;, &quot;Jan&quot;: 87.0, &quot;Feb&quot;: 87.0, &quot;Mar&quot;: 96.0, &quot;Apr&quot;: 105.0, &quot;May&quot;: 99.0, &quot;Jun&quot;: 99.0, &quot;Jul&quot;: 115.0, &quot;Aug&quot;: 124.0, &quot;Sep&quot;: 93.0, &quot;Oct&quot;: 99.0, &quot;Nov&quot;: 87.0, &quot;Dec&quot;: 87.0, &quot;max_sunshine&quot;: 124.0, &quot;min_sunshine&quot;: 87.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Colombia&quot;, &quot;City&quot;: &quot;Totor\u00f3&quot;, &quot;Jan&quot;: 73.0, &quot;Feb&quot;: 58.0, &quot;Mar&quot;: 53.0, &quot;Apr&quot;: 48.0, &quot;May&quot;: 60.0, &quot;Jun&quot;: 47.0, &quot;Jul&quot;: 49.0, &quot;Aug&quot;: 52.0, &quot;Sep&quot;: 50.0, &quot;Oct&quot;: 43.0, &quot;Nov&quot;: 47.0, &quot;Dec&quot;: 57.0, &quot;max_sunshine&quot;: 73.0, &quot;min_sunshine&quot;: 43.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Chile&quot;, &quot;City&quot;: &quot;Santiago&quot;, &quot;Jan&quot;: 362.7, &quot;Feb&quot;: 302.3, &quot;Mar&quot;: 272.8, &quot;Apr&quot;: 201.0, &quot;May&quot;: 155.0, &quot;Jun&quot;: 120.0, &quot;Jul&quot;: 145.7, &quot;Aug&quot;: 161.2, &quot;Sep&quot;: 186.0, &quot;Oct&quot;: 248.0, &quot;Nov&quot;: 306.0, &quot;Dec&quot;: 347.2, &quot;max_sunshine&quot;: 362.7, &quot;min_sunshine&quot;: 120.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Chile&quot;, &quot;City&quot;: &quot;Antofagasta&quot;, &quot;Jan&quot;: 319.3, &quot;Feb&quot;: 291.0, &quot;Mar&quot;: 294.5, &quot;Apr&quot;: 252.0, &quot;May&quot;: 229.4, &quot;Jun&quot;: 207.0, &quot;Jul&quot;: 204.6, &quot;Aug&quot;: 213.9, &quot;Sep&quot;: 219.0, &quot;Oct&quot;: 260.4, &quot;Nov&quot;: 276.0, &quot;Dec&quot;: 310.0, &quot;max_sunshine&quot;: 319.3, &quot;min_sunshine&quot;: 204.6}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Chile&quot;, &quot;City&quot;: &quot;Valdivia&quot;, &quot;Jan&quot;: 257.3, &quot;Feb&quot;: 228.8, &quot;Mar&quot;: 204.6, &quot;Apr&quot;: 123.0, &quot;May&quot;: 68.2, &quot;Jun&quot;: 45.0, &quot;Jul&quot;: 65.1, &quot;Aug&quot;: 89.9, &quot;Sep&quot;: 111.0, &quot;Oct&quot;: 127.1, &quot;Nov&quot;: 189.0, &quot;Dec&quot;: 207.7, &quot;max_sunshine&quot;: 257.3, &quot;min_sunshine&quot;: 45.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Chile&quot;, &quot;City&quot;: &quot;Puerto Montt&quot;, &quot;Jan&quot;: 226.3, &quot;Feb&quot;: 211.9, &quot;Mar&quot;: 167.4, &quot;Apr&quot;: 123.0, &quot;May&quot;: 80.6, &quot;Jun&quot;: 60.0, &quot;Jul&quot;: 74.4, &quot;Aug&quot;: 102.3, &quot;Sep&quot;: 129.0, &quot;Oct&quot;: 155.0, &quot;Nov&quot;: 171.0, &quot;Dec&quot;: 213.9, &quot;max_sunshine&quot;: 226.3, &quot;min_sunshine&quot;: 60.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Chile&quot;, &quot;City&quot;: &quot;Calama&quot;, &quot;Jan&quot;: 353.4, &quot;Feb&quot;: 305.1, &quot;Mar&quot;: 319.3, &quot;Apr&quot;: 312.0, &quot;May&quot;: 306.9, &quot;Jun&quot;: 297.0, &quot;Jul&quot;: 310.0, &quot;Aug&quot;: 316.2, &quot;Sep&quot;: 321.0, &quot;Oct&quot;: 356.5, &quot;Nov&quot;: 363.0, &quot;Dec&quot;: 365.8, &quot;max_sunshine&quot;: 365.8, &quot;min_sunshine&quot;: 297.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Ecuador&quot;, &quot;City&quot;: &quot;Quito&quot;, &quot;Jan&quot;: 197.0, &quot;Feb&quot;: 140.0, &quot;Mar&quot;: 122.0, &quot;Apr&quot;: 136.0, &quot;May&quot;: 164.0, &quot;Jun&quot;: 189.0, &quot;Jul&quot;: 249.0, &quot;Aug&quot;: 256.0, &quot;Sep&quot;: 196.0, &quot;Oct&quot;: 177.0, &quot;Nov&quot;: 197.0, &quot;Dec&quot;: 215.0, &quot;max_sunshine&quot;: 256.0, &quot;min_sunshine&quot;: 122.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Ecuador&quot;, &quot;City&quot;: &quot;Guayaquil&quot;, &quot;Jan&quot;: 102.3, &quot;Feb&quot;: 101.7, &quot;Mar&quot;: 139.5, &quot;Apr&quot;: 150.0, &quot;May&quot;: 167.4, &quot;Jun&quot;: 123.0, &quot;Jul&quot;: 127.1, &quot;Aug&quot;: 133.3, &quot;Sep&quot;: 144.0, &quot;Oct&quot;: 136.4, &quot;Nov&quot;: 120.0, &quot;Dec&quot;: 136.4, &quot;max_sunshine&quot;: 167.4, &quot;min_sunshine&quot;: 101.7}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Falkland Islands&quot;, &quot;City&quot;: &quot;Stanley&quot;, &quot;Jan&quot;: 198.0, &quot;Feb&quot;: 161.0, &quot;Mar&quot;: 169.0, &quot;Apr&quot;: 115.0, &quot;May&quot;: 77.0, &quot;Jun&quot;: 57.0, &quot;Jul&quot;: 69.0, &quot;Aug&quot;: 90.0, &quot;Sep&quot;: 128.0, &quot;Oct&quot;: 189.0, &quot;Nov&quot;: 200.0, &quot;Dec&quot;: 198.0, &quot;max_sunshine&quot;: 200.0, &quot;min_sunshine&quot;: 57.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;French Guiana&quot;, &quot;City&quot;: &quot;Cayenne&quot;, &quot;Jan&quot;: 94.3, &quot;Feb&quot;: 89.9, &quot;Mar&quot;: 119.0, &quot;Apr&quot;: 118.1, &quot;May&quot;: 118.8, &quot;Jun&quot;: 148.6, &quot;Jul&quot;: 196.5, &quot;Aug&quot;: 229.8, &quot;Sep&quot;: 255.2, &quot;Oct&quot;: 251.1, &quot;Nov&quot;: 217.3, &quot;Dec&quot;: 137.5, &quot;max_sunshine&quot;: 255.2, &quot;min_sunshine&quot;: 89.9}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Paraguay&quot;, &quot;City&quot;: &quot;Asunci\u00f3n&quot;, &quot;Jan&quot;: 276.0, &quot;Feb&quot;: 169.0, &quot;Mar&quot;: 246.0, &quot;Apr&quot;: 254.0, &quot;May&quot;: 228.0, &quot;Jun&quot;: 205.0, &quot;Jul&quot;: 165.0, &quot;Aug&quot;: 195.0, &quot;Sep&quot;: 223.0, &quot;Oct&quot;: 204.0, &quot;Nov&quot;: 242.0, &quot;Dec&quot;: 295.0, &quot;max_sunshine&quot;: 295.0, &quot;min_sunshine&quot;: 165.0}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Peru&quot;, &quot;City&quot;: &quot;Arequipa&quot;, &quot;Jan&quot;: 223.2, &quot;Feb&quot;: 189.3, &quot;Mar&quot;: 244.9, &quot;Apr&quot;: 294.0, &quot;May&quot;: 288.3, &quot;Jun&quot;: 291.0, &quot;Jul&quot;: 291.4, &quot;Aug&quot;: 310.0, &quot;Sep&quot;: 297.0, &quot;Oct&quot;: 303.8, &quot;Nov&quot;: 309.0, &quot;Dec&quot;: 291.4, &quot;max_sunshine&quot;: 310.0, &quot;min_sunshine&quot;: 189.3}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Peru&quot;, &quot;City&quot;: &quot;Lima&quot;, &quot;Jan&quot;: 179.1, &quot;Feb&quot;: 169.0, &quot;Mar&quot;: 139.2, &quot;Apr&quot;: 184.0, &quot;May&quot;: 116.4, &quot;Jun&quot;: 50.6, &quot;Jul&quot;: 28.6, &quot;Aug&quot;: 32.3, &quot;Sep&quot;: 37.3, &quot;Oct&quot;: 65.3, &quot;Nov&quot;: 89.0, &quot;Dec&quot;: 139.2, &quot;max_sunshine&quot;: 184.0, &quot;min_sunshine&quot;: 28.6}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Peru&quot;, &quot;City&quot;: &quot;Iquitos&quot;, &quot;Jan&quot;: 137.2, &quot;Feb&quot;: 97.1, &quot;Mar&quot;: 105.8, &quot;Apr&quot;: 97.4, &quot;May&quot;: 110.3, &quot;Jun&quot;: 113.7, &quot;Jul&quot;: 140.8, &quot;Aug&quot;: 154.7, &quot;Sep&quot;: 139.0, &quot;Oct&quot;: 131.8, &quot;Nov&quot;: 124.2, &quot;Dec&quot;: 124.6, &quot;max_sunshine&quot;: 154.7, &quot;min_sunshine&quot;: 97.1}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Uruguay&quot;, &quot;City&quot;: &quot;Montevideo&quot;, &quot;Jan&quot;: 294.9, &quot;Feb&quot;: 230.6, &quot;Mar&quot;: 222.8, &quot;Apr&quot;: 179.6, &quot;May&quot;: 164.2, &quot;Jun&quot;: 129.7, &quot;Jul&quot;: 139.7, &quot;Aug&quot;: 164.4, &quot;Sep&quot;: 182.3, &quot;Oct&quot;: 239.0, &quot;Nov&quot;: 248.9, &quot;Dec&quot;: 285.3, &quot;max_sunshine&quot;: 294.9, &quot;min_sunshine&quot;: 129.7}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Venezuela&quot;, &quot;City&quot;: &quot;Caracas&quot;, &quot;Jan&quot;: 229.4, &quot;Feb&quot;: 217.5, &quot;Mar&quot;: 235.6, &quot;Apr&quot;: 183.0, &quot;May&quot;: 182.9, &quot;Jun&quot;: 183.0, &quot;Jul&quot;: 210.8, &quot;Aug&quot;: 217.0, &quot;Sep&quot;: 213.0, &quot;Oct&quot;: 210.8, &quot;Nov&quot;: 210.0, &quot;Dec&quot;: 213.9, &quot;max_sunshine&quot;: 235.6, &quot;min_sunshine&quot;: 182.9}, {&quot;Continent&quot;: &quot;South America&quot;, &quot;Country&quot;: &quot;Venezuela&quot;, &quot;City&quot;: &quot;Maracaibo&quot;, &quot;Jan&quot;: 300.0, &quot;Feb&quot;: 279.0, &quot;Mar&quot;: 286.0, &quot;Apr&quot;: 257.0, &quot;May&quot;: 243.0, &quot;Jun&quot;: 253.0, &quot;Jul&quot;: 301.0, &quot;Aug&quot;: 279.0, &quot;Sep&quot;: 272.5, &quot;Oct&quot;: 283.0, &quot;Nov&quot;: 258.0, &quot;Dec&quot;: 273.0, &quot;max_sunshine&quot;: 301.0, &quot;min_sunshine&quot;: 243.0}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;Australia&quot;, &quot;City&quot;: &quot;Adelaide&quot;, &quot;Jan&quot;: 325.5, &quot;Feb&quot;: 285.3, &quot;Mar&quot;: 266.6, &quot;Apr&quot;: 219.0, &quot;May&quot;: 167.4, &quot;Jun&quot;: 138.0, &quot;Jul&quot;: 148.8, &quot;Aug&quot;: 186.0, &quot;Sep&quot;: 204.0, &quot;Oct&quot;: 257.3, &quot;Nov&quot;: 273.0, &quot;Dec&quot;: 294.5, &quot;max_sunshine&quot;: 325.5, &quot;min_sunshine&quot;: 138.0}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;Australia&quot;, &quot;City&quot;: &quot;Brisbane&quot;, &quot;Jan&quot;: 263.5, &quot;Feb&quot;: 223.2, &quot;Mar&quot;: 232.5, &quot;Apr&quot;: 234.0, &quot;May&quot;: 235.6, &quot;Jun&quot;: 198.0, &quot;Jul&quot;: 238.7, &quot;Aug&quot;: 266.6, &quot;Sep&quot;: 270.0, &quot;Oct&quot;: 275.9, &quot;Nov&quot;: 270.0, &quot;Dec&quot;: 265.4, &quot;max_sunshine&quot;: 275.9, &quot;min_sunshine&quot;: 198.0}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;Australia&quot;, &quot;City&quot;: &quot;Canberra&quot;, &quot;Jan&quot;: 294.5, &quot;Feb&quot;: 254.3, &quot;Mar&quot;: 251.1, &quot;Apr&quot;: 219.0, &quot;May&quot;: 186.0, &quot;Jun&quot;: 156.0, &quot;Jul&quot;: 179.8, &quot;Aug&quot;: 217.0, &quot;Sep&quot;: 231.0, &quot;Oct&quot;: 266.6, &quot;Nov&quot;: 267.0, &quot;Dec&quot;: 291.4, &quot;max_sunshine&quot;: 294.5, &quot;min_sunshine&quot;: 156.0}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;Australia&quot;, &quot;City&quot;: &quot;Darwin&quot;, &quot;Jan&quot;: 176.7, &quot;Feb&quot;: 162.4, &quot;Mar&quot;: 210.8, &quot;Apr&quot;: 261.0, &quot;May&quot;: 297.6, &quot;Jun&quot;: 297.0, &quot;Jul&quot;: 313.1, &quot;Aug&quot;: 319.3, &quot;Sep&quot;: 297.0, &quot;Oct&quot;: 291.4, &quot;Nov&quot;: 252.0, &quot;Dec&quot;: 213.9, &quot;max_sunshine&quot;: 319.3, &quot;min_sunshine&quot;: 162.4}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;Australia&quot;, &quot;City&quot;: &quot;Hobart&quot;, &quot;Jan&quot;: 248.0, &quot;Feb&quot;: 206.2, &quot;Mar&quot;: 198.4, &quot;Apr&quot;: 159.0, &quot;May&quot;: 130.2, &quot;Jun&quot;: 117.0, &quot;Jul&quot;: 136.4, &quot;Aug&quot;: 155.0, &quot;Sep&quot;: 177.0, &quot;Oct&quot;: 201.5, &quot;Nov&quot;: 207.0, &quot;Dec&quot;: 229.4, &quot;max_sunshine&quot;: 248.0, &quot;min_sunshine&quot;: 117.0}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;Australia&quot;, &quot;City&quot;: &quot;Melbourne&quot;, &quot;Jan&quot;: 266.6, &quot;Feb&quot;: 228.8, &quot;Mar&quot;: 223.2, &quot;Apr&quot;: 186.0, &quot;May&quot;: 142.6, &quot;Jun&quot;: 120.0, &quot;Jul&quot;: 136.4, &quot;Aug&quot;: 164.3, &quot;Sep&quot;: 183.0, &quot;Oct&quot;: 223.2, &quot;Nov&quot;: 225.0, &quot;Dec&quot;: 263.5, &quot;max_sunshine&quot;: 266.6, &quot;min_sunshine&quot;: 120.0}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;Australia&quot;, &quot;City&quot;: &quot;Perth&quot;, &quot;Jan&quot;: 356.5, &quot;Feb&quot;: 314.9, &quot;Mar&quot;: 295.5, &quot;Apr&quot;: 246.0, &quot;May&quot;: 211.7, &quot;Jun&quot;: 180.6, &quot;Jul&quot;: 188.4, &quot;Aug&quot;: 219.8, &quot;Sep&quot;: 232.4, &quot;Oct&quot;: 299.8, &quot;Nov&quot;: 320.4, &quot;Dec&quot;: 359.4, &quot;max_sunshine&quot;: 359.4, &quot;min_sunshine&quot;: 180.6}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;Australia&quot;, &quot;City&quot;: &quot;Sydney&quot;, &quot;Jan&quot;: 235.6, &quot;Feb&quot;: 202.4, &quot;Mar&quot;: 213.9, &quot;Apr&quot;: 207.0, &quot;May&quot;: 195.3, &quot;Jun&quot;: 177.0, &quot;Jul&quot;: 204.6, &quot;Aug&quot;: 244.9, &quot;Sep&quot;: 237.0, &quot;Oct&quot;: 244.9, &quot;Nov&quot;: 228.0, &quot;Dec&quot;: 244.9, &quot;max_sunshine&quot;: 244.9, &quot;min_sunshine&quot;: 177.0}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;Fiji&quot;, &quot;City&quot;: &quot;Suva&quot;, &quot;Jan&quot;: 192.2, &quot;Feb&quot;: 178.0, &quot;Mar&quot;: 170.5, &quot;Apr&quot;: 153.0, &quot;May&quot;: 145.7, &quot;Jun&quot;: 141.0, &quot;Jul&quot;: 136.4, &quot;Aug&quot;: 142.6, &quot;Sep&quot;: 135.0, &quot;Oct&quot;: 164.3, &quot;Nov&quot;: 168.0, &quot;Dec&quot;: 195.3, &quot;max_sunshine&quot;: 195.3, &quot;min_sunshine&quot;: 135.0}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;New Zealand&quot;, &quot;City&quot;: &quot;Auckland&quot;, &quot;Jan&quot;: 228.8, &quot;Feb&quot;: 194.9, &quot;Mar&quot;: 189.2, &quot;Apr&quot;: 157.3, &quot;May&quot;: 139.8, &quot;Jun&quot;: 110.3, &quot;Jul&quot;: 128.1, &quot;Aug&quot;: 142.9, &quot;Sep&quot;: 148.6, &quot;Oct&quot;: 178.1, &quot;Nov&quot;: 188.1, &quot;Dec&quot;: 197.2, &quot;max_sunshine&quot;: 228.8, &quot;min_sunshine&quot;: 110.3}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;New Zealand&quot;, &quot;City&quot;: &quot;Christchurch&quot;, &quot;Jan&quot;: 224.4, &quot;Feb&quot;: 190.5, &quot;Mar&quot;: 177.4, &quot;Apr&quot;: 155.6, &quot;May&quot;: 133.3, &quot;Jun&quot;: 117.7, &quot;Jul&quot;: 124.8, &quot;Aug&quot;: 149.0, &quot;Sep&quot;: 166.6, &quot;Oct&quot;: 201.3, &quot;Nov&quot;: 215.3, &quot;Dec&quot;: 214.3, &quot;max_sunshine&quot;: 224.4, &quot;min_sunshine&quot;: 117.7}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;New Zealand&quot;, &quot;City&quot;: &quot;Wellington&quot;, &quot;Jan&quot;: 240.3, &quot;Feb&quot;: 205.0, &quot;Mar&quot;: 194.7, &quot;Apr&quot;: 153.8, &quot;May&quot;: 126.0, &quot;Jun&quot;: 102.3, &quot;Jul&quot;: 111.4, &quot;Aug&quot;: 137.2, &quot;Sep&quot;: 163.2, &quot;Oct&quot;: 191.1, &quot;Nov&quot;: 210.8, &quot;Dec&quot;: 222.9, &quot;max_sunshine&quot;: 240.3, &quot;min_sunshine&quot;: 102.3}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;Papua New Guinea&quot;, &quot;City&quot;: &quot;Port Moresby&quot;, &quot;Jan&quot;: 182.0, &quot;Feb&quot;: 158.0, &quot;Mar&quot;: 184.0, &quot;Apr&quot;: 200.0, &quot;May&quot;: 211.0, &quot;Jun&quot;: 200.0, &quot;Jul&quot;: 203.0, &quot;Aug&quot;: 222.0, &quot;Sep&quot;: 213.0, &quot;Oct&quot;: 231.0, &quot;Nov&quot;: 243.0, &quot;Dec&quot;: 216.0, &quot;max_sunshine&quot;: 243.0, &quot;min_sunshine&quot;: 158.0}, {&quot;Continent&quot;: &quot;Oceania&quot;, &quot;Country&quot;: &quot;Solomon Islands&quot;, &quot;City&quot;: &quot;Honiara&quot;, &quot;Jan&quot;: 186.0, &quot;Feb&quot;: 155.4, &quot;Mar&quot;: 198.4, &quot;Apr&quot;: 192.0, &quot;May&quot;: 210.8, &quot;Jun&quot;: 198.0, &quot;Jul&quot;: 186.0, &quot;Aug&quot;: 204.6, &quot;Sep&quot;: 192.0, &quot;Oct&quot;: 226.3, &quot;Nov&quot;: 216.0, &quot;Dec&quot;: 164.3, &quot;max_sunshine&quot;: 226.3, &quot;min_sunshine&quot;: 155.4}], &quot;data-61c5f85c1114f9505a2bee7885c31dad&quot;: [{&quot;x&quot;: 250, &quot;y&quot;: 150}]}};
    var embedOpt = {&quot;mode&quot;: &quot;vega-lite&quot;};

    function showError(el, error){
        el.innerHTML = ('&lt;div class=&quot;error&quot; style=&quot;color:red;&quot;&gt;'
                        + '&lt;p&gt;JavaScript Error: ' + error.message + '&lt;/p&gt;'
                        + &quot;&lt;p&gt;This usually means there's a typo in your chart specification. &quot;
                        + &quot;See the javascript console for the full traceback.&lt;/p&gt;&quot;
                        + '&lt;/div&gt;');
        throw error;
    }
    const el = document.getElementById('vis');
    vegaEmbed(&quot;#vis&quot;, spec, embedOpt)
      .catch(error =&gt; showError(el, error));
  })(vegaEmbed);

&lt;/script&gt;</content><author><name>Jorge Mendes</name></author><category term="Makeover Monday" /><category term="Makeover Monday" /><category term="Dispersion plots" /><category term="altair" /><category term="python" /><summary type="html">Week 44 World Cities Ranked by Annual Sunshine Hours Data from here Load packages and import data import pandas as pd import altair as alt df = pd.read_excel('https://query.data.world/s/k5e6ouinen6qpkowpudpowkepydrah') df.head() Continent Country City Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec Year 0 Africa Ivory Coast Gagnoa 183.0 180.0 196.0 188.0 181.0 118.0 97.0 80.0 110.0 155.0 171.0 164.0 1823.0 1 Africa Ivory Coast Bouaké 242.0 224.0 219.0 194.0 208.0 145.0 104.0 82.0 115.0 170.0 191.0 198.0 2092.0 2 Africa Ivory Coast Abidjan 223.0 223.0 239.0 214.0 205.0 128.0 137.0 125.0 139.0 215.0 224.0 224.0 2296.0 3 Africa Ivory Coast Odienné 242.0 220.2 217.3 214.7 248.8 221.8 183.5 174.5 185.4 235.8 252.0 242.6 2638.6 4 Africa Ivory Coast Ferké 279.0 249.0 253.0 229.0 251.0 221.0 183.0 151.0 173.0 245.0 261.0 262.0 2757.0 So we have a line for each country/city and a column for each month. In ggplot, and probably Altair, it’s not ideal, so I’ll try to create a month column. df_pivot = df.melt(['Continent', 'Country', 'City', 'Year'], var_name= 'Month', value_name = 'Sunshine') df_pivot.head() Continent Country City Year Month Sunshine 0 Africa Ivory Coast Gagnoa 1823.0 Jan 183.0 1 Africa Ivory Coast Bouaké 2092.0 Jan 242.0 2 Africa Ivory Coast Abidjan 2296.0 Jan 223.0 3 Africa Ivory Coast Odienné 2638.6 Jan 242.0 4 Africa Ivory Coast Ferké 2757.0 Jan 279.0 Now creating variables for minimum/maximum monthly sunshine. #### data frame with max vs min sunshine time df_plot=df.drop(columns='Year') df_plot['max_sunshine']=df_plot.loc[:, 'Jan':'Dec'].max(1) df_plot['min_sunshine']=df_plot.loc[:, 'Jan':'Dec'].min(1) df_plot.head() Continent Country City Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec max_sunshine min_sunshine 0 Africa Ivory Coast Gagnoa 183.0 180.0 196.0 188.0 181.0 118.0 97.0 80.0 110.0 155.0 171.0 164.0 196.0 80.0 1 Africa Ivory Coast Bouaké 242.0 224.0 219.0 194.0 208.0 145.0 104.0 82.0 115.0 170.0 191.0 198.0 242.0 82.0 2 Africa Ivory Coast Abidjan 223.0 223.0 239.0 214.0 205.0 128.0 137.0 125.0 139.0 215.0 224.0 224.0 239.0 125.0 3 Africa Ivory Coast Odienné 242.0 220.2 217.3 214.7 248.8 221.8 183.5 174.5 185.4 235.8 252.0 242.6 252.0 174.5 4 Africa Ivory Coast Ferké 279.0 249.0 253.0 229.0 251.0 221.0 183.0 151.0 173.0 245.0 261.0 262.0 279.0 151.0 selection = alt.selection_multi(fields=['Continent']) color = alt.condition(selection, alt.Color('Continent:N'), alt.value('lightgray')) base_chart = alt.Chart(df_plot).mark_point().encode( y=alt.Y('min_sunshine', title='Minimun monthly sunshine hours'), x=alt.X('max_sunshine',scale=alt.Scale(domain=[50, 450]), title='Maximum monthly sunshine hours'), color=color, tooltip=['Country','City'] ).add_selection( selection ) df_line = pd.DataFrame({'x': [250], 'y': [150]}) v_line = alt.Chart(df_line).mark_rule(color='black', strokeWidth=1).encode(x='x:Q') h_line = alt.Chart(df_line).mark_rule(color='black', strokeWidth=1).encode(y='y:Q') chart = (base_chart+v_line+h_line).configure( background='Snow' ).properties( title='How does sunshine hours change between the sunniest and least sunny months?', width=600, height=450 ).configure_legend( orient='top', title=None, offset=5 ).configure_axis( grid=False, domain=False, titleFontSize=11, titleFontWeight='normal', titleColor='slategray', labelColor='slategray' ).configure_view( strokeWidth=1, stroke='slategrey' ).configure_title( fontSize=15, anchor='start', color='gray' ) chart.save(&quot;../docs/assets/images/2019_10_28_MM.png&quot;) chart.save('2019_10_28_MM.html') Static view of the plot as a png: Interactive view:</summary></entry><entry><title type="html">Tidy Tuesday 22/10/2019 Horror Movies Metadata</title><link href="https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Horror/" rel="alternate" type="text/html" title="Tidy Tuesday 22/10/2019 Horror Movies Metadata" /><published>2019-10-22T00:00:00+00:00</published><updated>2019-10-22T00:00:00+00:00</updated><id>https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Horror</id><content type="html" xml:base="https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Horror/">&lt;h1 id=&quot;data-description&quot;&gt;Data description&lt;/h1&gt;

&lt;p&gt;From From &lt;a href=&quot;https://github.com/rfordatascience/tidytuesday/tree/master/data/2019/2019-10-22&quot;&gt;TidyTuesdays
github&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;This week’s data is from the
&lt;a href=&quot;https://www.kaggle.com/PromptCloudHQ/imdb-horror-movie-dataset&quot;&gt;IMDB&lt;/a&gt;
by way of Kaggle.&lt;/p&gt;

  &lt;p&gt;H/t to &lt;a href=&quot;https://twitter.com/geokaramanis&quot;&gt;Georgios Karamanis&lt;/a&gt; for
sharing the data this week.&lt;/p&gt;

  &lt;p&gt;Thrillist did a &lt;a href=&quot;https://www.thrillist.com/entertainment/nation/best-horror-movies-ever&quot;&gt;75 Best Horror Movies of all Time
article&lt;/a&gt;.
There’s also a &lt;a href=&quot;https://stephenfollows.com/what-the-data-says-about-producing-low-budget-horror-films/&quot;&gt;Stephen Follows
article&lt;/a&gt;
about horror movies exploring data around profit, popularity and
ratings.&lt;/p&gt;

  &lt;p&gt;Last year for Halloween we focused on Horror Movie Profit - feel free
to take a peek at that data as well on &lt;a href=&quot;https://github.com/rfordatascience/tidytuesday/tree/master/data/2018/2018-10-23&quot;&gt;our
GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1 id=&quot;import-data-and-packages&quot;&gt;Import data and packages&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tidyverse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;#data collection, manipulation and plots&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tidytext&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;#text manipulation&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scales&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;#number format transforming&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;here&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;#make sure the figures are in the right place&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;RCurl&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;#because curl is giving me a headache&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;horror_movies&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;readr&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read_csv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;RCurl&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;getURL&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-22/horror_movies.csv&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h1 id=&quot;data&quot;&gt;Data&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;glimpse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;horror_movies&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;## Observations: 3,328
## Variables: 12
## $ title             &amp;lt;chr&amp;gt; &quot;Gut (2012)&quot;, &quot;The Haunting of Mia Moss (2017)…
## $ genres            &amp;lt;chr&amp;gt; &quot;Drama| Horror| Thriller&quot;, &quot;Horror&quot;, &quot;Horror&quot;,…
## $ release_date      &amp;lt;chr&amp;gt; &quot;26-Oct-12&quot;, &quot;13-Jan-17&quot;, &quot;21-Oct-17&quot;, &quot;23-Apr…
## $ release_country   &amp;lt;chr&amp;gt; &quot;USA&quot;, &quot;USA&quot;, &quot;Canada&quot;, &quot;USA&quot;, &quot;USA&quot;, &quot;UK&quot;, &quot;U…
## $ movie_rating      &amp;lt;chr&amp;gt; NA, NA, NA, &quot;NOT RATED&quot;, NA, NA, &quot;NOT RATED&quot;, …
## $ review_rating     &amp;lt;dbl&amp;gt; 3.9, NA, NA, 3.7, 5.8, NA, 5.1, 6.5, 4.6, 5.4,…
## $ movie_run_time    &amp;lt;chr&amp;gt; &quot;91 min&quot;, NA, NA, &quot;82 min&quot;, &quot;80 min&quot;, &quot;93 min&quot;…
## $ plot              &amp;lt;chr&amp;gt; &quot;Directed by Elias. With Jason Vail, Nicholas …
## $ cast              &amp;lt;chr&amp;gt; &quot;Jason Vail|Nicholas Wilder|Sarah Schoofs|Kirs…
## $ language          &amp;lt;chr&amp;gt; &quot;English&quot;, &quot;English&quot;, &quot;English&quot;, &quot;English&quot;, &quot;I…
## $ filming_locations &amp;lt;chr&amp;gt; &quot;New York, USA&quot;, NA, &quot;Sudbury, Ontario, Canada…
## $ budget            &amp;lt;chr&amp;gt; NA, &quot;$30,000&quot;, NA, NA, NA, &quot;$3,400,000&quot;, NA, N…
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;I think I’ll go for some text mining and look for the plots. First some
tokenizing.&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;c1&quot;&gt;#creating a ata frame with digrams&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;horror_token&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;horror_movies&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;select&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;plot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;genres&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unnest_tokens&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;genre&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;genres&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;token&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;ngrams&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;str_detect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;genre&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;fi&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;negate&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;TRUE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
         &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;str_detect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;genre&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;horror&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;distinct&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;I’ll make a pie chart with the proportion of released movies in all
years. But first I have to create the labels.&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;c1&quot;&gt;#vector with the 5 most common digrams&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;most_common&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;horror_token&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;group_by&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;genre&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;summarise&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;())&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;top_n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;select&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;genre&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;as_vector&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unname&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;#fucntion to capitalize categories. Stolen from R &lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
 &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;.simpleCap&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;k&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strsplit&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot; &quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)[[&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;paste&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;toupper&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;substring&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;substring&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
          &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sep&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;collapse&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot; &quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Then I create a table with the proportion of each of the selected
categories.&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;horror_token&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;top&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;case_when&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;genre&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;==&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;horror sci&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Sci-fi&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;genre&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%in%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;most_common&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;str_remove&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;genre&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;\\s?horror\\s?&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;TRUE&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Other&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;group_by&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;top&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;count&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ungroup&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;transmute&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
            &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;top&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;map_chr&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;top&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;.simpleCap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
         &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;top&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fct_reorder&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;top&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ggplot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;top&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_bar&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;stat&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;identity&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;grey30&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;percent&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;accuracy&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
            &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position_stack&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;vjust&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.55&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
            &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;snow&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fontface&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;bold&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Rejoice horror fans... \'cause it\'s thriller night&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;subtitle&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Thriller was the genre that most appeared associated with horror in 2011-2017&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Other genre in \nhorror movies&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;caption&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Source: Imdb&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;guides&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;guide_legend&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;reverse&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;TRUE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;override.aes&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_fill_manual&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;values&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#FF8500&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#090714&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#792B17&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                               &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#7C12A6&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#2A361E&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#181393&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;coord_polar&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;y&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;start&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme_minimal&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;plot.background&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_rect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;grey20&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;plot.title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;snow&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;face&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;bold&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;plot.subtitle&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;snow&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;plot.caption&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;snow&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                                &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;hjust&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1.41&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.grid&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;legend.background&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_rect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;grey20&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                                     &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;grey20&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;legend.text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;snow&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;legend.title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;snow&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;legend.box.margin&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;margin&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.line&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/hom_pie-1.png&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;/p&gt;</content><author><name>Jorge Mendes</name></author><category term="Tidy Tuesday" /><category term="Tidy Tuesday" /><category term="Pie chart" /><category term="ggplot" /><summary type="html">Data description From From TidyTuesdays github: This week’s data is from the IMDB by way of Kaggle. H/t to Georgios Karamanis for sharing the data this week. Thrillist did a 75 Best Horror Movies of all Time article. There’s also a Stephen Follows article about horror movies exploring data around profit, popularity and ratings. Last year for Halloween we focused on Horror Movie Profit - feel free to take a peek at that data as well on our GitHub. Import data and packages library(tidyverse) #data collection, manipulation and plots library(tidytext) #text manipulation library(scales) #number format transforming library(here) #make sure the figures are in the right place library(RCurl) #because curl is giving me a headache horror_movies &amp;lt;- readr::read_csv(RCurl::getURL( &quot;https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-22/horror_movies.csv&quot; )) Data glimpse(horror_movies) ## Observations: 3,328 ## Variables: 12 ## $ title &amp;lt;chr&amp;gt; &quot;Gut (2012)&quot;, &quot;The Haunting of Mia Moss (2017)… ## $ genres &amp;lt;chr&amp;gt; &quot;Drama| Horror| Thriller&quot;, &quot;Horror&quot;, &quot;Horror&quot;,… ## $ release_date &amp;lt;chr&amp;gt; &quot;26-Oct-12&quot;, &quot;13-Jan-17&quot;, &quot;21-Oct-17&quot;, &quot;23-Apr… ## $ release_country &amp;lt;chr&amp;gt; &quot;USA&quot;, &quot;USA&quot;, &quot;Canada&quot;, &quot;USA&quot;, &quot;USA&quot;, &quot;UK&quot;, &quot;U… ## $ movie_rating &amp;lt;chr&amp;gt; NA, NA, NA, &quot;NOT RATED&quot;, NA, NA, &quot;NOT RATED&quot;, … ## $ review_rating &amp;lt;dbl&amp;gt; 3.9, NA, NA, 3.7, 5.8, NA, 5.1, 6.5, 4.6, 5.4,… ## $ movie_run_time &amp;lt;chr&amp;gt; &quot;91 min&quot;, NA, NA, &quot;82 min&quot;, &quot;80 min&quot;, &quot;93 min&quot;… ## $ plot &amp;lt;chr&amp;gt; &quot;Directed by Elias. With Jason Vail, Nicholas … ## $ cast &amp;lt;chr&amp;gt; &quot;Jason Vail|Nicholas Wilder|Sarah Schoofs|Kirs… ## $ language &amp;lt;chr&amp;gt; &quot;English&quot;, &quot;English&quot;, &quot;English&quot;, &quot;English&quot;, &quot;I… ## $ filming_locations &amp;lt;chr&amp;gt; &quot;New York, USA&quot;, NA, &quot;Sudbury, Ontario, Canada… ## $ budget &amp;lt;chr&amp;gt; NA, &quot;$30,000&quot;, NA, NA, NA, &quot;$3,400,000&quot;, NA, N… I think I’ll go for some text mining and look for the plots. First some tokenizing. #creating a ata frame with digrams horror_token &amp;lt;- horror_movies %&amp;gt;% select(plot, genres) %&amp;gt;% unnest_tokens(&quot;genre&quot;, genres, token = &quot;ngrams&quot;, n =2) %&amp;gt;% filter(str_detect(genre, &quot;fi&quot;, negate = TRUE), str_detect(genre, &quot;horror&quot;)) %&amp;gt;% distinct() I’ll make a pie chart with the proportion of released movies in all years. But first I have to create the labels. #vector with the 5 most common digrams most_common &amp;lt;- horror_token %&amp;gt;% group_by(genre) %&amp;gt;% summarise(n = n()) %&amp;gt;% top_n(5, n) %&amp;gt;% select(genre) %&amp;gt;% as_vector() %&amp;gt;% unname() #fucntion to capitalize categories. Stolen from R .simpleCap &amp;lt;- function(x) { s &amp;lt;- strsplit(x, &quot; &quot;)[[1]] paste(toupper(substring(s, 1, 1)), substring(s, 2), sep = &quot;&quot;, collapse = &quot; &quot;) } Then I create a table with the proportion of each of the selected categories. horror_token %&amp;gt;% mutate(top = case_when( genre == &quot;horror sci&quot; ~ &quot;Sci-fi&quot;, genre %in% most_common ~ str_remove(genre, &quot;\\s?horror\\s?&quot;), TRUE ~ &quot;Other&quot; )) %&amp;gt;% group_by(top) %&amp;gt;% count() %&amp;gt;% ungroup() %&amp;gt;% transmute(n = n/sum(n), top = map_chr(top, .simpleCap), top = fct_reorder(top, n)) %&amp;gt;% ggplot(aes(x = &quot;&quot;, y = n, fill = top)) + geom_bar(stat = &quot;identity&quot;, width = 1, size = 1, color = &quot;grey30&quot;) + geom_text(aes(label = percent(n, accuracy = 1)), position = position_stack(vjust = .55), color = &quot;snow&quot;, fontface = &quot;bold&quot;) + labs( title = &quot;Rejoice horror fans... \'cause it\'s thriller night&quot;, subtitle = &quot;Thriller was the genre that most appeared associated with horror in 2011-2017&quot;, fill =&quot;Other genre in \nhorror movies&quot;, caption = &quot;Source: Imdb&quot; ) + guides(fill = guide_legend(reverse = TRUE, override.aes = c(size = .5))) + scale_fill_manual(values = c(&quot;#FF8500&quot;, &quot;#090714&quot;, &quot;#792B17&quot;, &quot;#7C12A6&quot;, &quot;#2A361E&quot;, &quot;#181393&quot;)) + coord_polar(&quot;y&quot;, start = 0) + theme_minimal() + theme( plot.background = element_rect(fill = &quot;grey20&quot;), plot.title = element_text(color = &quot;snow&quot;, face = &quot;bold&quot;), plot.subtitle = element_text(color = &quot;snow&quot;), plot.caption = element_text(color = &quot;snow&quot;, hjust = 1.41), panel.grid = element_blank(), legend.background = element_rect(fill = &quot;grey20&quot;, color = &quot;grey20&quot;), legend.text = element_text(color = &quot;snow&quot;), legend.title = element_text(color = &quot;snow&quot;), legend.box.margin = margin(1,3,1,1), axis.line = element_blank(), axis.text = element_blank(), axis.title = element_blank() )</summary></entry><entry><title type="html">Makeover Monday 21/10/2019 The age at which most people are dying by suicide</title><link href="https://jorgel-mendes.github.io/Behold-the-Vision/makeover%20monday/Makeover-Mondays-Age/" rel="alternate" type="text/html" title="Makeover Monday 21/10/2019 The age at which most people are dying by suicide" /><published>2019-10-21T00:00:00+00:00</published><updated>2019-10-21T00:00:00+00:00</updated><id>https://jorgel-mendes.github.io/Behold-the-Vision/makeover%20monday/Makeover-Mondays-Age</id><content type="html" xml:base="https://jorgel-mendes.github.io/Behold-the-Vision/makeover%20monday/Makeover-Mondays-Age/">&lt;h1 id=&quot;data-description&quot;&gt;Data description&lt;/h1&gt;

&lt;p&gt;Week 43 of &lt;a href=&quot;https://data.world/makeovermonday/2019w43&quot;&gt;Makeover Monday&lt;/a&gt; in 2019.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Number of people dying by suicide by single year of age, England and Wales, deaths registered between 1993 and 2017&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1 id=&quot;about-the-visualization&quot;&gt;About the visualization&lt;/h1&gt;

&lt;p&gt;Idecided to look down 3 age groups and see how each of them changed with time. This way reminding the audience that any age group can be affected and maybe opening space for some insights.&lt;/p&gt;

&lt;p&gt;I tried to make the visualization as respectful as possible since the data is from a delicate matter.&lt;/p&gt;

&lt;h1 id=&quot;plot&quot;&gt;Plot&lt;/h1&gt;

&lt;p&gt;Made in excel and turned into a gif. Here is the gif and then the visualizations. They also work in a scrolling manner.&lt;/p&gt;

&lt;h2 id=&quot;gif&quot;&gt;Gif&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_21_MM_GIF.gif&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;/p&gt;

&lt;h2 id=&quot;plots&quot;&gt;Plots&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_21_MM_1_1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_21_MM_1_2.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_21_MM_1_3.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_21_MM_1_4.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_21_MM_1_5.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_21_MM_1_6.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_21_MM_1_7.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_21_MM_1_8.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_21_MM_1_9.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_21_MM_1_10.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_21_MM_1_11.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;</content><author><name>Jorge Mendes</name></author><category term="Makeover Monday" /><category term="Makeover Monday" /><category term="Dispersion plots" /><category term="gif" /><category term="excel" /><summary type="html">Data description Week 43 of Makeover Monday in 2019. Number of people dying by suicide by single year of age, England and Wales, deaths registered between 1993 and 2017 About the visualization Idecided to look down 3 age groups and see how each of them changed with time. This way reminding the audience that any age group can be affected and maybe opening space for some insights. I tried to make the visualization as respectful as possible since the data is from a delicate matter. Plot Made in excel and turned into a gif. Here is the gif and then the visualizations. They also work in a scrolling manner. Gif Plots</summary></entry><entry><title type="html">Tidy Tuesday 15/10/2019 Big Mtcars</title><link href="https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Mtcars/" rel="alternate" type="text/html" title="Tidy Tuesday 15/10/2019 Big Mtcars" /><published>2019-10-15T00:00:00+00:00</published><updated>2019-10-15T00:00:00+00:00</updated><id>https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Mtcars</id><content type="html" xml:base="https://jorgel-mendes.github.io/Behold-the-Vision/tidy%20tuesday/Tidy-Tuesday-Mtcars/">&lt;h1 id=&quot;data-description&quot;&gt;Data description&lt;/h1&gt;

&lt;p&gt;From From &lt;a href=&quot;https://github.com/rfordatascience/tidytuesday/tree/master/data/2019/2019-10-15&quot;&gt;TidyTuesdays
github&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;This week’s data is from the EPA. The full data dictionary can be
found at fueleconomy.gov.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;p&gt;It’s essentially a much much larger and updated dataset covering
mtcars, the dataset we all know a bit too well!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;p&gt;H/t to Ellis Hughes who had a recent blogpost covering this dataset.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h1 id=&quot;import-data-and-packages&quot;&gt;Import data and packages&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tidyverse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scales&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Cairo&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;big_epa_cars&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read_csv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-15/big_epa_cars.csv&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h1 id=&quot;data&quot;&gt;Data&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;big_epa_cars&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;## Classes 'spec_tbl_df', 'tbl_df', 'tbl' and 'data.frame': 41804 obs. of  83 variables:
##  $ barrels08      : num  15.7 30 12.2 30 17.3 ...
##  $ barrelsA08     : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ charge120      : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ charge240      : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ city08         : num  19 9 23 10 17 21 22 23 23 23 ...
##  $ city08U        : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ cityA08        : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ cityA08U       : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ cityCD         : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ cityE          : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ cityUF         : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ co2            : num  -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...
##  $ co2A           : num  -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...
##  $ co2TailpipeAGpm: num  0 0 0 0 0 0 0 0 0 0 ...
##  $ co2TailpipeGpm : num  423 808 329 808 468 ...
##  $ comb08         : num  21 11 27 11 19 22 25 24 26 25 ...
##  $ comb08U        : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ combA08        : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ combA08U       : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ combE          : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ combinedCD     : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ combinedUF     : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ cylinders      : num  4 12 4 8 4 4 4 4 4 4 ...
##  $ displ          : num  2 4.9 2.2 5.2 2.2 1.8 1.8 1.6 1.6 1.8 ...
##  $ drive          : chr  &quot;Rear-Wheel Drive&quot; &quot;Rear-Wheel Drive&quot; &quot;Front-Wheel Drive&quot; &quot;Rear-Wheel Drive&quot; ...
##  $ engId          : num  9011 22020 2100 2850 66031 ...
##  $ eng_dscr       : chr  &quot;(FFS)&quot; &quot;(GUZZLER)&quot; &quot;(FFS)&quot; NA ...
##  $ feScore        : num  -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...
##  $ fuelCost08     : num  1900 3600 1450 3600 2600 1800 1600 1650 1550 1600 ...
##  $ fuelCostA08    : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ fuelType       : chr  &quot;Regular&quot; &quot;Regular&quot; &quot;Regular&quot; &quot;Regular&quot; ...
##  $ fuelType1      : chr  &quot;Regular Gasoline&quot; &quot;Regular Gasoline&quot; &quot;Regular Gasoline&quot; &quot;Regular Gasoline&quot; ...
##  $ ghgScore       : num  -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...
##  $ ghgScoreA      : num  -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...
##  $ highway08      : num  25 14 33 12 23 24 29 26 31 30 ...
##  $ highway08U     : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ highwayA08     : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ highwayA08U    : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ highwayCD      : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ highwayE       : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ highwayUF      : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ hlv            : num  0 0 19 0 0 0 0 0 0 0 ...
##  $ hpv            : num  0 0 77 0 0 0 0 0 0 0 ...
##  $ id             : num  1 10 100 1000 10000 ...
##  $ lv2            : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ lv4            : num  0 0 0 0 14 15 15 13 13 13 ...
##  $ make           : chr  &quot;Alfa Romeo&quot; &quot;Ferrari&quot; &quot;Dodge&quot; &quot;Dodge&quot; ...
##  $ model          : chr  &quot;Spider Veloce 2000&quot; &quot;Testarossa&quot; &quot;Charger&quot; &quot;B150/B250 Wagon 2WD&quot; ...
##  $ mpgData        : chr  &quot;Y&quot; &quot;N&quot; &quot;Y&quot; &quot;N&quot; ...
##  $ phevBlended    : logi  FALSE FALSE FALSE FALSE FALSE FALSE ...
##  $ pv2            : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ pv4            : num  0 0 0 0 90 88 88 89 89 89 ...
##  $ range          : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ rangeCity      : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ rangeCityA     : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ rangeHwy       : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ rangeHwyA      : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ trany          : chr  &quot;Manual 5-spd&quot; &quot;Manual 5-spd&quot; &quot;Manual 5-spd&quot; &quot;Automatic 3-spd&quot; ...
##  $ UCity          : num  23.3 11 29 12.2 21 ...
##  $ UCityA         : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ UHighway       : num  35 19 47 16.7 32 ...
##  $ UHighwayA      : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ VClass         : chr  &quot;Two Seaters&quot; &quot;Two Seaters&quot; &quot;Subcompact Cars&quot; &quot;Vans&quot; ...
##  $ year           : num  1985 1985 1985 1985 1993 ...
##  $ youSaveSpend   : num  -2250 -10750 0 -10750 -5750 ...
##  $ guzzler        : logi  NA TRUE NA NA NA NA ...
##  $ trans_dscr     : chr  NA NA &quot;SIL&quot; NA ...
##  $ tCharger       : logi  NA NA NA NA TRUE NA ...
##  $ sCharger       : chr  NA NA NA NA ...
##  $ atvType        : chr  NA NA NA NA ...
##  $ fuelType2      : logi  NA NA NA NA NA NA ...
##  $ rangeA         : logi  NA NA NA NA NA NA ...
##  $ evMotor        : logi  NA NA NA NA NA NA ...
##  $ mfrCode        : logi  NA NA NA NA NA NA ...
##  $ c240Dscr       : logi  NA NA NA NA NA NA ...
##  $ charge240b     : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ c240bDscr      : logi  NA NA NA NA NA NA ...
##  $ createdOn      : chr  &quot;Tue Jan 01 00:00:00 EST 2013&quot; &quot;Tue Jan 01 00:00:00 EST 2013&quot; &quot;Tue Jan 01 00:00:00 EST 2013&quot; &quot;Tue Jan 01 00:00:00 EST 2013&quot; ...
##  $ modifiedOn     : chr  &quot;Tue Jan 01 00:00:00 EST 2013&quot; &quot;Tue Jan 01 00:00:00 EST 2013&quot; &quot;Tue Jan 01 00:00:00 EST 2013&quot; &quot;Tue Jan 01 00:00:00 EST 2013&quot; ...
##  $ startStop      : logi  NA NA NA NA NA NA ...
##  $ phevCity       : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ phevHwy        : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ phevComb       : num  0 0 0 0 0 0 0 0 0 0 ...
##  - attr(*, &quot;problems&quot;)=Classes 'tbl_df', 'tbl' and 'data.frame': 26930 obs. of  5 variables:
##   ..$ row     : int  4430 4431 4432 4433 4442 4443 4444 4448 4449 4450 ...
##   ..$ col     : chr  &quot;guzzler&quot; &quot;guzzler&quot; &quot;guzzler&quot; &quot;guzzler&quot; ...
##   ..$ expected: chr  &quot;1/0/T/F/TRUE/FALSE&quot; &quot;1/0/T/F/TRUE/FALSE&quot; &quot;1/0/T/F/TRUE/FALSE&quot; &quot;1/0/T/F/TRUE/FALSE&quot; ...
##   ..$ actual  : chr  &quot;G&quot; &quot;G&quot; &quot;G&quot; &quot;G&quot; ...
##   ..$ file    : chr  &quot;'https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-15/big_epa_cars.csv'&quot; &quot;'https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-15/big_epa_cars.csv'&quot; &quot;'https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-15/big_epa_cars.csv'&quot; &quot;'https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-15/big_epa_cars.csv'&quot; ...
##  - attr(*, &quot;spec&quot;)=
##   .. cols(
##   ..   barrels08 = col_double(),
##   ..   barrelsA08 = col_double(),
##   ..   charge120 = col_double(),
##   ..   charge240 = col_double(),
##   ..   city08 = col_double(),
##   ..   city08U = col_double(),
##   ..   cityA08 = col_double(),
##   ..   cityA08U = col_double(),
##   ..   cityCD = col_double(),
##   ..   cityE = col_double(),
##   ..   cityUF = col_double(),
##   ..   co2 = col_double(),
##   ..   co2A = col_double(),
##   ..   co2TailpipeAGpm = col_double(),
##   ..   co2TailpipeGpm = col_double(),
##   ..   comb08 = col_double(),
##   ..   comb08U = col_double(),
##   ..   combA08 = col_double(),
##   ..   combA08U = col_double(),
##   ..   combE = col_double(),
##   ..   combinedCD = col_double(),
##   ..   combinedUF = col_double(),
##   ..   cylinders = col_double(),
##   ..   displ = col_double(),
##   ..   drive = col_character(),
##   ..   engId = col_double(),
##   ..   eng_dscr = col_character(),
##   ..   feScore = col_double(),
##   ..   fuelCost08 = col_double(),
##   ..   fuelCostA08 = col_double(),
##   ..   fuelType = col_character(),
##   ..   fuelType1 = col_character(),
##   ..   ghgScore = col_double(),
##   ..   ghgScoreA = col_double(),
##   ..   highway08 = col_double(),
##   ..   highway08U = col_double(),
##   ..   highwayA08 = col_double(),
##   ..   highwayA08U = col_double(),
##   ..   highwayCD = col_double(),
##   ..   highwayE = col_double(),
##   ..   highwayUF = col_double(),
##   ..   hlv = col_double(),
##   ..   hpv = col_double(),
##   ..   id = col_double(),
##   ..   lv2 = col_double(),
##   ..   lv4 = col_double(),
##   ..   make = col_character(),
##   ..   model = col_character(),
##   ..   mpgData = col_character(),
##   ..   phevBlended = col_logical(),
##   ..   pv2 = col_double(),
##   ..   pv4 = col_double(),
##   ..   range = col_double(),
##   ..   rangeCity = col_double(),
##   ..   rangeCityA = col_double(),
##   ..   rangeHwy = col_double(),
##   ..   rangeHwyA = col_double(),
##   ..   trany = col_character(),
##   ..   UCity = col_double(),
##   ..   UCityA = col_double(),
##   ..   UHighway = col_double(),
##   ..   UHighwayA = col_double(),
##   ..   VClass = col_character(),
##   ..   year = col_double(),
##   ..   youSaveSpend = col_double(),
##   ..   guzzler = col_logical(),
##   ..   trans_dscr = col_character(),
##   ..   tCharger = col_logical(),
##   ..   sCharger = col_character(),
##   ..   atvType = col_character(),
##   ..   fuelType2 = col_logical(),
##   ..   rangeA = col_logical(),
##   ..   evMotor = col_logical(),
##   ..   mfrCode = col_logical(),
##   ..   c240Dscr = col_logical(),
##   ..   charge240b = col_double(),
##   ..   c240bDscr = col_logical(),
##   ..   createdOn = col_character(),
##   ..   modifiedOn = col_character(),
##   ..   startStop = col_logical(),
##   ..   phevCity = col_double(),
##   ..   phevHwy = col_double(),
##   ..   phevComb = col_double()
##   .. )
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;big_epa_cars&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;select&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;make&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;youSaveSpend&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;year&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fuelType1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;group_by&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;make&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;count&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;())&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ungroup&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;isSaving&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;factor&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ifelse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;youSaveSpend&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;yes&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;no&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;levels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;yes&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;no&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ggplot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;year&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;youSaveSpend&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_point&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;isSaving&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_smooth&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;se&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;FALSE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;blue3&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.7&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Some type of fuels are more associated with economical cars&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;subtitle&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Gasoline cars are moving towards bigger savings&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Savings compared to an average car over 5 years&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Is saving?&quot;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;facet_wrap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fuelType1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_color_manual&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;values&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#01d28e&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#e25822&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_y_continuous&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;number_format&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1000&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;prefix&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;$&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                                         &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;suffix&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;k&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;guides&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;guide_legend&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;override.aes&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;list&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1.3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme_dark&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;colour&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;darkslategrey&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;legend.title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;hjust&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.grid&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;legend.text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;colour&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;darkslategrey&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.ticks&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'darkslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.line&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.title.x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.background&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_rect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;grey30&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strip.background&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_rect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;grey20&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/bic_point-1.png&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;/p&gt;</content><author><name>Jorge Mendes</name></author><category term="Tidy Tuesday" /><category term="Tidy Tuesday" /><category term="Smooth line" /><category term="Dispersion plots" /><category term="ggplot" /><summary type="html">Data description From From TidyTuesdays github: This week’s data is from the EPA. The full data dictionary can be found at fueleconomy.gov. It’s essentially a much much larger and updated dataset covering mtcars, the dataset we all know a bit too well! H/t to Ellis Hughes who had a recent blogpost covering this dataset. Import data and packages library(tidyverse) library(scales) library(Cairo) big_epa_cars &amp;lt;- read_csv(&quot;https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-15/big_epa_cars.csv&quot;) Data str(big_epa_cars) ## Classes 'spec_tbl_df', 'tbl_df', 'tbl' and 'data.frame': 41804 obs. of 83 variables: ## $ barrels08 : num 15.7 30 12.2 30 17.3 ... ## $ barrelsA08 : num 0 0 0 0 0 0 0 0 0 0 ... ## $ charge120 : num 0 0 0 0 0 0 0 0 0 0 ... ## $ charge240 : num 0 0 0 0 0 0 0 0 0 0 ... ## $ city08 : num 19 9 23 10 17 21 22 23 23 23 ... ## $ city08U : num 0 0 0 0 0 0 0 0 0 0 ... ## $ cityA08 : num 0 0 0 0 0 0 0 0 0 0 ... ## $ cityA08U : num 0 0 0 0 0 0 0 0 0 0 ... ## $ cityCD : num 0 0 0 0 0 0 0 0 0 0 ... ## $ cityE : num 0 0 0 0 0 0 0 0 0 0 ... ## $ cityUF : num 0 0 0 0 0 0 0 0 0 0 ... ## $ co2 : num -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ... ## $ co2A : num -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ... ## $ co2TailpipeAGpm: num 0 0 0 0 0 0 0 0 0 0 ... ## $ co2TailpipeGpm : num 423 808 329 808 468 ... ## $ comb08 : num 21 11 27 11 19 22 25 24 26 25 ... ## $ comb08U : num 0 0 0 0 0 0 0 0 0 0 ... ## $ combA08 : num 0 0 0 0 0 0 0 0 0 0 ... ## $ combA08U : num 0 0 0 0 0 0 0 0 0 0 ... ## $ combE : num 0 0 0 0 0 0 0 0 0 0 ... ## $ combinedCD : num 0 0 0 0 0 0 0 0 0 0 ... ## $ combinedUF : num 0 0 0 0 0 0 0 0 0 0 ... ## $ cylinders : num 4 12 4 8 4 4 4 4 4 4 ... ## $ displ : num 2 4.9 2.2 5.2 2.2 1.8 1.8 1.6 1.6 1.8 ... ## $ drive : chr &quot;Rear-Wheel Drive&quot; &quot;Rear-Wheel Drive&quot; &quot;Front-Wheel Drive&quot; &quot;Rear-Wheel Drive&quot; ... ## $ engId : num 9011 22020 2100 2850 66031 ... ## $ eng_dscr : chr &quot;(FFS)&quot; &quot;(GUZZLER)&quot; &quot;(FFS)&quot; NA ... ## $ feScore : num -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ... ## $ fuelCost08 : num 1900 3600 1450 3600 2600 1800 1600 1650 1550 1600 ... ## $ fuelCostA08 : num 0 0 0 0 0 0 0 0 0 0 ... ## $ fuelType : chr &quot;Regular&quot; &quot;Regular&quot; &quot;Regular&quot; &quot;Regular&quot; ... ## $ fuelType1 : chr &quot;Regular Gasoline&quot; &quot;Regular Gasoline&quot; &quot;Regular Gasoline&quot; &quot;Regular Gasoline&quot; ... ## $ ghgScore : num -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ... ## $ ghgScoreA : num -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ... ## $ highway08 : num 25 14 33 12 23 24 29 26 31 30 ... ## $ highway08U : num 0 0 0 0 0 0 0 0 0 0 ... ## $ highwayA08 : num 0 0 0 0 0 0 0 0 0 0 ... ## $ highwayA08U : num 0 0 0 0 0 0 0 0 0 0 ... ## $ highwayCD : num 0 0 0 0 0 0 0 0 0 0 ... ## $ highwayE : num 0 0 0 0 0 0 0 0 0 0 ... ## $ highwayUF : num 0 0 0 0 0 0 0 0 0 0 ... ## $ hlv : num 0 0 19 0 0 0 0 0 0 0 ... ## $ hpv : num 0 0 77 0 0 0 0 0 0 0 ... ## $ id : num 1 10 100 1000 10000 ... ## $ lv2 : num 0 0 0 0 0 0 0 0 0 0 ... ## $ lv4 : num 0 0 0 0 14 15 15 13 13 13 ... ## $ make : chr &quot;Alfa Romeo&quot; &quot;Ferrari&quot; &quot;Dodge&quot; &quot;Dodge&quot; ... ## $ model : chr &quot;Spider Veloce 2000&quot; &quot;Testarossa&quot; &quot;Charger&quot; &quot;B150/B250 Wagon 2WD&quot; ... ## $ mpgData : chr &quot;Y&quot; &quot;N&quot; &quot;Y&quot; &quot;N&quot; ... ## $ phevBlended : logi FALSE FALSE FALSE FALSE FALSE FALSE ... ## $ pv2 : num 0 0 0 0 0 0 0 0 0 0 ... ## $ pv4 : num 0 0 0 0 90 88 88 89 89 89 ... ## $ range : num 0 0 0 0 0 0 0 0 0 0 ... ## $ rangeCity : num 0 0 0 0 0 0 0 0 0 0 ... ## $ rangeCityA : num 0 0 0 0 0 0 0 0 0 0 ... ## $ rangeHwy : num 0 0 0 0 0 0 0 0 0 0 ... ## $ rangeHwyA : num 0 0 0 0 0 0 0 0 0 0 ... ## $ trany : chr &quot;Manual 5-spd&quot; &quot;Manual 5-spd&quot; &quot;Manual 5-spd&quot; &quot;Automatic 3-spd&quot; ... ## $ UCity : num 23.3 11 29 12.2 21 ... ## $ UCityA : num 0 0 0 0 0 0 0 0 0 0 ... ## $ UHighway : num 35 19 47 16.7 32 ... ## $ UHighwayA : num 0 0 0 0 0 0 0 0 0 0 ... ## $ VClass : chr &quot;Two Seaters&quot; &quot;Two Seaters&quot; &quot;Subcompact Cars&quot; &quot;Vans&quot; ... ## $ year : num 1985 1985 1985 1985 1993 ... ## $ youSaveSpend : num -2250 -10750 0 -10750 -5750 ... ## $ guzzler : logi NA TRUE NA NA NA NA ... ## $ trans_dscr : chr NA NA &quot;SIL&quot; NA ... ## $ tCharger : logi NA NA NA NA TRUE NA ... ## $ sCharger : chr NA NA NA NA ... ## $ atvType : chr NA NA NA NA ... ## $ fuelType2 : logi NA NA NA NA NA NA ... ## $ rangeA : logi NA NA NA NA NA NA ... ## $ evMotor : logi NA NA NA NA NA NA ... ## $ mfrCode : logi NA NA NA NA NA NA ... ## $ c240Dscr : logi NA NA NA NA NA NA ... ## $ charge240b : num 0 0 0 0 0 0 0 0 0 0 ... ## $ c240bDscr : logi NA NA NA NA NA NA ... ## $ createdOn : chr &quot;Tue Jan 01 00:00:00 EST 2013&quot; &quot;Tue Jan 01 00:00:00 EST 2013&quot; &quot;Tue Jan 01 00:00:00 EST 2013&quot; &quot;Tue Jan 01 00:00:00 EST 2013&quot; ... ## $ modifiedOn : chr &quot;Tue Jan 01 00:00:00 EST 2013&quot; &quot;Tue Jan 01 00:00:00 EST 2013&quot; &quot;Tue Jan 01 00:00:00 EST 2013&quot; &quot;Tue Jan 01 00:00:00 EST 2013&quot; ... ## $ startStop : logi NA NA NA NA NA NA ... ## $ phevCity : num 0 0 0 0 0 0 0 0 0 0 ... ## $ phevHwy : num 0 0 0 0 0 0 0 0 0 0 ... ## $ phevComb : num 0 0 0 0 0 0 0 0 0 0 ... ## - attr(*, &quot;problems&quot;)=Classes 'tbl_df', 'tbl' and 'data.frame': 26930 obs. of 5 variables: ## ..$ row : int 4430 4431 4432 4433 4442 4443 4444 4448 4449 4450 ... ## ..$ col : chr &quot;guzzler&quot; &quot;guzzler&quot; &quot;guzzler&quot; &quot;guzzler&quot; ... ## ..$ expected: chr &quot;1/0/T/F/TRUE/FALSE&quot; &quot;1/0/T/F/TRUE/FALSE&quot; &quot;1/0/T/F/TRUE/FALSE&quot; &quot;1/0/T/F/TRUE/FALSE&quot; ... ## ..$ actual : chr &quot;G&quot; &quot;G&quot; &quot;G&quot; &quot;G&quot; ... ## ..$ file : chr &quot;'https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-15/big_epa_cars.csv'&quot; &quot;'https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-15/big_epa_cars.csv'&quot; &quot;'https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-15/big_epa_cars.csv'&quot; &quot;'https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2019/2019-10-15/big_epa_cars.csv'&quot; ... ## - attr(*, &quot;spec&quot;)= ## .. cols( ## .. barrels08 = col_double(), ## .. barrelsA08 = col_double(), ## .. charge120 = col_double(), ## .. charge240 = col_double(), ## .. city08 = col_double(), ## .. city08U = col_double(), ## .. cityA08 = col_double(), ## .. cityA08U = col_double(), ## .. cityCD = col_double(), ## .. cityE = col_double(), ## .. cityUF = col_double(), ## .. co2 = col_double(), ## .. co2A = col_double(), ## .. co2TailpipeAGpm = col_double(), ## .. co2TailpipeGpm = col_double(), ## .. comb08 = col_double(), ## .. comb08U = col_double(), ## .. combA08 = col_double(), ## .. combA08U = col_double(), ## .. combE = col_double(), ## .. combinedCD = col_double(), ## .. combinedUF = col_double(), ## .. cylinders = col_double(), ## .. displ = col_double(), ## .. drive = col_character(), ## .. engId = col_double(), ## .. eng_dscr = col_character(), ## .. feScore = col_double(), ## .. fuelCost08 = col_double(), ## .. fuelCostA08 = col_double(), ## .. fuelType = col_character(), ## .. fuelType1 = col_character(), ## .. ghgScore = col_double(), ## .. ghgScoreA = col_double(), ## .. highway08 = col_double(), ## .. highway08U = col_double(), ## .. highwayA08 = col_double(), ## .. highwayA08U = col_double(), ## .. highwayCD = col_double(), ## .. highwayE = col_double(), ## .. highwayUF = col_double(), ## .. hlv = col_double(), ## .. hpv = col_double(), ## .. id = col_double(), ## .. lv2 = col_double(), ## .. lv4 = col_double(), ## .. make = col_character(), ## .. model = col_character(), ## .. mpgData = col_character(), ## .. phevBlended = col_logical(), ## .. pv2 = col_double(), ## .. pv4 = col_double(), ## .. range = col_double(), ## .. rangeCity = col_double(), ## .. rangeCityA = col_double(), ## .. rangeHwy = col_double(), ## .. rangeHwyA = col_double(), ## .. trany = col_character(), ## .. UCity = col_double(), ## .. UCityA = col_double(), ## .. UHighway = col_double(), ## .. UHighwayA = col_double(), ## .. VClass = col_character(), ## .. year = col_double(), ## .. youSaveSpend = col_double(), ## .. guzzler = col_logical(), ## .. trans_dscr = col_character(), ## .. tCharger = col_logical(), ## .. sCharger = col_character(), ## .. atvType = col_character(), ## .. fuelType2 = col_logical(), ## .. rangeA = col_logical(), ## .. evMotor = col_logical(), ## .. mfrCode = col_logical(), ## .. c240Dscr = col_logical(), ## .. charge240b = col_double(), ## .. c240bDscr = col_logical(), ## .. createdOn = col_character(), ## .. modifiedOn = col_character(), ## .. startStop = col_logical(), ## .. phevCity = col_double(), ## .. phevHwy = col_double(), ## .. phevComb = col_double() ## .. ) big_epa_cars %&amp;gt;% select(make, youSaveSpend, year, fuelType1) %&amp;gt;% group_by(make) %&amp;gt;% mutate(count = n()) %&amp;gt;% ungroup() %&amp;gt;% mutate(isSaving = factor(ifelse( youSaveSpend &amp;gt; 0, &quot;yes&quot;, &quot;no&quot; ), levels = c(&quot;yes&quot;, &quot;no&quot;))) %&amp;gt;% ggplot(aes(year, youSaveSpend)) + geom_point(aes(color = isSaving), size = .3) + geom_smooth(se = FALSE, color = &quot;blue3&quot;, size = .7) + labs( title = &quot;Some type of fuels are more associated with economical cars&quot;, subtitle = &quot;Gasoline cars are moving towards bigger savings&quot;, y = &quot;Savings compared to an average car over 5 years&quot;, color = &quot;Is saving?&quot; ) + facet_wrap(~fuelType1)+ scale_color_manual(values = c(&quot;#01d28e&quot;, &quot;#e25822&quot;)) + scale_y_continuous(label = number_format(scale = 1/1000, prefix = &quot;$&quot;, suffix = &quot;k&quot;)) + guides(color = guide_legend(override.aes = list(size=1.3))) + theme_dark() + theme( title = element_text(colour = &quot;darkslategrey&quot;), legend.title = element_text(hjust = .5), panel.grid = element_blank(), legend.text = element_text(colour = &quot;darkslategrey&quot;), axis.ticks = element_line(color = 'lightslategrey'), axis.text = element_text(color = 'darkslategrey'), axis.line = element_blank(), axis.title.x = element_blank(), panel.background = element_rect(fill = &quot;grey30&quot;), strip.background = element_rect(fill = &quot;grey20&quot;) )</summary></entry><entry><title type="html">Storytelling with data 10/2019 Improve this table</title><link href="https://jorgel-mendes.github.io/Behold-the-Vision/storytelling%20with%20data/Storytelling-Data-Improve/" rel="alternate" type="text/html" title="Storytelling with data 10/2019 Improve this table" /><published>2019-10-09T00:00:00+00:00</published><updated>2019-10-09T00:00:00+00:00</updated><id>https://jorgel-mendes.github.io/Behold-the-Vision/storytelling%20with%20data/Storytelling-Data-Improve</id><content type="html" xml:base="https://jorgel-mendes.github.io/Behold-the-Vision/storytelling%20with%20data/Storytelling-Data-Improve/">&lt;p&gt;My first Storytelling with data challenge. From October 2019.&lt;/p&gt;

&lt;h1 id=&quot;data-description&quot;&gt;Data description&lt;/h1&gt;

&lt;p&gt;From From &lt;a href=&quot;http://www.storytellingwithdata.com/blog/2019/10/1/swdchallenge-improve-this-table&quot;&gt;Storytelling with data&lt;/a&gt;:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://images.squarespace-cdn.com/content/v1/55b6a6dce4b089e11621d3ed/1569866960440-ILA3DGUHPQZQUO3F98VY/ke17ZwdGBToddI8pDm48kFq85IBSQimBW5vU3jIslaIUqsxRUqqbr1mOJYKfIPR7LoDQ9mXPOjoJoqy81S2I8PaoYXhp6HxIwZIk7-Mi3Tsic-L2IOPH3Dwrhl-Ne3Z2EMBHxCcfLnzTQpwko3MaGDteolNhPNWFS-NzayplzSEKMshLAGzx4R3EDFOm1kBS/Exercise+2.1+%2855%29.png?format=750w&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;/p&gt;

&lt;h1 id=&quot;import-packages&quot;&gt;Import packages&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tidyverse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scales&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Cairo&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme_set&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme_classic&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;())&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h1 id=&quot;data&quot;&gt;Data&lt;/h1&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;Ex_1&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tribble&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Tier&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Number_Account&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Accounts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Revenue_M&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Revenue&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'A'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;77&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;7.08&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;4.68&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'A+'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;19&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1.75&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;3.93&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;21&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'B'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;338&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;31.07&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;5.98&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;32&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'C'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;425&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;39.06&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2.81&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'D'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;24&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2.21&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;0.37&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ifelse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;((&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Accounts&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Revenue&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'blue'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'slategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h1 id=&quot;plot&quot;&gt;Plot&lt;/h1&gt;

&lt;p&gt;I decided to make a modified slope graph to show the differences between the two tipes of shares. Looking back it would probably be better with two stacked, and connected, bar graphs but it was worth a shot.&lt;/p&gt;

&lt;p&gt;First some accessory variables.&lt;/p&gt;
&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;left_label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Ex_1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Tier&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;positions_y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Ex_1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Accounts&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;positions_y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)]&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;positions_y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)]&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;-.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Then the plot.&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;ggplot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Ex_1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_segment&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;xend&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Accounts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;yend&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Revenue&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;col&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
               &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.75&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;show.legend&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;F&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_vline&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;xintercept&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;linetype&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;dashed&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_vline&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;xintercept&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;linetype&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;dashed&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_color_manual&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Up&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Down&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
                     &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;values&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;slategrey&quot;&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;slategrey&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;blue&quot;&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;blue&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;  &lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;# color of lines&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
       &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'New Client tier share changes when looking at Accounts or Revenue'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;  &lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;# Axis labels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_x_continuous&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;limits&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;breaks&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;NULL&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale_y_continuous&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;limits&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1.1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;max&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Ex_1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Accounts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Ex_1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Revenue&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)))),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;labels&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;percent_format&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;left_label&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;positions_y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.99&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1.005&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.99&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.99&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.99&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;hjust&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1.2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;left_label&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Ex_1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Revenue&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2.01&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2.01&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2.01&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2.01&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2.01&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;hjust&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;-.2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Participation\nin Accounts&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;.68&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1.1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;max&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Ex_1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Accounts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Ex_1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Revenue&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;hjust&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;4.3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'darkslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Participation\nin Revenue&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2.02&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1.1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;max&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Ex_1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Accounts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Ex_1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Percentage_Revenue&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;hjust&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;4.3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'darkslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;C tier has low participation in \nrevenues despite the biggest \nshare of new accounts.&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2.1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;hjust&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;3.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'slategrey'&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;geom_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Together A and A+ make up for \nalmost half of the revenue \ndespite low share of \naccounts.&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2.1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;hjust&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;3.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'blue'&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;theme&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.background&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.grid&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.ticks.y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.text.x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.line.x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.line.y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis.text.y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'lightslategrey'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;panel.border&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
        &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;element_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;colour&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;darkslategrey&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;face&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'bold'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;img src=&quot;https://raw.githubusercontent.com/jorgel-mendes/Behold-the-Vision/master/docs/assets/images/2019_10_SWD.png&quot; alt=&quot;&quot; /&gt;&lt;!-- --&gt;&lt;/p&gt;

&lt;p&gt;Saved with Cairo package because windows render is not so good.&lt;/p&gt;

&lt;div class=&quot;language-r highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;path&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;paste0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;here&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;here&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;docs&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;assets&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;images&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;/&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'2019_10_SWD.png'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ggsave&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;path&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;type&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;'cairo'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;</content><author><name>Jorge Mendes</name></author><category term="Storytelling with data" /><category term="SWDChallenge" /><category term="Slope plots" /><category term="ggplot" /><summary type="html">My first Storytelling with data challenge. From October 2019. Data description From From Storytelling with data: Import packages library(tidyverse) library(scales) library(Cairo) theme_set(theme_classic()) Data Ex_1 &amp;lt;- tribble( ~Tier, ~Number_Account, ~Percentage_Accounts, ~Revenue_M, ~Percentage_Revenue, 'A', 77, 7.08, 4.68, 25, 'A+', 19, 1.75, 3.93, 21, 'B', 338, 31.07, 5.98, 32, 'C', 425, 39.06, 2.81, 15, 'D', 24, 2.21, 0.37, 2 ) %&amp;gt;% mutate( class = ifelse((Percentage_Accounts - Percentage_Revenue) &amp;lt; 0, 'blue', 'slategrey') ) Plot I decided to make a modified slope graph to show the differences between the two tipes of shares. Looking back it would probably be better with two stacked, and connected, bar graphs but it was worth a shot. First some accessory variables. left_label &amp;lt;- Ex_1$Tier positions_y &amp;lt;- Ex_1$Percentage_Accounts positions_y[c(2,5)] &amp;lt;- positions_y[c(2,5)] + c(-.5,.5) Then the plot. ggplot(Ex_1) + geom_segment(aes(x=1, xend=2, y=Percentage_Accounts, yend=Percentage_Revenue, col=class), size=.75, show.legend=F) + geom_vline(xintercept=1, linetype=&quot;dashed&quot;, size=.1, color = 'lightslategrey') + geom_vline(xintercept=2, linetype=&quot;dashed&quot;, size=.1, color = 'lightslategrey') + scale_color_manual(labels = c(&quot;Up&quot;, &quot;Down&quot;), values = c(&quot;slategrey&quot;=&quot;slategrey&quot;, &quot;blue&quot;=&quot;blue&quot;)) + # color of lines labs(x=&quot;&quot;, y=&quot;&quot;, title = 'New Client tier share changes when looking at Accounts or Revenue') + # Axis labels scale_x_continuous(limits = c(.5, 2.5), breaks = NULL) + scale_y_continuous( limits = c(0,(1.1*(max(Ex_1$Percentage_Accounts, Ex_1$Percentage_Revenue)))), labels = percent_format(scale = 1) ) + geom_text( label=left_label, y=positions_y, x=c(.99,1.005,.99,.99,.99), hjust=1.2, size=3 ) + geom_text( label=left_label, y=Ex_1$Percentage_Revenue, x=c(2.01,2.01,2.01,2.01,2.01), hjust=-.2, size=3 ) + geom_text( label=&quot;Participation\nin Accounts&quot;, x=.68, y = 1.1*(max(Ex_1$Percentage_Accounts, Ex_1$Percentage_Revenue)), hjust=0, size=4.3, color = 'darkslategrey') + geom_text( label=&quot;Participation\nin Revenue&quot;, x=2.02, y = 1.1*(max(Ex_1$Percentage_Accounts, Ex_1$Percentage_Revenue)), hjust=0, size=4.3, color = 'darkslategrey') + geom_text( label = &quot;C tier has low participation in \nrevenues despite the biggest \nshare of new accounts.&quot;, x = 2.1, y = 30, hjust = 0, size = 3.5, color = 'slategrey' ) + geom_text( label = &quot;Together A and A+ make up for \nalmost half of the revenue \ndespite low share of \naccounts.&quot;, x = 2.1, y = 20, hjust = 0, size = 3.5, color = 'blue' ) + theme(panel.background = element_blank(), panel.grid = element_blank(), axis.ticks.y = element_line(color = 'lightslategrey'), axis.text.x = element_blank(), axis.line.x = element_blank(), axis.line.y = element_line(color = 'lightslategrey'), axis.text.y = element_text(color = 'lightslategrey'), panel.border = element_blank(), title = element_text(colour = &quot;darkslategrey&quot;, face = 'bold')) Saved with Cairo package because windows render is not so good. path &amp;lt;- paste0(here::here(&quot;docs&quot;, &quot;assets&quot;, &quot;images&quot;),&quot;/&quot;, '2019_10_SWD.png') ggsave(path, type = 'cairo', scale = 1.5)</summary></entry></feed>