ajustar_hora | R Documentation |
Corrige el tiempo de acuerdo a la zona horaria.
ajustar_hora(
GPS_data = GPS_data,
dif_hor = dif_hor,
dia_col = dia_col,
hora_col = hora_col,
formato = formato
)
GPS_data |
tu data frame con columna de hora y tiempo |
dif_hor |
un numero correspondiente a la diferencia horaria |
dia_col |
el nombre de la columna donde tienes la fecha |
hora_col |
el nombre de la columna donde tienes el tiempo |
formato |
el formato en el que esta tu fecha y hora |
un data frame con dos columnas adicionales dia_hora y hora_corregida
t_formato="%d/%m/%Y %H:%M:%S"
GPS_gmt<-ajustar_hora(GPS_data = GPS_raw, dif_hor = 5,
dia_col = 'DateGMT', hora_col = 'TimeGMT',formato=t_formato)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.