DRYな備忘録

Don't Repeat Yourself.

Rの日付・時間のパースと、時間差分の計算

# Datetime文字列のパース
> t1 <- strptime("May 11 08:42:20", format = "%b %d %H:%M:%S"
1. )
> t2 <- strptime("May 11 08:47:23", format = "%b %d %H:%M:%S")

# 時間の差分
> t2 - t1
Time difference of 5.05 mins

# 秒でくれ
> as.numeric(t2 - t1, units = "secs")
[1] 303
> 

追記 2018/05/16

Rによるやさしい統計学

Rによるやさしい統計学

DRY