I'm using plotnine to generate a scatterplot where the x-axis is pandas.Timestamp objects.
Currently, the x tick labels (e.g., "2017-07-01") are running into each other. I'd like to be able to do an arbitrary transformation of the tick labels. How do I change the x tick labels on the plot?
It looks like I could do something like + scale_x_continuous(labels=???)
but I don't know what argument to pass to labels.