I have dataset with
data = [[1,2,3], [4,5,6], [7,8,9]].
and call
plot(data)
plot.show()
then y-axis is treated as inner array's value.
what I want is
f(0,0) = 1, f(0,1) = 2, f(1,2) = 3,
f(1,0) = 4, f(1,1) = 5, f(1,2) = 6,
f(2,0) = 7, f(2,1) = 8, f(2,2) = 9
The question is, how to change y-axis to array's index instead of array's value?