Answers for "how to take slice of pandas dataframe"

SQL
2

make new dataframe from slice

# You need copy with boolean indexing, new DataFrame constructor is not necessary:

d2 = d1[d1.a > 1].copy()
Posted by: Guest on May-28-2021
3

slicing in pandas

# iloc[row slicing, column slicing]
surveys_df.iloc[0:3, 1:4]
Posted by: Guest on July-16-2020

Code answers related to "how to take slice of pandas dataframe"

Code answers related to "SQL"

Browse Popular Code Answers by Language