diff --git a/LearnJulia/src/JFDA.jl b/LearnJulia/src/JFDA.jl index 2130dc2..f6724ee 100644 --- a/LearnJulia/src/JFDA.jl +++ b/LearnJulia/src/JFDA.jl @@ -4,9 +4,13 @@ using CSV using DataFrames using Plots -puzzles = CSV.read("puzzles.csv", DataFrame); +puzzlespath = joinpath("data", "puzzles.csv"); + +puzzles = CSV.read(puzzlespath, DataFrame); show(describe(puzzles))# use to show summary stats # 8.3.4 Quick Histogram +plot([histogram(puzzles[!,col]; label = col) for + col in ["Rating", "RatingDeviation", "Popularity", "NbPlays"]]...) \ No newline at end of file