Hi everyone,
I am trying to predict some diseases using health check data.
The attributes are Age, BMI, Waist, Systolic, Diastolic blood pressure, HDL, LDL ... etc. I have to calculate distances (for kNN ...) or similarities (for Rough Sets ...) among instances. Certainly, we can use Euclidean distance and distance based similarity as well. In fuzzy approach it also possible to calculate similarity between instance "x" and "y" in attribute "a" by similarity_a(x,y) = 1 - |a(x) - a(y)|/(a_max - a_min) and combine with other attributes by a t-norm. However, those calculations are for arbitrary attributes which are mutually independent.
So for health check data, is there any considerable way to calculate distance/similarity?
Thanks in advances,