LoginSignup
4
3

More than 5 years have passed since last update.

等間隔の時間ベクトルを生成

Posted at

たとえば 2014-01-01 00:00:00 から 2014-01-02 00:00:00 までのタイムスタンプのベクトルを1分間隔で生成したい場合はこうする。

R
as.POSIXlt("2014-01-01 00:00:00") + seq(0,(24*60*60),by=60)
4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3