gpt4 book ai didi

python - 如何从数据集的其余部分中选择一行并将其添加到python中的初始矩阵中?

转载 作者:行者123 更新时间:2023-12-01 07:06:19 24 4
gpt4 key购买 nike

假设N = 7。所以我的初始矩阵 X 将是 7x6,我想创建一个大小为 8x6 的 Y 矩阵。

在这里,我想放置一个循环,使其选择第 8 行,查找 |Y.T@Y|,然后将第 8 行替换为第 9 行,查找 |Y.T@Y|等等......对于数据集的其余部分。最终的 Y 矩阵将为 8x6,第 8 行是最大的 |Y.T@Y|来自数据集的其余部分。

第一列是索引“ID”。我还想显示 Y 的索引。

import pandas as pd
import numpy as np
import io

data = '''
ID,M,N,O,P,Q,R
5362,0.974,-0.404,-0.763,0.868,-0.5,0.16
485,-0.659,0.531,0.623,0.402,0.772,0.506
582,0.045,0.994,0.762,-0.036,0.117,-0.355
99,0.777,0.537,0.391,0.456,0.329,0.108
75,-0.44,0.522,0.856,-0.04,0.656,-0.935
474,0.357,0.81,0.135,0.389,0.055,0.224
594,-0.291,0.031,0.742,-0.332,0.815,0.983
597,0.968,-0.357,0.591,0.892,0.375,0.88
124,0.737,0.611,0.764,0.289,0.298,-0.705
635,0.883,0.96,-0.987,0.29,0.997,0.186
7894,-0.045,0.047,0.523,0.068,-0.9,0.356
1268,0.561,0.736,-0.375,0.465,0.908,0.2
38,0.465,0.623,0.734,0.145,0.489,0.759
88,0.029,0.166,0.098,0.285,0.18,0.829
887,0.464,0.652,-0.896,0.07,0.772,-0.268
994,-0.611,0.986,0.708,-0.195,0.938,0.166
478,0.109,0.664,0.977,0.2,-0.466,0.676
693,0.893,0.536,0.827,0,0.658,-0.31
455,0.745,0.851,0.025,0.667,0.094,0.127
874,0.036,-0.212,0.879,0.966,0.788,0.719
417,0.316,0.553,0.872,-0.274,0.946,0.238
44,0.517,-0.113,0.992,0.521,0.595,0.674
101,0.699,0.095,0.269,0.628,-0.711,-0.141
60,0.993,0.348,-0.44,0.807,0.013,0.325
8741,-0.319,0.535,0.717,-0.89,0.334,0.279
9635,0.363,0.812,0.77,0.715,0.34,0.327
2563,0.649,-0.788,0.405,0.056,0.25,0.08
5463,0.491,0.414,0.084,0.173,0.397,-0.499
1044,-0.669,0.288,0.424,-0.324,0.491,-0.581
999,0.208,0.082,-0.425,0.916,0.582,0.45
'''

df = pd.read_csv(io.StringIO(data),index_col=0)
M = df.iloc[:,:]
L = len(df.columns)

N = int(input( 'No. of rows for matrix: ' ))
if (N<L):
print("Error Occured.")
else:
X = M.iloc[0 : N ,:]
P = np.dot(X.T,X)
result = np.linalg.cond(P)
print("Condition number of matrix:")
print(result)

我尝试创建 Y 矩阵,但它只占用下一行。我想将其放入循环中并检查 |Y.T@Y|将每一行逐一添加到我的初始 X 矩阵中,并返回具有 det |Y.T @ Y| 最大值的 Y 矩阵。

 Y = M.iloc[0 : N+1 ,:]
Q = np.dot(Y.T,Y)
det1 = np.linalg.det(Q)
print("\nDeterminant of |Y.T@Y| : ",det1)
result1 = np.linalg.cond(Q)
print("\nCondition number of matrix Q : ", result1)

最佳答案

有趣的问题。要将代码放入循环中,您只需稍微不同的索引即可。您可以使用逗号分隔的列表作为第一个索引。类似于 [0, ..., N-1, last_row]range(N) 或等效的 0:N 将为您提供一个嵌套列表,但您可以使用 * 运算符将其解压。

In [17]: for last_row in range(N, len(M)): 
...: Y = M.iloc[[*range(N), last_row] ,:]
...: Q = np.dot(Y.T,Y)
...: det1 = np.linalg.det(Q)
...: print("\nDeterminant of |Y.T@Y| : ",det1)
...: result1 = np.linalg.cond(Q)
...: print("\nCondition number of matrix Q : ", result1)
...:

Determinant of |Y.T@Y| : 4.624339160318527

Condition number of matrix Q : 77.36824220530482

Determinant of |Y.T@Y| : 0.9409090804611786

Condition number of matrix Q : 263.91293535163385

Determinant of |Y.T@Y| : 33.03686043392585

Condition number of matrix Q : 16.581346840200407

Determinant of |Y.T@Y| : 12.63729785336232

Condition number of matrix Q : 22.538552279445806

Determinant of |Y.T@Y| : 12.263181714746796

Condition number of matrix Q : 17.66370953358896

Determinant of |Y.T@Y| : 0.7123582600048612

Condition number of matrix Q : 281.44289604007963

Determinant of |Y.T@Y| : 0.5339137593174599

Condition number of matrix Q : 257.90179496090224

Determinant of |Y.T@Y| : 23.995506419439238

Condition number of matrix Q : 16.575874347379973

Determinant of |Y.T@Y| : 2.253693250568694

Condition number of matrix Q : 91.90731212411028

Determinant of |Y.T@Y| : 10.651328369043002

Condition number of matrix Q : 29.76877614410439

Determinant of |Y.T@Y| : 1.2970342066212042

Condition number of matrix Q : 269.1794726321578

Determinant of |Y.T@Y| : 0.9369419026433131

Condition number of matrix Q : 169.53229478788683

Determinant of |Y.T@Y| : 4.651161625943493

Condition number of matrix Q : 81.67535737177332

Determinant of |Y.T@Y| : 1.5506338931653931

Condition number of matrix Q : 177.70943680087242

Determinant of |Y.T@Y| : 4.279015451906647

Condition number of matrix Q : 75.61213665437202

Determinant of |Y.T@Y| : 6.711423504463288

Condition number of matrix Q : 21.1381271541492

Determinant of |Y.T@Y| : 1.4394193359597567

Condition number of matrix Q : 120.40054369027756

Determinant of |Y.T@Y| : 0.8395233498254766

Condition number of matrix Q : 307.60761120624073

Determinant of |Y.T@Y| : 1.539364214268676

Condition number of matrix Q : 114.34947167985221

Determinant of |Y.T@Y| : 2.4774355106941384

Condition number of matrix Q : 144.27102186810066

Determinant of |Y.T@Y| : 2.2023866036448174

Condition number of matrix Q : 69.51903280436987

Determinant of |Y.T@Y| : 0.8649208511848647

Condition number of matrix Q : 175.3486680980588

Determinant of |Y.T@Y| : 2.841536699473401

Condition number of matrix Q : 85.79379870960514

我相信你会自己找到最大的矩阵:)

关于python - 如何从数据集的其余部分中选择一行并将其添加到python中的初始矩阵中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58429520/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com