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









share|improve this question
























  • 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















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









share|improve this question
























  • 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













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









share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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" 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


















  • 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
















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

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















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






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














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





















































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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter