Heatmap with DateTime axis

Source code Author Update time

using Plots
plotlyjs()
begin
    using Dates
    z = rand(5, 5)
    x = DateTime.(2016:2020)
    y = 1:5
    heatmap(x, y, z)
end

This page was generated using DemoCards.jl and Literate.jl.