Does age play a major impact on someone’s ability to think ahead in the future and about potential future consequences? This question interest me because the ability to consciously think about the future is a very human quality that most animals do not do, so I wonder at what ages people start using that skill, and when it begins to longer be of importance.
I predict that people on the younger and older end of the question’s age spectrum will not be as likely to think about the future, while those in the middle will be much more likely to think about the future.
The source of this information comes from http://openpsychometrics.org/. A non profit website that attempts to teach people about psychology. In this case, how much people do or do not think about their future.
The data was collected online on their website via a survey that anyone was able to fill out, though some restrictions applied to recording final data, such as age, and self admitted accuracy of score. The survey asked multiple questions about how much, or how little they think about their future.
The variables mostly included the scores that each person gave themselves for their Consideration of Future Consequences. Each question on a scale of 1-5. Along with the participants age, gender, self admitted accuracy of answers, and country.
There was a total of 15,015 valid responses from the participants, ( Some results had negative accuracy or scores, which are not possible for the survey )
The original survey did not use the points to determine a total amount of future thought, a high amount of points could measure both high and low thought. In order to get a total amount, I split the points into two categories, high and low thought, and combined them together at the end in order to get the average amount of future thinking.
Tools
I used R Studio within Posit.Cloud to create the website, Github to host it, and library(tidyverse) and ggplot to apply the graphs on the website.
Approach/Prediction
I will look at the correlation between age and the level of Consideration of Future Consequences.
I think people who are older than 20, but younger than 50, are going to be average around 13 points for Consideration of Future Consequences.
Results
library(ggplot2)library(tidyverse) #initializes the packages
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr 1.1.4 ✔ readr 2.1.5
✔ forcats 1.0.0 ✔ stringr 1.5.1
✔ lubridate 1.9.4 ✔ tibble 3.3.0
✔ purrr 1.1.0 ✔ tidyr 1.3.1
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag() masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
data <-'fixed_data.csv'read_data <-read.csv(data) |>filter(age <=120& accuracy<=100& accuracy >=0, if_any(Q1:Q12, ~ .x >=0 ))positive_val <-c("Q1","Q2","Q6","Q7","Q8","Q10") # Positive value questionsnegative_val <-c("Q3","Q4","Q5","Q9","Q11","Q12")# Negative value questionsfuture_thinking <- read_data |> dplyr::mutate(positive_future =rowSums(read_data[ ,positive_val], na.rm =TRUE),negative_future=rowSums(read_data[ ,negative_val], na.rm =TRUE))total_future <- future_thinking |>mutate(average_Future = (positive_future - negative_future)) #Includes the Total amount of points into the data graph.# The actual graph codeggplot(total_future, aes(x = age, y = average_Future)) +geom_point (position ="jitter", size =0.1, alpha =1/2) +labs(title="Age and Consideration of Future Consequences", x ="Age" , y="Self Rated Future Thoughtfulness")
# A graph of the mean future thought level of every individual age.ggplot(total_future, aes(x = age, y = average_Future)) +stat_summary(fun.min = min, fun.max = max, fun = mean) +labs(title="Age and Consideration of Future Consequences", x ="Age" , y="Self Rated Future Thoughtfulness")
Discussion
From the graph, it seemed a vast majority of the people surveyed in general were within the range I predicted to have more future thought. Although it does not seem as if I was correct with my theory, majority of the results ranged between -7 and 15. As age goes higher, there is a slight increase in the level level of future thought.
Although the second graph shows a slight increase in thought the older someone gets, a steep falloff happens around 67 years old, where, while not falling into the negative, is still a noticeable drop.