df = pd.read_csv('time_var.txt', header = None, delimiter =r"\s+" )
df.columns = ["Id", "Edu", "Ln(w)", "PoEp","Ttd"]
I have a csv file like this:
This is the data set. Each person has multiple entries. I want to take only the first entry for each person.
