I just got my data and it is given to me as a csv
file.
It looks like this in data studio(where the file was taken).
Counts frequency
300 1
302 5
303 7
Excel can't handle the computations so that's why I'm trying to load it in python(it has scipy
:D).
I want to load the data in an array:
Counts = [300, 302, 303]
frequency = [1, 5, 7]
How will I code this?