Skip to content

Commit 5e8a38f

Browse files
committed
create tidyclut_models.csv and index.qmd for tidyclust find page
1 parent 210db3c commit 5e8a38f

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

find/tidyclust/index.qmd

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Search tidyclust models
3+
weight: 2
4+
description: |
5+
Find model types and engines to fit and predict clustering methods in the tidymodels framework.
6+
toc: true
7+
toc-depth: 0
8+
include-after-body: ../../resources.html
9+
css: ../styles-find.css
10+
---
11+
12+
To learn about the tidyclust package, click on the link in the topic column. Use the tables below to find [model types and engines](#models).
13+
14+
```{r}
15+
#| include: false
16+
17+
library(tidymodels)
18+
library(readr)
19+
library(DT)
20+
library(htmlwidgets)
21+
setWidgetIdSeed(1234)
22+
tidymodels_prefer()
23+
tidyclust_models <- read_csv("tidyclust_models.csv")
24+
```
25+
26+
```{r}
27+
#| label: table-display
28+
#| echo: false
29+
tidyclust_models %>%
30+
mutate(package = factor(package)) %>%
31+
mutate(mode = factor(mode)) %>%
32+
datatable(rownames = FALSE,
33+
class = 'cell-border stripe',
34+
filter = 'top',
35+
escape = FALSE,
36+
options = list(pageLength = 25))
37+
```
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
title,model,engine,topic,mode,package
2+
Hierarchical (Agglomerative) Clustering via stats,<code>hier_clust</code>,<code>stats</code>,<a href='https://tidyclust.tidymodels.org//reference/details_hier_clust_stats.html' target='_blank'><tt>details_hier_clust_stats</tt></a>,partition,tidyclust
3+
K-means via ClusterR,<code>k_means</code>,<code>ClusterR</code>,<a href='https://tidyclust.tidymodels.org//reference/details_k_means_ClusterR.html' target='_blank'><tt>details_k_means_ClusterR</tt></a>,partition,tidyclust
4+
K-means via clustMixType,<code>k_means</code>,<code>clustMixType</code>,<a href='https://tidyclust.tidymodels.org//reference/details_k_means_clustMixType.html' target='_blank'><tt>details_k_means_clustMixType</tt></a>,partition,tidyclust
5+
K-means via klaR,<code>k_means</code>,<code>klaR</code>,<a href='https://tidyclust.tidymodels.org//reference/details_k_means_klaR.html' target='_blank'><tt>details_k_means_klaR</tt></a>,partition,tidyclust
6+
K-means via stats,<code>k_means</code>,<code>stats</code>,<a href='https://tidyclust.tidymodels.org//reference/details_k_means_stats.html' target='_blank'><tt>details_k_means_stats</tt></a>,partition,tidyclust

0 commit comments

Comments
 (0)