Reputation: 3311
I want to build a distance matrix but I already have the distances. How can I do it?
Distances are simply t-values between factors in a linear regression.
Upvotes: 0
Views: 43
Reputation: 2777
You can try as.dist(m)
, where m
is your distance matrix.
Upvotes: 2