Good day! So I am working with this dictionary data set in python. Say the dictionary looks like this:
time_sheet = {"hours_dan":[10, 8, 8, 11], "hours_john":[9, 8, 11], "hours_alex":[10, 8]}
My goal is to generate a scatter plot and have their names on the y-axis, and their hours on the x-axis. It would give me three lines and their time points on each line corresponding to their hours.
Is this achievable in Plotly Express? If not, what should I use to plot? Thank you so much!
