I am very new to this! I'm looking at a class called data analysis, where we are asked to perform a diurnal cycle of a time series that measures radiation per minute, but I have a file in csv where in a single column I have the date and time, as I do to separate them and then select only the time of interest.
I expect a quick response.
Good morning.
Example Data = pd.read_csv ("6001_Pira.csv", index_col = 0)
Fecha_Hora Radiacion Temperatura Calidad
2016-11-09 21:24:00 103 299.87 1
2016-11-09 21:25:00 105 299.85 1
2016-11-09 21:26:00 108 299.85 1
2016-11-09 21:27:00 110 299.85 1
2016-11-09 21:28:00 114 299.85 1
2016-11-09 21:29:00 117 299.80 1
2016-11-09 21:30:00 120 299.78 1
2016-11-09 21:31:00 121 299.76 1
2016-11-09 21:32:00 121 299.75 1
As it is an analysis per minute, that is, I need to know how the radiation is every day at 21:28:00 but the time and date are in a single column, as you can filter the data belonging to that time especially?