COVID19 Analysis and R Programming
Three methods import CSV files into R: read.csv() # Base R read_csv() # Tidyverse/readr packages fread() # Data.Table package And Two way to import Excel files: readxl() # Tidyverse/readxl read.xlsx(file, sheetIndex, header=TRUE) # xlsx package
340436832 Bytes