I'm trying to add more rows or records to my data frame, let's say it looks like this:
ID age
44 23
31 25
and I have a CSV file stored in another data frame without headers
33 55
22 23
29 22
now I want a new data frame that looks like this
ID age
44 23
31 25
33 55
22 23
29 22
I have tried using append and concat but I didn't get the result that I wanted
appendis now deprecated,concatshould be usedignore_indexis not going to solve the issue, it just helps having a nice index ;)