The report I will show here consists of two charts: line chart and scatterplot. On the left top corner you can choose country (one of six) and accordingly the report will present this two graphs for the selected country. On the right sight of the report you will see small table and check box for Scatterplot chart. You can choose scatterplot with or without regression line. The report looks like this https://karolinamgoma.shinyapps.io/covid19/ I will explain you step by step how to build such shiny app by yourself. It will be useful to read my previous post so you can already be able to create your app.R script. If your app.R already exist we can add some libraries which I am going to use. Install them if you don't have it yet. Libraries library(shiny) # for building web app library(readr) #data import tool, part of the Tidyverse. library(dplyr) #perfect package for data manipulation, queries and much more, part of the Tidyverse. library(ggplot2) #package for data visua...
Hello everybody and welcome to my blog where I would like to share with you my learning journey through the data science. My name is Karolina. I am a polish girl living in France. I have master's degree in applied mathematics and few years of work experience in business and banking filed.