This should be the output: 20/2/06 11:16:16.123456789 But my output is "2006-02-20 11:16:16.123456 IST"
z <- strptime("20/2/06 11:16:16.123456789", "%d/%m/%y %H:%M:%OS")
z # prints without fractional seconds
op <- options(digits.secs = 9)
z
This should be the output: 20/2/06 11:16:16.123456789 But my output is "2006-02-20 11:16:16.123456 IST"
z <- strptime("20/2/06 11:16:16.123456789", "%d/%m/%y %H:%M:%OS")
z # prints without fractional seconds
op <- options(digits.secs = 9)
z