layout_igraph
Calculate layout, i.e. node positions, for a network.
Use igraph to create your own layout. Methods and possible parameters are described here.
Usage
The following example shows how the step can be used in a recipe.
The following configuration would allow smaller clusters and consider fewer of the data points as noise:
Inputs & Outputs
The following are the inputs expected by the step and the outputs it produces. These are generally
columns (ds.first_name
), datasets (ds
or ds[["first_name", "last_name"]]
) or models (referenced
by name e.g. "churn-clf"
).
Configuration
The following parameters can be used to configure the behaviour of the step by including them in
a json object as the last “input” to the step, i.e. step(..., {"param": "value", ...}) -> (output)
.
Algorithm to use. The name of a supported clustering algorithm (currently allows ‘fr’, ‘fruchterman_reingold’, ‘drl’, ‘sugiyama’).
Values must be one of the following:
fr
fruchterman_reingold
drl
sugiyama
Links directed. Are the links directed (true) or not (false).
Seed. Seed to initialize the graph.
Was this page helpful?