Description Usage Arguments Details Value Author(s) References See Also Examples
A function to calculate the distance for a categorical variable.
1 | cat.dist(X)
|
X |
vector of category designations |
This function calculates distance function for a categorical variable. The result is a square n by n matrix in which entry (i,j) has value 1 if entry i and entry j of the input vector X are not equal and entry (i,j) of the result matrix has value 0 if entry i and entry j of the input vector are equal. The distance between subject i and subject j is zero if the two subjects have the same categorical designation. The distance between subject i and subject j is one if the two subjects do not have the same categorical designation.
A square matrix with each dimension equal to the length of X.
Xueyuan Cao xcao12@uthsc.edu and Stanley Pounds stanley.pounds@stjude.org
Cao X and Pounds S (2021) Gene-Set Distance Associations (GSDA): A Powerful Tool for Gene-Set Association Analysis.
1 2 3 | data(target.aml.clin)
cd=cat.dist(target.aml.clin$Chloroma)
cd[1:5,1:5]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.