I want to automate this process of assigning variables on every single item in this chart, based on its location. for example the first data point of the first row is named row_1_1, the second data point of the first row is named row_1_2.
As I can think of so far is to break this chart row by row using for loops, and assign them with a variable following the name numerical naming trend like var[n] for n in range(0,5) and then replica this process again inside of a single row to name them individually. So far the working way is to name them in the dummy way but I want to automate this process.
row_1, row_2, row_3, row_4, row_5 = [dataset_in_list[i] for i in range(0, 5)]
row_1_1, row_1_2, row_1_3 = [row_1[x] for x in range(0, 3)]