Wednesday, July 11, 2012

Health Care Costs - Part 2, "Unhealthy Things Not Related to the Problem"

Lighting Up

Way back in the day, folks believed that smoking was not only cool but also completely safe. As Marcel Danesi states in his book Of Cigarettes, High Heels, and Other Interesting Things, Second Edition: An Introduction to Semiotics (Semaphores and Signs):

"American society believed that smoking was not only highly fashionable, but that is also relieved tensions and even produced health benefits."
At least this explains why smoking was performed with such "unapologetic gusto" in those old movies. Alas, these poor souls knew not what awaited them later in life. Often there is a high price to be paid for fashion - sometimes in monetary terms, sometimes in emotional terms and unfortunately, sometimes in physical terms. Danesi goes on to point this out:
"However, epidemiologists started noticing around 1930 that lung cancer - rare before the twentieth century - had been increasing dramatically."
Due to the overwhelming evidence linking smoking and lung cancer, the U.S. imposed a ban on tobacco advertising on TV and Radio while also forcing manufacturers to put a warning label on the packages.


But It's Not Related to Increasing Insurance Rates

Apparently the warnings, bans, anti-smoking campaigns and perhaps common sense have led to a gradual decline in smoking. Taking a look at the above chart, around 42% of the population smoked in the early 70s. Since then, that percentage has steadily declined to its present levels around 19%.

As noted in Part 1 of this series, however, average insurance rates are surpassing inflation. Unless one were to speculate on an inverse relationship between smoking and insurance rates (due to weight gain perhaps), then one must conclude that the smokers in America are not contributing to the rising costs of health care.

This doesn't mean that smokers aren't paying more for insurance - they are. In essence, they fork out the extra cash to support their habit in the form of increased rates unique to them. So, if an insurance company claims that everybody's rates are higher due to smokers, feel free to point them to this article.

From the data gathered here, rising insurance rates should not be related to the smoking public.


Living On the Edge

There are many millions of Americans without health insurance. Going back in time to the turn of the 20th century, virtually nobody had health insurance. A number of factors could be cited for this (lack of medical advancement, low healthcare costs and perhaps the lack of need at the time), but it remains a fact.

Things certainly have changed.

In the United States today, the percentage of uninsured has remained very steady at around 16%. Life for those individuals is a bit different from those holding insurance. Mark L. Friedman, M.D. and Donna Raskin, in their book The Complete Idiot's Guide to Medical Care for the Uninsured, describe it as follows:

"Today in the United States the quality of one's health depends not only on his family history and how well he takes care of himself but also on whether or not he has insurance."
"In general, Americans without insurance don't go to the doctor for preventative care, which means that if they have an illness, they are diagnosed when their disease is at a more advanced stage, and, finally, once diagnosed, the uninsured receive less care and die more often and sooner than people with insurance."
"In fact, throughout every stage of health and disease, no matter what the type of care, including general health, mental health, dental health, and specific diseases, Americans without insurance fare worse than those with insurance, according to the National Coalition on Health Care."
The Uninsured Aren't the Problem

Don't be fooled by looking at the above graph into thinking that the number of uninsured has remained the same - it hasn't. It has increased from around 23 million in the early 70s to around 43 million today. In the same time frame, the total population has also increased from around 180 million to 260 million (which is why the percentage of uninsured has remained the same).

That being said, the number of those who have insurance has also increased, so all things are relatively equal.

Those without insurance are going without preventative care which means they aren't a burden to the health system in that area. When something catastrophic occurs, however, is when that can change (trauma, major disease, etc.). That being said, that would have been the case in the early 70s as well so based on that criteria, the uninsured can't be attributed to rising health care costs (unless illegal immigration is taken into account which won't be discussed here).

Conclusion

It was actually quite difficult to find non-factors in the health care debacle. Unfortunately the health care system in the United States is so complex and inter-dependent that nearly every measured variable is a player in the cause of the problem. In the next article (or perhaps more) the many factors playing into this problem will be revealed.

- continue to Part 3 -



Questions:
1) What other variables might be non-factors in the heath care problem?
2) How are the tobacco companies profits these days?
3) What country has the 'best' health care system?

Data:
Further Reading:


Code:
These graphs were generated using the 'ggplot2' and 'maps' packages within the R programming language. Additional graphics were created/edited using GIMP.

1st graph:
ggplot(smoking.frame, aes(x=Year, y=Overall.Population)) +

    geom_point(color="blue", size=2) +
    geom_line(aes(group=1), color="blue", size=2.5) +
    geom_segment(aes(x=2009, xend=2010, y=23, yend=19.3, color="blue"), color="blue", size=2) +
    geom_segment(aes(x=2008.8, xend=2010, y=17, yend=19.3, color="blue"), color="blue", size=2) +
    geom_text(x=1965, y=47, label="42.4%", size=4) +
    geom_text(x=2010, y=27, label="19.3%", size=4) +
    
    scale_y_continuous(limits=c(0,100)) +
    
    ylab("(%) Percentage who smoke\n") +
    xlab("Year") +
    
    opts(
        plot.title=theme_text(size=24, family='Segoe'),
        title = "Smoking in the United States\n",
        legend.title = theme_blank(),
        panel.background = function(...)pngob,
        axis.line = theme_segment(),
        axis.text.x=theme_text(size=12, family='Segoe'),
        axis.text.y=theme_text(size=12, family='Segoe'),
        axis.title.x=theme_text(size=14, vjust=-0.4, family='Segoe'),
        axis.title.y=theme_text(size=14, hjust=0.5, angle=90, family='Segoe'),
        plot.margin = unit(c(1, 2, 1, 1), "cm"))
  
2nd graph:
ggplot(insured.frame, aes(x=Year, y=(Uninsured/Population.Under.65.Millions)*100)) +
    
    geom_point(color="blue", size=2) +
    geom_line(aes(group=1), color="blue", size=2.5) +
    geom_segment(aes(x=2006, xend=2007, y=18.9, yend=16.7), color="blue", size=2) +
    geom_segment(aes(x=2006, xend=2007, y=14.6, yend=16.7), color="blue", size=2) +
    geom_text(x=1972, y=22, label="16.7%", size=4) +
    geom_text(x=2007, y=22, label="16.6%", size=4) +
    
    scale_y_continuous(limits=c(0,100)) +
    scale_x_continuous(limits=c(1972,2007)) +
    
    ylab("(%) Percentage of Population Uninsured\n") +
    xlab("Year") +
    
    opts(
        plot.title=theme_text(size=24, family='Segoe'),
        title = "Uninsured in the United States\n",
        legend.title = theme_blank(),
        panel.background = function(...)pngob,
        axis.line = theme_segment(),
        axis.text.x=theme_text(size=12, family='Segoe'),
        axis.text.y=theme_text(size=12, family='Segoe'),
        axis.title.x=theme_text(size=14, vjust=-0.4, family='Segoe'),
        axis.title.y=theme_text(size=14, hjust=0.5, angle=90, family='Segoe'),
        plot.margin = unit(c(1, 2, 1, 1), "cm"))

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Stylify Your Blog