質問編集履歴
1
エラーメッセージを追加修正した
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,8 +4,19 @@
|
|
4
4
|
コード実行後、2.発生している問題・エラーメッセージのようなエラーが出ます。
|
5
5
|
ご助言をお願いします。
|
6
6
|
|
7
|
-
2.発生している問題・エラーメッセージ
|
7
|
+
2.発生している問題・エラーメッセージ(追加修正後)
|
8
|
+
---------------------------------------------------------------------------
|
9
|
+
ValueError Traceback (most recent call last)
|
10
|
+
<ipython-input-42-ec3691a6b60a> in <module>
|
11
|
+
4
|
12
|
+
5 # 管理限界の決定
|
13
|
+
----> 6 T2_train, Q_train = mspc_T2Q(train_data, meanX, stdX, U, S, V)
|
14
|
+
7 CL_T2_mspc, CL_Q_mspc = mspc_CL(T2, Q, alpha = 0.99)
|
15
|
+
8
|
16
|
+
|
17
|
+
2 frames
|
18
|
+
/usr/local/lib/python3.7/dist-packages/pandas/core/frame.py in dot(self, other)
|
8
|
-
1444 common = self.columns.union(other.index)
|
19
|
+
1444 common = self.columns.union(other.index)
|
9
20
|
1445 if len(common) > len(self.columns) or len(common) > len(other.index):
|
10
21
|
-> 1446 raise ValueError("matrices are not aligned")
|
11
22
|
1447
|