using CSV, DataFrames, StatsPlots
begin
spotify_filepath = "data//archive//spotify.csv"
spotify_data = CSV.read(spotify_filepath, DataFrame)
end;
@df spotify_data plot(:Date, cols(2:6))
Built with Julia 1.9.1 and
CSV 0.10.9DataFrames 1.5.0
StatsPlots 0.15.4
To run this tutorial locally, download [this file](/tutorials/typesandstyles03x09.jl) and open it with Pluto.jl._