Is there an easy way to know if a column is Date/Time?
So I had a script that ran something like this:
for(i=1, i<=ncols(dt), i++,
name = Column(dt, i) << Get Name;
if(contains(name, "Date") | contains(name, "Time"),
//Run code
)
);
However, I've found that not all columns have "Date" or "Time" in the name. Sometimes due to misspelling (like Tme, Tim, ect.) Sometimes b/c it's just not included b/c the columns are a...
