python 可以优化变量以获得最大 Pearson 相关系数吗?

Can python optimize a variable to get max Pearson's correlation coefficient?

如果我有 pandas 数据框包含 3 列 Col1 & Col2& Col3 我需要获得 Col2Col2 之间的最大 Pearson 相关系数Col3通过考虑Col1中的值,修改下公式得到的ForCol2的值:

df['Col1']=np.power((df['Col1']),B)
df['Col2']=df['Col2']*df['Col1']

其中 B 是变化变量,以获得 Col3Col2

的新值之间的最大 Pearson 相关系数

那么有没有 Python 方法可以做到这一点 return B.Is 有没有办法使用 Python 和 return B值,我想对其他列重复此过程。

这应该有效

import pandas as pd
import numpy as np
from scipy.optimize import minimize

# dataframe with 20 rows
df = pd.DataFrame(data=np.random.randn(20,3), 
                  columns=['Col1', 'Col2', 'Col3'])

# cost function
def cost_fun(B_array, df):
    B = B_array[0]
    new_col1 = np.power((df['Col1']), B)
    new_col2 = np.array(df['Col2']) * new_col1
    col3 = np.array(df['Col3'])
    pearson = np.corrcoef(new_col2, col3)[1,0]
    return -1*pearson # multiply by -1 to get max

# initial value
B_0 = 1.1

# run minimizer
res = minimize(cost_fun, [B_0], args=(df), 
               options={"maxiter": 100,
                        "disp": True})
# results
print(res)