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
Under the Identifying Communities section of the Final Project Outline Storyboard, there is this code. did you want us to create 9 clusters or should we stick to fewer? Your comments are included in the snippet that I am pasting below:
..
..
#Run Cluster Analysis
mod2 <- Mclust(Census2010[keep.these1])
# Set groups to 5, but you can remove this to let r split data into own groupings
summary(mod2, parameters = TRUE)
Census2010$cluster <- mod2$classification
The text was updated successfully, but these errors were encountered:
@Niagara1000 in that code example there is no pre-defined specification for number of groups. The number of groups will be determined based on the clustering algorithm. If you want to force the data into a specific number of groups, lets say four, you need to add the G=4 to the Mclust function as we did in Lab 6.
Hi Professor @Anthony-Howell-PhD ,
Under the Identifying Communities section of the Final Project Outline Storyboard, there is this code. did you want us to create 9 clusters or should we stick to fewer? Your comments are included in the snippet that I am pasting below:
The text was updated successfully, but these errors were encountered: