Only brush the teeth you want to keep

14

When I was a kid, I remember a motivational poster on my dentist's wall that said "You don't have to brush all your teeth -- only the ones you want to keep."  That poster really made me think, and brush my teeth! And now that I'm a data-analyst adult, I think I've found an even scarier motivational poster ... graphs showing the percentage of senior citizens who have lost all their natural teeth!

Before we get to the scary data though, here's a picture of my friend Becky's daughter, who pulled her first tooth while performing on-stage in the Sword of Peace outdoor drama. Hopefully once all her permanent teeth come in, she'll keep them for a very long time!

lost_tooth

 

I first saw the seniors' tooth-loss data mapped by Leon Markovitz on dadaviz.com. But Leon used an equal-area map to show the data, and with that kind of map I find it difficult to identify the states I'm interested in. For example, the states are often not in their correct geographical position (for example, the map shows North Dakota to the west of South Dakota, and Virginia to the west of North Carolina). Here's a screen-capture of his map:

us_toothless_seniors_original_1

While looking for the actual data values, I found yet another map on the statemaster.com website. This one used a traditional geographical map, but the color ramp they used didn't help me see much about the data. And although the color scale went from bright red to dark green, none of the states in the map seemed to have colors close to either extreme. I found it really difficult to distinguish one shade from another, and intuit the state values. I also didn't really like the layout, with the definition/title way at the top (separated by an advertisement), and the color legend way at the bottom (outside of the map area). Here's a screen-capture of their map:

us_toothless_seniors_original_2

 

Now, for *my* graphs!...

I eventually found the source data on the CDC website, imported it into a SAS dataset, and created my own map. I used quantile binning so 1/5 of the states would be in each color range. I picked a diverging color scheme from colorbrewer.org (with 5 colors, red-to-green), and assigned those colors to the map via pattern statements. If you click the image of my map below, you can see the full size version with html hover-text showing the values for each state.

us_toothless_seniors

A map is good for showing the geographical distribution and trends in data, but with a list like this I often want to compare and rank the values. So I also created a bar chart. I colored the bars the same as the states in the map (for easy cross-comparison), and since the source data provided confidence interval values, I annotated those onto the bar chart also.

us_toothless_seniors1

And finally, I also added a text table below the graphs. The text table allows people to easily do a string-search (ctrl+F) for the state name they're interested in, and also allows people to copy-and-paste the data (for further analysis). For continuity, I colored values in the table the same as the map and bar chart. Here's a screen-capture of a portion of the table (click on it to see the full table).

toothless_table

 

Question: What's your strategy for keeping your teeth, well into your senior years?

Share

About Author

Robert Allison

The Graph Guy!

Robert has worked at SAS for over a quarter century, and his specialty is customizing graphs and maps - adding those little extra touches that help them answer your questions at a glance. His educational background is in Computer Science, and he holds a BS, MS, and PhD from NC State University.

Related Posts

14 Comments

  1. Why didn't you include Puerto Rico? Is a Commonwealth of the USA and I would love to see where they fall in the chart.

  2. Edzard van Santen on

    Nice approach but how would you optimize so you would not exclude people with the most prevalent from of color blindness (red-green), which affects at least 5% of the male population and about 1% of the female population.
    Additionally, this approach has potential. In your 'spare' time you could create a drill-down map with layers covering income, educational level etc. I bet that there will be some 'nice' relationships there.

  3. Pingback: The relationship between toothlessness and income - The DO Loop

  4. upper_confidence_interval=scan(translate(trim(left(scan(scan(whole_line,2,':'),4,' '))),'','()'),2,'-')/100;

    That is a very interesting way of reading in data! Never seen anything like that before.

Back to Top