step_dbscan_fpc: step_dbscan: a recipe step for clustering by dbscan....

Description Usage Arguments

View source: R/RecipeSteps.R

Description

step_dbscan: a recipe step for clustering by dbscan. fpcパッケージのdbscan関数を用いたstep関数

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
step_dbscan_fpc(
  recipe,
  ...,
  role = "predictor",
  trained = FALSE,
  skip = FALSE,
  eps = NULL,
  minPts = NULL,
  retain = FALSE,
  id = rand_id("dbscan_fpc")
)

Arguments

role

For model terms created by this step, what analysis role should they be assigned?

trained

A logical to indicate if the quantities for preprocessing have been estimated.

skip

A logical. Should the step be skipped when the recipe is baked by [recipes::bake.recipe()]?

eps

The parameter eps defines radius of neighborhood around a point x.

minPts

The parameter MinPts is the minimum number of neighbors within “eps” radius.

retain

Alogical to specify whether the original predictors should be retained along with the new embedding variables.

id

A character string that is unique to this step to identify it.


TatsumotoH/addstepr documentation built on Dec. 18, 2021, 4:05 p.m.