R/KMppIni.r

Defines functions KMppIniSparse KMppIni

Documented in KMppIni KMppIniSparse

KMppIni <- function(
  X,
  K,
  firstSelection = 1L,
  minkP = 2,
  stochastic = FALSE,
  seed = 123,
  maxCore = 7L,
  verbose = TRUE)
{
  KMppIniCpp(
    X,
    firstSelection,
    K,
    minkP,
    stochastic,
    seed,
    maxCore,
    verbose)
}




KMppIniSparse <- function(
  X,
  d,
  K,
  firstSelection = 1L,
  minkP = 2,
  stochastic = FALSE,
  seed = 123,
  maxCore = 7L,
  verbose = TRUE)
{
  KMppIniSparseCpp(
    X,
    d,
    firstSelection,
    K,
    minkP,
    stochastic,
    seed,
    maxCore,
    verbose)
}

Try the GMKMcharlie package in your browser

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

GMKMcharlie documentation built on May 29, 2021, 9:08 a.m.