RESULT |
CLOB |
クラス不均衡(CI)、統計的均一性(SP)および条件付き人口統計差異(CDD)を含むJSON文字列。
カテゴリ型変数の場合と数値型変数の場合のJSONスキーマの例を次に示します:
カテゴリ型変数およびpairwiseMode=0
{
"$schema": "http://json-schema.org/categorical-simple/schema#",
"type": "object",
"properties": {
"metric": {
"type": "array",
"items": {
"type": "object",
"properties": {
"group": {
"type": "string"
},
"CI": {
"type": "number"
},
"SP": {
"type": "number"
}
}
}
},
"cdd": {
"type": "array",
"items": {
"type": "object",
"properties": {
"strata": {
"type": "string"
},
"result": {
"type": "array",
"items": {
"type": "object",
"properties": {
"group_a": {
"type": "string"
},
"CDD": {
"type": "number"
},
"detail": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subgroup": {
"type": "string"
},
"DD": {
"type": "number"
}
}
}
}
}
}
}
}
}
},
"reweighing_matrix": {
"type": "array",
"items": {
"type": "object",
"properties": {
"group": {
"type": "string"
},
"group_a_pos_weight": {
"type": "number"
},
"non_group_a_pos_weight": {
"type": "number"
},
"group_a_neg_weight": {
"type": "number"
},
"non_group_a_neg_weight": {
"type": "number"
}
}
}
}
}
}
数値型変数およびpairwiseMode=0
{
"$schema": "http://json-schema.org/numerical-simple/schema#",
"type": "object",
"properties": {
"metric": {
"type": "array",
"items": {
"type": "object",
"properties": {
"bin_upper_boundary_a": {
"type": [
"number",
"null"
]
},
"CI": {
"type": "number"
},
"SP": {
"type": "number"
}
}
}
},
"cdd": {
"type": "array",
"items": {
"type": "object",
"properties": {
"strata": {
"type": "string"
},
"result": {
"type": "array",
"items": {
"type": "object",
"properties": {
"bin_upper_boundary_a": {
"type": [
"number",
"null"
]
},
"CDD": {
"type": "number"
},
"detail": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subgroup_bin_upper_boundary": {
"type": "string"
},
"DD": {
"type": "number"
}
}
}
}
}
}
}
}
}
},
"reweighing_matrix": {
"type": "array",
"items": {
"type": "object",
"properties": {
"bin_upper_boundary_a": {
"type": [
"number",
"null"
]
},
"group_a_pos_weight": {
"type": "number"
},
"non_group_a_pos_weight": {
"type": "number"
},
"group_a_neg_weight": {
"type": "number"
},
"non_group_a_neg_weight": {
"type": "number"
}
}
}
}
}
}
pairwiseMode=1
{
"$schema": "http://json-schema.org/paiwise/schema#",
"type": "object",
"properties": {
"metric": {
"type": "array",
"items": {
"type": "object",
"properties": {
"group_a": {
"type": "string"
},
"group_b": {
"type": "string"
},
"CI": {
"type": "number"
},
"SP": {
"type": "number"
}
}
}
},
"cdd": {
"type": "array",
"items": {
"type": "object",
"properties": {
"strata": {
"type": "string"
},
"result": {
"type": "array",
"items": {
"type": "object",
"properties": {
"group_a": {
"type": "string"
},
"group_b": {
"type": "string"
},
"CDD": {
"type": "number"
},
"detail": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subgroup": {
"type": "string"
},
"DD": {
"type": "number"
}
}
}
}
}
}
}
}
}
},
"reweighing_matrix": {
"type": "array",
"items": {
"type": "object",
"properties": {
"group_a": {
"type": "string"
},
"group_b": {
"type": "string"
},
"group_a_pos_weight": {
"type": "number"
},
"group_b_pos_weight": {
"type": "number"
},
"group_a_neg_weight": {
"type": "number"
},
"group_b_neg_weight": {
"type": "number"
}
}
}
}
}
}
|