Answers for "subset by row number dataframe python"

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
0

python calculated row in dataframe subtract

# Dataframe:
# Class     math score   reading score   writing score           
# Class 1      65                73           74
# Class 2      69                66           64

df.loc['Difference'] = df.apply(lambda x: x["Class 1"] - x["Class 2"])

# Result:
# Class       math score    reading score   writing score         
# Class 1         65               73            74
# Class 2         69               66            64
# Difference      -3                7            10
Posted by: Guest on May-24-2021

Code answers related to "subset by row number dataframe python"

Python Answers by Framework

Browse Popular Code Answers by Language