“Pandy iterują rzędy” Kod odpowiedzi

pętla pandy przez rzędy

for index, row in df.iterrows():
    print(row['c1'], row['c2'])

Output: 
   10 100
   11 110
   12 120
Real Ratel

Iterować nad rzędami DataFrame

df = pd.DataFrame([{'c1':10, 'c2':100}, {'c1':11,'c2':110}, {'c1':12,'c2':120}])
for index, row in df.iterrows():
    print(row['c1'], row['c2'])
Victorious Vicuña

Python - iteruj z ramką danych

# Option 1
for row in df.iterrows():
    print row.loc[0,'A']
    print row.A
    print row.index()

# Option 2
for i in range(len(df)) : 
  print(df.iloc[i, 0], df.iloc[i, 2]) 
Andrea Perlato

Jak iterować rzędy w ramce danych w pandy

import pandas as pd

df = pd.DataFrame({'c1': [10, 11, 12], 'c2': [100, 110, 120]})
df = df.reset_index()  # make sure indexes pair with number of rows
for index, row in df.iterrows():
    print(row['c1'], row['c2'])
Harish Vasanth

Pandy iterują rzędy

import pandas as pd
import numpy as np

df = pd.DataFrame({'c1': [10, 11, 12], 'c2': [100, 110, 120]})

for index, row in df.iterrows():
    print(row['c1'], row['c2'])
Different Dunlin

Jak iterować za pośrednictwem pandasframe

# creating a list of dataframe columns 
columns = list(df) 
  
for i in columns: 
  
    # printing the third element of the column 
    print (df[i][2])
Bored Beaver

Odpowiedzi podobne do “Pandy iterują rzędy”

Pytania podobne do “Pandy iterują rzędy”

Więcej pokrewnych odpowiedzi na “Pandy iterują rzędy” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu