Subsetting data based off of dates from multiple rowsHow to return only the Date from a SQL Server DateTime datatypeSelecting a row based on the properties of the row beforeefficiently data subset based on data frame columns matching in RHow to subset rows for a specific range of dates in r?sub-setting rows based on dates in RExtracting rows based on ID and date. R-baseImprove efficiency linking data from two data framesHow to plot graphic from several data.frameJoin two data sets based on one columnMerge two data frames based time range and unique ID

Why force the nose of 737 Max down in the first place?

How well would the Moon protect the Earth from an Asteroid?

Why was the LRV's speed gauge displaying metric units?

Why put copper in between battery contacts and clamps?

Why is softmax function used to calculate probabilities although we can divide each value by the sum of the vector?

What is the German equivalent of the proverb 水清ければ魚棲まず (if the water is clear, fish won't live there)?

How can I kill my goat?

Who said "one can be a powerful king with a very small sceptre"?

Do the books ever say oliphaunts aren’t elephants?

GNU sort stable sort when sort does not know sort order

Why is my fluorescent tube orange on one side, white on the other and dark in the middle?

Golden Guardian removed before death related trigger

How do I make my photos have more impact?

Surviving a planet collision?

Self-deportation of American Citizens from US

2010 (?) science fiction TV show with new world

How to store my pliers and wire cutters on my desk?

Why would anyone ever invest in a cash-only etf?

Exploiting the delay when a festival ticket is scanned

Classic vs Modern Experience

8086 stack segment and avoiding overflow in interrupts

Complaints from (junior) developers against solution architects: how can we show the benefits of our work and improve relationships?

How to have poached eggs in "sphere form"?

A variant of the Multiple Traveling Salesman Problem



Subsetting data based off of dates from multiple rows


How to return only the Date from a SQL Server DateTime datatypeSelecting a row based on the properties of the row beforeefficiently data subset based on data frame columns matching in RHow to subset rows for a specific range of dates in r?sub-setting rows based on dates in RExtracting rows based on ID and date. R-baseImprove efficiency linking data from two data framesHow to plot graphic from several data.frameJoin two data sets based on one columnMerge two data frames based time range and unique ID






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I have data on patients who have readmitted to a hospital within 30 days of a previous admission at that hospital. Many patients will readmit several times, however we only are coding it as a readmission if it is within 30 days of a prior admission.



Here is an example:



name stay at hospital admitdate readmission
john doe 1 1/1/2018 no
john doe 2 1/21/2018 yes
john doe 3 4/2/2018 no
john doe 4 10/2/2018 no


I'm looking to subset rows where readmission = yes and the row with readmission = no with the closest admission date to that row where readmission= yes.



For this example that means I would want to subset only the first two rows. I want to subset row two because readmission = "yes" and then I want to subset row 1 because the admit date 1/1/2018 is closest to the admit date from the readmission = "yes" row (admit date 1/21/2018).



df <- df
df1 <- df[df$Readmission == "no", ]
df2 <- aggregate(df1$Date, by = list(df$Name), FUN = "max")
df3 <- rbind(df[df$Readmission == "yes", ], df2)


This did not work because it pulls the "max" date where readmission = "no" (stay 4) but I want it to pull stay 1.



I want to output to give me a dataset of these two rows:



name stay at hospital admitdate readmission
john doe 1 1/1/2018 no
john doe 2 1/21/2018 yes









share|improve this question
























  • Just out of curiosity, is this the extent of your actual situation? Or would you likely have multiple observations where readmission=="yes" and you'd be looking for the closest observation to that one. I think that matters a bit for being able to provide you with a universal solution vs. a solution only for your example.

    – phalteman
    Mar 26 at 22:25











  • I will have multiple observations where readmission == "yes" and I'm looking for the closest observation to that one.

    – Jess C
    Mar 27 at 13:26

















1















I have data on patients who have readmitted to a hospital within 30 days of a previous admission at that hospital. Many patients will readmit several times, however we only are coding it as a readmission if it is within 30 days of a prior admission.



Here is an example:



name stay at hospital admitdate readmission
john doe 1 1/1/2018 no
john doe 2 1/21/2018 yes
john doe 3 4/2/2018 no
john doe 4 10/2/2018 no


I'm looking to subset rows where readmission = yes and the row with readmission = no with the closest admission date to that row where readmission= yes.



For this example that means I would want to subset only the first two rows. I want to subset row two because readmission = "yes" and then I want to subset row 1 because the admit date 1/1/2018 is closest to the admit date from the readmission = "yes" row (admit date 1/21/2018).



df <- df
df1 <- df[df$Readmission == "no", ]
df2 <- aggregate(df1$Date, by = list(df$Name), FUN = "max")
df3 <- rbind(df[df$Readmission == "yes", ], df2)


This did not work because it pulls the "max" date where readmission = "no" (stay 4) but I want it to pull stay 1.



I want to output to give me a dataset of these two rows:



name stay at hospital admitdate readmission
john doe 1 1/1/2018 no
john doe 2 1/21/2018 yes









share|improve this question
























  • Just out of curiosity, is this the extent of your actual situation? Or would you likely have multiple observations where readmission=="yes" and you'd be looking for the closest observation to that one. I think that matters a bit for being able to provide you with a universal solution vs. a solution only for your example.

    – phalteman
    Mar 26 at 22:25











  • I will have multiple observations where readmission == "yes" and I'm looking for the closest observation to that one.

    – Jess C
    Mar 27 at 13:26













1












1








1








I have data on patients who have readmitted to a hospital within 30 days of a previous admission at that hospital. Many patients will readmit several times, however we only are coding it as a readmission if it is within 30 days of a prior admission.



Here is an example:



name stay at hospital admitdate readmission
john doe 1 1/1/2018 no
john doe 2 1/21/2018 yes
john doe 3 4/2/2018 no
john doe 4 10/2/2018 no


I'm looking to subset rows where readmission = yes and the row with readmission = no with the closest admission date to that row where readmission= yes.



For this example that means I would want to subset only the first two rows. I want to subset row two because readmission = "yes" and then I want to subset row 1 because the admit date 1/1/2018 is closest to the admit date from the readmission = "yes" row (admit date 1/21/2018).



df <- df
df1 <- df[df$Readmission == "no", ]
df2 <- aggregate(df1$Date, by = list(df$Name), FUN = "max")
df3 <- rbind(df[df$Readmission == "yes", ], df2)


This did not work because it pulls the "max" date where readmission = "no" (stay 4) but I want it to pull stay 1.



I want to output to give me a dataset of these two rows:



name stay at hospital admitdate readmission
john doe 1 1/1/2018 no
john doe 2 1/21/2018 yes









share|improve this question














I have data on patients who have readmitted to a hospital within 30 days of a previous admission at that hospital. Many patients will readmit several times, however we only are coding it as a readmission if it is within 30 days of a prior admission.



Here is an example:



name stay at hospital admitdate readmission
john doe 1 1/1/2018 no
john doe 2 1/21/2018 yes
john doe 3 4/2/2018 no
john doe 4 10/2/2018 no


I'm looking to subset rows where readmission = yes and the row with readmission = no with the closest admission date to that row where readmission= yes.



For this example that means I would want to subset only the first two rows. I want to subset row two because readmission = "yes" and then I want to subset row 1 because the admit date 1/1/2018 is closest to the admit date from the readmission = "yes" row (admit date 1/21/2018).



df <- df
df1 <- df[df$Readmission == "no", ]
df2 <- aggregate(df1$Date, by = list(df$Name), FUN = "max")
df3 <- rbind(df[df$Readmission == "yes", ], df2)


This did not work because it pulls the "max" date where readmission = "no" (stay 4) but I want it to pull stay 1.



I want to output to give me a dataset of these two rows:



name stay at hospital admitdate readmission
john doe 1 1/1/2018 no
john doe 2 1/21/2018 yes






r date subset






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 26 at 20:33









Jess CJess C

61 bronze badge




61 bronze badge















  • Just out of curiosity, is this the extent of your actual situation? Or would you likely have multiple observations where readmission=="yes" and you'd be looking for the closest observation to that one. I think that matters a bit for being able to provide you with a universal solution vs. a solution only for your example.

    – phalteman
    Mar 26 at 22:25











  • I will have multiple observations where readmission == "yes" and I'm looking for the closest observation to that one.

    – Jess C
    Mar 27 at 13:26

















  • Just out of curiosity, is this the extent of your actual situation? Or would you likely have multiple observations where readmission=="yes" and you'd be looking for the closest observation to that one. I think that matters a bit for being able to provide you with a universal solution vs. a solution only for your example.

    – phalteman
    Mar 26 at 22:25











  • I will have multiple observations where readmission == "yes" and I'm looking for the closest observation to that one.

    – Jess C
    Mar 27 at 13:26
















Just out of curiosity, is this the extent of your actual situation? Or would you likely have multiple observations where readmission=="yes" and you'd be looking for the closest observation to that one. I think that matters a bit for being able to provide you with a universal solution vs. a solution only for your example.

– phalteman
Mar 26 at 22:25





Just out of curiosity, is this the extent of your actual situation? Or would you likely have multiple observations where readmission=="yes" and you'd be looking for the closest observation to that one. I think that matters a bit for being able to provide you with a universal solution vs. a solution only for your example.

– phalteman
Mar 26 at 22:25













I will have multiple observations where readmission == "yes" and I'm looking for the closest observation to that one.

– Jess C
Mar 27 at 13:26





I will have multiple observations where readmission == "yes" and I'm looking for the closest observation to that one.

– Jess C
Mar 27 at 13:26












0






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',
autoActivateHeartbeat: false,
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%2f55365766%2fsubsetting-data-based-off-of-dates-from-multiple-rows%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55365766%2fsubsetting-data-based-off-of-dates-from-multiple-rows%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

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript