You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using StatsPlots
using Dates
# Sample Data
dates = [Date(2023, 1, 1), Date(2023, 2, 1), Date(2023, 3, 1)]
category1 = [10, 20, 30]
category2 = [15, 25, 35]
# Prepare data for grouped bar plot
data =hcat(category1, category2)
# Create the grouped bar plot with dates on the x-axisgroupedbar(dates, data, bar_position=:stack, label=["Category 1""Category 2"])
groupedbar
with dates as x-labels does not show xticks whenbar_position=:stack
is selected.This is the case both in gr and pgfplotsx. I haven't tested the others yet.
The text was updated successfully, but these errors were encountered: