Answers for "subset of dataframe first n rows"

4

df select first n rows

df2 = df.head(N)
# this should select N rows from top and copy to new df
df3 = df.tail(N)
# this should select N rows from bottom and copy to new df
Posted by: Guest on April-24-2021
-1

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 of dataframe first n rows"

Python Answers by Framework

Browse Popular Code Answers by Language