Skip to content

Instantly share code, notes, and snippets.

@miguelraz
Created April 12, 2022 03:06
Show Gist options
  • Save miguelraz/ea0f6537040a03e0b63da4dd445b98a5 to your computer and use it in GitHub Desktop.
Save miguelraz/ea0f6537040a03e0b63da4dd445b98a5 to your computer and use it in GitHub Desktop.
julia> using CSV, DataFrames, Plots
julia> dates = begin
data = CSV.read("juliacon-2022_sessions(2).csv", DataFrame)
df = data[!, :created]
dates = DateTime.(first.(split.(df, '.')))
sort!(dates)
end;
julia> p = plot(dates, 1:length(dates), title = "JuliaCon submission times", xaxis = "Date submission", yaxis = "# of submissions", label = :none);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment