Date overlapping during a period in R
up vote
-1
down vote
favorite
we have employees joining and leaving over a period of time. I want to calculate number of persons serving during a period. doj - date of joining, dol - date of leaving is filled for those who have left organisation.
Interval periods can be Year (within certain date range) ie. 01-10-2016
to 30-09-2017
and so on
In this way I should be able to summarise persons during last 5 years
2014 2015 2016 2017 2018
r date intervals overlap
add a comment |
up vote
-1
down vote
favorite
we have employees joining and leaving over a period of time. I want to calculate number of persons serving during a period. doj - date of joining, dol - date of leaving is filled for those who have left organisation.
Interval periods can be Year (within certain date range) ie. 01-10-2016
to 30-09-2017
and so on
In this way I should be able to summarise persons during last 5 years
2014 2015 2016 2017 2018
r date intervals overlap
Please provide example input, and expected output.
– zx8754
2 days ago
Extract year "YYYY" fromdol
, then group by count.
– zx8754
2 days ago
library(lubridate) DOJ =as.Date(c( "2014-11-01", "2012-11-01", "2016-11-01", "2011-11-01", "2012-11-01", "2012-11-01", "2012-11-01", "2016-11-01", "2011-11-01", "2015-11-01", "2014-11-01", "2010-11-01", "2018-11-01" , "2011-11-01")) DOL = DOJ + years(1) DOL #make some DOL as NA DOL[sample(1:10,size=4)] = NA DOL #Summary Required - How many persons were serving during the year/ period #01-10-2013 to 30-09-2014: 2013 and so on #2013 2014 2015 2016
– Dhiraj Upadhyaya
2 days ago
Person join at different dates and some leave. I want to know which all person were serving at least a day during each year period : ie DOJ > startpd and DOL <endpd or DOL should be NA ( for those not left). Please convert the sample vector to Data Frame... df = data.frame(DOJ, DOL) head(df) i had tried within, overlap, interval functions : Could not solve
– Dhiraj Upadhyaya
2 days ago
How to make a great R reproducible example?
– zx8754
2 days ago
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
we have employees joining and leaving over a period of time. I want to calculate number of persons serving during a period. doj - date of joining, dol - date of leaving is filled for those who have left organisation.
Interval periods can be Year (within certain date range) ie. 01-10-2016
to 30-09-2017
and so on
In this way I should be able to summarise persons during last 5 years
2014 2015 2016 2017 2018
r date intervals overlap
we have employees joining and leaving over a period of time. I want to calculate number of persons serving during a period. doj - date of joining, dol - date of leaving is filled for those who have left organisation.
Interval periods can be Year (within certain date range) ie. 01-10-2016
to 30-09-2017
and so on
In this way I should be able to summarise persons during last 5 years
2014 2015 2016 2017 2018
r date intervals overlap
r date intervals overlap
edited 2 days ago


sai saran
1,169123
1,169123
asked 2 days ago


