Last-Nth-To-First-Row

Sat 17 May 2025

title: "Last nth to last second" author: "Rj" date: 2019-04-22 description: "-" type: technical_note draft: false


import numpy as np
import pandas as pd
df = pd.read_csv('data1.csv')
df
capacity score length
0 1 10 30
1 2 20 30
2 3 30 40
3 3 40 30
4 2 30 40
5 7 10 23
6 3 20 22
7 8 20 11
8 2 30 2
# Find last 3rd to 1st row

df[-4:-1]
capacity score length
5 7 10 23
6 3 20 22
7 8 20 11


Score: 5

Category: data-wrangling