“Selecione linhas em Python” Respostas de código

Selecione linhas de DataFrame Pandas

from pandas import DataFrame

boxes = {'Color': ['Green','Green','Green','Blue','Blue','Red','Red','Red'],
         'Shape': ['Rectangle','Rectangle','Square','Rectangle','Square','Square','Square','Rectangle'],
         'Price': [10,15,5,5,10,15,15,5]
        }

df = DataFrame(boxes, columns= ['Color','Shape','Price'])

select_color = df.loc[df['Color'] == 'Green']
print (select_color)
Gleaming Guanaco

Selecione linhas em Python

import pandas as pd

boxes = {'Color': ['Green','Green','Green','Blue','Blue','Red','Red','Red'],
         'Shape': ['Rectangle','Rectangle','Square','Rectangle','Square','Square','Square','Rectangle'],
         'Price': [10,15,5,5,10,15,15,5]
        }

df = pd.DataFrame(boxes, columns= ['Color','Shape','Price'])

color_and_shape = df.loc[(df['Color'] == 'Green') & (df['Shape'] == 'Rectangle')]
print (color_and_shape)
Motionless Mole

Como obter uma fileira de um quadro de dados com colunas de subconjuntos no Python

df.iloc[1:3, 5:7]
Bewildered Barracuda

Respostas semelhantes a “Selecione linhas em Python”

Perguntas semelhantes a “Selecione linhas em Python”

Mais respostas relacionadas para “Selecione linhas em Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código