## DATA SCIENCE IN A PANDEMIC ## Professor Dennis F.X. Mathaisel ## This script entails a data structure visualization, ## referenced as Figure 1 in the paper.
# Packages Utilized
install.packages(“readr”)
install.packages(“dplyr”)
install.packages(“ggplot2”)
install.packages(“DataExplorer”)
library(DataExplorer)
library(readr)
library(dplyr)
library(ggplot2)
# Loading the dataset from Rami Krispin’s github, sourcing the coronavirus package urlfile=”https://raw.githubusercontent.com/RamiKrispin/coronavirus/master/csv/coronavirus.csv” covid_tab<-read.csv(url(urlfile))
# 1. Visualization Demonstrating the Data Structure of dataframe “covid_tab” plot_str(covid_tab)
# END OF SCRIPT
© 2024 Babson College. All rights reserved.