“Fügen Sie Numpy Array zu Pandas DataFrame hinzu” Code-Antworten

Fügen Sie Numpy Array zu Pandas DataFrame hinzu


#create NumPy array for 'blocks'
blocks = np.array([2, 3, 1, 0, 2, 7, 8, 2])

#add 'blocks' array as new column in DataFrame
df['blocks'] = blocks.tolist()
Babylonian Ho

Fügen Sie Numpy Array zu Pandas DataFrame hinzu


import numpy as np
import pandas as pd
import scipy.sparse as sparse

df = pd.DataFrame(np.arange(1,10).reshape(3,3))
arr = sparse.coo_matrix(([1,1,1], ([0,1,2], [1,2,0])), shape=(3,3))
df['newcol'] = arr.toarray().tolist()
print(df)

Poor Puffin

Ähnliche Antworten wie “Fügen Sie Numpy Array zu Pandas DataFrame hinzu”

Fragen ähnlich wie “Fügen Sie Numpy Array zu Pandas DataFrame hinzu”

Weitere verwandte Antworten zu “Fügen Sie Numpy Array zu Pandas DataFrame hinzu” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen