CommencerCommencer gratuitement

Choosing clusters

As a US counselor, you understand that humans are social beings and depend on each other. As part of a study you're conducting, you conduct a social relationship survey to explore how people manage their relationships as well as their mental health.

The dataset, mh_survey, includes the gender of the respondent, the US state they live in,US_state_live, and whether they have sought treatment for their mental health to sort through their different relationship dynamics, sought_treatment.

Pandas and numpy as been uploaded as pd and np.

Cet exercice fait partie du cours

Analyzing Survey Data in Python

Afficher le cours

Instructions

  • Create a list of the unique states present in the survey.
  • Randomly choose 10 clusters from the cluster of 47 states that our respondents live in, under column US_state_live.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Create a list of the unique states present in the survey
unique_states = ____(____(____))

# Randomly choose ten states
random_clusters = ____(unique_states, size = ____, replace = False)

print(random_clusters)
Modifier et exécuter le code