これはばかげているように聞こえるかもしれません。しかし、参照する簡単な例を見つけることができます。Javaを使用して混同行列を印刷する例を教えてください。
このようなもの(出力):
p\a Head Tail
Head 1 4
Tail 4 1
このようにHashMapに格納されたデータを想定すると
HashMap<String,Integer>
String = "Head, Tail"
Integer = 4
更新 (サンプル コード):
public static void main(String[] args) {
HashMap<String,Integer> cmatrix = new HashMap<String,Integer>();
//the string part can hold more the 2 values, all separated with comma
cmatrix.put("tail, head", 1);
cmatrix.put("head ,tail", 4);
cmatrix.put("tail, tail", 1);
cmatrix.put("head, head", 4);
for (Map.Entry entry : cmatrix.entrySet()) {
System.out.println(entry.getKey() +" : "+entry.getValue());
}
}
ありがとう!