You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+19-9Lines changed: 19 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,19 @@
1
1
# tidyclust (development version)
2
2
3
+
# tidyclust 0.2.0
4
+
5
+
## New Engines
6
+
7
+
* The clustMixType engine as been added to `k_means()`. This engine allows fitting of k-prototype models. (#63)
8
+
9
+
* The klaR engine as been added to `k_means()`. This engine allows fitting of k-modes models. (#63)
10
+
11
+
## Improvements
12
+
13
+
* Engine specific documentation has been added for all models and engines. (#159)
14
+
15
+
## Bug Fixes
16
+
3
17
* Fixed bug where engine specific arguments were passed along for `k_means()` when the engine ClusterR. (#142)
4
18
5
19
* Fixed bug where `prefix` argument wouldn't be correctly passed through `extract_cluster_assignment()`, `extract_centroids()`, and `predict()` (#145)
@@ -12,19 +26,15 @@
12
26
13
27
*`k_means()` now errors informatively if `fit()` without `num_clust` specified. (#134)
14
28
15
-
* Exported internal functions `ClusterR_kmeans_fit()`, `stats_kmeans_fit()`, and `hclust_fit()` have been renamed to `.k_means_fit_ClusterR()`, `.k_means_fit_stats()`, and `.hier_clust_fit_stats()` to reduce visibility for users.
16
-
17
-
* The clustMixType engine as been added to `k_means()`. This engine allows fitting of k-prototype models. (#63)
29
+
* Fixed bug where levels didn't match number of clusters if prediction on fewer number of observations. (#158)
18
30
19
-
*The klaR engine as been added to `k_means()`. This engine allows fitting of k-modes models. (#63)
31
+
*Fixed bug where `tune_cluster()` would error if used with an recipe that contained non-predictor variables such as id variables. (#124)
20
32
21
-
* Cluster reordering is now done at the fitting time, not the extraction and prediction time. (#154)
33
+
## Breaking Changes
22
34
23
-
* Engine specific documentation has been added for all models and engines. (#159)
24
-
25
-
* Fixed bug where levels didn't match number of clusters if prediction on fewer number of observations. (#158)
35
+
* Exported internal functions `ClusterR_kmeans_fit()`, `stats_kmeans_fit()`, and `hclust_fit()` have been renamed to `.k_means_fit_ClusterR()`, `.k_means_fit_stats()`, and `.hier_clust_fit_stats()` to reduce visibility for users.
26
36
27
-
*Fixed bug where `tune_cluster()` would error if used with an recipe that contained non-predictor variables such as id variables. (#124)
37
+
*Cluster reordering is now done at the fitting time, not the extraction and prediction time. (#154)
0 commit comments