quick.hist<-ggplot(ufo.us, aes(X=DateOccured))+geom_histogram()+scale_x_date()
ggsave(plot=quick.hist,filename= "../images/hist.png",height=6, width=8)
file format is simple:
it contains 2 dates,city,state,duration
I am getting error during plot:that is during ggsave()
Error in grDevices::png(..., width = width, height = height, res = dpi,
unable to start png() device
In addition: Warning messages:
In grDevices::png(..., width = width, height = height, res = dpi,
unable to open file '../images/hist.png' for writing
In grDevices::png(..., width = width, height = height, res = dpi,
opening device failed
I am very new to R and getting error. I have just started copying the book code for histogram chart, first chapter from book machine learning hacker perspective.