I have a dataframe of which two columns are of date and sales. date column varies from 2012-10-22 to 2016-09-22. I want to plot the graph of sales in jan 2013 by day without creating any subset.
I have used this- ggplot(subsales,aes(Date,spdby))+geom_line()
Is it possible by using ggplot()?
I have plotted the sales per day and look like this-
I want to zoom in, to January 2013 and want to extract that part as a new plot.


scale_x_date()orxlim()! - Roman