InterviewSolution
Saved Bookmarks
| 1. |
How Do I Count The Number Of Times Each Value Appears In An Array Of Integers? |
|
Answer» Use numpy.bincount(). The RESULTING array is >>> arr = numpy.array([0, 5, 4, 0, 4, 4, 3, 0, 0, 5, 2, 1, 1, 9]) The argument to bincount() must consist of positive integers or BOOLEANS. NEGATIVE integers are not supported. Use numpy.bincount(). The resulting array is >>> arr = numpy.array([0, 5, 4, 0, 4, 4, 3, 0, 0, 5, 2, 1, 1, 9]) The argument to bincount() must consist of positive integers or booleans. Negative integers are not supported. |
|