Processing math: 100%
본문 바로가기
Computer Science/Data Science

[Measure Proximity] For Mixed Attribute

by Gofo 2022. 6. 3.

📝 목차



Proximity Measure for Mixed Attributes Type

각 타입의 attribute에 대해 distance를 구하고 이에 대해 weighted avearge를 취한다.

 

 

각 타입별 Distance

  • f가 binary이거나 nominal 일 때,
    • xif=xjfd(f)ij=0
    • else d(f)ij=1
  • f가 numeric 일 때, normalized distance 사용
  • f가 ordinal 일 때
    • rank 순서대로 rif을 매기고
    • interval-scaled 처럼 zif=rif1Mf1 계산

 

 

댓글