New to python and programming in general:
The documentation to squareform states the following:
Converts a vector-form distance vector to a square-form distance matrix, and vice-versa.
Converts a 1D array into a squared matrix?
Where the paramenter X:
Either a condensed or redundant distance matrix.
and returns:
If a condensed distance matrix is passed, a redundant one is returned, or if a redundant one is passed, a condensed distance matrix is returned.
- what is the difference between condensed and redundant matrices?
- what is the relationship between condensed/redundant matrix and vector/square form in which it takes?
The return of pdist papers to return condensed distance matrix:
Returns a condensed distance matrix Y. For each i and j (where i is less than j is less than n), the metric dist(u=X[i], v=X[j]) is computed and stored in entry ij.
Am I right in thinking that in each element Y stores the distance between a particular point and an other point? An example with 3 observations would mean a condensed matrix with 9 elements?