add new .jl file

This commit is contained in:
Kyle Belanger 2024-08-05 16:53:38 -04:00
parent 9a05606c0d
commit 3c9588c92b

View file

@ -0,0 +1,14 @@
using XLSX
using DataFrames
using Chain
using Cleaner
# Load Data
df = DataFrame(XLSX.readtable(joinpath("data", "Tableau_practice_data.xlsx"), "05 - Flu Occurrence FY2013-2016"))
@chain df begin
polish_names
end