“Fügen Sie Numpy Array eine neue Spalte hinzu” Code-Antworten

eine Nullenspalte numpy anhängen

np.concatenate((np.zeros((3,3), dtype=int), arr), axis=1)
array([[0, 0, 0, 1, 2, 3],
       [0, 0, 0, 4, 5, 6],
       [0, 0, 0, 7, 8, 9]])
Awful Anaconda

Numpy eine Spalte hinzufügen

an_array = np.append(an_array, new_column, axis=1)
Puzzled Porcupine

Fügen Sie die Spalte zum vorhandenen Numpy Array hinzu

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

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

Fügen Sie Numpy Array eine neue Spalte hinzu


Returns
-------
append : ndarray
    A copy of `arr` with `values` appended to `axis`.  Note that `append`
    does not occur in-place: a new array is allocated and filled.  If
    `axis` is None, `out` is a flattened array.

Worried Wasp

Ähnliche Antworten wie “Fügen Sie Numpy Array eine neue Spalte hinzu”

Fragen ähnlich wie “Fügen Sie Numpy Array eine neue Spalte hinzu”

Weitere verwandte Antworten zu “Fügen Sie Numpy Array eine neue Spalte hinzu” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen