I have a Pandas Data Frame object that has 1000 rows and 10 columns. I would simply like to slice the Data Frame and take the first 10 rows. How can I do this? I\'ve been tr
dataframe[:n] - Will return first n-1 rows