Is There a Simple Way to Chart Bowling Scores for a Large Group of Players?

  • Thread starter Thread starter Moderation
  • Start date Start date
Click For Summary

Discussion Overview

The discussion revolves around finding effective methods to chart and visualize bowling scores for a large group of 5000 players. Participants explore various approaches to display these scores in a way that allows users to quickly identify significant changes over time, considering the need for simplicity and ease of understanding for non-experts.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested

Main Points Raised

  • One participant suggests using simple line graphs to show significant changes, noting that they do not require much knowledge to interpret.
  • Another participant expresses concern that displaying 5000 line charts on one screen would be too busy and hard to decipher.
  • A suggestion is made to use arrows to indicate score changes (up, down, stable) based on different time metrics (weekly, monthly, yearly).
  • Participants discuss the possibility of identifying individuals with significant score improvements or losses, considering the challenge of making this information easily visible among many players.
  • One idea involves using color coding or symbols to highlight bowlers with notable score changes, though concerns are raised about potential clutter and the need for users to remember the significance of different indicators.

Areas of Agreement / Disagreement

Participants do not reach a consensus on the best method to visualize the scores, with multiple competing views on how to balance clarity and detail in the presentation of data.

Contextual Notes

Participants mention various technical tools and programming languages (Excel, Python, SQLAlchemy, etc.) for implementation, but there is no agreement on the optimal solution or approach.

Who May Find This Useful

This discussion may be useful for individuals involved in data visualization, sports analytics, or anyone looking to present large datasets in an accessible manner.

Moderation
Messages
3
Reaction score
0
Hi and thanks for viewing this. I am looking for as many ideas as possible so if you see a reply please do not hesitate to reply also.

To make this example easy I am going to explain my isse using group of bowlers as an example.

OK let's say I have 5000 bowlers and they are all on one team. They give me their scores for each week and I input these scores they give me. I want to show a way to graph/chart these scores on ONE SCREEN so they can view them. HERE'S THE MOST IMPORTANT PART they need to be able to see any significant change in their scores as time progresses QUICKLY and EASILY. Meaning these people are not chartists or math maticians so I can't use something that is difficult to decipher. The scores will have weekly sums going back several years. So the screen will have lots of numbers. I am fine with replacing the scores with anything to show the significant change in value, but again it needs to be easily read when I look look over ALL the bowlers data and simply scan looking for any significant change going back several years.
 
Computer science news on Phys.org
Moderation said:
OK let's say I have 5000 bowlers and they are all on one team. They give me their scores for each week and I input these scores they give me. I want to show a way to graph/chart these scores on ONE SCREEN so they can view them. HERE'S THE MOST IMPORTANT PART they need to be able to see any significant change in their scores as time progresses QUICKLY and EASILY.
How robust does the system need to be and how skilled are you as a coder?

You can implement this in excel or access + maybe a vb based gui. I like python/sqlalchemy/postgres + matplotlib for display/phpdbadmin for views (and pyQT or pyGTK for a gui) but that could be overkill for your task.

Simple line graphs will show significant changes well enough and don't require much knowledge.
 
Hi and thanks for your idea. I am open to any suggestion. I think a line chart might be pretty busy (5000 charts on one screen shot) and hard to decipher, but I appreciate your replying.
 
Moderation said:
Hi and thanks for your idea. I am open to any suggestion. I think a line chart might be pretty busy (5000 charts on one screen shot) and hard to decipher, but I appreciate your replying.
I meant you generate charts on request, which is why you'd probably want to cobble together a GUI.
If you've got to have all 5000 on a screen, just throw however many weeks numbers and use arrows (up if the scores have improved, down if they haven't, equal if it's stable) based on whatever metric you want. Have a few cells: week based changes (how this week compares to last), month based (how this week compares to the month and how this month compares to last month), and year based (how this month compares to the year, and how this year stacks up to last.) Adjust as needed and ask your users which metrics they really care about. On the backend you've got to do some real statistics (I think a t-test works for this, but not sure), but just report significance through a graphic.
 
Last edited:
Thanks Story645.

How about if the group wants to find those individuals that have had significant score improvements or losses? Meaning I look at 5000 players and I want to see easily and quickly those that have moved up or down more than the others. I thought about just using raw numbers or percentages, but with 5000 it's just too busy. I need a way to make it simple for laymen to just look/scan and find those anomalies compared to the rest broken down in weekly periods (many years worth).
 
Moderation said:
How about if the group wants to find those individuals that have had significant score improvements or losses? Meaning I look at 5000 players and I want to see easily and quickly those that have moved up or down more than the others.

Flags! Put those bowlers in a different color (diff colors for up and down if you'd like) or push them to the first 20 positions or throw on a star by their names or use two arrows or different colored arrows for the diff levels (this may be too busy/require people to remember things, so not my fave option) or whatever else you think will make them distinctive. You''re just changing your significance thresholds on the backends.

I like mangaupdates stats implementation (it's totally what's inspiring my answer).
 

Similar threads

  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 10 ·
Replies
10
Views
1K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 9 ·
Replies
9
Views
3K
Replies
4
Views
3K
  • · Replies 9 ·
Replies
9
Views
30K
  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 4 ·
Replies
4
Views
3K