Ask Your Question
0

How can i counter frequent array in numpy?

asked 9 years ago

Nazila gravatar image

import numpy as np X=np.array[[1,2], [3,4], [1,2], [4,1]] "i want to counter repetitive [1,2]"

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 9 years ago

tmonteil gravatar image

updated 9 years ago

It is somehow a duplicate of this question, you can change the bi-dimensional numpy array X into a list of lists as follows:

sage: Y = [list(x) for x in X]
sage: Y
[[1, 2], [3, 4], [1, 2], [4, 1]]
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 9 years ago

Seen: 739 times

Last updated: Dec 13 '15