Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Plot Team Attendance | Tracking Athlete Performance
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
Python for Coaches

bookChallenge: Plot Team Attendance

Visualizing attendance helps coaches quickly identify participation trends across the team. By creating a bar chart of team attendance, you can immediately spot which athletes are consistently present and who may need additional support or encouragement. This approach transforms raw attendance data into an accessible visual summary, making it easier to communicate and act on participation insights.

Task

Swipe to start coding

Write a function that takes a list of athlete attendance records and plots a bar chart showing the total number of sessions attended by each athlete.

  • Each record in the list contains a "name" and an "attendance" list.
  • The "attendance" list contains boolean values, where True indicates presence at a session.
  • The function must count the number of True values for each athlete.
  • The x-axis of the bar chart must show athlete names.
  • The y-axis must show the total sessions attended for each athlete.
  • The function must display the bar chart.

Solution

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 1. ChapterΒ 7
single

single

Ask AI

expand

Ask AI

ChatGPT

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

Suggested prompts:

Can you show me an example of a team attendance bar chart?

What tools can I use to create a bar chart for attendance data?

How do I interpret the trends shown in the attendance bar chart?

close

bookChallenge: Plot Team Attendance

Swipe to show menu

Visualizing attendance helps coaches quickly identify participation trends across the team. By creating a bar chart of team attendance, you can immediately spot which athletes are consistently present and who may need additional support or encouragement. This approach transforms raw attendance data into an accessible visual summary, making it easier to communicate and act on participation insights.

Task

Swipe to start coding

Write a function that takes a list of athlete attendance records and plots a bar chart showing the total number of sessions attended by each athlete.

  • Each record in the list contains a "name" and an "attendance" list.
  • The "attendance" list contains boolean values, where True indicates presence at a session.
  • The function must count the number of True values for each athlete.
  • The x-axis of the bar chart must show athlete names.
  • The y-axis must show the total sessions attended for each athlete.
  • The function must display the bar chart.

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Β 1. ChapterΒ 7
single

single

some-alt