How to filter dateframe by end of business month ('BM') using datetime?
I'm trying to look at the adjusted close stock values of a particular stock at the end of the month. I was able to get a dataframe of dates and adjclose values, but I can't seem to be able to filter that dataframe to include only dates that are end of month and their corresponding adj close value.
apple_adjclose = apple_stock[['date','adjclose']]
this is the dataframe which includes dates for 2 years in the following format YYYY-MM-DD, and adjclose has float values. Help is really appreciated!
Sample picture of input and output I'm getting
(still haven't figured out how to put tables in my questions :)
Other attempt
Attempt 3
Solved here
python pandas datetime data-science
add a comment |
I'm trying to look at the adjusted close stock values of a particular stock at the end of the month. I was able to get a dataframe of dates and adjclose values, but I can't seem to be able to filter that dataframe to include only dates that are end of month and their corresponding adj close value.
apple_adjclose = apple_stock[['date','adjclose']]
this is the dataframe which includes dates for 2 years in the following format YYYY-MM-DD, and adjclose has float values. Help is really appreciated!
Sample picture of input and output I'm getting
(still haven't figured out how to put tables in my questions :)
Other attempt
Attempt 3
Solved here
python pandas datetime data-science
2
Welcome to Stackoverflow. Add some sample data and expected output.
– min2bro
Nov 23 '18 at 2:52
@min2bro Thanks! I just added a picture of my input and output.
– Omar
Nov 23 '18 at 3:14
add a comment |
I'm trying to look at the adjusted close stock values of a particular stock at the end of the month. I was able to get a dataframe of dates and adjclose values, but I can't seem to be able to filter that dataframe to include only dates that are end of month and their corresponding adj close value.
apple_adjclose = apple_stock[['date','adjclose']]
this is the dataframe which includes dates for 2 years in the following format YYYY-MM-DD, and adjclose has float values. Help is really appreciated!
Sample picture of input and output I'm getting
(still haven't figured out how to put tables in my questions :)
Other attempt
Attempt 3
Solved here
python pandas datetime data-science
I'm trying to look at the adjusted close stock values of a particular stock at the end of the month. I was able to get a dataframe of dates and adjclose values, but I can't seem to be able to filter that dataframe to include only dates that are end of month and their corresponding adj close value.
apple_adjclose = apple_stock[['date','adjclose']]
this is the dataframe which includes dates for 2 years in the following format YYYY-MM-DD, and adjclose has float values. Help is really appreciated!
Sample picture of input and output I'm getting
(still haven't figured out how to put tables in my questions :)
Other attempt
Attempt 3
Solved here
python pandas datetime data-science
python pandas datetime data-science
edited Nov 23 '18 at 12:31
asked Nov 23 '18 at 2:40
Omar
236
236
2
Welcome to Stackoverflow. Add some sample data and expected output.
– min2bro
Nov 23 '18 at 2:52
@min2bro Thanks! I just added a picture of my input and output.
– Omar
Nov 23 '18 at 3:14
add a comment |
2
Welcome to Stackoverflow. Add some sample data and expected output.
– min2bro
Nov 23 '18 at 2:52
@min2bro Thanks! I just added a picture of my input and output.
– Omar
Nov 23 '18 at 3:14
2
2
Welcome to Stackoverflow. Add some sample data and expected output.
– min2bro
Nov 23 '18 at 2:52
Welcome to Stackoverflow. Add some sample data and expected output.
– min2bro
Nov 23 '18 at 2:52
@min2bro Thanks! I just added a picture of my input and output.
– Omar
Nov 23 '18 at 3:14
@min2bro Thanks! I just added a picture of my input and output.
– Omar
Nov 23 '18 at 3:14
add a comment |
2 Answers
2
active
oldest
votes
Lets say you have a dataframe like this with two columns,
dates = pd.date_range('01/01/2016', '12/31/2017')
df = pd.DataFrame({'date':dates,'adjclose':np.random.randint(100,200, len(dates))})
You can create an instance of offsets BMonthEnd to get the dates with MonthEnd freq and slice of the dataframe
df.loc[df.date.isin(df.date + pd.offsets.BMonthEnd(1))]
adjclose date
28 128 2016-01-29
59 193 2016-02-29
90 167 2016-03-31
119 185 2016-04-29
151 133 2016-05-31
181 184 2016-06-30
I just added a picture of my attempt, the dateframe I have has dates as non-null objects. I tried apple_adjclose.loc[apple_adjclose.date.isin(apple_adjclose.date + pd.offsets.BMonthEnd(1))] but it didn't seem to work. GotTypeError: Argument 'other' has incorrect type (expected datetime.datetime, got str)
– Omar
Nov 23 '18 at 3:23
The image doesn't show my solution
– Vaishali
Nov 23 '18 at 3:25
Can you also print apple_stock.dtypes
– Vaishali
Nov 23 '18 at 3:26
added screenshot
– Omar
Nov 23 '18 at 3:30
Your date column is of type object, not datetime. First convert it using df[‘date’] = pd.to_datetime(df[‘date’])
– Vaishali
Nov 23 '18 at 3:50
|
show 4 more comments
converted date from object to datetime then used .asfreq() to get what I needed. Solution can be found here:
Solution
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%2f53440044%2fhow-to-filter-dateframe-by-end-of-business-month-bm-using-datetime%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Lets say you have a dataframe like this with two columns,
dates = pd.date_range('01/01/2016', '12/31/2017')
df = pd.DataFrame({'date':dates,'adjclose':np.random.randint(100,200, len(dates))})
You can create an instance of offsets BMonthEnd to get the dates with MonthEnd freq and slice of the dataframe
df.loc[df.date.isin(df.date + pd.offsets.BMonthEnd(1))]
adjclose date
28 128 2016-01-29
59 193 2016-02-29
90 167 2016-03-31
119 185 2016-04-29
151 133 2016-05-31
181 184 2016-06-30
I just added a picture of my attempt, the dateframe I have has dates as non-null objects. I tried apple_adjclose.loc[apple_adjclose.date.isin(apple_adjclose.date + pd.offsets.BMonthEnd(1))] but it didn't seem to work. GotTypeError: Argument 'other' has incorrect type (expected datetime.datetime, got str)
– Omar
Nov 23 '18 at 3:23
The image doesn't show my solution
– Vaishali
Nov 23 '18 at 3:25
Can you also print apple_stock.dtypes
– Vaishali
Nov 23 '18 at 3:26
added screenshot
– Omar
Nov 23 '18 at 3:30
Your date column is of type object, not datetime. First convert it using df[‘date’] = pd.to_datetime(df[‘date’])
– Vaishali
Nov 23 '18 at 3:50
|
show 4 more comments
Lets say you have a dataframe like this with two columns,
dates = pd.date_range('01/01/2016', '12/31/2017')
df = pd.DataFrame({'date':dates,'adjclose':np.random.randint(100,200, len(dates))})
You can create an instance of offsets BMonthEnd to get the dates with MonthEnd freq and slice of the dataframe
df.loc[df.date.isin(df.date + pd.offsets.BMonthEnd(1))]
adjclose date
28 128 2016-01-29
59 193 2016-02-29
90 167 2016-03-31
119 185 2016-04-29
151 133 2016-05-31
181 184 2016-06-30
I just added a picture of my attempt, the dateframe I have has dates as non-null objects. I tried apple_adjclose.loc[apple_adjclose.date.isin(apple_adjclose.date + pd.offsets.BMonthEnd(1))] but it didn't seem to work. GotTypeError: Argument 'other' has incorrect type (expected datetime.datetime, got str)
– Omar
Nov 23 '18 at 3:23
The image doesn't show my solution
– Vaishali
Nov 23 '18 at 3:25
Can you also print apple_stock.dtypes
– Vaishali
Nov 23 '18 at 3:26
added screenshot
– Omar
Nov 23 '18 at 3:30
Your date column is of type object, not datetime. First convert it using df[‘date’] = pd.to_datetime(df[‘date’])
– Vaishali
Nov 23 '18 at 3:50
|
show 4 more comments
Lets say you have a dataframe like this with two columns,
dates = pd.date_range('01/01/2016', '12/31/2017')
df = pd.DataFrame({'date':dates,'adjclose':np.random.randint(100,200, len(dates))})
You can create an instance of offsets BMonthEnd to get the dates with MonthEnd freq and slice of the dataframe
df.loc[df.date.isin(df.date + pd.offsets.BMonthEnd(1))]
adjclose date
28 128 2016-01-29
59 193 2016-02-29
90 167 2016-03-31
119 185 2016-04-29
151 133 2016-05-31
181 184 2016-06-30
Lets say you have a dataframe like this with two columns,
dates = pd.date_range('01/01/2016', '12/31/2017')
df = pd.DataFrame({'date':dates,'adjclose':np.random.randint(100,200, len(dates))})
You can create an instance of offsets BMonthEnd to get the dates with MonthEnd freq and slice of the dataframe
df.loc[df.date.isin(df.date + pd.offsets.BMonthEnd(1))]
adjclose date
28 128 2016-01-29
59 193 2016-02-29
90 167 2016-03-31
119 185 2016-04-29
151 133 2016-05-31
181 184 2016-06-30
answered Nov 23 '18 at 3:11
Vaishali
17.6k31028
17.6k31028
I just added a picture of my attempt, the dateframe I have has dates as non-null objects. I tried apple_adjclose.loc[apple_adjclose.date.isin(apple_adjclose.date + pd.offsets.BMonthEnd(1))] but it didn't seem to work. GotTypeError: Argument 'other' has incorrect type (expected datetime.datetime, got str)
– Omar
Nov 23 '18 at 3:23
The image doesn't show my solution
– Vaishali
Nov 23 '18 at 3:25
Can you also print apple_stock.dtypes
– Vaishali
Nov 23 '18 at 3:26
added screenshot
– Omar
Nov 23 '18 at 3:30
Your date column is of type object, not datetime. First convert it using df[‘date’] = pd.to_datetime(df[‘date’])
– Vaishali
Nov 23 '18 at 3:50
|
show 4 more comments
I just added a picture of my attempt, the dateframe I have has dates as non-null objects. I tried apple_adjclose.loc[apple_adjclose.date.isin(apple_adjclose.date + pd.offsets.BMonthEnd(1))] but it didn't seem to work. GotTypeError: Argument 'other' has incorrect type (expected datetime.datetime, got str)
– Omar
Nov 23 '18 at 3:23
The image doesn't show my solution
– Vaishali
Nov 23 '18 at 3:25
Can you also print apple_stock.dtypes
– Vaishali
Nov 23 '18 at 3:26
added screenshot
– Omar
Nov 23 '18 at 3:30
Your date column is of type object, not datetime. First convert it using df[‘date’] = pd.to_datetime(df[‘date’])
– Vaishali
Nov 23 '18 at 3:50
I just added a picture of my attempt, the dateframe I have has dates as non-null objects. I tried apple_adjclose.loc[apple_adjclose.date.isin(apple_adjclose.date + pd.offsets.BMonthEnd(1))] but it didn't seem to work. GotTypeError: Argument 'other' has incorrect type (expected datetime.datetime, got str)
– Omar
Nov 23 '18 at 3:23
I just added a picture of my attempt, the dateframe I have has dates as non-null objects. I tried apple_adjclose.loc[apple_adjclose.date.isin(apple_adjclose.date + pd.offsets.BMonthEnd(1))] but it didn't seem to work. GotTypeError: Argument 'other' has incorrect type (expected datetime.datetime, got str)
– Omar
Nov 23 '18 at 3:23
The image doesn't show my solution
– Vaishali
Nov 23 '18 at 3:25
The image doesn't show my solution
– Vaishali
Nov 23 '18 at 3:25
Can you also print apple_stock.dtypes
– Vaishali
Nov 23 '18 at 3:26
Can you also print apple_stock.dtypes
– Vaishali
Nov 23 '18 at 3:26
added screenshot
– Omar
Nov 23 '18 at 3:30
added screenshot
– Omar
Nov 23 '18 at 3:30
Your date column is of type object, not datetime. First convert it using df[‘date’] = pd.to_datetime(df[‘date’])
– Vaishali
Nov 23 '18 at 3:50
Your date column is of type object, not datetime. First convert it using df[‘date’] = pd.to_datetime(df[‘date’])
– Vaishali
Nov 23 '18 at 3:50
|
show 4 more comments
converted date from object to datetime then used .asfreq() to get what I needed. Solution can be found here:
Solution
add a comment |
converted date from object to datetime then used .asfreq() to get what I needed. Solution can be found here:
Solution
add a comment |
converted date from object to datetime then used .asfreq() to get what I needed. Solution can be found here:
Solution
converted date from object to datetime then used .asfreq() to get what I needed. Solution can be found here:
Solution
answered Nov 23 '18 at 22:55
Omar
236
236
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53440044%2fhow-to-filter-dateframe-by-end-of-business-month-bm-using-datetime%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
2
Welcome to Stackoverflow. Add some sample data and expected output.
– min2bro
Nov 23 '18 at 2:52
@min2bro Thanks! I just added a picture of my input and output.
– Omar
Nov 23 '18 at 3:14