R min and max function does not work for dates
I have a dataframe,df, with a date variable.
locationID organe
<int> <date>
1 1940-04-01
2 1938-07-01
3 1938-07-01
4 1938-07-01
I want to compare the dates with a fixed time point,like "1938-12-1", to find the earliest date. I used the min function but failed.
df %>% mutate(earliest=min(organe,as.Date("1938-12-1")))
locationID organe earliest
<int> <date> <date>
1 1940-04-01 1937-09-01
2 1938-07-01 1937-09-01
3 1938-07-01 1937-09-01
4 1938-07-01 1937-09-01
I don't know why min function does not work here, though it works well for the following situation
min(as.Date("1938-07-01"),as.Date("1938-12-1"))
[1] "1938-07-01"
Could anybody help?
r date min
add a comment |
I have a dataframe,df, with a date variable.
locationID organe
<int> <date>
1 1940-04-01
2 1938-07-01
3 1938-07-01
4 1938-07-01
I want to compare the dates with a fixed time point,like "1938-12-1", to find the earliest date. I used the min function but failed.
df %>% mutate(earliest=min(organe,as.Date("1938-12-1")))
locationID organe earliest
<int> <date> <date>
1 1940-04-01 1937-09-01
2 1938-07-01 1937-09-01
3 1938-07-01 1937-09-01
4 1938-07-01 1937-09-01
I don't know why min function does not work here, though it works well for the following situation
min(as.Date("1938-07-01"),as.Date("1938-12-1"))
[1] "1938-07-01"
Could anybody help?
r date min
add a comment |
I have a dataframe,df, with a date variable.
locationID organe
<int> <date>
1 1940-04-01
2 1938-07-01
3 1938-07-01
4 1938-07-01
I want to compare the dates with a fixed time point,like "1938-12-1", to find the earliest date. I used the min function but failed.
df %>% mutate(earliest=min(organe,as.Date("1938-12-1")))
locationID organe earliest
<int> <date> <date>
1 1940-04-01 1937-09-01
2 1938-07-01 1937-09-01
3 1938-07-01 1937-09-01
4 1938-07-01 1937-09-01
I don't know why min function does not work here, though it works well for the following situation
min(as.Date("1938-07-01"),as.Date("1938-12-1"))
[1] "1938-07-01"
Could anybody help?
r date min
I have a dataframe,df, with a date variable.
locationID organe
<int> <date>
1 1940-04-01
2 1938-07-01
3 1938-07-01
4 1938-07-01
I want to compare the dates with a fixed time point,like "1938-12-1", to find the earliest date. I used the min function but failed.
df %>% mutate(earliest=min(organe,as.Date("1938-12-1")))
locationID organe earliest
<int> <date> <date>
1 1940-04-01 1937-09-01
2 1938-07-01 1937-09-01
3 1938-07-01 1937-09-01
4 1938-07-01 1937-09-01
I don't know why min function does not work here, though it works well for the following situation
min(as.Date("1938-07-01"),as.Date("1938-12-1"))
[1] "1938-07-01"
Could anybody help?
r date min
r date min
asked Nov 12 '18 at 22:20
Li FeiyueLi Feiyue
154
154
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
We can use pmin/pmax to get the minimum/maximum when one or both of the input argument is a vector of length greater than 1 (if both have length greater than 1, assumes the length to be same)
df %>%
mutate(earliest=pmin(organe,as.Date("1938-12-1")))
# A tibble: 4 x 3
# locationID organe earliest
# <int> <date> <date>
#1 1 1940-04-01 1938-12-01
#2 2 1938-07-01 1938-07-01
#3 3 1938-07-01 1938-07-01
#4 4 1938-07-01 1938-07-01
Or apply min after rowwise
df %>%
rowwise %>%
mutate(earliest=min(organe, as.Date("1938-12-1")))
Note that min returns a single value as output i.e.
min(5:1, 3)
#[1] 1
min(5:3, 1)
#[1] 1
For a vectorized minimum, use pmin. According to ?min
pmax*() and pmin*() take one or more vectors as arguments, recycle them to common length and return a single vector giving the ‘parallel’ maxima (or minima) of the argument vectors.
add a comment |
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
});
}
});
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%2f53270928%2fr-min-and-max-function-does-not-work-for-dates%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
We can use pmin/pmax to get the minimum/maximum when one or both of the input argument is a vector of length greater than 1 (if both have length greater than 1, assumes the length to be same)
df %>%
mutate(earliest=pmin(organe,as.Date("1938-12-1")))
# A tibble: 4 x 3
# locationID organe earliest
# <int> <date> <date>
#1 1 1940-04-01 1938-12-01
#2 2 1938-07-01 1938-07-01
#3 3 1938-07-01 1938-07-01
#4 4 1938-07-01 1938-07-01
Or apply min after rowwise
df %>%
rowwise %>%
mutate(earliest=min(organe, as.Date("1938-12-1")))
Note that min returns a single value as output i.e.
min(5:1, 3)
#[1] 1
min(5:3, 1)
#[1] 1
For a vectorized minimum, use pmin. According to ?min
pmax*() and pmin*() take one or more vectors as arguments, recycle them to common length and return a single vector giving the ‘parallel’ maxima (or minima) of the argument vectors.
add a comment |
We can use pmin/pmax to get the minimum/maximum when one or both of the input argument is a vector of length greater than 1 (if both have length greater than 1, assumes the length to be same)
df %>%
mutate(earliest=pmin(organe,as.Date("1938-12-1")))
# A tibble: 4 x 3
# locationID organe earliest
# <int> <date> <date>
#1 1 1940-04-01 1938-12-01
#2 2 1938-07-01 1938-07-01
#3 3 1938-07-01 1938-07-01
#4 4 1938-07-01 1938-07-01
Or apply min after rowwise
df %>%
rowwise %>%
mutate(earliest=min(organe, as.Date("1938-12-1")))
Note that min returns a single value as output i.e.
min(5:1, 3)
#[1] 1
min(5:3, 1)
#[1] 1
For a vectorized minimum, use pmin. According to ?min
pmax*() and pmin*() take one or more vectors as arguments, recycle them to common length and return a single vector giving the ‘parallel’ maxima (or minima) of the argument vectors.
add a comment |
We can use pmin/pmax to get the minimum/maximum when one or both of the input argument is a vector of length greater than 1 (if both have length greater than 1, assumes the length to be same)
df %>%
mutate(earliest=pmin(organe,as.Date("1938-12-1")))
# A tibble: 4 x 3
# locationID organe earliest
# <int> <date> <date>
#1 1 1940-04-01 1938-12-01
#2 2 1938-07-01 1938-07-01
#3 3 1938-07-01 1938-07-01
#4 4 1938-07-01 1938-07-01
Or apply min after rowwise
df %>%
rowwise %>%
mutate(earliest=min(organe, as.Date("1938-12-1")))
Note that min returns a single value as output i.e.
min(5:1, 3)
#[1] 1
min(5:3, 1)
#[1] 1
For a vectorized minimum, use pmin. According to ?min
pmax*() and pmin*() take one or more vectors as arguments, recycle them to common length and return a single vector giving the ‘parallel’ maxima (or minima) of the argument vectors.
We can use pmin/pmax to get the minimum/maximum when one or both of the input argument is a vector of length greater than 1 (if both have length greater than 1, assumes the length to be same)
df %>%
mutate(earliest=pmin(organe,as.Date("1938-12-1")))
# A tibble: 4 x 3
# locationID organe earliest
# <int> <date> <date>
#1 1 1940-04-01 1938-12-01
#2 2 1938-07-01 1938-07-01
#3 3 1938-07-01 1938-07-01
#4 4 1938-07-01 1938-07-01
Or apply min after rowwise
df %>%
rowwise %>%
mutate(earliest=min(organe, as.Date("1938-12-1")))
Note that min returns a single value as output i.e.
min(5:1, 3)
#[1] 1
min(5:3, 1)
#[1] 1
For a vectorized minimum, use pmin. According to ?min
pmax*() and pmin*() take one or more vectors as arguments, recycle them to common length and return a single vector giving the ‘parallel’ maxima (or minima) of the argument vectors.
edited Nov 12 '18 at 22:35
answered Nov 12 '18 at 22:21
akrunakrun
400k13189264
400k13189264
add a comment |
add a comment |
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.
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%2f53270928%2fr-min-and-max-function-does-not-work-for-dates%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