I have created a stacked bar chart in using plotly express that visualises edits made to a files in GDrive, and who made those edits. My source dataframe has columns file_path emailAddress (of the person editing the file) tally I have file_path plotted on the x axis. The...
library(plotly) my_colors <- c("gold", "green", "blue", "steelblue", "red", "purple") p <- plot_ly(data = df_long, x = ~Date, y = ~Value, color = ~pretty_Variable, colors = my_colors, fill = "tonexty", type = "scatter", mode = "stack", stackgroup = "one"...