I'm trying to import a csv of 20 rows of numbers using Pandas. For some reason, Pandas begins indexing it at the 2nd row "158" instead of the 1st row "164".
Now when I try to perform a basic multiplication on it, it skips the first row of 164 and begins at the 2nd row when it should be performing on the first row as well. Why is the index beginning at the 2nd row?