Description Usage Arguments Value Examples
A Task encapsulates the Data with some additional information.
As of now clustering will be only made for numerical data. Categorical data is [WIP]
1 2 3 |
id |
[ |
data |
[ |
cluster.cols |
[ |
method |
[
For Partitioning Clustering:
For Model-Based Clustering:
Default is |
random.seed |
[ |
scale.num.data |
[ |
par.vals |
[ |
show.NA.msg |
[ |
... |
For now has no use |
ClusterTask Object
1 2 3 4 5 6 7 | cluster.task = makeClusterTask(id = "iris", data = iris,
method = "cluster.kmeans",
random.seed = 89L, par.vals = list(iter.max = 15L))
cluster.task2 = makeClusterTask(id = "iris", data = iris,
method = "cluster.kmeans", random.seed = 89L,
cluster.cols = c("Sepal.Length" = "Petal.Length",
"Sepal.Width" = "Petal.Width"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.