summary statistics

Comparison of R and Excel.

Load packages that we will using the packages command

Read corporate tax spreadsheet into an R dataframe

library(readxl)
url <- "https://estanny.com/static/week2/corp_tax.xlsx"
destfile <- "corp_tax.xlsx"
curl::curl_download(url, destfile)
corp_tax <- read_excel(destfile)