Convert Character Date Time to Date Time
Having difficulty converting to a numeric date time.
JMP log error: Column "Date-Time" changed to type Character to match formula.
Date::Time original format:
01:28:2018::02:14:08:099
What I am trying to do (after many attempts from various posts):
dt<< new column ("Date-Time", numeric, formula(
rawdate = substitute(trim(substr(:TimeStamp,1,10)),":","/");
rawtime = (trim(substr(:TimeStamp,13,
...