Answers for "subset df in pandas by row with specific col value"

0

panda - subset based on column value

import pandas as pd
import numpy as np
df = pd.DataFrame({'A': 'foo bar foo bar foo bar foo foo'.split(),
                   'B': 'one one two three two two one three'.split(),
                   'C': np.arange(8), 'D': np.arange(8) * 2})
print(df)
sub_df = df.loc[df['A'] == 'foo'] # Subset based on specific A value
Posted by: Guest on October-16-2020
0

how to get a row of a dataframe with subset columns in python

df.iloc[1:3, 5:7]
Posted by: Guest on April-13-2020

Code answers related to "subset df in pandas by row with specific col value"

Python Answers by Framework

Browse Popular Code Answers by Language