Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Visualize Correlation Between Education and Employment | Statistical Analysis for Policy Evaluation
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
Python for Government Analysts
Sectionย 2. Chapterย 7
single

single

bookChallenge: Visualize Correlation Between Education and Employment

Swipe to show menu

Scatter plots are a powerful way to visualize the relationship between two numerical variables. In policy evaluation, you often want to see if higher education attainment in a region is associated with higher employment rates. By plotting each region as a point with its education rate on the x-axis and its employment rate on the y-axis, you can visually assess whether there is a correlationโ€”such as whether regions with more education tend to have higher employment.

12
education_rates = [78.5, 82.3, 69.4, 91.2, 74.8, 88.1, 85.6] employment_rates = [65.2, 70.1, 58.7, 80.3, 60.5, 75.4, 73.2]
copy

When creating a scatter plot, it is important to clearly label each axis so that viewers understand what each point represents. The x-axis should indicate education attainment rate, while the y-axis should show employment rate. A descriptive title helps communicate the purpose of the visualization. Once the plot is created, you can interpret patterns: if the points trend upward from left to right, this suggests a positive correlation between education and employmentโ€”meaning higher education rates are associated with higher employment rates.

Task

Swipe to start coding

Write a function that creates and displays a scatter plot of education attainment rates versus employment rates for several regions.

  • The function must plot the points using education_rates on the x-axis and employment_rates on the y-axis.
  • The x-axis must be labeled "Education Attainment Rate (%)".
  • The y-axis must be labeled "Employment Rate (%)".
  • The plot must have the title "Correlation Between Education and Employment Rates".
  • The plot must be displayed.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Sectionย 2. Chapterย 7
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

some-alt