How to select dataframe columns with lists and ranges combined
Please consider this df:
df = pd.DataFrame({'a':[1,2], 'b':[1,2], 'c':[1,2], 'd':[1,2], 'e':[1,2], 'f':[1,2], 'g':[1,2], 'h':[1,2]})
a b c d e f g h
0 1 1 1 1 1 1 1 1
1 2 2 2 2 2 2 2 2
How can I select the 1st, 4th, and 5th-7th columns?
What I tried:
df.iloc[:, [0, 3, np.arange(5,8)]]
ValueError: setting an array element with a sequence.
python pandas dataframe indexing
add a comment |
Please consider this df:
df = pd.DataFrame({'a':[1,2], 'b':[1,2], 'c':[1,2], 'd':[1,2], 'e':[1,2], 'f':[1,2], 'g':[1,2], 'h':[1,2]})
a b c d e f g h
0 1 1 1 1 1 1 1 1
1 2 2 2 2 2 2 2 2
How can I select the 1st, 4th, and 5th-7th columns?
What I tried:
df.iloc[:, [0, 3, np.arange(5,8)]]
ValueError: setting an array element with a sequence.
python pandas dataframe indexing
1
You may also find this post useful.
– pault
Mar 18 '18 at 1:31
add a comment |
Please consider this df:
df = pd.DataFrame({'a':[1,2], 'b':[1,2], 'c':[1,2], 'd':[1,2], 'e':[1,2], 'f':[1,2], 'g':[1,2], 'h':[1,2]})
a b c d e f g h
0 1 1 1 1 1 1 1 1
1 2 2 2 2 2 2 2 2
How can I select the 1st, 4th, and 5th-7th columns?
What I tried:
df.iloc[:, [0, 3, np.arange(5,8)]]
ValueError: setting an array element with a sequence.
python pandas dataframe indexing
Please consider this df:
df = pd.DataFrame({'a':[1,2], 'b':[1,2], 'c':[1,2], 'd':[1,2], 'e':[1,2], 'f':[1,2], 'g':[1,2], 'h':[1,2]})
a b c d e f g h
0 1 1 1 1 1 1 1 1
1 2 2 2 2 2 2 2 2
How can I select the 1st, 4th, and 5th-7th columns?
What I tried:
df.iloc[:, [0, 3, np.arange(5,8)]]
ValueError: setting an array element with a sequence.
python pandas dataframe indexing
python pandas dataframe indexing
edited Mar 18 '18 at 1:37
jpp
99.5k2161110
99.5k2161110
asked Mar 18 '18 at 1:25
SaeedSaeed
497411
497411
1
You may also find this post useful.
– pault
Mar 18 '18 at 1:31
add a comment |
1
You may also find this post useful.
– pault
Mar 18 '18 at 1:31
1
1
You may also find this post useful.
– pault
Mar 18 '18 at 1:31
You may also find this post useful.
– pault
Mar 18 '18 at 1:31
add a comment |
1 Answer
1
active
oldest
votes
You can do this:
df.iloc[:, [0, 3] + list(range(5,8))]
[0, 3] + list(range(5,8))
concatenates 2 lists, combining your explicit list with a list derived from your desired range.
Alternatively, you can use numpy.r
to build an indexing array for you:
import numpy as np
df.iloc[:, np.r_[0,3,5:8]]
np.r_[0,3,5:8] # array([0, 3, 5, 6, 7])
This would be useful, for example, if you have multiple ranges.
1
2nd approach is exactly what I needed. Thanks
– Saeed
Mar 18 '18 at 17:06
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%2f49343637%2fhow-to-select-dataframe-columns-with-lists-and-ranges-combined%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
You can do this:
df.iloc[:, [0, 3] + list(range(5,8))]
[0, 3] + list(range(5,8))
concatenates 2 lists, combining your explicit list with a list derived from your desired range.
Alternatively, you can use numpy.r
to build an indexing array for you:
import numpy as np
df.iloc[:, np.r_[0,3,5:8]]
np.r_[0,3,5:8] # array([0, 3, 5, 6, 7])
This would be useful, for example, if you have multiple ranges.
1
2nd approach is exactly what I needed. Thanks
– Saeed
Mar 18 '18 at 17:06
add a comment |
You can do this:
df.iloc[:, [0, 3] + list(range(5,8))]
[0, 3] + list(range(5,8))
concatenates 2 lists, combining your explicit list with a list derived from your desired range.
Alternatively, you can use numpy.r
to build an indexing array for you:
import numpy as np
df.iloc[:, np.r_[0,3,5:8]]
np.r_[0,3,5:8] # array([0, 3, 5, 6, 7])
This would be useful, for example, if you have multiple ranges.
1
2nd approach is exactly what I needed. Thanks
– Saeed
Mar 18 '18 at 17:06
add a comment |
You can do this:
df.iloc[:, [0, 3] + list(range(5,8))]
[0, 3] + list(range(5,8))
concatenates 2 lists, combining your explicit list with a list derived from your desired range.
Alternatively, you can use numpy.r
to build an indexing array for you:
import numpy as np
df.iloc[:, np.r_[0,3,5:8]]
np.r_[0,3,5:8] # array([0, 3, 5, 6, 7])
This would be useful, for example, if you have multiple ranges.
You can do this:
df.iloc[:, [0, 3] + list(range(5,8))]
[0, 3] + list(range(5,8))
concatenates 2 lists, combining your explicit list with a list derived from your desired range.
Alternatively, you can use numpy.r
to build an indexing array for you:
import numpy as np
df.iloc[:, np.r_[0,3,5:8]]
np.r_[0,3,5:8] # array([0, 3, 5, 6, 7])
This would be useful, for example, if you have multiple ranges.
edited Mar 18 '18 at 1:35
answered Mar 18 '18 at 1:28
jppjpp
99.5k2161110
99.5k2161110
1
2nd approach is exactly what I needed. Thanks
– Saeed
Mar 18 '18 at 17:06
add a comment |
1
2nd approach is exactly what I needed. Thanks
– Saeed
Mar 18 '18 at 17:06
1
1
2nd approach is exactly what I needed. Thanks
– Saeed
Mar 18 '18 at 17:06
2nd approach is exactly what I needed. Thanks
– Saeed
Mar 18 '18 at 17:06
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%2f49343637%2fhow-to-select-dataframe-columns-with-lists-and-ranges-combined%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
1
You may also find this post useful.
– pault
Mar 18 '18 at 1:31