I have those crime data from San Fransisco. My original data looks like this. san Fransisco data
Long story short, I need to plot dates against time(after performing some filtering) and create a jitter plot. The original format of the date and time column is object. Thats what is what I have done so far.
df.Date = pd.to_datetime(df.Date)
df.Time = pd.to_datetime(df.Time)
x7=dfdrug.Date.tolist()
y7=dfdrug.Time.tolist()
This is the best I could get, but still I am annoyed by that 7 next to the times. Thank you ;)