a = numpy.array([0, 3, 0, 1, 0, 1, 2, 1, 0, 0, 0, 0, 1, 3, 4]) unique, counts = numpy.unique(a, return_counts=True) dict(zip(unique, counts)) # {0: 7, 1: 4, 2: 1, 3: 2, 4: 1}
Non-numpy way:
Use collections.Counter
;
import collections, numpy a = numpy.array([0, 3, 0, 1, 0, 1, 2, 1, 0, 0, 0, 0, 1, 3, 4]) collections.Counter(a) # Counter({0: 7, 1: 4, 3: 2, 2: 1, 4: 1})
Related Posts:
- What is the purpose of meshgrid in Python / NumPy?
- How does numpy.newaxis work and when to use it?
- Understanding NumPy’s einsum
- Good ways to “expand” a numpy ndarray?
- Using numpy to build an array of all combinations of two arrays
- Convert a 1D array to a 2D array in numpy
- TypeError: only integer scalar arrays can be converted to a scalar index with 1D numpy indices array
- Import Error: No module named numpy
- numpy max vs amax vs maximum
- Difference between import numpy and import numpy as np
- why numpy.ndarray is object is not callable in my simple for python loop
- numpy division with RuntimeWarning: invalid value encountered in double_scalars
- How do I create an empty array/matrix in NumPy?
- Most efficient way to find mode in numpy array
- numpy matrix vector multiplication
- Converting list to numpy array
- How do I read CSV data into a record array in NumPy?
- How do you do natural logs (e.g. “ln()”) with numpy in Python?
- How do I read CSV data into a record array in NumPy?
- How to normalize a NumPy array to a unit vector?
- ImportError: numpy.core.multiarray failed to import
- ImportError: numpy.core.multiarray failed to import
- size of NumPy array
- Python Pandas – Missing required dependencies [‘numpy’] 1
- Convert a tensor to numpy array in Tensorflow?
- Using Numpy Vectorize on Functions that Return Vectors
- Use a.any() or a.all()
- ‘DataFrame’ object has no attribute ‘sort’
- convert nan value to zero
- ‘End of statement expected’ in pycharm
- Most efficient way to map function over numpy array
- Is there a NumPy function to return the first index of something in an array?
- initialize a numpy array
- TypeError: ‘DataFrame’ object is not callable
- Cannot convert list to array: ValueError: only one element tensors can be converted to Python scalars
- How can I use numpy.correlate to do autocorrelation?
- Calculating Covariance with Python and Numpy
- How to access the ith column of a NumPy multidimensional array?
- Dump a NumPy array into a csv file
- Python: find position of element in array
- Inverse of a matrix using numpy
- How to convert a PIL Image into a numpy array?
- numpy with python: convert 3d array to 2d
- Create 3D array using Python
- Python: slicing a multi-dimensional array
- Pytorch reshape tensor dimension
- How to remove specific elements in a numpy array
- Add single element to array in numpy
- Overflow / math range error for log or exp
- 3-dimensional array in numpy
- How to have an array of arrays in Python
- How do you get the magnitude of a vector in Numpy?
- ‘list’ object has no attribute ‘shape’
- What is the difference between np.mean and tf.reduce_mean?
- How to sort a list of objects based on an attribute of the objects?
- How to calculate rolling / moving average using python + NumPy / SciPy?
- ValueError: object too deep for desired array while using convolution
- Make list of arrays in python
- Import Error: No module named numpy Anaconda
- Dictionary in a numpy array?
- RuntimeWarning: divide by zero encountered in log
- What does ‘index 0 is out of bounds for axis 0 with size 0’ mean?
- pandas create new column based on values from other columns / apply a function of multiple columns, row-wise
- Moving average or running mean
- ValueError: x and y must be the same size
- How to fix “TypeError: len() of unsized object”
- NumPy List Comprehension Syntax
- Linear regression with matplotlib / numpy
- How to calculate a Gaussian kernel matrix efficiently in numpy?
- How to get the unit vector from a numpy array
- Does Numpy automatically detect and use GPU?
- How can I check whether a numpy array is empty or not?
- “Divide by zero encountered in log” when not dividing by zero
- Iterating over a 2 dimensional python list [duplicate]
- RuntimeError: module compiled against API version a but this version of numpy is 9
- TypeError: ‘numpy.float64’ object does not support item assignment
- numpy-equivalent of list.pop?
- Efficiently sorting a numpy array in descending order?
- How to create a numpy array of lists?
- How to add column to numpy array
- How to fix ‘RuntimeWarning: divide by zero encountered in double_scalars’
- IndexError: index 2 is out of bounds for axis 0 with size 2
- Coalesce values from 2 columns into a single column in a pandas dataframe
- Compute a confidence interval from sample data
- Rotating a two-dimensional array in Python
- Create numpy matrix filled with NaNs
- How do I compute derivative using Numpy?
- ImportError: cannot import name NUMPY_MKL
- built-in range or numpy.arange: which is more efficient?
- How to count the number of files in a directory using Python
- Numpy Resize/Rescale Image
- numpy array concatenation error: 0-d arrays can’t be concatenated
- inverting image in Python with OpenCV
- How to print the full NumPy array, without truncation?
- Calculate weighted average using a pandas/dataframe
- Complex number troubles with numpy
- Filtering a NumPy Array
- TypeError: zip argument #2 must support iteration
- CS231n: How to calculate gradient for Softmax loss function?
- numpy/scipy/ipython:Failed to interpret file as a pickle