<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>plot | Varsha Ujjinni Vijay Kumar</title>
    <link>/tag/plot/</link>
      <atom:link href="/tag/plot/index.xml" rel="self" type="application/rss+xml" />
    <description>plot</description>
    <generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator><language>en-us</language><copyright>© 2020</copyright><lastBuildDate>Mon, 26 Oct 2020 00:00:00 +0000</lastBuildDate>
    <image>
      <url>/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_2.png</url>
      <title>plot</title>
      <link>/tag/plot/</link>
    </image>
    
    <item>
      <title>R Package Review</title>
      <link>/post/pkg-review/pkgreview/</link>
      <pubDate>Mon, 26 Oct 2020 00:00:00 +0000</pubDate>
      <guid>/post/pkg-review/pkgreview/</guid>
      <description>
&lt;link href=&#34;/rmarkdown-libs/anchor-sections/anchor-sections.css&#34; rel=&#34;stylesheet&#34; /&gt;
&lt;script src=&#34;/rmarkdown-libs/anchor-sections/anchor-sections.js&#34;&gt;&lt;/script&gt;


&lt;div id=&#34;overview&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Overview 🎥&lt;/h2&gt;
&lt;p&gt;In this blog post, I will be reviewing an R package (How fun is that?), called &lt;code&gt;covid19ViewerShiny&lt;/code&gt;, authored by &lt;a href=&#34;https://github.com/ycui0008&#34;&gt;&lt;strong&gt;Yuheng Cui&lt;/strong&gt;&lt;/a&gt;, containing different functions, a dataset and a shiny application which depicts the &lt;a href=&#34;https://covid19.who.int/&#34;&gt;COVID19&lt;/a&gt; pandemic which is currently running rampant throughout the world.&lt;/p&gt;
&lt;p&gt;The development version of the package can be found in &lt;a href=&#34;https://github.com/etc5523-2020/r-package-assessment-ycui0008&#34;&gt;GITHUB&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The main goal of covid19ViewerShiny package is to a compact and consolidated way for users to visualize and understand the baneful effects of the pandemic. This package has a shiny dashboard that visualizes the condition of the pandemic in all countries of the world. It contains three functions:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;launch_app()&lt;/code&gt; : This function helps the user launch the shiny dashboard for user interaction and more.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;multiSelection()&lt;/code&gt; : This function helps the user to create a drop list in the shiny application, which contains country names that the user wishes to view the condition of. This is a function which is for creating the user interaction with the app.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;code&gt;colPlot()&lt;/code&gt; : This function is provided to create a column plot within the shiny app which visualizes the cumulative_cases and cumulative deaths of top 5 countries in each category.This function is for removing redundancy within the codes for creation of the plots.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;what-i-think-about-the-package&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;What I think about the package? 💭&lt;/h2&gt;
&lt;p&gt;From the name, the README file and the pkgdown web page, it was quite clear what this package does, I expected this package to produce a shiny application with just one function, which shows the pandemic rise and the deaths associated within each country, a dataset and also three functions.&lt;/p&gt;
&lt;p&gt;And I would say that the package delivered what was spoken of within the documentations and the name. The launch_app() is the main function for this app, it was easy for me to successfully run the function to get a shiny app without any extra work from my end. The files and folders are structured and I could find my way around them with ease.&lt;/p&gt;
&lt;p&gt;The shiny app as spoken in the article by the author: &lt;a href=&#34;https://etc5523-2020.github.io/r-package-assessment-ycui0008/articles/covid19ViewerShiny.html&#34;&gt;&lt;code&gt;covid19 app&lt;/code&gt;&lt;/a&gt;,contains four tabs within the app.I really like the layout of app, it is not too much information and cramped up. Just enough information for user’s understanding.&lt;/p&gt;
&lt;p&gt;The application provides a slider input for the dates reflecting the cases based on the user’s input, a line graph which shows the cases within the countries chosen by the user.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;improvements-on-the-package-shiny-app-or-the-documetation&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Improvements on the package, shiny app or the documetation? 📝&lt;/h2&gt;
&lt;p&gt;I would like to start off by saying the package itself as a whole is structured , accomplishes what is expected of it without any errors. Although I did notice that the test for server function &lt;code&gt;colPlot()&lt;/code&gt; was not done, tests are very important when making a package, it gives a clear understanding to the developer whether the functions made are effective and working well for any type of input values.&lt;/p&gt;
&lt;p&gt;Coming to the shiny app, I really appreciate the efforts the author has taken to make this user effective, interactive app. One thing within the codes of the app is the use of HTML tag &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt;, I would like to add that the author does not have to write &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; tag for every line, as the &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; tag does tell us it is a paragraph.&lt;/p&gt;
&lt;p&gt;Lastly, the documentation, I was able to navigate myself through this R package thanks to the documentation made. There were three points that I would like to convey:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;I found it to be very difficult for understanding how to give the arguments for the function, &lt;code&gt;colPlot()&lt;/code&gt;, the function failed for me outside the app and I did try to find out different ways I could use it but in vain , would really appreciate it if that was given more clearly.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;After running the command &lt;code&gt;renv::dependencies()&lt;/code&gt; in the project, I found that a couple of R package were not mentioned in the DESCRIPTION file Suggests/Imports sections like janitor,usethis,tidyverse and pkgdown. &lt;em&gt;I would recommend using &lt;code&gt;renv::depenedencies&lt;/code&gt; on the future packages to know which are the packages you can/should include.&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Lastly, the documentation for the shiny app, as not all people who look at the visualizations can take away what the author is trying to convey, maybe a summary of each plot, if the page is completely filled , you could try using &lt;code&gt;tabset&lt;/code&gt; for a better understanding of what is.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;takeaways&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Takeaways 📖&lt;/h2&gt;
&lt;p&gt;Other than being amazed by the amount of work put into the package, it is always a learning step when looking into the codes and ideas of peers. Easier way of implementing any code you thought otherwise, so it is always a pleasure to look at the codes which create such fantastic plots. Peer suggestions help develop us into better programmers and help us get better ideas of making any project be seen in a different light. Reviewing this package helped me see the different things I could have added into my own work, to make it be better.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;appendix&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;Appendix&lt;/h2&gt;
&lt;p&gt;&lt;em&gt;As a peer of the author of the reviewed package, &lt;code&gt;Yuheng Cui&lt;/code&gt;, it was a pleasure reviewing his work in creating an R package.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The gist of the review is as follows:&lt;/p&gt;
&lt;div id=&#34;documentation&#34; class=&#34;section level4&#34;&gt;
&lt;h4&gt;Documentation&lt;/h4&gt;
&lt;p&gt;The package includes all the following forms of documentation:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
Repository has a folder called &lt;code&gt;inst/app/&lt;/code&gt; that contains the relevant R code to run the shiny application.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
There is an exported function called &lt;code&gt;launch_app()&lt;/code&gt; that will find and load the shiny application from &lt;code&gt;inst/app&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
Refactor at least one part of the user interface-side logic of your app into R functions that are exported by your R package.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
Refactor at least one part of the server-side logic of your app into R functions that are exported by your R package.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; /&gt;
At least one unit test for the functions you created to simplify the user interface and server of your app.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
All functions in the package are documented with roxygen2 according to guidelines given in lectures.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
The DESCRIPTION file includes an informative name and title for your package, as well as a valid author, field and dependencies. There should also be a valid LICENCE file.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
A vignette that describes how to launch the app, what the app does, and guidelines for its use.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
There is a README.md file that has clear instructions on how to install the package from GitHub, and gives a big picture overview of the package.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
There is a pkgdown site that contains the documentation for your package.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
The pkgdown site has customized at least one element of the _pkgdown.yaml file.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
The pkgdown site is available publicly via deployment from Github Actions.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;functionality&#34; class=&#34;section level4&#34;&gt;
&lt;h4&gt;Functionality&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
&lt;strong&gt;Installation:&lt;/strong&gt; Installation succeeds as documented.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
&lt;strong&gt;Functionality:&lt;/strong&gt; Any functional claims of the software been confirmed.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
&lt;strong&gt;R CMD CHECK&lt;/strong&gt; passes without errors or warnings.&lt;/li&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; /&gt;
&lt;strong&gt;Automated tests:&lt;/strong&gt; Unit tests cover essential functions of the package
and a reasonable range of inputs and conditions. All tests pass on the local machine.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;estimated-hours-spent-reviewing&#34; class=&#34;section level4&#34;&gt;
&lt;h4&gt;Estimated hours spent reviewing:&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input type=&#34;checkbox&#34; disabled=&#34;&#34; checked=&#34;&#34; /&gt;
Should the author(s) deem it appropriate, I agree to be acknowledged as a package reviewer (“rev” role) in the package DESCRIPTION file.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;references&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;References&lt;/h3&gt;
&lt;p&gt;Hadley Wickham, Romain François and Lucy D’Agostino McGowan (2020). emo: Easily Insert ‘Emoji’. R package version 0.0.0.9000.
&lt;a href=&#34;https://github.com/hadley/emo&#34; class=&#34;uri&#34;&gt;https://github.com/hadley/emo&lt;/a&gt;&lt;/p&gt;
&lt;style type=&#34;text/css&#34;&gt;
body{
  text-align: justify;
}
&lt;/style&gt;
&lt;/div&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>COVID-19 case analysis in India</title>
      <link>/post/covid-19-india/covid19-india/</link>
      <pubDate>Thu, 23 Jul 2015 21:13:14 -0500</pubDate>
      <guid>/post/covid-19-india/covid19-india/</guid>
      <description>
&lt;script src=&#34;/rmarkdown-libs/htmlwidgets/htmlwidgets.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/pymjs/pym.v1.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/widgetframe-binding/widgetframe.js&#34;&gt;&lt;/script&gt;


