This is my data frame, from this data frame i plot time series graph
data.frame(df3)
Time Price
2/21/2018 09:00:00am 122.12
2/21/2018 09:07:38am 122.43
2/21/2018 09:09:10am 122.44
2/21/2018 09:09:10am 122.45
2/21/2018 09:09:21am 122.26
2/21/2018 09:13:16am 122.37
...
this is coding for time series graph:
ts.plot(df3$Price, gpars=list(xlab="Time", ylab="Price"))
the output is:
i want to change x-label on my graph, i want the format of my x-label display "2/21/2018 09:13:16am "
format
Thanks in advance