Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Apprendre Challenge: Visualize Test Status Distribution | Analyzing and Visualizing Test Data
Python for QA Engineers

bookChallenge: Visualize Test Status Distribution

In QA engineering, visual summaries such as charts are powerful tools for quickly communicating the outcomes of test executions to both technical and non-technical stakeholders. Pie charts, in particular, are effective for illustrating the proportion of passed and failed tests, making it easy to spot issues at a glance and prioritize further investigation. In this challenge, you will practice your data visualization skills by creating a pie chart that displays the distribution of test statuses from a static list.

Tâche

Swipe to start coding

Create a function that generates a pie chart visualizing the distribution of test statuses from a hardcoded list. The goal is to provide a clear summary of passed and failed test proportions.

  • Count the number of "passed" and "failed" values in the test_statuses list.
  • Generate a pie chart using matplotlib.pyplot.pie, with labels for "Passed" and "Failed".
  • Use different colors for each status.
  • Display the percentage of each status on the chart.
  • Set the chart title to "Test Status Distribution".
  • Ensure the chart is displayed with equal aspect ratio.

Solution

Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 2. Chapitre 5
single

single

Demandez à l'IA

expand

Demandez à l'IA

ChatGPT

Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion

Suggested prompts:

What data should I use for the test statuses in the pie chart?

Can you guide me on how to create a pie chart for this scenario?

What tools or libraries do you recommend for making the pie chart?

close

bookChallenge: Visualize Test Status Distribution

Glissez pour afficher le menu

In QA engineering, visual summaries such as charts are powerful tools for quickly communicating the outcomes of test executions to both technical and non-technical stakeholders. Pie charts, in particular, are effective for illustrating the proportion of passed and failed tests, making it easy to spot issues at a glance and prioritize further investigation. In this challenge, you will practice your data visualization skills by creating a pie chart that displays the distribution of test statuses from a static list.

Tâche

Swipe to start coding

Create a function that generates a pie chart visualizing the distribution of test statuses from a hardcoded list. The goal is to provide a clear summary of passed and failed test proportions.

  • Count the number of "passed" and "failed" values in the test_statuses list.
  • Generate a pie chart using matplotlib.pyplot.pie, with labels for "Passed" and "Failed".
  • Use different colors for each status.
  • Display the percentage of each status on the chart.
  • Set the chart title to "Test Status Distribution".
  • Ensure the chart is displayed with equal aspect ratio.

Solution

Switch to desktopPassez à un bureau pour une pratique réelleContinuez d'où vous êtes en utilisant l'une des options ci-dessous
Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 2. Chapitre 5
single

single

some-alt