&lt;p&gt;&lt;strong&gt;COVID-19&lt;/strong&gt; or &lt;strong&gt;coronavirus&lt;/strong&gt; is the infectious disease caused by the most recently discovered coronavirus. It was first known in December,2019 at Wuhan,China, which then soon turned into a global pandemic as declared by the World Health Organization(&lt;a href=&#34;https://www.euro.who.int/en/health-topics/health-emergencies/coronavirus-covid-19&#34;&gt;WHO&lt;/a&gt;) on 11 March,2020.&lt;/p&gt;
&lt;p&gt;There are many ways that the virus is currently spreading, but it started out to be spread primarily from person to person through small droplets from the nose or mouth, which are expelled when a person sneezes,coughs or speaks. People can catch the virus if they breathe in these droplets. The most common symptoms of this virus have said to be evolving ever since the pandemic first came into effect, where currently people have been diagnosed with the virus without the initial symptoms like cough,fever,etc.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.who.int/emergencies/diseases/novel-coronavirus-2019/question-and-answers-hub/q-a-detail/q-a-coronaviruses&#34;&gt;More Information on COVID-19&lt;/a&gt;&lt;/p&gt;
&lt;div id=&#34;htmlwidget-1&#34; style=&#34;width:100%;height:480px;&#34; class=&#34;widgetframe html-widget&#34;&gt;&lt;/div&gt;
&lt;script type=&#34;application/json&#34; data-for=&#34;htmlwidget-1&#34;&gt;{&#34;x&#34;:{&#34;url&#34;:&#34;/post/covid-19-india/covid19-india_files/figure-html//widgets/widget_datatbl.html&#34;,&#34;options&#34;:{&#34;xdomain&#34;:&#34;*&#34;,&#34;allowfullscreen&#34;:false,&#34;lazyload&#34;:false}},&#34;evals&#34;:[],&#34;jsHooks&#34;:[]}&lt;/script&gt;
&lt;style type=&#34;text/css&#34;&gt;
p{
  margin-top: 2rem;
}

caption{
  text-align: center;
  color: var(--danger);
  font-size: 0.9rem;
}

table{
  font-size: 0.5rem;
}

body{
  font-size: 0.8rem; 
  text-align: justify;
}
&lt;/style&gt;
&lt;p&gt;Unfortunately, one of the top 5 countries that were affected by the pandemic was &lt;strong&gt;India&lt;/strong&gt;, after &lt;em&gt;United States&lt;/em&gt; and &lt;em&gt;Brazil&lt;/em&gt; recently with a whooping count of 122437975.This is a relatively high number of people who were confirmed with the covid virus tests, as the population of India is 1210568111, which brings to the conclusion that
10.1140922% of population in India have been tested Positive with the virus.&lt;/p&gt;
&lt;p&gt;The DT figure 1 above shows the different states and territories within the country, the number of cases, deaths and recovered cases within each state, this table also shows the total population of each state/territory and the number of hospitals and the number of beds that are available per person within a state/territory for the population, this can be used to predict the efficiency of hospitals within a state/territory to accommodate the people infected. It also shows the difference in population within each state as urban and rural populations and corresponding number of beds within the state. This is a pdf downloadable datatable, all the other data numbers can be viewed by scrolling either &lt;em&gt;right&amp;lt;–&amp;gt;left&lt;/em&gt; or &lt;em&gt;up&amp;lt;–&amp;gt;down&lt;/em&gt;. You can also highlight the line by just clicking on the row.&lt;/p&gt;
&lt;div class=&#34;figure&#34;&gt;&lt;span id=&#34;fig:bar&#34;&gt;&lt;/span&gt;
&lt;img src=&#34;/post/covid-19-india/covid19-india_files/figure-html/bar-1.png&#34; alt=&#34;Bar plot for visualising the total cases in the states&#34; width=&#34;672&#34; /&gt;
&lt;p class=&#34;caption&#34;&gt;
Figure 1: Bar plot for visualising the total cases in the states
&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;The highlight of the analysis of this table is to look at the top 5 most affected states/territory within the country:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Maharashtra&lt;/strong&gt; : 30698938 confirmed cases, with a population of 112374333&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Tamil Nadu&lt;/strong&gt; : 16554118 confirmed cases, with a population of 72147030&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Andhra Pradesh&lt;/strong&gt; : 10102865 confirmed cases, with a population of 49577103&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Delhi&lt;/strong&gt; : 9845140 confirmed cases, with a population of 16787941&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Karnataka&lt;/strong&gt; : 8535942 confirmed cases, with a population of 61095297&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This can also be observed in the figure &lt;a href=&#34;#fig:bar&#34;&gt;1&lt;/a&gt; for better visualization.&lt;/p&gt;
&lt;table style=&#34;width:100%;&#34;&gt;
&lt;caption&gt;&lt;span id=&#34;tab:mytableby&#34;&gt;Table 1: &lt;/span&gt; Summary Stats for covid cases in India&lt;/caption&gt;
&lt;colgroup&gt;
&lt;col width=&#34;7%&#34; /&gt;
&lt;col width=&#34;14%&#34; /&gt;
&lt;col width=&#34;14%&#34; /&gt;
&lt;col width=&#34;14%&#34; /&gt;
&lt;col width=&#34;14%&#34; /&gt;
&lt;col width=&#34;14%&#34; /&gt;
&lt;col width=&#34;14%&#34; /&gt;
&lt;col width=&#34;4%&#34; /&gt;
&lt;/colgroup&gt;
&lt;thead&gt;
&lt;tr class=&#34;header&#34;&gt;
&lt;th align=&#34;left&#34;&gt;&lt;/th&gt;
&lt;th align=&#34;center&#34;&gt;Andhra Pradesh (N=15)&lt;/th&gt;
&lt;th align=&#34;center&#34;&gt;Delhi (N=20)&lt;/th&gt;
&lt;th align=&#34;center&#34;&gt;Karnataka (N=19)&lt;/th&gt;
&lt;th align=&#34;center&#34;&gt;Maharashtra (N=16)&lt;/th&gt;
&lt;th align=&#34;center&#34;&gt;Tamil Nadu (N=32)&lt;/th&gt;
&lt;th align=&#34;center&#34;&gt;Total (N=102)&lt;/th&gt;
&lt;th align=&#34;right&#34;&gt;p value&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr class=&#34;odd&#34;&gt;
&lt;td align=&#34;left&#34;&gt;Date&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;right&#34;&gt;0.003&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&#34;even&#34;&gt;
&lt;td align=&#34;left&#34;&gt;- Median&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2020-04-20&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2020-04-10&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2020-04-06&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2020-04-13&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2020-05-25&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2020-04-20&lt;/td&gt;
&lt;td align=&#34;right&#34;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&#34;odd&#34;&gt;
&lt;td align=&#34;left&#34;&gt;- Range&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2020-03-14 - 2020-05-23&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2020-03-03 - 2020-05-21&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2020-03-09 - 2020-05-24&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2020-03-12 - 2020-05-23&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2020-03-07 - 2020-06-10&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2020-03-03 - 2020-06-10&lt;/td&gt;
&lt;td align=&#34;right&#34;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&#34;even&#34;&gt;
&lt;td align=&#34;left&#34;&gt;Cured&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;right&#34;&gt;&amp;lt; 0.001&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&#34;odd&#34;&gt;
&lt;td align=&#34;left&#34;&gt;- Mean (SD)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;408.400 (587.763)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;794.600 (1393.547)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;136.421 (202.675)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2059.000 (3580.840)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;7344.781 (6762.506)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2868.500 (5095.893)&lt;/td&gt;
&lt;td align=&#34;right&#34;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&#34;even&#34;&gt;
&lt;td align=&#34;left&#34;&gt;- Range&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;0.000 - 1763.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;0.000 - 5192.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;0.000 - 608.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;0.000 - 12583.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;0.000 - 18325.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;0.000 - 18325.000&lt;/td&gt;
&lt;td align=&#34;right&#34;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&#34;odd&#34;&gt;
&lt;td align=&#34;left&#34;&gt;Deaths&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;right&#34;&gt;&amp;lt; 0.001&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&#34;even&#34;&gt;
&lt;td align=&#34;left&#34;&gt;- Mean (SD)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;21.200 (20.595)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;36.050 (47.376)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;11.895 (14.008)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;355.812 (482.966)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;110.938 (100.019)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;103.020 (227.632)&lt;/td&gt;
&lt;td align=&#34;right&#34;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&#34;odd&#34;&gt;
&lt;td align=&#34;left&#34;&gt;- Range&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;0.000 - 55.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;0.000 - 176.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;0.000 - 42.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;0.000 - 1517.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;0.000 - 307.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;0.000 - 1517.000&lt;/td&gt;
&lt;td align=&#34;right&#34;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&#34;even&#34;&gt;
&lt;td align=&#34;left&#34;&gt;Confirmed&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;&lt;/td&gt;
&lt;td align=&#34;right&#34;&gt;&amp;lt; 0.001&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&#34;odd&#34;&gt;
&lt;td align=&#34;left&#34;&gt;- Mean (SD)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;976.667 (960.458)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;2393.650 (3300.069)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;396.316 (515.821)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;9363.500 (13743.809)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;13984.469 (12167.330)&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;6542.863 (10470.904)&lt;/td&gt;
&lt;td align=&#34;right&#34;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class=&#34;even&#34;&gt;
&lt;td align=&#34;left&#34;&gt;- Range&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;1.000 - 2709.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;1.000 - 11088.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;1.000 - 1959.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;11.000 - 44582.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;1.000 - 34914.000&lt;/td&gt;
&lt;td align=&#34;center&#34;&gt;1.000 - 44582.000&lt;/td&gt;
&lt;td align=&#34;right&#34;&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Having done the datatable which shows the top 5 states/territories that have been adversely affected by the virus as our examples, we can further analyse the summary statistics for those states(Mean, Range, etc) which helps us understand the rate of infection, this can be produced by using the arsenal package in r for creating descriptive summary statistics.&lt;/p&gt;
&lt;p&gt;The table &lt;a href=&#34;#tab:mytableby&#34;&gt;1&lt;/a&gt; shows the relation of the state/territory with the other variables like death, recovered and ofcourse, the timeline of number of cases recorded.&lt;/p&gt;
&lt;p&gt;What does the arsenal table depict?&lt;/p&gt;
&lt;p&gt;Well the answer is pretty simple, for every state in the table, the factors are calculated for a p-value which helps in prediction of data, here in our case the case that whether these factors(death,cure,date,etc) affect the number of total confirmed cases within the state and hence the overall country. Looking at the last column within our table &lt;a href=&#34;#tab:mytableby&#34;&gt;1&lt;/a&gt;, we see a &lt;strong&gt;p-value&lt;/strong&gt; of either &lt;em&gt;0.003&lt;/em&gt; or &lt;em&gt;0&lt;/em&gt; which is a value very less than the significance level (0.05), which means that the values death, cured, date and confirmed cases are factors of change for the rate of infection within each state.&lt;/p&gt;
&lt;p&gt;The means and ranges for each of the factors against the states have also been calculated.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;There are certain dates within the cumulative dates that are very significant and stand out for the our analysis.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The means for cured depict the state that had a very high average rate of recovery, which according to the table is &lt;strong&gt;Tamil Nadu&lt;/strong&gt; followed by &lt;strong&gt;Maharashtra&lt;/strong&gt; .&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The means for Deaths depict the average deaths within each state and the highest rate of deaths according to the table is in &lt;strong&gt;Maharashtra&lt;/strong&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The means for Confirmed Cases within each state depict the cases with positive test results with &lt;strong&gt;Maharashtra&lt;/strong&gt; at the top which matches our analysis with the datatable from above.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;From the above analysis, we can conclude by saying that the overall situation of the country is not good, with cases increasing everyday and a population so high, precautions are a must. The state with the highest number of recorded cases and deaths with very low recovery rate in accordance to the infection rate is Maharashtra.&lt;/p&gt;
&lt;p&gt;I know it is a scary time but we need to take all the necessary precautions for ourselves and our loved ones. Stay Safe!&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://media.giphy.com/media/Qu1fT51CG14ksIkASL/giphy.gif&#34; /&gt;&lt;/p&gt;
&lt;div id=&#34;references&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;References&lt;/h2&gt;
&lt;p&gt;How to Easily Create Descriptive Summary Statistics Tables in R Studio - By Group. Thatdatatho.com. (2020). Retrieved 3 September 2020, from &lt;a href=&#34;http://thatdatatho.com/2018/08/20/easily-create-descriptive-summary-statistic-tables-r-studio/&#34; class=&#34;uri&#34;&gt;http://thatdatatho.com/2018/08/20/easily-create-descriptive-summary-statistic-tables-r-studio/&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Covid:19 India Data Analysis and Forecasting. Kaggle.com. (2020). Retrieved 3 September 2020, from &lt;a href=&#34;https://www.kaggle.com/anujgupta872003/covid-19-india-data-analysis-and-forecasting&#34; class=&#34;uri&#34;&gt;https://www.kaggle.com/anujgupta872003/covid-19-india-data-analysis-and-forecasting&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Corona Stay Home GIF by INTO ACTION - Find &amp;amp; Share on GIPHY. GIPHY. (2020). Retrieved 3 September 2020, from &lt;a href=&#34;https://giphy.com/gifs/IntoAction-chart-stay-home-stayhome-Qu1fT51CG14ksIkASL&#34; class=&#34;uri&#34;&gt;https://giphy.com/gifs/IntoAction-chart-stay-home-stayhome-Qu1fT51CG14ksIkASL&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Yihui Xie, Alison Presmanes Hill, and Amber Thomas (2017). blogdown: Creating Websites with R Markdown. Chapman and Hall/CRC. ISBN 978-0815363729&lt;/p&gt;
&lt;p&gt;Wickham et al., (2019). Welcome to the tidyverse. Journal of Open Source Software, 4(43), 1686, &lt;a href=&#34;https://doi.org/10.21105/joss.01686&#34; class=&#34;uri&#34;&gt;https://doi.org/10.21105/joss.01686&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Ethan Heinzen, Jason Sinnwell, Elizabeth Atkinson, Tina Gunderson and Gregory Dougherty (2020). arsenal: An Arsenal of ‘R’ Functions for Large-Scale Statistical
Summaries. R package version 3.5.0. &lt;a href=&#34;https://CRAN.R-project.org/package=arsenal&#34; class=&#34;uri&#34;&gt;https://CRAN.R-project.org/package=arsenal&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Yihui Xie, Joe Cheng and Xianying Tan (2020). DT: A Wrapper of the JavaScript Library ‘DataTables’. R package version 0.15.
&lt;a href=&#34;https://CRAN.R-project.org/package=DT&#34; class=&#34;uri&#34;&gt;https://CRAN.R-project.org/package=DT&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Self Assessment for COVID19 shiny App</title>
      <link>/post/self-assess/self-assess/</link>
      <pubDate>Thu, 23 Jul 2015 21:13:14 -0500</pubDate>
      <guid>/post/self-assess/self-assess/</guid>
      <description>


&lt;div id=&#34;why-shiny&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;&lt;em&gt;Why Shiny?&lt;/em&gt;&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Shiny&lt;/strong&gt; helps us turn our analyses into interactive web applications without requiring HTML, CSS, or JavaScript knowledge. Easy to the eyes, makes analyzed visualizations easier to understand and portray to the readers. This can be done using the packages shiny and shinydashboard in R.&lt;/p&gt;
&lt;p&gt;Link to the shiny app: &lt;a href=&#34;https://varsha-ujjinni-vijay-kumar.shinyapps.io/shiny-assessment-Varsha-Ujjinni-VijayKumar/&#34;&gt;COVID19-dash&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;about-the-shiny-app&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;&lt;em&gt;About the Shiny App?&lt;/em&gt;&lt;/h3&gt;
&lt;p&gt;The above shiny application is a dashboard for the Coronavirus 2019 pandemic throughout the top four countries that is affected by the infection, which are in order as follows :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;United States of America&lt;/strong&gt; with a total of &lt;em&gt;8,038,543&lt;/em&gt; cases till date.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;India&lt;/strong&gt; with a total of &lt;em&gt;7,179,006&lt;/em&gt; cases till date.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Brazil&lt;/strong&gt; with a total of &lt;em&gt;5,103,408&lt;/em&gt; cases till date.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Russia&lt;/strong&gt; with a total of &lt;em&gt;1,326,178&lt;/em&gt; cases till date.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This with the inclusion of all the cases of other countries bring the COVID19 cases to a total of 38,120,172 worldwide according to the &lt;a href=&#34;https://www.worldometers.info/coronavirus/&#34;&gt;website&lt;/a&gt;.
This application is an inspiration drawn from many a shiny dashboards found online, one of which is from &lt;a href=&#34;https://shiny.rstudio.com/gallery/covid19-tracker.html&#34;&gt;here&lt;/a&gt;. The sole purpose of this shiny app is that it might help people who look at the analysis and visualization in understanding the various information related to the pandemic and contribute to the curbing of the virus.
There are many small details that the dashboard holds like how to wear a mask, which helps reduce the spread or what symptoms the citizens need to look out for. There are useful links that could help people find more information on the virus. There are 5 windows, out of which the second and the third page show the visualizations of how the spread of the virus is within these 4 countries.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;what-was-done-well&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;&lt;em&gt;What was done well?&lt;/em&gt;&lt;/h3&gt;
&lt;p&gt;In my opinion,&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;The formatting of the application is very easy on the eyes, the theme used, the flow of the pages is easy to navigate and justifying of the paragraphs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The second page is that of leaflet clicks for the change in line plot, which shows the how the virus has changed throughout the period of time for each of the states clicked on the map plot, for each of the four countries.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The third page includes a plotly click for the plotly graph, which shows the total number of cases throughout the four countries, which upon clicking on the specific country gives a DT table with that selected country’s dataset.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;improvements&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;&lt;em&gt;Improvements:&lt;/em&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;I would like to improve on the line graph which shows the number of cases, deaths or the recovered over time.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;I could make it to show the information a little better with good titles, geom_texts to the graph, include some markers for the leaflet maps.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;I would like to change the DT table to show other details related to the country rather than its own dataset.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;any-additions&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;&lt;em&gt;Any Additions?&lt;/em&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Like I said before too, I would like to add more columns which adds more value to the DT table for the respective click on the plotly plot, I could not think of anything I could add right then but after giving it a lot of thought I think it would be good to add a &lt;em&gt;cases:population ratio&lt;/em&gt; for every country during that day.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A plot for how the stringency index increased or decreased over time within each country.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;I could have added more features into the application, like a sentiment analysis with each of the countries.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;any-addition-that-cannot-be-done-yet-due-to-limitation-in-data-or-technology&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;&lt;em&gt;Any Addition that cannot be done yet due to limitation in data or technology?&lt;/em&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;p&gt;When I took the dataset from the referenced kaggle websites in the shiny application, these datasets did not contain the latitudes and longitudes for each state within each country, which is why I have added the (lat,long) columns into the datasets by making a separate excel sheets and left joined them to obtain the current result.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If the datasets had a column with the most important dates’ description, I could have added date specific points on the line graph.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;div id=&#34;references&#34; class=&#34;section level3&#34;&gt;
&lt;h3&gt;References&lt;/h3&gt;
&lt;p&gt;(2020). Retrieved 14 October 2020, from &lt;a href=&#34;https://i.pinimg.com/564x/c1/d0/f7/c1d0f79277d914f24d18cd0f1fe0b45a.jpg&#34; class=&#34;uri&#34;&gt;https://i.pinimg.com/564x/c1/d0/f7/c1d0f79277d914f24d18cd0f1fe0b45a.jpg&lt;/a&gt;&lt;/p&gt;
&lt;style type=&#34;text/css&#34;&gt;
body{
  text-align: justify;
}

p{
  color: white;
}

em{
  color: white;
}

ul{
  color: white;
}

h1{
  color: cyan;
}

.article-metadata{
  color: cyan;
}

a{
  color: cyan;
}

article{
  background-image: url(&#34;https://i.pinimg.com/564x/c1/d0/f7/c1d0f79277d914f24d18cd0f1fe0b45a.jpg&#34;);
  background-repeat: no-repeat;
  background-size: 80% 100%;
  background-position: center;
}

.author-card .card-text{
  color: cyan;
}

.author-card .card-title a{
  color: cyan;
}

.author-card .card-subtitle{
  color: cyan;
}

h3{
  color: white;
}
&lt;/style&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Visualising COVID-19 in Peru</title>
      <link>/post/covid19-peru/covid19-peru/</link>
      <pubDate>Thu, 23 Jul 2015 21:13:14 -0500</pubDate>
      <guid>/post/covid19-peru/covid19-peru/</guid>
      <description>
&lt;script src=&#34;/rmarkdown-libs/htmlwidgets/htmlwidgets.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/plotly-binding/plotly.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/typedarray/typedarray.min.js&#34;&gt;&lt;/script&gt;
&lt;script src=&#34;/rmarkdown-libs/jquery/jquery.min.js&#34;&gt;&lt;/script&gt;
&lt;link href=&#34;/rmarkdown-libs/crosstalk/css/crosstalk.css&#34; rel=&#34;stylesheet&#34; /&gt;
&lt;script src=&#34;/rmarkdown-libs/crosstalk/js/crosstalk.min.js&#34;&gt;&lt;/script&gt;
&lt;link href=&#34;/rmarkdown-libs/plotly-htmlwidgets-css/plotly-htmlwidgets.css&#34; rel=&#34;stylesheet&#34; /&gt;
&lt;script src=&#34;/rmarkdown-libs/plotly-main/plotly-latest.min.js&#34;&gt;&lt;/script&gt;


&lt;p&gt;On 12 January 2020, the World Health Organization (WHO) confirmed that a novel coronavirus was the cause of a respiratory illness in a cluster of people in Wuhan City, Hubei Province, China, which was reported to the WHO on 31 December 2019. COVID-19 affects different people in different ways. Most infected people will develop mild to moderate illness and recover without hospitalization.&lt;/p&gt;
&lt;p&gt;COVID-19 risk is really high in Peru. Its statistics ranks it to be the 5th most affected country in the world after USA, India, Brazil and Russia with 710,067 cases as of September 11th, 2020 by the &lt;a href=&#34;https://www.worldometers.info/coronavirus/&#34;&gt;worldometer website&lt;/a&gt;. The timeline of how COVID-19 was first discovered in Peru has been given on &lt;a href=&#34;https://en.wikipedia.org/wiki/COVID-19_pandemic_in_Peru&#34;&gt;Wiki&lt;/a&gt;. The virus was reported to have spread to Peru on 6 March 2020, when a 25-year-old man who had traveled to Spain, France, and the Czech Republic tested positive. On 15 March 2020, President Martín Vizcarra announced a country-wide lockdown, closing borders, restricting domestic travel, and forbidding nonessential business operations.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://www.who.int/emergencies/diseases/novel-coronavirus-2019/question-and-answers-hub/q-a-detail/q-a-coronaviruses&#34;&gt;More Information on COVID-19&lt;/a&gt;&lt;/p&gt;
&lt;div id=&#34;covid-19-cases-within-the-country&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 cases within the country&lt;/h2&gt;
&lt;div class=&#34;figure&#34;&gt;&lt;span id=&#34;fig:plot-cases&#34;&gt;&lt;/span&gt;
&lt;div id=&#34;htmlwidget-1&#34; style=&#34;width:672px;height:480px;&#34; class=&#34;plotly html-widget&#34;&gt;&lt;/div&gt;
&lt;script type=&#34;application/json&#34; data-for=&#34;htmlwidget-1&#34;&gt;{&#34;x&#34;:{&#34;data&#34;:[{&#34;x&#34;:[18320,18321,18322,18323,18324,18325,18326,18327,18328,18329,18330,18331,18332,18333,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18344,18345,18346,18347,18348,18349,18350,18351,18352,18353,18354,18355,18356,18357,18358,18359,18360,18361,18362,18363,18364,18365,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18376,18377,18378,18379,18380,18381,18382,18383,18384,18385,18386,18387,18388,18389,18390,18391,18392,18393,18394,18395,18396,18397,18398,18399,18400,18401,18402,18403,18404,18405,18406,18407,18408,18409,18410,18411,18412,18413,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423,18424,18425,18426,18427,18428,18429,18430,18431,18432,18433,18434,18435,18436,18437,18438,18439,18440,18441,18442,18443,18444,18445,18446,18447,18448,18449,18450,18451,18452,18453,18454,18455,18456,18457,18458,18459,18460,18461,18462,18463,18464,18465,18466,18467,18468,18469,18470,18471,18472,18473,18474,18475,18476,18477,18478,18479,18480,18481,18482,18483,18484,18485,18486,18487,18488,18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18500,18501,18502,18503,18504,18505,18506,18507,18508,18509,18510,18511,18512,18513],&#34;y&#34;:[null,null,null,null,null,null,null,null,1,null,7,9,11,17,22,38,43,71,86,117,145,234,263,318,363,395,416,558,580,635,671,852,950,1065,1323,1414,1595,1746,2281,2561,2954,4342,5256,5897,6848,7519,7519,10303,11475,12491,13489,14420,15628,16325,17837,19250,20914,21648,25331,27517,28699,31190,33931,36976,40459,42534,45928,47372,51189,54817,58526,61847,65015,67307,68822,72059,76306,80604,84495,88541,92273,94933,99483,104020,108769,111698,115754,119959,123979,129751,135905,141779,148285,155671,164476,170039,170039,178914,183198,187400,191758,196515,199696,203736,208823,214788,220749,225132,229736,232992,237156,240908,244388,247925,251338,254936,254936,260810,264689,268602,272364,275989,279419,282365,285213,288477,292004,295599,299080,302718,305703,309278,312911,316448,319646,322710,326326,330123,333867,337724,341586,345537,349500,353590,357681,362087,366550,371096,375961,379884,384797,389717,395005,400683,407492,414735,422183,428850,433100,439890,447624,455409,463875,471012,478024,483133,489680,498555,507996,516296,525803,535946,541493,549321,558420,567059,576067,585236,594326,600438,607382,613378,621997,629961,639435,647166,652037,657129,663437,670145,676848,683702,689977,691575],&#34;text&#34;:[&#34;total_cases:     NA&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-02-28&#34;,&#34;total_cases:     NA&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-02-29&#34;,&#34;total_cases:     NA&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-01&#34;,&#34;total_cases:     NA&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-02&#34;,&#34;total_cases:     NA&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-03&#34;,&#34;total_cases:     NA&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-04&#34;,&#34;total_cases:     NA&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-05&#34;,&#34;total_cases:     NA&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-06&#34;,&#34;total_cases:      1&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-07&#34;,&#34;total_cases:     NA&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-08&#34;,&#34;total_cases:      7&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-09&#34;,&#34;total_cases:      9&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-10&#34;,&#34;total_cases:     11&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-11&#34;,&#34;total_cases:     17&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-12&#34;,&#34;total_cases:     22&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-13&#34;,&#34;total_cases:     38&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-14&#34;,&#34;total_cases:     43&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-15&#34;,&#34;total_cases:     71&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-16&#34;,&#34;total_cases:     86&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-17&#34;,&#34;total_cases:    117&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-18&#34;,&#34;total_cases:    145&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-19&#34;,&#34;total_cases:    234&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-20&#34;,&#34;total_cases:    263&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-21&#34;,&#34;total_cases:    318&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-22&#34;,&#34;total_cases:    363&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-23&#34;,&#34;total_cases:    395&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-24&#34;,&#34;total_cases:    416&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-25&#34;,&#34;total_cases:    558&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-26&#34;,&#34;total_cases:    580&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-27&#34;,&#34;total_cases:    635&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-28&#34;,&#34;total_cases:    671&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-29&#34;,&#34;total_cases:    852&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-30&#34;,&#34;total_cases:    950&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-03-31&#34;,&#34;total_cases:   1065&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-01&#34;,&#34;total_cases:   1323&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-02&#34;,&#34;total_cases:   1414&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-03&#34;,&#34;total_cases:   1595&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-04&#34;,&#34;total_cases:   1746&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-05&#34;,&#34;total_cases:   2281&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-06&#34;,&#34;total_cases:   2561&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-07&#34;,&#34;total_cases:   2954&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-08&#34;,&#34;total_cases:   4342&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-09&#34;,&#34;total_cases:   5256&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-10&#34;,&#34;total_cases:   5897&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-11&#34;,&#34;total_cases:   6848&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-12&#34;,&#34;total_cases:   7519&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-13&#34;,&#34;total_cases:   7519&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-14&#34;,&#34;total_cases:  10303&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-15&#34;,&#34;total_cases:  11475&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-16&#34;,&#34;total_cases:  12491&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-17&#34;,&#34;total_cases:  13489&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-18&#34;,&#34;total_cases:  14420&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-19&#34;,&#34;total_cases:  15628&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-20&#34;,&#34;total_cases:  16325&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-21&#34;,&#34;total_cases:  17837&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-22&#34;,&#34;total_cases:  19250&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-23&#34;,&#34;total_cases:  20914&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-24&#34;,&#34;total_cases:  21648&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-25&#34;,&#34;total_cases:  25331&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-26&#34;,&#34;total_cases:  27517&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-27&#34;,&#34;total_cases:  28699&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-28&#34;,&#34;total_cases:  31190&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-29&#34;,&#34;total_cases:  33931&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-04-30&#34;,&#34;total_cases:  36976&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-01&#34;,&#34;total_cases:  40459&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-02&#34;,&#34;total_cases:  42534&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-03&#34;,&#34;total_cases:  45928&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-04&#34;,&#34;total_cases:  47372&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-05&#34;,&#34;total_cases:  51189&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-06&#34;,&#34;total_cases:  54817&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-07&#34;,&#34;total_cases:  58526&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-08&#34;,&#34;total_cases:  61847&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-09&#34;,&#34;total_cases:  65015&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-10&#34;,&#34;total_cases:  67307&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-11&#34;,&#34;total_cases:  68822&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-12&#34;,&#34;total_cases:  72059&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-13&#34;,&#34;total_cases:  76306&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-14&#34;,&#34;total_cases:  80604&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-15&#34;,&#34;total_cases:  84495&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-16&#34;,&#34;total_cases:  88541&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-17&#34;,&#34;total_cases:  92273&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-18&#34;,&#34;total_cases:  94933&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-19&#34;,&#34;total_cases:  99483&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-20&#34;,&#34;total_cases: 104020&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-21&#34;,&#34;total_cases: 108769&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-22&#34;,&#34;total_cases: 111698&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-23&#34;,&#34;total_cases: 115754&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-24&#34;,&#34;total_cases: 119959&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-25&#34;,&#34;total_cases: 123979&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-26&#34;,&#34;total_cases: 129751&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-27&#34;,&#34;total_cases: 135905&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-28&#34;,&#34;total_cases: 141779&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-29&#34;,&#34;total_cases: 148285&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-30&#34;,&#34;total_cases: 155671&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-05-31&#34;,&#34;total_cases: 164476&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-01&#34;,&#34;total_cases: 170039&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-02&#34;,&#34;total_cases: 170039&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-03&#34;,&#34;total_cases: 178914&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-04&#34;,&#34;total_cases: 183198&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-05&#34;,&#34;total_cases: 187400&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-06&#34;,&#34;total_cases: 191758&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-07&#34;,&#34;total_cases: 196515&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-08&#34;,&#34;total_cases: 199696&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-09&#34;,&#34;total_cases: 203736&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-10&#34;,&#34;total_cases: 208823&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-11&#34;,&#34;total_cases: 214788&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-12&#34;,&#34;total_cases: 220749&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-13&#34;,&#34;total_cases: 225132&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-14&#34;,&#34;total_cases: 229736&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-15&#34;,&#34;total_cases: 232992&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-16&#34;,&#34;total_cases: 237156&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-17&#34;,&#34;total_cases: 240908&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-18&#34;,&#34;total_cases: 244388&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-19&#34;,&#34;total_cases: 247925&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-20&#34;,&#34;total_cases: 251338&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-21&#34;,&#34;total_cases: 254936&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-22&#34;,&#34;total_cases: 254936&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-23&#34;,&#34;total_cases: 260810&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-24&#34;,&#34;total_cases: 264689&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-25&#34;,&#34;total_cases: 268602&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-26&#34;,&#34;total_cases: 272364&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-27&#34;,&#34;total_cases: 275989&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-28&#34;,&#34;total_cases: 279419&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-29&#34;,&#34;total_cases: 282365&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-06-30&#34;,&#34;total_cases: 285213&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-01&#34;,&#34;total_cases: 288477&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-02&#34;,&#34;total_cases: 292004&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-03&#34;,&#34;total_cases: 295599&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-04&#34;,&#34;total_cases: 299080&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-05&#34;,&#34;total_cases: 302718&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-06&#34;,&#34;total_cases: 305703&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-07&#34;,&#34;total_cases: 309278&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-08&#34;,&#34;total_cases: 312911&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-09&#34;,&#34;total_cases: 316448&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-10&#34;,&#34;total_cases: 319646&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-11&#34;,&#34;total_cases: 322710&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-12&#34;,&#34;total_cases: 326326&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-13&#34;,&#34;total_cases: 330123&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-14&#34;,&#34;total_cases: 333867&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-15&#34;,&#34;total_cases: 337724&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-16&#34;,&#34;total_cases: 341586&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-17&#34;,&#34;total_cases: 345537&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-18&#34;,&#34;total_cases: 349500&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-19&#34;,&#34;total_cases: 353590&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-20&#34;,&#34;total_cases: 357681&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-21&#34;,&#34;total_cases: 362087&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-22&#34;,&#34;total_cases: 366550&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-23&#34;,&#34;total_cases: 371096&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-24&#34;,&#34;total_cases: 375961&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-25&#34;,&#34;total_cases: 379884&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-26&#34;,&#34;total_cases: 384797&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-27&#34;,&#34;total_cases: 389717&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-28&#34;,&#34;total_cases: 395005&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-29&#34;,&#34;total_cases: 400683&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-30&#34;,&#34;total_cases: 407492&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-07-31&#34;,&#34;total_cases: 414735&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-01&#34;,&#34;total_cases: 422183&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-02&#34;,&#34;total_cases: 428850&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-03&#34;,&#34;total_cases: 433100&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-04&#34;,&#34;total_cases: 439890&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-05&#34;,&#34;total_cases: 447624&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-06&#34;,&#34;total_cases: 455409&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-07&#34;,&#34;total_cases: 463875&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-08&#34;,&#34;total_cases: 471012&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-09&#34;,&#34;total_cases: 478024&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-10&#34;,&#34;total_cases: 483133&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-11&#34;,&#34;total_cases: 489680&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-12&#34;,&#34;total_cases: 498555&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-13&#34;,&#34;total_cases: 507996&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-14&#34;,&#34;total_cases: 516296&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-15&#34;,&#34;total_cases: 525803&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-16&#34;,&#34;total_cases: 535946&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-17&#34;,&#34;total_cases: 541493&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-18&#34;,&#34;total_cases: 549321&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-19&#34;,&#34;total_cases: 558420&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-20&#34;,&#34;total_cases: 567059&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-21&#34;,&#34;total_cases: 576067&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-22&#34;,&#34;total_cases: 585236&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-23&#34;,&#34;total_cases: 594326&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-24&#34;,&#34;total_cases: 600438&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-25&#34;,&#34;total_cases: 607382&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-26&#34;,&#34;total_cases: 613378&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-27&#34;,&#34;total_cases: 621997&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-28&#34;,&#34;total_cases: 629961&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-29&#34;,&#34;total_cases: 639435&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-30&#34;,&#34;total_cases: 647166&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-08-31&#34;,&#34;total_cases: 652037&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-09-01&#34;,&#34;total_cases: 657129&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-09-02&#34;,&#34;total_cases: 663437&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-09-03&#34;,&#34;total_cases: 670145&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-09-04&#34;,&#34;total_cases: 676848&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-09-05&#34;,&#34;total_cases: 683702&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-09-06&#34;,&#34;total_cases: 689977&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-09-07&#34;,&#34;total_cases: 691575&lt;br /&gt;colour: total_cases&lt;br /&gt;date: 2020-09-08&#34;],&#34;type&#34;:&#34;scatter&#34;,&#34;mode&#34;:&#34;lines&#34;,&#34;line&#34;:{&#34;width&#34;:3.77952755905512,&#34;color&#34;:&#34;rgba(248,118,109,1)&#34;,&#34;dash&#34;:&#34;solid&#34;},&#34;hoveron&#34;:&#34;points&#34;,&#34;name&#34;:&#34;total_cases&#34;,&#34;legendgroup&#34;:&#34;total_cases&#34;,&#34;showlegend&#34;:true,&#34;xaxis&#34;:&#34;x&#34;,&#34;yaxis&#34;:&#34;y&#34;,&#34;hoverinfo&#34;:&#34;text&#34;,&#34;frame&#34;:null},{&#34;x&#34;:[18320,18321,18322,18323,18324,18325,18326,18327,18328,18329,18330,18331,18332,18333,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18344,18345,18346,18347,18348,18349,18350,18351,18352,18353,18354,18355,18356,18357,18358,18359,18360,18361,18362,18363,18364,18365,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18376,18377,18378,18379,18380,18381,18382,18383,18384,18385,18386,18387,18388,18389,18390,18391,18392,18393,18394,18395,18396,18397,18398,18399,18400,18401,18402,18403,18404,18405,18406,18407,18408,18409,18410,18411,18412,18413,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423,18424,18425,18426,18427,18428,18429,18430,18431,18432,18433,18434,18435,18436,18437,18438,18439,18440,18441,18442,18443,18444,18445,18446,18447,18448,18449,18450,18451,18452,18453,18454,18455,18456,18457,18458,18459,18460,18461,18462,18463,18464,18465,18466,18467,18468,18469,18470,18471,18472,18473,18474,18475,18476,18477,18478,18479,18480,18481,18482,18483,18484,18485,18486,18487,18488,18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18500,18501,18502,18503,18504,18505,18506,18507,18508,18509,18510,18511,18512,18513],&#34;y&#34;:[null,null,null,null,null,null,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,2,3,5,5,5,7,8,9,11,16,18,24,30,47,55,61,73,83,92,107,121,138,169,181,193,193,230,254,274,300,348,400,445,484,530,572,634,700,728,782,854,943,1051,1124,1200,1286,1344,1444,1533,1627,1714,1814,1889,1961,2057,2169,2267,2393,2523,2648,2789,2914,3024,3148,3244,3373,3456,3629,3788,3983,4099,4230,4371,4506,4634,4634,4894,5031,5162,5301,5465,5571,5738,5903,6109,6308,6498,6688,6860,7056,7257,7461,7660,7861,8045,8045,8404,8586,8761,8939,9135,9317,9504,9677,9860,10045,10226,10412,10589,10772,10952,11133,11314,11500,11682,11870,12054,12229,12417,12615,12799,12998,13187,13384,13579,13767,17654,17843,18030,18229,18418,18612,18816,19021,19217,19408,19614,19811,20007,20228,20424,20649,20844,21072,21276,21501,21713,25648,25856,26075,26281,26481,26658,26834,27034,27245,27453,27663,27813,28001,28124,28277,28471,28607,28788,28944,29068,29259,29405,29554,29687,29838,29976],&#34;text&#34;:[&#34;total_deaths:    NA&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-02-28&#34;,&#34;total_deaths:    NA&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-02-29&#34;,&#34;total_deaths:    NA&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-01&#34;,&#34;total_deaths:    NA&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-02&#34;,&#34;total_deaths:    NA&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-03&#34;,&#34;total_deaths:    NA&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-04&#34;,&#34;total_deaths:    NA&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-05&#34;,&#34;total_deaths:    NA&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-06&#34;,&#34;total_deaths:     0&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-07&#34;,&#34;total_deaths:    NA&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-08&#34;,&#34;total_deaths:     0&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-09&#34;,&#34;total_deaths:     0&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-10&#34;,&#34;total_deaths:     0&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-11&#34;,&#34;total_deaths:     0&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-12&#34;,&#34;total_deaths:     0&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-13&#34;,&#34;total_deaths:     0&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-14&#34;,&#34;total_deaths:     0&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-15&#34;,&#34;total_deaths:     0&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-16&#34;,&#34;total_deaths:     0&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-17&#34;,&#34;total_deaths:     0&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-18&#34;,&#34;total_deaths:     0&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-19&#34;,&#34;total_deaths:     2&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-20&#34;,&#34;total_deaths:     3&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-21&#34;,&#34;total_deaths:     5&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-22&#34;,&#34;total_deaths:     5&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-23&#34;,&#34;total_deaths:     5&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-24&#34;,&#34;total_deaths:     7&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-25&#34;,&#34;total_deaths:     8&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-26&#34;,&#34;total_deaths:     9&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-27&#34;,&#34;total_deaths:    11&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-28&#34;,&#34;total_deaths:    16&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-29&#34;,&#34;total_deaths:    18&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-30&#34;,&#34;total_deaths:    24&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-03-31&#34;,&#34;total_deaths:    30&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-01&#34;,&#34;total_deaths:    47&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-02&#34;,&#34;total_deaths:    55&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-03&#34;,&#34;total_deaths:    61&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-04&#34;,&#34;total_deaths:    73&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-05&#34;,&#34;total_deaths:    83&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-06&#34;,&#34;total_deaths:    92&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-07&#34;,&#34;total_deaths:   107&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-08&#34;,&#34;total_deaths:   121&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-09&#34;,&#34;total_deaths:   138&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-10&#34;,&#34;total_deaths:   169&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-11&#34;,&#34;total_deaths:   181&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-12&#34;,&#34;total_deaths:   193&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-13&#34;,&#34;total_deaths:   193&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-14&#34;,&#34;total_deaths:   230&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-15&#34;,&#34;total_deaths:   254&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-16&#34;,&#34;total_deaths:   274&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-17&#34;,&#34;total_deaths:   300&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-18&#34;,&#34;total_deaths:   348&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-19&#34;,&#34;total_deaths:   400&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-20&#34;,&#34;total_deaths:   445&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-21&#34;,&#34;total_deaths:   484&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-22&#34;,&#34;total_deaths:   530&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-23&#34;,&#34;total_deaths:   572&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-24&#34;,&#34;total_deaths:   634&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-25&#34;,&#34;total_deaths:   700&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-26&#34;,&#34;total_deaths:   728&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-27&#34;,&#34;total_deaths:   782&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-28&#34;,&#34;total_deaths:   854&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-29&#34;,&#34;total_deaths:   943&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-04-30&#34;,&#34;total_deaths:  1051&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-01&#34;,&#34;total_deaths:  1124&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-02&#34;,&#34;total_deaths:  1200&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-03&#34;,&#34;total_deaths:  1286&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-04&#34;,&#34;total_deaths:  1344&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-05&#34;,&#34;total_deaths:  1444&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-06&#34;,&#34;total_deaths:  1533&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-07&#34;,&#34;total_deaths:  1627&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-08&#34;,&#34;total_deaths:  1714&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-09&#34;,&#34;total_deaths:  1814&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-10&#34;,&#34;total_deaths:  1889&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-11&#34;,&#34;total_deaths:  1961&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-12&#34;,&#34;total_deaths:  2057&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-13&#34;,&#34;total_deaths:  2169&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-14&#34;,&#34;total_deaths:  2267&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-15&#34;,&#34;total_deaths:  2393&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-16&#34;,&#34;total_deaths:  2523&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-17&#34;,&#34;total_deaths:  2648&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-18&#34;,&#34;total_deaths:  2789&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-19&#34;,&#34;total_deaths:  2914&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-20&#34;,&#34;total_deaths:  3024&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-21&#34;,&#34;total_deaths:  3148&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-22&#34;,&#34;total_deaths:  3244&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-23&#34;,&#34;total_deaths:  3373&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-24&#34;,&#34;total_deaths:  3456&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-25&#34;,&#34;total_deaths:  3629&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-26&#34;,&#34;total_deaths:  3788&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-27&#34;,&#34;total_deaths:  3983&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-28&#34;,&#34;total_deaths:  4099&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-29&#34;,&#34;total_deaths:  4230&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-30&#34;,&#34;total_deaths:  4371&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-05-31&#34;,&#34;total_deaths:  4506&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-01&#34;,&#34;total_deaths:  4634&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-02&#34;,&#34;total_deaths:  4634&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-03&#34;,&#34;total_deaths:  4894&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-04&#34;,&#34;total_deaths:  5031&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-05&#34;,&#34;total_deaths:  5162&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-06&#34;,&#34;total_deaths:  5301&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-07&#34;,&#34;total_deaths:  5465&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-08&#34;,&#34;total_deaths:  5571&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-09&#34;,&#34;total_deaths:  5738&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-10&#34;,&#34;total_deaths:  5903&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-11&#34;,&#34;total_deaths:  6109&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-12&#34;,&#34;total_deaths:  6308&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-13&#34;,&#34;total_deaths:  6498&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-14&#34;,&#34;total_deaths:  6688&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-15&#34;,&#34;total_deaths:  6860&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-16&#34;,&#34;total_deaths:  7056&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-17&#34;,&#34;total_deaths:  7257&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-18&#34;,&#34;total_deaths:  7461&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-19&#34;,&#34;total_deaths:  7660&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-20&#34;,&#34;total_deaths:  7861&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-21&#34;,&#34;total_deaths:  8045&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-22&#34;,&#34;total_deaths:  8045&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-23&#34;,&#34;total_deaths:  8404&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-24&#34;,&#34;total_deaths:  8586&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-25&#34;,&#34;total_deaths:  8761&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-26&#34;,&#34;total_deaths:  8939&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-27&#34;,&#34;total_deaths:  9135&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-28&#34;,&#34;total_deaths:  9317&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-29&#34;,&#34;total_deaths:  9504&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-06-30&#34;,&#34;total_deaths:  9677&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-01&#34;,&#34;total_deaths:  9860&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-02&#34;,&#34;total_deaths: 10045&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-03&#34;,&#34;total_deaths: 10226&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-04&#34;,&#34;total_deaths: 10412&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-05&#34;,&#34;total_deaths: 10589&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-06&#34;,&#34;total_deaths: 10772&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-07&#34;,&#34;total_deaths: 10952&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-08&#34;,&#34;total_deaths: 11133&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-09&#34;,&#34;total_deaths: 11314&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-10&#34;,&#34;total_deaths: 11500&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-11&#34;,&#34;total_deaths: 11682&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-12&#34;,&#34;total_deaths: 11870&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-13&#34;,&#34;total_deaths: 12054&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-14&#34;,&#34;total_deaths: 12229&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-15&#34;,&#34;total_deaths: 12417&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-16&#34;,&#34;total_deaths: 12615&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-17&#34;,&#34;total_deaths: 12799&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-18&#34;,&#34;total_deaths: 12998&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-19&#34;,&#34;total_deaths: 13187&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-20&#34;,&#34;total_deaths: 13384&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-21&#34;,&#34;total_deaths: 13579&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-22&#34;,&#34;total_deaths: 13767&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-23&#34;,&#34;total_deaths: 17654&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-24&#34;,&#34;total_deaths: 17843&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-25&#34;,&#34;total_deaths: 18030&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-26&#34;,&#34;total_deaths: 18229&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-27&#34;,&#34;total_deaths: 18418&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-28&#34;,&#34;total_deaths: 18612&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-29&#34;,&#34;total_deaths: 18816&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-30&#34;,&#34;total_deaths: 19021&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-07-31&#34;,&#34;total_deaths: 19217&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-01&#34;,&#34;total_deaths: 19408&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-02&#34;,&#34;total_deaths: 19614&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-03&#34;,&#34;total_deaths: 19811&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-04&#34;,&#34;total_deaths: 20007&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-05&#34;,&#34;total_deaths: 20228&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-06&#34;,&#34;total_deaths: 20424&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-07&#34;,&#34;total_deaths: 20649&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-08&#34;,&#34;total_deaths: 20844&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-09&#34;,&#34;total_deaths: 21072&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-10&#34;,&#34;total_deaths: 21276&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-11&#34;,&#34;total_deaths: 21501&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-12&#34;,&#34;total_deaths: 21713&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-13&#34;,&#34;total_deaths: 25648&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-14&#34;,&#34;total_deaths: 25856&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-15&#34;,&#34;total_deaths: 26075&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-16&#34;,&#34;total_deaths: 26281&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-17&#34;,&#34;total_deaths: 26481&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-18&#34;,&#34;total_deaths: 26658&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-19&#34;,&#34;total_deaths: 26834&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-20&#34;,&#34;total_deaths: 27034&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-21&#34;,&#34;total_deaths: 27245&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-22&#34;,&#34;total_deaths: 27453&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-23&#34;,&#34;total_deaths: 27663&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-24&#34;,&#34;total_deaths: 27813&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-25&#34;,&#34;total_deaths: 28001&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-26&#34;,&#34;total_deaths: 28124&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-27&#34;,&#34;total_deaths: 28277&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-28&#34;,&#34;total_deaths: 28471&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-29&#34;,&#34;total_deaths: 28607&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-30&#34;,&#34;total_deaths: 28788&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-08-31&#34;,&#34;total_deaths: 28944&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-09-01&#34;,&#34;total_deaths: 29068&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-09-02&#34;,&#34;total_deaths: 29259&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-09-03&#34;,&#34;total_deaths: 29405&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-09-04&#34;,&#34;total_deaths: 29554&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-09-05&#34;,&#34;total_deaths: 29687&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-09-06&#34;,&#34;total_deaths: 29838&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-09-07&#34;,&#34;total_deaths: 29976&lt;br /&gt;colour: total_deaths&lt;br /&gt;date: 2020-09-08&#34;],&#34;type&#34;:&#34;scatter&#34;,&#34;mode&#34;:&#34;lines&#34;,&#34;line&#34;:{&#34;width&#34;:3.77952755905512,&#34;color&#34;:&#34;rgba(0,191,196,1)&#34;,&#34;dash&#34;:&#34;solid&#34;},&#34;hoveron&#34;:&#34;points&#34;,&#34;name&#34;:&#34;total_deaths&#34;,&#34;legendgroup&#34;:&#34;total_deaths&#34;,&#34;showlegend&#34;:true,&#34;xaxis&#34;:&#34;x&#34;,&#34;yaxis&#34;:&#34;y&#34;,&#34;hoverinfo&#34;:&#34;text&#34;,&#34;frame&#34;:null}],&#34;layout&#34;:{&#34;margin&#34;:{&#34;t&#34;:43.7625570776256,&#34;r&#34;:7.30593607305936,&#34;b&#34;:40.1826484018265,&#34;l&#34;:25.5707762557078},&#34;font&#34;:{&#34;color&#34;:&#34;rgba(0,0,0,1)&#34;,&#34;family&#34;:&#34;&#34;,&#34;size&#34;:14.6118721461187},&#34;title&#34;:{&#34;text&#34;:&#34;Count of Covid19 cases(total cases and Deaths)&#34;,&#34;font&#34;:{&#34;color&#34;:&#34;rgba(0,0,0,1)&#34;,&#34;family&#34;:&#34;&#34;,&#34;size&#34;:17.5342465753425},&#34;x&#34;:0,&#34;xref&#34;:&#34;paper&#34;},&#34;xaxis&#34;:{&#34;domain&#34;:[0,1],&#34;automargin&#34;:true,&#34;type&#34;:&#34;linear&#34;,&#34;autorange&#34;:false,&#34;range&#34;:[18310.35,18522.65],&#34;tickmode&#34;:&#34;array&#34;,&#34;ticktext&#34;:[&#34;Apr&#34;,&#34;Jul&#34;],&#34;tickvals&#34;:[18353,18444],&#34;categoryorder&#34;:&#34;array&#34;,&#34;categoryarray&#34;:[&#34;Apr&#34;,&#34;Jul&#34;],&#34;nticks&#34;:null,&#34;ticks&#34;:&#34;&#34;,&#34;tickcolor&#34;:null,&#34;ticklen&#34;:3.65296803652968,&#34;tickwidth&#34;:0,&#34;showticklabels&#34;:true,&#34;tickfont&#34;:{&#34;color&#34;:&#34;rgba(77,77,77,1)&#34;,&#34;family&#34;:&#34;&#34;,&#34;size&#34;:11.689497716895},&#34;tickangle&#34;:-0,&#34;showline&#34;:false,&#34;linecolor&#34;:null,&#34;linewidth&#34;:0,&#34;showgrid&#34;:true,&#34;gridcolor&#34;:&#34;rgba(235,235,235,1)&#34;,&#34;gridwidth&#34;:0.66417600664176,&#34;zeroline&#34;:false,&#34;anchor&#34;:&#34;y&#34;,&#34;title&#34;:{&#34;text&#34;:&#34;Month&#34;,&#34;font&#34;:{&#34;color&#34;:&#34;rgba(0,0,0,1)&#34;,&#34;family&#34;:&#34;&#34;,&#34;size&#34;:14.6118721461187}},&#34;hoverformat&#34;:&#34;.2f&#34;},&#34;yaxis&#34;:{&#34;domain&#34;:[0,1],&#34;automargin&#34;:true,&#34;type&#34;:&#34;linear&#34;,&#34;autorange&#34;:false,&#34;range&#34;:[-34578.75,726153.75],&#34;tickmode&#34;:&#34;array&#34;,&#34;ticktext&#34;:[&#34;0e+00&#34;,&#34;2e+05&#34;,&#34;4e+05&#34;,&#34;6e+05&#34;],&#34;tickvals&#34;:[0,200000,400000,600000],&#34;categoryorder&#34;:&#34;array&#34;,&#34;categoryarray&#34;:[&#34;0e+00&#34;,&#34;2e+05&#34;,&#34;4e+05&#34;,&#34;6e+05&#34;],&#34;nticks&#34;:null,&#34;ticks&#34;:&#34;&#34;,&#34;tickcolor&#34;:null,&#34;ticklen&#34;:3.65296803652968,&#34;tickwidth&#34;:0,&#34;showticklabels&#34;:false,&#34;tickfont&#34;:{&#34;color&#34;:null,&#34;family&#34;:null,&#34;size&#34;:0},&#34;tickangle&#34;:-0,&#34;showline&#34;:false,&#34;linecolor&#34;:null,&#34;linewidth&#34;:0,&#34;showgrid&#34;:true,&#34;gridcolor&#34;:&#34;rgba(235,235,235,1)&#34;,&#34;gridwidth&#34;:0.66417600664176,&#34;zeroline&#34;:false,&#34;anchor&#34;:&#34;x&#34;,&#34;title&#34;:{&#34;text&#34;:&#34;Total Cases/Deaths&#34;,&#34;font&#34;:{&#34;color&#34;:&#34;rgba(0,0,0,1)&#34;,&#34;family&#34;:&#34;&#34;,&#34;size&#34;:14.6118721461187}},&#34;hoverformat&#34;:&#34;.2f&#34;},&#34;shapes&#34;:[{&#34;type&#34;:&#34;rect&#34;,&#34;fillcolor&#34;:null,&#34;line&#34;:{&#34;color&#34;:null,&#34;width&#34;:0,&#34;linetype&#34;:[]},&#34;yref&#34;:&#34;paper&#34;,&#34;xref&#34;:&#34;paper&#34;,&#34;x0&#34;:0,&#34;x1&#34;:1,&#34;y0&#34;:0,&#34;y1&#34;:1}],&#34;showlegend&#34;:true,&#34;legend&#34;:{&#34;bgcolor&#34;:null,&#34;bordercolor&#34;:null,&#34;borderwidth&#34;:0,&#34;font&#34;:{&#34;color&#34;:&#34;rgba(0,0,0,1)&#34;,&#34;family&#34;:&#34;&#34;,&#34;size&#34;:11.689497716895},&#34;y&#34;:1},&#34;hovermode&#34;:&#34;closest&#34;,&#34;barmode&#34;:&#34;relative&#34;},&#34;config&#34;:{&#34;doubleClick&#34;:&#34;reset&#34;,&#34;showSendToCloud&#34;:false},&#34;source&#34;:&#34;A&#34;,&#34;attrs&#34;:{&#34;56b45d64522e&#34;:{&#34;y&#34;:{},&#34;colour&#34;:{},&#34;x&#34;:{},&#34;type&#34;:&#34;scatter&#34;},&#34;56b4b64260d&#34;:{&#34;y&#34;:{},&#34;colour&#34;:{},&#34;x&#34;:{}}},&#34;cur_data&#34;:&#34;56b45d64522e&#34;,&#34;visdat&#34;:{&#34;56b45d64522e&#34;:[&#34;function (y) &#34;,&#34;x&#34;],&#34;56b4b64260d&#34;:[&#34;function (y) &#34;,&#34;x&#34;]},&#34;highlight&#34;:{&#34;on&#34;:&#34;plotly_click&#34;,&#34;persistent&#34;:false,&#34;dynamic&#34;:false,&#34;selectize&#34;:false,&#34;opacityDim&#34;:0.2,&#34;selected&#34;:{&#34;opacity&#34;:1},&#34;debounce&#34;:0},&#34;shinyEvents&#34;:[&#34;plotly_hover&#34;,&#34;plotly_click&#34;,&#34;plotly_selected&#34;,&#34;plotly_relayout&#34;,&#34;plotly_brushed&#34;,&#34;plotly_brushing&#34;,&#34;plotly_clickannotation&#34;,&#34;plotly_doubleclick&#34;,&#34;plotly_deselect&#34;,&#34;plotly_afterplot&#34;,&#34;plotly_sunburstclick&#34;],&#34;base_url&#34;:&#34;https://plot.ly&#34;},&#34;evals&#34;:[],&#34;jsHooks&#34;:[]}&lt;/script&gt;
&lt;p class=&#34;caption&#34;&gt;
Figure 1: Count of Covid19 cases(total cases and Deaths)
&lt;/p&gt;
&lt;/div&gt;
&lt;style type=&#34;text/css&#34;&gt;
caption{
  text-align: center;
  font-size: 0.9rem;
}

body{
  font-size: 0.8rem; 
  text-align: justify;
}
&lt;/style&gt;
&lt;p&gt;The plot &lt;a href=&#34;#fig:plot-cases&#34;&gt;1&lt;/a&gt; depicts a line graph for the total cases/deaths on the y-axis and Month/date on the x-axis. Looking at the graph, it can be seen that the cases in Peru did not start until the month of March,2020 and has since exponentially increased consistently till date(Sept 8th,2020) where the count of total cases is 2020-09-08. The graph also depicts the total deaths in the country, where the first death occurred on the 20th March,2020, with respect to the total number of cases, it seems that the total number of deaths are quite less so that is good for the country. Over the months there has been a slight increase in the number of deaths but has not gone more than 30K. There are two dates that has a step wise increase in the deaths(~ 3000 deaths a day) on 24th July,2020 and (~4000 deaths a day) on 14th August,2020 and total number number of deaths currently at 29,976.&lt;/p&gt;
&lt;div class=&#34;figure&#34;&gt;&lt;span id=&#34;fig:new-cases&#34;&gt;&lt;/span&gt;
&lt;div id=&#34;htmlwidget-2&#34; style=&#34;width:672px;height:480px;&#34; class=&#34;plotly html-widget&#34;&gt;&lt;/div&gt;
&lt;script type=&#34;application/json&#34; data-for=&#34;htmlwidget-2&#34;&gt;{&#34;x&#34;:{&#34;data&#34;:[{&#34;x&#34;:[18320,18321,18322,18323,18324,18325,18326,18327,18328,18329,18330,18331,18332,18333,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18344,18345,18346,18347,18348,18349,18350,18351,18352,18353,18354,18355,18356,18357,18358,18359,18360,18361,18362,18363,18364,18365,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18376,18377,18378,18379,18380,18381,18382,18383,18384,18385,18386,18387,18388,18389,18390,18391,18392,18393,18394,18395,18396,18397,18398,18399,18400,18401,18402,18403,18404,18405,18406,18407,18408,18409,18410,18411,18412,18413,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423,18424,18425,18426,18427,18428,18429,18430,18431,18432,18433,18434,18435,18436,18437,18438,18439,18440,18441,18442,18443,18444,18445,18446,18447,18448,18449,18450,18451,18452,18453,18454,18455,18456,18457,18458,18459,18460,18461,18462,18463,18464,18465,18466,18467,18468,18469,18470,18471,18472,18473,18474,18475,18476,18477,18478,18479,18480,18481,18482,18483,18484,18485,18486,18487,18488,18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18500,18501,18502,18503,18504,18505,18506,18507,18508,18509,18510,18511,18512,18513],&#34;y&#34;:[null,null,null,null,null,null,null,null,1,null,6,2,2,6,5,16,5,28,15,31,28,89,29,55,45,32,21,142,22,55,36,181,98,115,258,91,181,151,535,280,393,1388,914,641,951,671,0,2784,1172,1016,998,931,1208,697,1512,1413,1664,734,3683,2186,1182,2491,2741,3045,3483,2075,3394,1444,3817,3628,3709,3321,3168,2292,1515,3237,4247,4298,3891,4046,3732,2660,4550,4537,4749,2929,4056,4205,4020,5772,6154,5874,6506,7386,8805,5563,0,8875,4284,4202,4358,4757,3181,4040,5087,5965,5961,4383,4604,3256,4164,3752,3480,3537,3413,3598,0,5874,3879,3913,3762,3625,3430,2946,2848,3264,3527,3595,3481,3638,2985,3575,3633,3537,3198,3064,3616,3797,3744,3857,3862,3951,3963,4090,4091,4406,4463,4546,4865,3923,4913,4920,5288,5678,6809,7243,7448,6667,4250,6790,7734,7785,8466,7137,7012,5109,6547,8875,9441,8300,9507,10143,5547,7828,9099,8639,9008,9169,9090,6112,6944,5996,8619,7964,9474,7731,4871,5092,6308,6708,6703,6854,6275,1598],&#34;text&#34;:[&#34;date: 2020-02-28&lt;br /&gt;new_cases:    NA&#34;,&#34;date: 2020-02-29&lt;br /&gt;new_cases:    NA&#34;,&#34;date: 2020-03-01&lt;br /&gt;new_cases:    NA&#34;,&#34;date: 2020-03-02&lt;br /&gt;new_cases:    NA&#34;,&#34;date: 2020-03-03&lt;br /&gt;new_cases:    NA&#34;,&#34;date: 2020-03-04&lt;br /&gt;new_cases:    NA&#34;,&#34;date: 2020-03-05&lt;br /&gt;new_cases:    NA&#34;,&#34;date: 2020-03-06&lt;br /&gt;new_cases:    NA&#34;,&#34;date: 2020-03-07&lt;br /&gt;new_cases:     1&#34;,&#34;date: 2020-03-08&lt;br /&gt;new_cases:    NA&#34;,&#34;date: 2020-03-09&lt;br /&gt;new_cases:     6&#34;,&#34;date: 2020-03-10&lt;br /&gt;new_cases:     2&#34;,&#34;date: 2020-03-11&lt;br /&gt;new_cases:     2&#34;,&#34;date: 2020-03-12&lt;br /&gt;new_cases:     6&#34;,&#34;date: 2020-03-13&lt;br /&gt;new_cases:     5&#34;,&#34;date: 2020-03-14&lt;br /&gt;new_cases:    16&#34;,&#34;date: 2020-03-15&lt;br /&gt;new_cases:     5&#34;,&#34;date: 2020-03-16&lt;br /&gt;new_cases:    28&#34;,&#34;date: 2020-03-17&lt;br /&gt;new_cases:    15&#34;,&#34;date: 2020-03-18&lt;br /&gt;new_cases:    31&#34;,&#34;date: 2020-03-19&lt;br /&gt;new_cases:    28&#34;,&#34;date: 2020-03-20&lt;br /&gt;new_cases:    89&#34;,&#34;date: 2020-03-21&lt;br /&gt;new_cases:    29&#34;,&#34;date: 2020-03-22&lt;br /&gt;new_cases:    55&#34;,&#34;date: 2020-03-23&lt;br /&gt;new_cases:    45&#34;,&#34;date: 2020-03-24&lt;br /&gt;new_cases:    32&#34;,&#34;date: 2020-03-25&lt;br /&gt;new_cases:    21&#34;,&#34;date: 2020-03-26&lt;br /&gt;new_cases:   142&#34;,&#34;date: 2020-03-27&lt;br /&gt;new_cases:    22&#34;,&#34;date: 2020-03-28&lt;br /&gt;new_cases:    55&#34;,&#34;date: 2020-03-29&lt;br /&gt;new_cases:    36&#34;,&#34;date: 2020-03-30&lt;br /&gt;new_cases:   181&#34;,&#34;date: 2020-03-31&lt;br /&gt;new_cases:    98&#34;,&#34;date: 2020-04-01&lt;br /&gt;new_cases:   115&#34;,&#34;date: 2020-04-02&lt;br /&gt;new_cases:   258&#34;,&#34;date: 2020-04-03&lt;br /&gt;new_cases:    91&#34;,&#34;date: 2020-04-04&lt;br /&gt;new_cases:   181&#34;,&#34;date: 2020-04-05&lt;br /&gt;new_cases:   151&#34;,&#34;date: 2020-04-06&lt;br /&gt;new_cases:   535&#34;,&#34;date: 2020-04-07&lt;br /&gt;new_cases:   280&#34;,&#34;date: 2020-04-08&lt;br /&gt;new_cases:   393&#34;,&#34;date: 2020-04-09&lt;br /&gt;new_cases:  1388&#34;,&#34;date: 2020-04-10&lt;br /&gt;new_cases:   914&#34;,&#34;date: 2020-04-11&lt;br /&gt;new_cases:   641&#34;,&#34;date: 2020-04-12&lt;br /&gt;new_cases:   951&#34;,&#34;date: 2020-04-13&lt;br /&gt;new_cases:   671&#34;,&#34;date: 2020-04-14&lt;br /&gt;new_cases:     0&#34;,&#34;date: 2020-04-15&lt;br /&gt;new_cases:  2784&#34;,&#34;date: 2020-04-16&lt;br /&gt;new_cases:  1172&#34;,&#34;date: 2020-04-17&lt;br /&gt;new_cases:  1016&#34;,&#34;date: 2020-04-18&lt;br /&gt;new_cases:   998&#34;,&#34;date: 2020-04-19&lt;br /&gt;new_cases:   931&#34;,&#34;date: 2020-04-20&lt;br /&gt;new_cases:  1208&#34;,&#34;date: 2020-04-21&lt;br /&gt;new_cases:   697&#34;,&#34;date: 2020-04-22&lt;br /&gt;new_cases:  1512&#34;,&#34;date: 2020-04-23&lt;br /&gt;new_cases:  1413&#34;,&#34;date: 2020-04-24&lt;br /&gt;new_cases:  1664&#34;,&#34;date: 2020-04-25&lt;br /&gt;new_cases:   734&#34;,&#34;date: 2020-04-26&lt;br /&gt;new_cases:  3683&#34;,&#34;date: 2020-04-27&lt;br /&gt;new_cases:  2186&#34;,&#34;date: 2020-04-28&lt;br /&gt;new_cases:  1182&#34;,&#34;date: 2020-04-29&lt;br /&gt;new_cases:  2491&#34;,&#34;date: 2020-04-30&lt;br /&gt;new_cases:  2741&#34;,&#34;date: 2020-05-01&lt;br /&gt;new_cases:  3045&#34;,&#34;date: 2020-05-02&lt;br /&gt;new_cases:  3483&#34;,&#34;date: 2020-05-03&lt;br /&gt;new_cases:  2075&#34;,&#34;date: 2020-05-04&lt;br /&gt;new_cases:  3394&#34;,&#34;date: 2020-05-05&lt;br /&gt;new_cases:  1444&#34;,&#34;date: 2020-05-06&lt;br /&gt;new_cases:  3817&#34;,&#34;date: 2020-05-07&lt;br /&gt;new_cases:  3628&#34;,&#34;date: 2020-05-08&lt;br /&gt;new_cases:  3709&#34;,&#34;date: 2020-05-09&lt;br /&gt;new_cases:  3321&#34;,&#34;date: 2020-05-10&lt;br /&gt;new_cases:  3168&#34;,&#34;date: 2020-05-11&lt;br /&gt;new_cases:  2292&#34;,&#34;date: 2020-05-12&lt;br /&gt;new_cases:  1515&#34;,&#34;date: 2020-05-13&lt;br /&gt;new_cases:  3237&#34;,&#34;date: 2020-05-14&lt;br /&gt;new_cases:  4247&#34;,&#34;date: 2020-05-15&lt;br /&gt;new_cases:  4298&#34;,&#34;date: 2020-05-16&lt;br /&gt;new_cases:  3891&#34;,&#34;date: 2020-05-17&lt;br /&gt;new_cases:  4046&#34;,&#34;date: 2020-05-18&lt;br /&gt;new_cases:  3732&#34;,&#34;date: 2020-05-19&lt;br /&gt;new_cases:  2660&#34;,&#34;date: 2020-05-20&lt;br /&gt;new_cases:  4550&#34;,&#34;date: 2020-05-21&lt;br /&gt;new_cases:  4537&#34;,&#34;date: 2020-05-22&lt;br /&gt;new_cases:  4749&#34;,&#34;date: 2020-05-23&lt;br /&gt;new_cases:  2929&#34;,&#34;date: 2020-05-24&lt;br /&gt;new_cases:  4056&#34;,&#34;date: 2020-05-25&lt;br /&gt;new_cases:  4205&#34;,&#34;date: 2020-05-26&lt;br /&gt;new_cases:  4020&#34;,&#34;date: 2020-05-27&lt;br /&gt;new_cases:  5772&#34;,&#34;date: 2020-05-28&lt;br /&gt;new_cases:  6154&#34;,&#34;date: 2020-05-29&lt;br /&gt;new_cases:  5874&#34;,&#34;date: 2020-05-30&lt;br /&gt;new_cases:  6506&#34;,&#34;date: 2020-05-31&lt;br /&gt;new_cases:  7386&#34;,&#34;date: 2020-06-01&lt;br /&gt;new_cases:  8805&#34;,&#34;date: 2020-06-02&lt;br /&gt;new_cases:  5563&#34;,&#34;date: 2020-06-03&lt;br /&gt;new_cases:     0&#34;,&#34;date: 2020-06-04&lt;br /&gt;new_cases:  8875&#34;,&#34;date: 2020-06-05&lt;br /&gt;new_cases:  4284&#34;,&#34;date: 2020-06-06&lt;br /&gt;new_cases:  4202&#34;,&#34;date: 2020-06-07&lt;br /&gt;new_cases:  4358&#34;,&#34;date: 2020-06-08&lt;br /&gt;new_cases:  4757&#34;,&#34;date: 2020-06-09&lt;br /&gt;new_cases:  3181&#34;,&#34;date: 2020-06-10&lt;br /&gt;new_cases:  4040&#34;,&#34;date: 2020-06-11&lt;br /&gt;new_cases:  5087&#34;,&#34;date: 2020-06-12&lt;br /&gt;new_cases:  5965&#34;,&#34;date: 2020-06-13&lt;br /&gt;new_cases:  5961&#34;,&#34;date: 2020-06-14&lt;br /&gt;new_cases:  4383&#34;,&#34;date: 2020-06-15&lt;br /&gt;new_cases:  4604&#34;,&#34;date: 2020-06-16&lt;br /&gt;new_cases:  3256&#34;,&#34;date: 2020-06-17&lt;br /&gt;new_cases:  4164&#34;,&#34;date: 2020-06-18&lt;br /&gt;new_cases:  3752&#34;,&#34;date: 2020-06-19&lt;br /&gt;new_cases:  3480&#34;,&#34;date: 2020-06-20&lt;br /&gt;new_cases:  3537&#34;,&#34;date: 2020-06-21&lt;br /&gt;new_cases:  3413&#34;,&#34;date: 2020-06-22&lt;br /&gt;new_cases:  3598&#34;,&#34;date: 2020-06-23&lt;br /&gt;new_cases:     0&#34;,&#34;date: 2020-06-24&lt;br /&gt;new_cases:  5874&#34;,&#34;date: 2020-06-25&lt;br /&gt;new_cases:  3879&#34;,&#34;date: 2020-06-26&lt;br /&gt;new_cases:  3913&#34;,&#34;date: 2020-06-27&lt;br /&gt;new_cases:  3762&#34;,&#34;date: 2020-06-28&lt;br /&gt;new_cases:  3625&#34;,&#34;date: 2020-06-29&lt;br /&gt;new_cases:  3430&#34;,&#34;date: 2020-06-30&lt;br /&gt;new_cases:  2946&#34;,&#34;date: 2020-07-01&lt;br /&gt;new_cases:  2848&#34;,&#34;date: 2020-07-02&lt;br /&gt;new_cases:  3264&#34;,&#34;date: 2020-07-03&lt;br /&gt;new_cases:  3527&#34;,&#34;date: 2020-07-04&lt;br /&gt;new_cases:  3595&#34;,&#34;date: 2020-07-05&lt;br /&gt;new_cases:  3481&#34;,&#34;date: 2020-07-06&lt;br /&gt;new_cases:  3638&#34;,&#34;date: 2020-07-07&lt;br /&gt;new_cases:  2985&#34;,&#34;date: 2020-07-08&lt;br /&gt;new_cases:  3575&#34;,&#34;date: 2020-07-09&lt;br /&gt;new_cases:  3633&#34;,&#34;date: 2020-07-10&lt;br /&gt;new_cases:  3537&#34;,&#34;date: 2020-07-11&lt;br /&gt;new_cases:  3198&#34;,&#34;date: 2020-07-12&lt;br /&gt;new_cases:  3064&#34;,&#34;date: 2020-07-13&lt;br /&gt;new_cases:  3616&#34;,&#34;date: 2020-07-14&lt;br /&gt;new_cases:  3797&#34;,&#34;date: 2020-07-15&lt;br /&gt;new_cases:  3744&#34;,&#34;date: 2020-07-16&lt;br /&gt;new_cases:  3857&#34;,&#34;date: 2020-07-17&lt;br /&gt;new_cases:  3862&#34;,&#34;date: 2020-07-18&lt;br /&gt;new_cases:  3951&#34;,&#34;date: 2020-07-19&lt;br /&gt;new_cases:  3963&#34;,&#34;date: 2020-07-20&lt;br /&gt;new_cases:  4090&#34;,&#34;date: 2020-07-21&lt;br /&gt;new_cases:  4091&#34;,&#34;date: 2020-07-22&lt;br /&gt;new_cases:  4406&#34;,&#34;date: 2020-07-23&lt;br /&gt;new_cases:  4463&#34;,&#34;date: 2020-07-24&lt;br /&gt;new_cases:  4546&#34;,&#34;date: 2020-07-25&lt;br /&gt;new_cases:  4865&#34;,&#34;date: 2020-07-26&lt;br /&gt;new_cases:  3923&#34;,&#34;date: 2020-07-27&lt;br /&gt;new_cases:  4913&#34;,&#34;date: 2020-07-28&lt;br /&gt;new_cases:  4920&#34;,&#34;date: 2020-07-29&lt;br /&gt;new_cases:  5288&#34;,&#34;date: 2020-07-30&lt;br /&gt;new_cases:  5678&#34;,&#34;date: 2020-07-31&lt;br /&gt;new_cases:  6809&#34;,&#34;date: 2020-08-01&lt;br /&gt;new_cases:  7243&#34;,&#34;date: 2020-08-02&lt;br /&gt;new_cases:  7448&#34;,&#34;date: 2020-08-03&lt;br /&gt;new_cases:  6667&#34;,&#34;date: 2020-08-04&lt;br /&gt;new_cases:  4250&#34;,&#34;date: 2020-08-05&lt;br /&gt;new_cases:  6790&#34;,&#34;date: 2020-08-06&lt;br /&gt;new_cases:  7734&#34;,&#34;date: 2020-08-07&lt;br /&gt;new_cases:  7785&#34;,&#34;date: 2020-08-08&lt;br /&gt;new_cases:  8466&#34;,&#34;date: 2020-08-09&lt;br /&gt;new_cases:  7137&#34;,&#34;date: 2020-08-10&lt;br /&gt;new_cases:  7012&#34;,&#34;date: 2020-08-11&lt;br /&gt;new_cases:  5109&#34;,&#34;date: 2020-08-12&lt;br /&gt;new_cases:  6547&#34;,&#34;date: 2020-08-13&lt;br /&gt;new_cases:  8875&#34;,&#34;date: 2020-08-14&lt;br /&gt;new_cases:  9441&#34;,&#34;date: 2020-08-15&lt;br /&gt;new_cases:  8300&#34;,&#34;date: 2020-08-16&lt;br /&gt;new_cases:  9507&#34;,&#34;date: 2020-08-17&lt;br /&gt;new_cases: 10143&#34;,&#34;date: 2020-08-18&lt;br /&gt;new_cases:  5547&#34;,&#34;date: 2020-08-19&lt;br /&gt;new_cases:  7828&#34;,&#34;date: 2020-08-20&lt;br /&gt;new_cases:  9099&#34;,&#34;date: 2020-08-21&lt;br /&gt;new_cases:  8639&#34;,&#34;date: 2020-08-22&lt;br /&gt;new_cases:  9008&#34;,&#34;date: 2020-08-23&lt;br /&gt;new_cases:  9169&#34;,&#34;date: 2020-08-24&lt;br /&gt;new_cases:  9090&#34;,&#34;date: 2020-08-25&lt;br /&gt;new_cases:  6112&#34;,&#34;date: 2020-08-26&lt;br /&gt;new_cases:  6944&#34;,&#34;date: 2020-08-27&lt;br /&gt;new_cases:  5996&#34;,&#34;date: 2020-08-28&lt;br /&gt;new_cases:  8619&#34;,&#34;date: 2020-08-29&lt;br /&gt;new_cases:  7964&#34;,&#34;date: 2020-08-30&lt;br /&gt;new_cases:  9474&#34;,&#34;date: 2020-08-31&lt;br /&gt;new_cases:  7731&#34;,&#34;date: 2020-09-01&lt;br /&gt;new_cases:  4871&#34;,&#34;date: 2020-09-02&lt;br /&gt;new_cases:  5092&#34;,&#34;date: 2020-09-03&lt;br /&gt;new_cases:  6308&#34;,&#34;date: 2020-09-04&lt;br /&gt;new_cases:  6708&#34;,&#34;date: 2020-09-05&lt;br /&gt;new_cases:  6703&#34;,&#34;date: 2020-09-06&lt;br /&gt;new_cases:  6854&#34;,&#34;date: 2020-09-07&lt;br /&gt;new_cases:  6275&#34;,&#34;date: 2020-09-08&lt;br /&gt;new_cases:  1598&#34;],&#34;type&#34;:&#34;scatter&#34;,&#34;mode&#34;:&#34;markers+lines&#34;,&#34;marker&#34;:{&#34;autocolorscale&#34;:false,&#34;color&#34;:&#34;rgba(105,179,162,1)&#34;,&#34;opacity&#34;:1,&#34;size&#34;:5.66929133858268,&#34;symbol&#34;:&#34;circle&#34;,&#34;line&#34;:{&#34;width&#34;:1.88976377952756,&#34;color&#34;:&#34;rgba(105,179,162,1)&#34;}},&#34;hoveron&#34;:&#34;points&#34;,&#34;showlegend&#34;:false,&#34;xaxis&#34;:&#34;x&#34;,&#34;yaxis&#34;:&#34;y&#34;,&#34;hoverinfo&#34;:&#34;text&#34;,&#34;line&#34;:{&#34;width&#34;:1.88976377952756,&#34;color&#34;:&#34;rgba(0,0,0,1)&#34;,&#34;dash&#34;:&#34;solid&#34;},&#34;frame&#34;:null}],&#34;layout&#34;:{&#34;margin&#34;:{&#34;t&#34;:43.7625570776256,&#34;r&#34;:7.30593607305936,&#34;b&#34;:40.1826484018265,&#34;l&#34;:25.5707762557078},&#34;font&#34;:{&#34;color&#34;:&#34;rgba(0,0,0,1)&#34;,&#34;family&#34;:&#34;&#34;,&#34;size&#34;:14.6118721461187},&#34;title&#34;:{&#34;text&#34;:&#34;Daily new cases&#34;,&#34;font&#34;:{&#34;color&#34;:&#34;rgba(0,0,0,1)&#34;,&#34;family&#34;:&#34;&#34;,&#34;size&#34;:17.5342465753425},&#34;x&#34;:0,&#34;xref&#34;:&#34;paper&#34;},&#34;xaxis&#34;:{&#34;domain&#34;:[0,1],&#34;automargin&#34;:true,&#34;type&#34;:&#34;linear&#34;,&#34;autorange&#34;:false,&#34;range&#34;:[18310.35,18522.65],&#34;tickmode&#34;:&#34;array&#34;,&#34;ticktext&#34;:[&#34;Apr&#34;,&#34;Jul&#34;],&#34;tickvals&#34;:[18353,18444],&#34;categoryorder&#34;:&#34;array&#34;,&#34;categoryarray&#34;:[&#34;Apr&#34;,&#34;Jul&#34;],&#34;nticks&#34;:null,&#34;ticks&#34;:&#34;&#34;,&#34;tickcolor&#34;:null,&#34;ticklen&#34;:3.65296803652968,&#34;tickwidth&#34;:0,&#34;showticklabels&#34;:true,&#34;tickfont&#34;:{&#34;color&#34;:&#34;rgba(77,77,77,1)&#34;,&#34;family&#34;:&#34;&#34;,&#34;size&#34;:11.689497716895},&#34;tickangle&#34;:-0,&#34;showline&#34;:false,&#34;linecolor&#34;:null,&#34;linewidth&#34;:0,&#34;showgrid&#34;:true,&#34;gridcolor&#34;:&#34;rgba(235,235,235,1)&#34;,&#34;gridwidth&#34;:0.66417600664176,&#34;zeroline&#34;:false,&#34;anchor&#34;:&#34;y&#34;,&#34;title&#34;:{&#34;text&#34;:&#34;Month&#34;,&#34;font&#34;:{&#34;color&#34;:&#34;rgba(0,0,0,1)&#34;,&#34;family&#34;:&#34;&#34;,&#34;size&#34;:14.6118721461187}},&#34;hoverformat&#34;:&#34;.2f&#34;},&#34;yaxis&#34;:{&#34;domain&#34;:[0,1],&#34;automargin&#34;:true,&#34;type&#34;:&#34;linear&#34;,&#34;autorange&#34;:false,&#34;range&#34;:[-507.15,10650.15],&#34;tickmode&#34;:&#34;array&#34;,&#34;ticktext&#34;:[&#34;0&#34;,&#34;2500&#34;,&#34;5000&#34;,&#34;7500&#34;,&#34;10000&#34;],&#34;tickvals&#34;:[0,2500,5000,7500,10000],&#34;categoryorder&#34;:&#34;array&#34;,&#34;categoryarray&#34;:[&#34;0&#34;,&#34;2500&#34;,&#34;5000&#34;,&#34;7500&#34;,&#34;10000&#34;],&#34;nticks&#34;:null,&#34;ticks&#34;:&#34;&#34;,&#34;tickcolor&#34;:null,&#34;ticklen&#34;:3.65296803652968,&#34;tickwidth&#34;:0,&#34;showticklabels&#34;:false,&#34;tickfont&#34;:{&#34;color&#34;:null,&#34;family&#34;:null,&#34;size&#34;:0},&#34;tickangle&#34;:-0,&#34;showline&#34;:false,&#34;linecolor&#34;:null,&#34;linewidth&#34;:0,&#34;showgrid&#34;:true,&#34;gridcolor&#34;:&#34;rgba(235,235,235,1)&#34;,&#34;gridwidth&#34;:0.66417600664176,&#34;zeroline&#34;:false,&#34;anchor&#34;:&#34;x&#34;,&#34;title&#34;:{&#34;text&#34;:&#34;New daily cases&#34;,&#34;font&#34;:{&#34;color&#34;:&#34;rgba(0,0,0,1)&#34;,&#34;family&#34;:&#34;&#34;,&#34;size&#34;:14.6118721461187}},&#34;hoverformat&#34;:&#34;.2f&#34;},&#34;shapes&#34;:[{&#34;type&#34;:&#34;rect&#34;,&#34;fillcolor&#34;:null,&#34;line&#34;:{&#34;color&#34;:null,&#34;width&#34;:0,&#34;linetype&#34;:[]},&#34;yref&#34;:&#34;paper&#34;,&#34;xref&#34;:&#34;paper&#34;,&#34;x0&#34;:0,&#34;x1&#34;:1,&#34;y0&#34;:0,&#34;y1&#34;:1}],&#34;showlegend&#34;:false,&#34;legend&#34;:{&#34;bgcolor&#34;:null,&#34;bordercolor&#34;:null,&#34;borderwidth&#34;:0,&#34;font&#34;:{&#34;color&#34;:&#34;rgba(0,0,0,1)&#34;,&#34;family&#34;:&#34;&#34;,&#34;size&#34;:11.689497716895}},&#34;hovermode&#34;:&#34;closest&#34;,&#34;barmode&#34;:&#34;relative&#34;},&#34;config&#34;:{&#34;doubleClick&#34;:&#34;reset&#34;,&#34;showSendToCloud&#34;:false},&#34;source&#34;:&#34;A&#34;,&#34;attrs&#34;:{&#34;56b44dd132b0&#34;:{&#34;x&#34;:{},&#34;y&#34;:{},&#34;type&#34;:&#34;scatter&#34;},&#34;56b4539447ac&#34;:{&#34;x&#34;:{},&#34;y&#34;:{}}},&#34;cur_data&#34;:&#34;56b44dd132b0&#34;,&#34;visdat&#34;:{&#34;56b44dd132b0&#34;:[&#34;function (y) &#34;,&#34;x&#34;],&#34;56b4539447ac&#34;:[&#34;function (y) &#34;,&#34;x&#34;]},&#34;highlight&#34;:{&#34;on&#34;:&#34;plotly_click&#34;,&#34;persistent&#34;:false,&#34;dynamic&#34;:false,&#34;selectize&#34;:false,&#34;opacityDim&#34;:0.2,&#34;selected&#34;:{&#34;opacity&#34;:1},&#34;debounce&#34;:0},&#34;shinyEvents&#34;:[&#34;plotly_hover&#34;,&#34;plotly_click&#34;,&#34;plotly_selected&#34;,&#34;plotly_relayout&#34;,&#34;plotly_brushed&#34;,&#34;plotly_brushing&#34;,&#34;plotly_clickannotation&#34;,&#34;plotly_doubleclick&#34;,&#34;plotly_deselect&#34;,&#34;plotly_afterplot&#34;,&#34;plotly_sunburstclick&#34;],&#34;base_url&#34;:&#34;https://plot.ly&#34;},&#34;evals&#34;:[],&#34;jsHooks&#34;:[]}&lt;/script&gt;
&lt;p class=&#34;caption&#34;&gt;
Figure 2: Daily new cases
&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;The plot &lt;a href=&#34;#fig:new-cases&#34;&gt;2&lt;/a&gt; shows a point graph with a line passing through it that helps see how the trends have been since the first record and then the different points indicate the dates on which the cases were recorded. As referred in the introduction, the first case recorded was on March 7th. The number of cases on a daily basis has been changing throughout, the first highest recorded cases was on 1st June with 8805 cases, and notably the very next day there was a huge drop in the cases equal to 0 which is very suspicious and this happens twice before the cases recorded has spiked to a high value of 10143 on 17th August and currently there has been a decrease in the cases all the way to 1598.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;covid-19-case-anlysis-within-each-state-and-its-population&#34; class=&#34;section level2&#34;&gt;
&lt;h2&gt;COVID-19 case anlysis within each state and it’s population&lt;/h2&gt;
&lt;div class=&#34;figure&#34;&gt;&lt;span id=&#34;fig:high-province&#34;&gt;&lt;/span&gt;
&lt;img src=&#34;/post/covid19-peru/covid19-peru_files/figure-html/high-province-1.png&#34; alt=&#34;Highest cases amongst the provinces in Peru&#34; width=&#34;672&#34; /&gt;
&lt;p class=&#34;caption&#34;&gt;
Figure 3: Highest cases amongst the provinces in Peru
&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;The bar plot &lt;a href=&#34;#fig:high-province&#34;&gt;3&lt;/a&gt; with the province names on the y-axis and the number of deaths on the x-axis, with the province LIMA, 10352 number of deaths throughout the months followed by both CALLAO, 1325 and TRUJILLO, 1386 number of deaths in the entire country of Peru.&lt;/p&gt;
&lt;div class=&#34;figure&#34;&gt;&lt;span id=&#34;fig:gender-plot&#34;&gt;&lt;/span&gt;
&lt;img src=&#34;/post/covid19-peru/covid19-peru_files/figure-html/gender-plot-1.png&#34; alt=&#34;Difference between the number of deaths by gender amongst the provinces&#34; width=&#34;672&#34; /&gt;
&lt;p class=&#34;caption&#34;&gt;
Figure 4: Difference between the number of deaths by gender amongst the provinces
&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;The bar plot &lt;a href=&#34;#fig:gender-plot&#34;&gt;4&lt;/a&gt; depicts the number of deaths between different provinces in Peru and this has been facet_wrap() by gender. As Lima is the largely populated province in the country of Peru, it has the highest number of cases/deaths recorded. As seen in the graph the number of deaths among males in Lima are higher than the number of deaths among the female gender. Another noticeable feature is that every province under consideration, the males are more prone to have been affected with the virus than the females.&lt;/p&gt;
&lt;div class=&#34;figure&#34;&gt;&lt;span id=&#34;fig:age-plot&#34;&gt;&lt;/span&gt;
&lt;img src=&#34;/post/covid19-peru/covid19-peru_files/figure-html/age-plot-1.png&#34; alt=&#34;Number of deaths with respect to the age of the person&#34; width=&#34;672&#34; /&gt;
&lt;p class=&#34;caption&#34;&gt;
Figure 5: Number of deaths with respect to the age of the person
&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Lastly, the plot &lt;a href=&#34;#fig:age-plot&#34;&gt;5&lt;/a&gt; depicts the bar plot of number of deaths occurred within each age group from 1 to 50 facet_wrap() by gender. As seen in &lt;a href=&#34;#fig:gender-plot&#34;&gt;4&lt;/a&gt; the number of deaths among males are comparatively higher than the number of deaths in females. Within which the age group approaching 50 are the most affected age group in Peru, the same can be views among the female gender as well. It seems that children do get affected by the virus but the count is very low ~6 within our dataset.&lt;/p&gt;
&lt;p&gt;Stay safe everyone!&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://media.giphy.com/media/QvMT31LoM66yQmuYbO/giphy.gif&#34; /&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;references&#34; class=&#34;section level1&#34;&gt;
&lt;h1&gt;References&lt;/h1&gt;
&lt;p&gt;&lt;span class=&#34;citation&#34;&gt;Ritchie and Hannah (n.d.)&lt;/span&gt;&lt;br /&gt;
&lt;span class=&#34;citation&#34;&gt;Clark (2020)&lt;/span&gt;
&lt;span class=&#34;citation&#34;&gt;Wickham et al. (2019)&lt;/span&gt;
&lt;span class=&#34;citation&#34;&gt;Xie, Hill, and Thomas (2017)&lt;/span&gt;
&lt;span class=&#34;citation&#34;&gt;Wickham (2016)&lt;/span&gt;
&lt;span class=&#34;citation&#34;&gt;(2020)&lt;/span&gt;&lt;/p&gt;
&lt;div id=&#34;refs&#34; class=&#34;references&#34;&gt;
&lt;div id=&#34;ref-clark&#34;&gt;
&lt;p&gt;Clark, Martin. 2020. “Peru Covid-19.” &lt;em&gt;Kaggle&lt;/em&gt;. &lt;a href=&#34;https://www.kaggle.com/martinclark/peru-covid19-august-2020&#34;&gt;https://www.kaggle.com/martinclark/peru-covid19-august-2020&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;ref-data&#34;&gt;
&lt;p&gt;Ritchie, Research, and data: Hannah. n.d. “Coronavirus Pandemic (Covid-19) – the Data.” &lt;em&gt;Our World in Data&lt;/em&gt;. &lt;a href=&#34;https://ourworldindata.org/coronavirus-data&#34;&gt;https://ourworldindata.org/coronavirus-data&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;ref-gg&#34;&gt;
&lt;p&gt;Wickham, Hadley. 2016. &lt;em&gt;Ggplot2: Elegant Graphics for Data Analysis&lt;/em&gt;. Springer-Verlag New York. &lt;a href=&#34;https://ggplot2.tidyverse.org&#34;&gt;https://ggplot2.tidyverse.org&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;ref-tidy&#34;&gt;
&lt;p&gt;Wickham, Hadley, Mara Averick, Jennifer Bryan, Winston Chang, Lucy D’Agostino McGowan, Romain François, Garrett Grolemund, et al. 2019. “Welcome to the tidyverse.” &lt;em&gt;Journal of Open Source Software&lt;/em&gt; 4 (43): 1686. &lt;a href=&#34;https://doi.org/10.21105/joss.01686&#34;&gt;https://doi.org/10.21105/joss.01686&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;ref-blog&#34;&gt;
&lt;p&gt;Xie, Yihui, Alison Presmanes Hill, and Amber Thomas. 2017. &lt;em&gt;Blogdown: Creating Websites with R Markdown&lt;/em&gt;. Boca Raton, Florida: Chapman; Hall/CRC. &lt;a href=&#34;https://github.com/rstudio/blogdown&#34;&gt;https://github.com/rstudio/blogdown&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;div id=&#34;ref-masks&#34;&gt;
&lt;p&gt;2020. &lt;em&gt;GIPHY&lt;/em&gt;. &lt;a href=&#34;https://media.giphy.com/media/QvMT31LoM66yQmuYbO/giphy.gif&#34;&gt;https://media.giphy.com/media/QvMT31LoM66yQmuYbO/giphy.gif&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</description>
    </item>
    
  </channel>
</rss>
