Im New to Python, it sounds easy- but i cant solve it, nether find a resolution with similar questions.
I have an Array where every row has one value ((...), Hour, Min., Sec., (...) ,D, M, Y) - Example:
arr = np.array([x, x,0, 0, 3, x, x,10, 8, 2022])
How can I conect the rows by ID to create an Data.frame of Date and Time in the formate:
Date: Time:
YY/DD/MM HH:MM:SS
So in my example i want to create an dataframe like:
Date: Time:
2022/08/10 00:00:03
I was trying to use merge or concat, but only reach to the output:
[2022.10.8],[0.0.3]
High Thanks for any ideas! : )