Given the following data (from Iris dataset), compute the Euclidean distance between observations and the Manhattan distance between observations:
sepal length sepal width petal length petal width
1.4 0.2 13 4.7
3.2 0.2 5.5 2.5
1.3 2.6 4.4 12
4.6 5.8 2.6 1.2
2.3 3.3 13 5.6
3.4 5.4 2.3 5.9
5.1 1.8
Euclidean distance between two points with coordinates (Xp, Xz) and (Y, Yz):
d = √((Xp - Xz)^2 + (Y - Yz)^2)
Manhattan (taxicab) distance between two points with coordinates (Xp, Xz) and (Y, Yz):
d = |Xp - Xz| + |Y - Yz|
538516 and 05
8.8107 and 18
58 and 35654
None of the above