If I have a a a collection of NaiveDateTimes in a Vec how can I create a ChunkedArray and ultimately a Series from this ?
For ints and floats I can do
let sensor_id_col_values = (0..=20).flat_map(|i| vec![i; 5]).collect();
let sensor_id_col = Int32Chunked::from_vec("sensor_id", sensor_id_col_values).into_series();
But the methods like from_vec don't exist for Datetimes it seems.
After fighting for hours even with GPT-4 I am no closer.
Thanks