using DataFrames
using Dates
df = DataFrame(DATE=[Date("2025-01-01","yyyy-mm-dd"), Date("2025-01-01","yyyy-mm-dd"), Date("2025-01-02","yyyy-mm-dd")], TIME=[Time("00:00:00"), Time("12:00:00"), Time("00:00:00")])
gives
3×2 DataFrame
Row │ DATE TIME
│ Date Time
─────┼──────────────────────
1 │ 2025-01-01 00:00:00
2 │ 2025-01-01 12:00:00
3 │ 2025-01-02 00:00:00
So I would like to create a third column with the full datetime stamp.
(In general) I struggle with the online creation of a dataframe column…
Any help welcome.