powered by
neat representation of time stamp
ntimestamp( timestamp, show_weekday = TRUE, show_date = TRUE, show_hours = TRUE, show_minutes = TRUE, show_seconds = TRUE, show_timezone = TRUE, display_weekday = NULL, include_date = NULL, include_hours = NULL, include_minutes = NULL, include_seconds = NULL, include_timezone = NULL )
String representation of time stamp
a POSIX time stamp
a Boolean representing if the weekday of the timestamp to be included. By default it is set to TRUE
a Boolean representing if the date of time stamp to be included. By default it is set to TRUE.
a Boolean representing if the hours to be included. By default it is set to TRUE
a Boolean representing if the minutes to be included. By default it is set to TRUE
a Boolean representing if the seconds to be included. By default it is set to TRUE
a Boolean variable representing if the timezone of the date variable to be included. By default it is set to TRUE.
Deprecated. Use 'show_weekday' instead.
Deprecated. Use 'show_date' instead.
Deprecated. Use 'show_hours' instead.
Deprecated. Use 'show_minutes' instead.
Deprecated. Use 'show_seconds' instead.
Deprecated. Use 'show_timezone' instead.
# Neat representation of time stamp x <- Sys.time() ntimestamp(x) # Neat representation of time from a time stamp ntimestamp(x, show_date = FALSE, show_seconds = FALSE, show_timezone = FALSE )
Run the code above in your browser using DataLab