“Pandas lesen Spalten als Liste” Code-Antworten

So erhalten Sie eine DataFrame -Spalte als Liste

import pandas as pd

data_dict = {'one': pd.Series([1, 2, 3], index=['a', 'b', 'c']),
             'two': pd.Series([1, 2, 3, 4], index=['a', 'b', 'c', 'd'])}

df = pd.DataFrame(data_dict)

print(f"DataFrame:\n{df}\n")
print(f"column types:\n{df.dtypes}")

col_one_list = df['one'].tolist()

col_one_arr = df['one'].to_numpy()

print(f"\ncol_one_list:\n{col_one_list}\ntype:{type(col_one_list)}")
print(f"\ncol_one_arr:\n{col_one_arr}\ntype:{type(col_one_arr)}")
Grieving Grivet

Listen Sie in DataFrame -Spalten auf

import pandas as pd

lst = [1,2,3]
df = pd.DataFrame([lst])
df.columns =['col1','col2','col3']
df

to get this:

    col1    col2    col3
0   1       2       3
Important Ibex

Pandas lesen Spalten als Liste

from ast import literal_eval


df.Col3 = df.Col3.apply(literal_eval)
print(df.Col3[0][0])
Proj1
Real Raccoon

Ähnliche Antworten wie “Pandas lesen Spalten als Liste”

Fragen ähnlich wie “Pandas lesen Spalten als Liste”

Weitere verwandte Antworten zu “Pandas lesen Spalten als Liste” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen