I am not really sure if this is possible to do, but essentially I have a list of data corresponding to x, y and z coordinates.
Below image shows the result when I plot these points using a scatter graph (which I created using Python pyplot library).
My question is, is there any way of plotting the graph of a plane that passes through all of these points instead of plotting them as single points?
When I searched online all I found was resources telling me how to find equation of plane passing though 3 points but as you can see I have many points.

Let's say that to have your plot you use this code
and let's say that you know
nrows,ncols, the number of rows (y) and columns (x) of your base grid.If these assumptions are correct, then you can use this code to plot a surface connecting the points
or, if you want something fancier,
The prelude to my code, if you want to check my results, is