Create parameters list for stage II clustering.

createClParam(
  q0 = 0,
  knn.k = 40,
  dist_thresh = 0.4,
  eps = NULL,
  minPts = NULL,
  minClusterSize = NULL
)

Arguments

q0

Parameter q0 in apcluster. Byt default is 0. If it is NULL, will not use apcluster.

knn.k

Number of k-nearest neighbour to create knn graph in Louvian algorithm. By default is 40, If it is NULL, will not use Louvian.

dist_thresh

Threshold of distance when creating knn graph in Louvian algorithm. By default is 0.4, If it is NULL, will not use Louvian.

eps

Parameter eps in dbscan. If it is NULL, will not use dbscan.

minPts

Parameter minPts in dbscan. If it is NULL, will not use dbscan.

minClusterSize

Parameter minClusterSize in dbscan. If it is NULL, will not use dbscan.

Value

A list of methods and parameters.