R/pc.skel.R

Defines functions pc.skel

Documented in pc.skel

#[export]
pc.skel <- function(dataset, method = "pearson", alpha = 0.01, R = 1, stat = NULL, ini.pvalue = NULL) {
  is.init.vals <- c(!is.null(stat), !is.null(ini.pvalue))
  if (is.null(stat)) stat <- matrix();
  if (is.null(ini.pvalue)) ini.pvalue <- matrix();
  .Call(Rfast_pc_skel,dataset, method, alpha, R, stat, ini.pvalue, is.init.vals)
}

Try the Rfast package in your browser

Any scripts or data that you put into this service are public.

Rfast documentation built on Nov. 9, 2023, 5:06 p.m.