From 74fb952880c20cf43d947be12fcad98750d6dd62 Mon Sep 17 00:00:00 2001 From: Kyle Belanger Date: Wed, 31 Jul 2024 08:40:35 -0400 Subject: [PATCH] new .jl file --- LearnJulia/src/JFDA.jl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 LearnJulia/src/JFDA.jl diff --git a/LearnJulia/src/JFDA.jl b/LearnJulia/src/JFDA.jl new file mode 100644 index 0000000..2130dc2 --- /dev/null +++ b/LearnJulia/src/JFDA.jl @@ -0,0 +1,12 @@ +#Chapter 8 + +using CSV +using DataFrames +using Plots + +puzzles = CSV.read("puzzles.csv", DataFrame); + +show(describe(puzzles))# use to show summary stats + +# 8.3.4 Quick Histogram +