new .jl file
This commit is contained in:
parent
fd76a1b080
commit
74fb952880
1 changed files with 12 additions and 0 deletions
12
LearnJulia/src/JFDA.jl
Normal file
12
LearnJulia/src/JFDA.jl
Normal file
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue