Description Usage Arguments Value Author(s) References Examples
View source: R/MGCSampleStat.R
The main function that computes the MGC measure between two datasets: It first computes all local correlations, then use the maximal statistic among all local correlations based on thresholding.
1 2 3 4 5 6 7 8 9 10 11 12 13  | mgc.stat(
  X,
  Y,
  is.dist.X = FALSE,
  dist.xfm.X = mgc.distance,
  dist.params.X = list(method = "euclidean"),
  dist.return.X = NULL,
  is.dist.Y = FALSE,
  dist.xfm.Y = mgc.distance,
  dist.params.Y = list(method = "euclidean"),
  dist.return.Y = NULL,
  option = "mgc"
)
 | 
X | 
 is interpreted as: 
  | 
Y | 
 is interpreted as: 
  | 
is.dist.X | 
 a boolean indicating whether your   | 
dist.xfm.X | 
 if   | 
dist.params.X | 
 a list of trailing arguments to pass to the distance function specified in   | 
dist.return.X | 
 the return argument for the specified  
  | 
is.dist.Y | 
 a boolean indicating whether your   | 
dist.xfm.Y | 
 if   | 
dist.params.Y | 
 a list of trailing arguments to pass to the distance function specified in   | 
dist.return.Y | 
 the return argument for the specified  
  | 
option | 
 is a string that specifies which global correlation to build up-on. Defaults to  
  | 
A list containing the following:
 | 
 is the sample MGC statistic within   | 
 | 
 the local correlations  | 
 | 
 the optimal scale identified by MGC  | 
 | 
 specifies which global correlation was used  | 
C. Shen and Eric Bridgeford
Joshua T. Vogelstein, et al. "Discovering and deciphering relationships across disparate data modalities." eLife (2019).
1 2 3 4 5  | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.