i have a question how to select certain values from a table. I have a table with times and values and i want to get the row below and after a certain time.
Example-Data.Frame.
Time Value
02:51 0.08033405
05:30 0.43456738
09:45 0.36052075
14:02 0.45013807
18:55 0.05745870
....# and so on
Time is coded as character, but can be formatted. Now i have for example the time "6:15" and want to get the values of the time before and after this time from the table (0.43456738 and 0.36052075). The database is in fact quite huge and i have a lot of time values. Anyone has a nice suggestion how to accomplish this?
thanks Curlew