Python Forum
Numpy: repeat cells variable number of times
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Numpy: repeat cells variable number of times
#1
Hi

In the following snippet, each cell of CellsToDuplicateVariableTimes is repeated the number of times defined in NumberOfReplicationPerCell : i'm sure there's a more relevant way to proceed => how would you do?

Thanks

Paul

CellsToDuplicateVariableTimes = np.array([2, 6, 8, 10, 11])
NumberOfReplicationPerCell = np.array([4, 3, 2, 5, 1])

New = np.zeros(0, dtype = int)
n = np.shape(CellsToDuplicateVariableTimes)[0]
List = [np.repeat(CellsToDuplicateVariableTimes[i], NumberOfReplicationPerCell[i]) for i in range(n)]
for arr in List: New = np.hstack((New, arr))

print(f"New = {New}")
Output:
New = [ 2 2 2 2 6 6 6 8 8 10 10 10 10 10 11]
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Numpy] How to store different data type in one numpy array? water 7 2,692 Mar-26-2024, 02:18 PM
Last Post: snippsat
  Numpy returns "TypeError: unsupported operand type(s) for *: 'numpy.ufunc' and 'int'" kalle 2 4,013 Jul-19-2022, 06:31 AM
Last Post: paul18fr
  "erlarge" a numpy-matrix to numpy-array PhysChem 2 3,820 Apr-09-2019, 04:54 PM
Last Post: PhysChem
  counting the occurence of a specified number in a numpy-matrix PhysChem 1 2,983 Apr-03-2019, 01:37 PM
Last Post: PhysChem
  Numpy random number Bryant 1 5,197 Jul-23-2017, 11:14 PM
Last Post: MTVDNA

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020