I have prepared example of two charts, Multiseries Line chart and Scatterplot to illustrate how ggplot2 is working. Additionally I have put some formatting elements to show how we can improve looks of our charts. We need libraries below to create our graphs. Install them if you don't have it yet. 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) #the subject of this post, package for data visualizations, part of the Tidyverse. library(RColorBrewer) #package which is helpful while we are choosing the colors. I downloaded data file "COVID_data_2021_01_19" from website: https://shiny.rstudio.com/gallery/covid19-tracker. Thanks to readr package I import dataset to R and transform it a bit. I used dplyr to pick some observations I wanted to visualized therefore I created "covid2" data.frame. covid<-COVID_data_2021_01_19 covid$country=as.fa...
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.