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
2. Deal with potential missing values; choose any suitable strategy. We
534
+
recommend to utilize the [`SimpleImputer`](https://scikit-learn.org/stable/modules/generated/sklearn.impute.SimpleImputer.html) with your chosen strategy. The application
535
+
of the `SimpleImputer` should be straightforward as it implements the
536
+
methods you already know, e.g., `fit_transform()`.
536
537
3. Do you need to scale the features? If so, apply a `StandardScaler`.
537
538
4. Use the elbow method to determine the number of clusters.
538
539
5. Fit the k-means algorithm with the optimal number of clusters.
0 commit comments