I'm trying to subtract two dates in R. These are the two dates via the structure command:
str(standard_data_4testing$start_datetime)
POSIXct[1:489124], format: "2016-02-01 00:38:49" "2016-02-01 07:48:53" "2016-02-01 08:32:08" "2016-02-01 11:21:13" ...
str(standard_data_4testing$original_installdate)
Date[1:489124], format: "2015-10-15" "2015-10-15" "2015-10-15" "2016-01-29" "2016-01-29" "2016-01-29" ...
I created both with as.Date functions in R but start_datetime has date and time and original_installdate only has date in the original data as reflected above.
Is there a way to subtract them?
I tried to subtract using this statement:
standard_data_4testing$start_datetime - standard_data_4testing$original_installdate
but I get this error:
Warning message: Incompatible methods ("-.POSIXt", "-.Date") for "-"
after it prints out some data:
[6049] "2016-02-01 09:48:44 UTC" "2016-02-01 07:24:08 UTC" "2016-02-01 09:02:33 UTC" "2016-02-01 09:14:29 UTC" [6053] "2016-02-01 10:49:46 UTC" "2016-02-01 19:07:52 UTC" "2016-02-01 02:39:04 UTC" "2016-02-01 03:59:29 UTC" [6057] "2016-02-01 07:13:05 UTC" "2016-02-01 07:58:50 UTC" NA
I've also tried using POSIXct but received a similar error.
Is there any way I can subtract the two dates, despite the differences in their components?
Thanks for your help
Date. If they are the same class, you can subtract. - Kota Moridifftimefunctiondifference <- difftime(dates1,dates2,units='days'), and get a numeric usingas.numeric(difference)(N.B.difftimeit automatically converts Date's to POSIXct) - digEmAll