By Multiple Correlation I refer to this: https://en.wikipedia.org/wiki/Multiple_correlation
If I understand it right, this should give me the correlation of any two x_1, x_2 together and how they correlate to a target variable y. At least that is what I am searching for. Any other approaches would be helpful too. How do I check if there is a correlation of not one variable to my target, but of two or more together.
This is not implemented by: dataframe.corr()
Should I rather go by using Linear Regression or some simple ML model? It is important for me to see which variables are how strong in my model so to reconstruct this as a formula.