Dhiraj Upadhyaya
192
192
Please provide example input, and expected output.
– zx8754
2 days ago
Extract year "YYYY" fromdol
, then group by count.
– zx8754
2 days ago
library(lubridate) DOJ =as.Date(c( "2014-11-01", "2012-11-01", "2016-11-01", "2011-11-01", "2012-11-01", "2012-11-01", "2012-11-01", "2016-11-01", "2011-11-01", "2015-11-01", "2014-11-01", "2010-11-01", "2018-11-01" , "2011-11-01")) DOL = DOJ + years(1) DOL #make some DOL as NA DOL[sample(1:10,size=4)] = NA DOL #Summary Required - How many persons were serving during the year/ period #01-10-2013 to 30-09-2014: 2013 and so on #2013 2014 2015 2016
– Dhiraj Upadhyaya
2 days ago
Person join at different dates and some leave. I want to know which all person were serving at least a day during each year period : ie DOJ > startpd and DOL <endpd or DOL should be NA ( for those not left). Please convert the sample vector to Data Frame... df = data.frame(DOJ, DOL) head(df) i had tried within, overlap, interval functions : Could not solve
– Dhiraj Upadhyaya
2 days ago
How to make a great R reproducible example?
– zx8754
2 days ago
add a comment |
Please provide example input, and expected output.
– zx8754
2 days ago
Extract year "YYYY" fromdol
, then group by count.
– zx8754
2 days ago
library(lubridate) DOJ =as.Date(c( "2014-11-01", "2012-11-01", "2016-11-01", "2011-11-01", "2012-11-01", "2012-11-01", "2012-11-01", "2016-11-01", "2011-11-01", "2015-11-01", "2014-11-01", "2010-11-01", "2018-11-01" , "2011-11-01")) DOL = DOJ + years(1) DOL #make some DOL as NA DOL[sample(1:10,size=4)] = NA DOL #Summary Required - How many persons were serving during the year/ period #01-10-2013 to 30-09-2014: 2013 and so on #2013 2014 2015 2016
– Dhiraj Upadhyaya
2 days ago
Person join at different dates and some leave. I want to know which all person were serving at least a day during each year period : ie DOJ > startpd and DOL <endpd or DOL should be NA ( for those not left). Please convert the sample vector to Data Frame... df = data.frame(DOJ, DOL) head(df) i had tried within, overlap, interval functions : Could not solve
– Dhiraj Upadhyaya
2 days ago
How to make a great R reproducible example?
– zx8754
2 days ago
Please provide example input, and expected output.
– zx8754
2 days ago
Please provide example input, and expected output.
– zx8754
2 days ago
Extract year "YYYY" from
dol
, then group by count.– zx8754
2 days ago
Extract year "YYYY" from
dol
, then group by count.– zx8754
2 days ago
library(lubridate) DOJ =as.Date(c( "2014-11-01", "2012-11-01", "2016-11-01", "2011-11-01", "2012-11-01", "2012-11-01", "2012-11-01", "2016-11-01", "2011-11-01", "2015-11-01", "2014-11-01", "2010-11-01", "2018-11-01" , "2011-11-01")) DOL = DOJ + years(1) DOL #make some DOL as NA DOL[sample(1:10,size=4)] = NA DOL #Summary Required - How many persons were serving during the year/ period #01-10-2013 to 30-09-2014: 2013 and so on #2013 2014 2015 2016
– Dhiraj Upadhyaya
2 days ago
library(lubridate) DOJ =as.Date(c( "2014-11-01", "2012-11-01", "2016-11-01", "2011-11-01", "2012-11-01", "2012-11-01", "2012-11-01", "2016-11-01", "2011-11-01", "2015-11-01", "2014-11-01", "2010-11-01", "2018-11-01" , "2011-11-01")) DOL = DOJ + years(1) DOL #make some DOL as NA DOL[sample(1:10,size=4)] = NA DOL #Summary Required - How many persons were serving during the year/ period #01-10-2013 to 30-09-2014: 2013 and so on #2013 2014 2015 2016
– Dhiraj Upadhyaya
2 days ago
Person join at different dates and some leave. I want to know which all person were serving at least a day during each year period : ie DOJ > startpd and DOL <endpd or DOL should be NA ( for those not left). Please convert the sample vector to Data Frame... df = data.frame(DOJ, DOL) head(df) i had tried within, overlap, interval functions : Could not solve
– Dhiraj Upadhyaya
2 days ago
Person join at different dates and some leave. I want to know which all person were serving at least a day during each year period : ie DOJ > startpd and DOL <endpd or DOL should be NA ( for those not left). Please convert the sample vector to Data Frame... df = data.frame(DOJ, DOL) head(df) i had tried within, overlap, interval functions : Could not solve
– Dhiraj Upadhyaya
2 days ago
How to make a great R reproducible example?
– zx8754
2 days ago
How to make a great R reproducible example?
– zx8754
2 days ago
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373665%2fdate-overlapping-during-a-period-in-r%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Please provide example input, and expected output.
– zx8754
2 days ago
Extract year "YYYY" from
dol
, then group by count.– zx8754
2 days ago
library(lubridate) DOJ =as.Date(c( "2014-11-01", "2012-11-01", "2016-11-01", "2011-11-01", "2012-11-01", "2012-11-01", "2012-11-01", "2016-11-01", "2011-11-01", "2015-11-01", "2014-11-01", "2010-11-01", "2018-11-01" , "2011-11-01")) DOL = DOJ + years(1) DOL #make some DOL as NA DOL[sample(1:10,size=4)] = NA DOL #Summary Required - How many persons were serving during the year/ period #01-10-2013 to 30-09-2014: 2013 and so on #2013 2014 2015 2016
– Dhiraj Upadhyaya
2 days ago
Person join at different dates and some leave. I want to know which all person were serving at least a day during each year period : ie DOJ > startpd and DOL <endpd or DOL should be NA ( for those not left). Please convert the sample vector to Data Frame... df = data.frame(DOJ, DOL) head(df) i had tried within, overlap, interval functions : Could not solve
– Dhiraj Upadhyaya
2 days ago
How to make a great R reproducible example?
– zx8754
2 days ago