Skip to contents

Convert times to seconds.

Usage

convertToSeconds(hours, minutes, seconds, HHMMSS, HHMM, MMSS)

Arguments

hours

Character vector of the number of hours.

minutes

Character vector of the number of minutes.

seconds

Character vector of the number of seconds.

HHMMSS

Times in HH:MM:SS format.

HHMM

Character vector of times in HH:MM format.

MMSS

Character vector of times in MM:SS format.

Value

Vector of times in seconds.

Details

Converts times to seconds. To convert times to hours or minutes, see convertToHours or convertToMinutes.

Examples

# Prepare Data
df <- data.frame(hours = c(0,1), minutes = c(15,27), seconds = c(30,13),
  HHMMSS = c("00:15:30","01:27:13"), HHMM = c("00:15","01:27"),
  MMSS = c("15:30","87:13"))

# Convert to Minutes
convertToSeconds(hours = df$hours, minutes = df$minutes,
  seconds = df$seconds)
#> [1]  930 5233
convertToSeconds(HHMMSS = df$HHMMSS)
#> [1]  930 5233
convertToSeconds(HHMM = df$HHMM)
#> [1]  900 5220
convertToSeconds(MMSS = df$MMSS)
#> [1]  930 5233



Developmental Psychopathology Lab