I am trying to add another row to my data Frame
When I use df["new_row"] = [5, True, "joe", 20] , I get the error
ValueError: Length of values (4) does not match length of index (11)
but if I use df.loc["new_row"] = [5, True, "joe", 20], I can succesfully add a new row.