How can I find maximum in a multidimensional numpy array?
up vote
-1
down vote
favorite
I have a numpy array of these dimensions
data.shape
(categories, models, types, events, days) -> (10, 11, 50, 100, 14)
I want to calculate the absolute maximum value in each models
. I am doing this:
np.max(data, axis=(2,3,4))
I have a (10,11)
shape array after this. But I am not sure if this is correct.
Is this the correct way to do this or is there another way?
Please note that I want the maximum in each model and not the maximum across models.
python arrays numpy
add a comment |
up vote
-1
down vote
favorite
I have a numpy array of these dimensions
data.shape
(categories, models, types, events, days) -> (10, 11, 50, 100, 14)
I want to calculate the absolute maximum value in each models
. I am doing this:
np.max(data, axis=(2,3,4))
I have a (10,11)
shape array after this. But I am not sure if this is correct.
Is this the correct way to do this or is there another way?
Please note that I want the maximum in each model and not the maximum across models.
python arrays numpy
1
If you don't know whether or not the output is correct, then you do not yet have a Stack Overflow question. Yes, the shape is correct: you have 11 models in each of 10 categories. However, you should check the operation of this technique with a smaller array, so you can easily verify the results.
– Prune
Nov 7 at 23:17
add a comment |
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
I have a numpy array of these dimensions
data.shape
(categories, models, types, events, days) -> (10, 11, 50, 100, 14)
I want to calculate the absolute maximum value in each models
. I am doing this:
np.max(data, axis=(2,3,4))
I have a (10,11)
shape array after this. But I am not sure if this is correct.
Is this the correct way to do this or is there another way?
Please note that I want the maximum in each model and not the maximum across models.
python arrays numpy
I have a numpy array of these dimensions
data.shape
(categories, models, types, events, days) -> (10, 11, 50, 100, 14)
I want to calculate the absolute maximum value in each models
. I am doing this:
np.max(data, axis=(2,3,4))
I have a (10,11)
shape array after this. But I am not sure if this is correct.
Is this the correct way to do this or is there another way?
Please note that I want the maximum in each model and not the maximum across models.
python arrays numpy
python arrays numpy
asked Nov 7 at 22:56
maximusdooku
1,38821343
1,38821343
1
If you don't know whether or not the output is correct, then you do not yet have a Stack Overflow question. Yes, the shape is correct: you have 11 models in each of 10 categories. However, you should check the operation of this technique with a smaller array, so you can easily verify the results.
– Prune
Nov 7 at 23:17
add a comment |
1
If you don't know whether or not the output is correct, then you do not yet have a Stack Overflow question. Yes, the shape is correct: you have 11 models in each of 10 categories. However, you should check the operation of this technique with a smaller array, so you can easily verify the results.
– Prune
Nov 7 at 23:17
1
1
If you don't know whether or not the output is correct, then you do not yet have a Stack Overflow question. Yes, the shape is correct: you have 11 models in each of 10 categories. However, you should check the operation of this technique with a smaller array, so you can easily verify the results.
– Prune
Nov 7 at 23:17
If you don't know whether or not the output is correct, then you do not yet have a Stack Overflow question. Yes, the shape is correct: you have 11 models in each of 10 categories. However, you should check the operation of this technique with a smaller array, so you can easily verify the results.
– Prune
Nov 7 at 23:17
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f53199162%2fhow-can-i-find-maximum-in-a-multidimensional-numpy-array%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
If you don't know whether or not the output is correct, then you do not yet have a Stack Overflow question. Yes, the shape is correct: you have 11 models in each of 10 categories. However, you should check the operation of this technique with a smaller array, so you can easily verify the results.
– Prune
Nov 7 at 23:17