I have a table as below: M=
NaN NaN
2 3
NaN NaN
NaN NaN
15 6
6 7
3 12
38 17
9 59
NaN NaN
10 129
11 34
9 5
NaN NaN
NaN NaN
NaN NaN
Goal: I am trying to plot graphs from each set of data, that is separated by the NaNs
E.g. for the data below a graph with x=2, y=3 Then a graph with x=15, 6, 3, 38, 9, y=6, 7, 12, 17, 59 respectively
Overall goal: to find the slope of each set of data and plot the slopes as a frequency distribution
Thank you!