Answers for "can we slice dataframe in pandas"

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

Code answers related to "can we slice dataframe in pandas"

Code answers related to "SQL"

Browse Popular Code Answers by Language