📄 drug.npc
字号:
/*---------------------------------------------------------------------- domains----------------------------------------------------------------------*/dom(Blood_pressure) = { high, low, normal };dom(Drug) = { A, B };/*---------------------------------------------------------------------- naive possibilistic classifier----------------------------------------------------------------------*/npc(Drug) = { total = 12; poss(Drug) = { A: 3, B: 3 }; poss(Blood_pressure|Drug) = { A:{ high: 3, low: 0, normal: 3 }, B:{ high: 0, low: 3, normal: 3 }};};/*---------------------------------------------------------------------- number of attributes: 2 number of tuples : 12----------------------------------------------------------------------*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -