## Prepping Data: Changing Text to Numbers
If you scan through the data, you'll see there are text and numbers, along many rows and many different dimensions (columns).
The table above doesn't show this well, but if you expand the triangle next to data = > Array(5587) above, you'll see the data in it's more pure form, and you'll see that everything is being brought in from the CSV as a text string. They're not numbers. Further, many of these numbers have commas in them, which is great for human readability (it's actually a human visual processing thing), but not so good for a computer doing calculations. We need to parse this to change some of these text to actual numbers.