python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Get the max date of dates in a column that are > than 6 days prior to another date column
I have data where I want to compare what date was given 6 days or more prior to another date.
Example: the actual date time is 15th Jan 2022, I would like to see what the estimated time was 6 or more ...

T walker
Votes: 0
Answers: 1
set date format for knitr document
Is there a way to set a global option (either through options() or knitr::opts_chunk$set() or something else) to set all dates in a knitr/Rmd document to be formatted in a particular style. So instead...

vorpal
Votes: 0
Answers: 2
How can i concat Year, day, Hour and minute of a Dataframe
I had a Dataframe with this kind of date
Year
Day
Hour
Minute
2017
244
0
0
2017
244
0
1
2017
244
0
2
I want to create a new column on this DataFrame showing the date +hour minute but I...
Miguel Ribeiro Godoy
Votes: 0
Answers: 3
Use one of two dates in where clause
I need to delete all records in a table where the CreatedDate or ModifiedDate is greater than x. The logic is as follows:
If ModifiedDate is not null then use this value
Otherwise use the CreatedDate...
Newman
Votes: 0
Answers: 2