これは、私が生成できた WEKA の出力です。残念ながら、混同行列の計算方法がわかりません。誰かがそれを計算するのを手伝ってもらえますか?
=== Classifier model (full training set) ===
J48 pruned tree
-----------------
plas <= 127: negative (485.0/94.0)
plas > 127
| mass <= 29.9
| | plas <= 145: negative (41.0/6.0)
| | plas > 145
| | | age <= 25: negative (4.0)
| | | age > 25
| | | | age <= 61: positive (27.0/9.0)
| | | | age > 61: negative (4.0)
| mass > 29.9
| | plas <= 157
| | | age <= 30: negative (50.0/23.0)
| | | age > 30: positive (65.0/18.0)
| | plas > 157: positive (92.0/12.0)
Number of Leaves : 8
Size of the tree : 15
a. WEKA 出力を使用して混同行列を作成します。(ヒント: 各リーフ ノードを見て、4 つの象限のそれぞれに該当するインスタンスの数を判断し、すべてのリーフ ノードの結果を集計して、最終的なカウントを取得します)
TP=?
FP=?
FN=?
TN=?
b. 医療診断では、感度、特異度、診断精度の 3 つの指標が一般的に使用されます。感度は TP/(TP+FN) として定義されます。特異性は TN/(FP+TN) として定義されます。診断精度は、感度と特異度の平均として定義されます。上記の混同行列に基づいて診断精度を計算します。
誰かがこれで私を助けることができれば、私はそれを大いに感謝します. ありがとうございました!