This question refers to the Classification Tree information…

This question refers to the Classification Tree information presented above. Your boss doesn’t understand R code, and has asked you to give a general overview of what is going on here. Write a 1-2 paragraph overview in response to the question. Make sure you include the overall objective of this analysis, and any dead ends or good results.

You have a data set with the following variables: Househol…

You have a data set with the following variables: Household income, which runs from $30,000 to $120,000 Number of children in family, from 0 to 5 Number of years in current location, from 0 to 20+ Whether they rent or own, as a text field Number of miles driven per year, from 0 to 50,000 Population in their location, from 100 to 1 million + Where possible, you have standardized the variables, and you have recoded the rent/own text field into a binary 0 (for rent) and 1 (for own). You want to run a k-means algorithm on this entire data set, to try to determine different demographic niches. For example, you may want to separate out urban apartment-dwellers from rural retirees. Is it possible to run k-means clustering on all of these data fields? Say you have loaded the standardized variables above into columns 1 through 6 in a data frame called responses. Let’s say you want to try for 7 clusters.  In particular, can you do something like this? > fit