I want to do a multiple regression over an experimental result shown as 3D-Plot and heatmap in following Images. Sorry as a new user i am not allowed to post them directly but it is just a link to imgur!
3D Plot:
Heatmap:
If I just investigate the images there is obviously a connection between the variables and the output.
At the Moment I get a very bad coefficient of determination ($R^2$), already trying several combinations.
Let say $x_1$ is the first variable and $x_2$ is the second. $Y$ is the results depending on $x_1$ and $x_2$. $x_1x_2$ is the product of $x_1$ and $x_2$. I also define the reciprocal for every value as $x_{1_{re}} , x_{2_{re}}$ and $\left(x_1 x_2\right)_{re}$ (for example $\frac{1}{x_1}$)
The best R-squared I can obtain is at $0.49$ with the following formula $y \approx x_{1_{re}} + x_{2_{re}} + \left(x_1 x_2\right)_{re}$
If I use a simple model like $y \approx x_1 + x_2 + x_1x_2$ it gets even worse to $0.32$
Somebody can help me out and point in the right direction!
Is the regression really so bad? Is there perhaps another formula I should try?