I need to split a large excel file into thirds, then find quartiles of each third. I'm new to python and trying to learn it for work so any help is appreciated. Here is my current code
import pandas as pd
import matplotlib.pyplot as plt
df = pd.read_excel(r'C:\Users\1\Desktop\Python\Project\Project1.xlsx')
test = df['Data']
test2 = df.Data.describe()
print(test2)
But I don't know how to only find the describe() of the first third of the data set for example. Any help is appreciated.