ssi-dk / diseasystore

R package that provides a feature store tailored towards disease modelling
https://ssi-dk.github.io/diseasystore/
GNU General Public License v3.0
4 stars 2 forks source link

FEATURE: `add_days()` helper #183

Open RasmusSkytte opened 3 weeks ago

RasmusSkytte commented 3 weeks ago

Describe the feature This will be a age helper like add_years() but which adds days to a date

What use will this feature have? This will allow us to more transparently write feature stores for backends which have poor date support (e.g. SQL Server). On backends such as this, we unfortunately cannot just write date + 1 to get the next date.

Having an add_days() helper means that we can write add_days(date, 1) to get the next date in a transparent manor.

Who should add the feature? N/A

Additional context N/A

RasmusSkytte commented 3 weeks ago

When this gets implemented, we can add SQL server support to DiseasystoreSimulist