Skip to main content
1 vote
3 answers
73 views

I have a dataset with a 'Time' column; for 2 dates the time is incorrect and I need to move it back by 1 hour. This is what my dataframe looks like: Date Time 05.01.2026 17:00 06.01.2026 ...
AjWinston's user avatar
  • 161
0 votes
2 answers
76 views

I'm developing an Android app, and I need to parse some external data. This data includes date-time values, and claims these values to be ISO 8601 compatible. While most of examples I encountered were ...
Dmytro's user avatar
  • 9
1 vote
1 answer
43 views

I have a dataframe with these columns: id_pair (pair of sensors) rssi_mean (detection strength) contact_day (day of the detection as string, e.g. 'Monday') study_week (week of the detection as ...
Johannes Wiesner's user avatar
0 votes
0 answers
58 views

Recently I have noticed that an API which return a reponse that contains some date type are failing if I have a 12 hour format (AM/PM) on my phone enable iOS 17.6.1. If I switch to 24 hour format the ...
Leotrim Halimi's user avatar
2 votes
2 answers
183 views

If I do: #include <chrono> #include "./date/date.h" #include "./date/tz.h" using UtcTime = std::chrono::time_point<std::chrono::system_clock>; UtcTime xParseRfc822(...
Martin Perry's user avatar
  • 9,665
1 vote
2 answers
88 views

Why does matplotlib round to the nearest month sometimes and not other times depending on the order lines are plotted and which dates are used. ax3 and ax4 are particularly interesting because they ...
Brandon's user avatar
  • 546
Tooling
1 vote
3 replies
65 views

I have a column named ride_length that is the difference between two datetime columns. It has a data type of time delta series. How can I convert it into a time data type? Current format 1 day 12:58:...
Abira Munir's user avatar
1 vote
1 answer
96 views

I am trying to convert a column of time stamps that are currently of type object to proper datetime. When using pd.to_datetime() on the column I got this error OutOfBoundsDatetime: Out of bounds ...
MikeB2019x's user avatar
  • 1,329
1 vote
1 answer
63 views

I try to introduce an alternative way to localize Date expressions using IntlDateFormatter with DateTime. There is a strange behaviour depending on the day that I use. So I must have done an error in ...
user2390325's user avatar
0 votes
0 answers
64 views

I am a newbie at VB.NET coding. I am currently trying to make a real time line chart in WinForms, but I am struggling with zooming in the chart. My chart has the range of random number generated by a ...
Cheryl's user avatar
  • 11
1 vote
1 answer
110 views

I don't want to use Google Apps Scripts, just formulas so that this can be display/edited on a mobile device while offline. [![In column B, I want to put timestamps when a checkbox in Column D becomes ...
Tyler Depke's user avatar
-1 votes
1 answer
102 views

I have power shell code which extracts a date from a different source and converts it: $dtStart = [DateTime]::ParseExact($StartDate.toString().Substring(0, 10).Trim(), 'M/d/yyyy', $null).ToString('dd/...
Joly's user avatar
  • 3,344
1 vote
1 answer
119 views

I have string column in polars dataframe with multiple datetime formats and I am using following code to convert datatype of column from string into datetime. import polars as pl df = pl.from_dict({'...
dikesh's user avatar
  • 3,135
2 votes
1 answer
138 views

I have a data frame and I am trying to convert the time column into a datetime format. The first step I did was: data['time'] = data.time data['time']=pd.to_datetime(data['time'], format='%H:%M:%S.%f')...
Hamza Rehan's user avatar
2 votes
4 answers
230 views

I have a dataframe where each row represents a detection of a fish. The fish can be either, Brown Trout (Fish.ID starts with TB_) or Salmon/Parr (Fish.ID starts with TA_). I want to create a new ...
Kristen Cyr's user avatar

15 30 50 per page
1
2 3 4 5
4765