February vs July Average Temperatures
Well, as you remember, there are no 100% correct answers to clustering problems. For the last task you solved it seems like 5 clusters might be a good option.
Let's visualize the results of clustering into 5 groups by building the scatter plot for average February vs July temperatures, which are one of the coldest and hottest months respectively.
Swipe to start coding

- Create a
KMeans
model namedmodel
with 5 clusters. - Fit the numerical columns of
data
(2 - 13 indices) tomodel
. - Add the
'prediction'
column to thedata
DataFrame with predicted bymodel
labels. - Build a scatter plot of average
'Feb'
vs'Jul'
temperatures, having each point colored with respect to the'prediction'
column of thedata
DataFrame.
Solución
¡Gracias por tus comentarios!
single
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla
Resumir este capítulo
Explicar el código en file
Explicar por qué file no resuelve la tarea
Awesome!
Completion rate improved to 3.57
February vs July Average Temperatures
Desliza para mostrar el menú
Well, as you remember, there are no 100% correct answers to clustering problems. For the last task you solved it seems like 5 clusters might be a good option.
Let's visualize the results of clustering into 5 groups by building the scatter plot for average February vs July temperatures, which are one of the coldest and hottest months respectively.
Swipe to start coding

- Create a
KMeans
model namedmodel
with 5 clusters. - Fit the numerical columns of
data
(2 - 13 indices) tomodel
. - Add the
'prediction'
column to thedata
DataFrame with predicted bymodel
labels. - Build a scatter plot of average
'Feb'
vs'Jul'
temperatures, having each point colored with respect to the'prediction'
column of thedata
DataFrame.
Solución
¡Gracias por tus comentarios!
Awesome!
Completion rate improved to 3.57single