* 介绍
这篇文章参考自 [[https://tianchi.aliyun.com/notebook/440183][这个notebook]] ,无意中看到的,觉得不错,就用Julia重新写了一遍,我们用到的库有
- Plots
- DataFrames
- CSV
- StatsPlots
- StatsBase
* 世界杯数据可视化分析
** 准备
#+begin_src julia
using Plots, CSV, DataFrames
plotly()
Plots.default(show=true)
#+end_src
** 分析世界杯成绩汇总表
#+begin_src julia
histWorldCup = CSV.read("data/world-cup/WorldCupsSummary.csv", DataFrame)
#+end_src
This file has been truncated. show original