“So fügen Sie das NP -Array Spalte hinzu” Code-Antworten

Fügen Sie die Spalte zum vorhandenen Numpy Array hinzu

b = np.insert(a, insert_index, values=a[:,2], axis=1)
HotFlow

So fügen Sie das NP -Array Spalte hinzu

x1= data[:,:-1]
x = np.insert(x1, index(0), values=1, axis=1)
#to add a column of 1's in the features matrix
Abdelrahman Osama

Fügen Sie die Spaltenarray Python hinzu

>>> a = np.array([[1,2,3],[2,3,4]])
>>> a
array([[1, 2, 3],
       [2, 3, 4]])

>>> z = np.zeros((2,1), dtype=int64)
>>> z
array([[0],
       [0]])

>>> np.append(a, z, axis=1)
array([[1, 2, 3, 0],
       [2, 3, 4, 0]])
Blue Bee

Fügen Sie Numpy Array eine neue Spalte hinzu

import numpy as np
N = 10
a = np.random.rand(N,N)
b = np.zeros((N,N+1))
b[:,:-1] = a
Glamorous Grouse

Ähnliche Antworten wie “So fügen Sie das NP -Array Spalte hinzu”

Fragen ähnlich wie “So fügen Sie das NP -Array Spalte hinzu”

Weitere verwandte Antworten zu “So fügen Sie das NP -Array Spalte hinzu” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen