You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should be possible to parse strings into "proper" date/datetime objects using the base::strptime function, and then do basic arithmetic on them (eg. calculating deltas).
For example, it should be possible to do something like that:
as.formula("y ~ I(strptime(x1) - strptime(x2))")
The text was updated successfully, but these errors were encountered:
The PMML specification supports temporal data types:
http://dmg.org/pmml/v4-3/DataDictionary.html
It should be possible to parse strings into "proper" date/datetime objects using the
base::strptime
function, and then do basic arithmetic on them (eg. calculating deltas).For example, it should be possible to do something like that:
as.formula("y ~ I(strptime(x1) - strptime(x2))")
The text was updated successfully, but these errors were encountered: