I need to evaluate connections between datasets. For example, assume the following dataset,
+--------------------+
| Last name | Tel no |
+------------------- +
| Banks | XXX |
| Banks | XXX |
| Jobs | YYY |
| Banks | WWW |
| King | QQQ |
| King | QQQ |
| King | QQQ |
+--------------------+
Note the connection between the two columns. Chances are that people with the same last name end up having the same telephone number as well, since they are likely to belong to the same family. I need to calculate the relation between these two data sets. Maths is not my strongest point, but I’ve read of the concept of mutual information value. This is exactly what I need to do.
To make this work, I assume I will need to process a huge set of data and use that result to calculate the mutual information value.
Again, my maths is a bit rusty, but I think I need to do something like assigning 1 if last names and telphone numbers match, and 0 if it doesn’t. But given this data I can’t really decide on how to match this data.