How can I remove leading zeros from the x axis labels WITHOUT MANUALLY adding custom labels?
p + scale_x_date(date_labels = "%m/%d", #this generated dates like: 02/15, 03/15, etc
date_breaks = "1 week",
expand = expand_scale(0,0))

