using CSV, DataFrames, StatsPlots
fifa_filepath = "data//archive//fifa.csv"
"data//archive//fifa.csv"
fifa_data = CSV.read(fifa_filepath, DataFrame)
DateARGBRAESPFRAGERITA
11993-08-085.08.013.012.01.02.0
21993-09-2312.01.014.07.05.02.0
31993-10-229.01.07.014.04.03.0
41993-11-199.04.07.015.03.01.0
51993-12-238.03.05.015.01.02.0
61994-02-159.02.06.014.01.07.0
71994-03-158.02.06.015.01.011.0
81994-04-1910.01.07.015.02.013.0
91994-05-176.01.09.017.02.016.0
101994-06-148.03.05.013.01.04.0
...
2862018-06-075.02.010.07.01.019.0
#gr(size=(1000,600))
@df fifa_data plot(fifa_data.Date, cols(2:7), xlabel="Date")

Built with Julia 1.9.1 and

CSV 0.10.9
DataFrames 1.5.0
StatsPlots 0.15.4

To run this tutorial locally, download [this file](/tutorials/fifa03x01.jl) and open it with Pluto.jl._