The data come from U.S. Office of Management and Budget and Centers for Disease Control & Prevention. The plot correlates US spending on science, space, and technology and Suicides by hanging, strangulation, and suffocation. The correlation coefficient across these two variables is a whopping 99%!
year<-c(1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009)
suicides<-c(5427,5688,6198,6462,6635,7336,7248,7491,8161,8578,9000)
spending<-c(18.079,18.594,19.753,20.734,20.831,23.029,23.597,23.584,
25.525,27.731,29.449)
dat<-as.data.frame(cbind(year,suicides,spending))
cor(suicides, spending)
## [1] 0.9920817
Does U.S. spending on science, space, and technology cause people to commit suicide?