Ivan Widjanarko, Ha Dong Park, Alex Miller, and Professor Kunnen
Introduction
This project was done in collaboration with the Calvin Nursing Department and Professor Katherine Kunnen
In our project, nursing students were given a pre-survey (before a nursing simulation experience) and a post-survey (after a nursing simulation experience). In which, they answered questions to test whether confidence levels in health assessments was affected through this virtual reality experience. By exploring the different time points for the nursing virtual reality experience, we tried to find out whether this experience was an effective way to help nursing students become more confident in their fields.
In this project, we came up with 2 main questions that we explored.
How does the different time variables affect student’s confidence for their health assessment?
Does previous VR_Experience affect their confidence for the health assessment?
Data
Statistical Modeling
We’re using two linear regression models for knowledge and confidence in order to explore whether Time Points and Simulation Experiences affect confidence for nurses in health assessments.
Main Findings
Our analysis revealed that the timing of health assessments played a role in influencing nurses’ confidence levels, particularly right after using VR, indicating the importance of timing in boosting confidence. While VR experiences could enhance confidence over time, prior simulation experiences didn’t notably contribute to confidence levels, suggesting a focus on assessment timing for confidence improvement.
Our main findings show that the VR nursing experience overall helped nurses be more confident in health assessments, indicated as they had a higher confidence score right after given the Nursing VR Experience.
An insight we gained from this model is that students DO NOT need prior experience with VR or simulations to have more confidence in health assessments.
Our Experience
Our main challenges included accurately inputting survey data into a spreadsheet, converting and manipulating our data to numerical format, and calculating averages for these datas.
We faced a challenge in coordinating team meetings due to time constraints, but we successfully resolved it through effective communication.
Nevertheless, from this experience, we gained knowledge in model and statistical exploration. It was quite overwhelming in the beginning as we did not have a clear plan of execution for the data, however, we were able to overcome this challenge and find beneficial conclusions.
References & Acknowledgements
We would like to thank Professor Kunnen for organizing and providing us with the dataset for our project. Her curiosity allowed us the opportunity to explore whether VR goggles and previous simulation experiences had an effect on nurses.
We also would like to thank Professor DeRuiter for all the help she has given us so far in this dataset. She helped us with our data challenges and explained complex concepts which has been incredibly valuable, and has lead to beneficial results.
Work-Cited
“Nursing at Calvin.” Calvin University, calvin.edu/academics/departments-programs/nursing.
---title: "Nursing VR Experiences Research"authors: "Ivan Widjanarko, Ha Dong Park, Alex Miller, and Professor Kunnen"format: html: embed-resources: true code-tools: true theme: lux page-layout: custom fontsize: '75%'editor: visual---```{r}#| label: setup#| include: falselibrary(tidyverse)library(ggformula)library(ggforce)library(ggeffects)library(glmmTMB)knitr::opts_chunk$set(echo =FALSE,message =FALSE,fig.width =7,fig.height =5 )theme_set(theme_minimal(base_size =20))```<!-- style notes... --><!-- we used the "lux" theme - see more at: --><!-- https://quarto.org/docs/output-formats/html-themes.html -->```{=html}<!-- consider more customization of colors, etc. - some options at<!-- https://quarto.org/docs/output-formats/html-themes.html -->```<!-- or use css if you know how -->::: grid::: g-col-4<!-- This column takes 1/3 of the page --># **Introduction**- This project was done in collaboration with the Calvin Nursing Department and Professor Katherine Kunnen - In our project, nursing students were given a pre-survey (before a nursing simulation experience) and a post-survey (after a nursing simulation experience). In which, they answered questions to test whether confidence levels in health assessments was affected through this virtual reality experience. By exploring the different time points for the nursing virtual reality experience, we tried to find out whether this experience was an effective way to help nursing students become more confident in their fields.- In this project, we came up with 2 main questions that we explored. - How does the different time variables affect student's confidence for their health assessment? - Does previous VR_Experience affect their confidence for the health assessment?<!-- --># **Data**```{r}prepost <-read_csv("Nursing VR - Sheet1.csv")prepost_num <- prepost |>mutate(across(Health_Assessment:Assesment_Data_Knowledge_Confidence,~case_when(.x =='SA'~4, .x =='A'~3, .x =='U'~2, .x =='D'~1, .x =='SD'~0),# new numeric columns will have names like the original columns,# but with "_num" appended.names ="{.col}_num"),knowledge_num = (Health_Assessment_num + Nursing_Process_num + Nursing_Interventions_num + Assesment_Data_Knowledge_num) /4,confidence_num = (Confidence_of_Health_Assesment_num + Acute_Care_Nursing_Interventions_Confidence_num + Severe_Care_Nursing_Intervention_Confidence_num + Assesment_Data_Knowledge_Confidence_num) /4 )prepost_num <- prepost_num |>mutate(#Actual_Simulation_Expiriences = factor(Actual_Simulation_Expiriences),Simulation_Experience =case_when(Actual_Simulation_Expiriences %in%c('Reality_Gaming_Exp', 'Gaming_and_Goggles', 'Reality_Goggles', 'Reality_Gaming') ~'Previous Experience', Actual_Simulation_Expiriences =='First'~'No Experience'),Year_Of_College =factor(Year_Of_College),Gender =factor(Gender))``````{r, fig.width=6, fig.height=2}knowledge <- prepost_num |>select(knowledge_num, Simulation_Experience, Year_Of_College, Gender, Time_Point) |>drop_na() |>mutate(Time_Point =fct_relevel(Time_Point,"Two_Month","Post-test","Pre-test"))gf_boxplot(knowledge_num ~ Time_Point, data = knowledge) |>gf_refine(coord_flip()) |>gf_labs(x="Time\nPoint",y="Average Knowledge Value")``````{r, fig.width=6, fig.height=2}confidence <- prepost_num |>select(confidence_num, Simulation_Experience, Year_Of_College, Gender, Time_Point) |>drop_na() |>mutate(Time_Point =fct_relevel(Time_Point,"Two_Month","Post-test","Pre-test"))gf_boxplot(confidence_num ~ Time_Point, color=~Simulation_Experience, data = confidence) |>gf_refine(coord_flip()) |>gf_labs(x="Time\nPoint",y="Average Confidence Value",color="Simulation\nExperience") |>gf_theme(legend.text=element_text(size=8),legend.title=element_text(size=10))```:::::: g-col-4<!-- This column takes 1/3 of the page --># Statistical ModelingWe're using two linear regression models for knowledge and confidence in order to explore whether Time Points and Simulation Experiences affect confidence for nurses in health assessments.# Main Findings- Our analysis revealed that the timing of health assessments played a role in influencing nurses' confidence levels, particularly right after using VR, indicating the importance of timing in boosting confidence. While VR experiences could enhance confidence over time, prior simulation experiences didn't notably contribute to confidence levels, suggesting a focus on assessment timing for confidence improvement.- Our main findings show that the VR nursing experience overall helped nurses be more confident in health assessments, indicated as they had a higher confidence score right after given the Nursing VR Experience.- An insight we gained from this model is that students DO NOT need prior experience with VR or simulations to have more confidence in health assessments.```{r, fig.width=6, fig.height=2}knowledge_model <-glmmTMB( knowledge_num ~ Time_Point * Simulation_Experience + Year_Of_College + Gender + (1| Student_ID),data = prepost_num,)ggpredict(knowledge_model, terms =c('Time_Point'), type ='fixed') |>plot() |>gf_labs(title='Predicted Values of Average Knowledge Value',x='Time Point',y='Average Knowledge Value')``````{r, fig.width=6, fig.height=2}confidence_model <-glmmTMB( confidence_num ~ Time_Point * Simulation_Experience + Year_Of_College + Gender + (1| Student_ID),data = prepost_num,)ggpredict(confidence_model,terms =c('Time_Point', 'Simulation_Experience'),type ='fixed') |>plot() |>gf_labs(title="Predicted Values of Average Confidence",x="Previous Simulation Experience",y="Average Confidence")```:::::: g-col-4<!-- This column takes 1/3 of the page --># Our Experience- Our main challenges included accurately inputting survey data into a spreadsheet, converting and manipulating our data to numerical format, and calculating averages for these datas.- We faced a challenge in coordinating team meetings due to time constraints, but we successfully resolved it through effective communication.- Nevertheless, from this experience, we gained knowledge in model and statistical exploration. It was quite overwhelming in the beginning as we did not have a clear plan of execution for the data, however, we were able to overcome this challenge and find beneficial conclusions.# References & Acknowledgements- We would like to thank Professor Kunnen for organizing and providing us with the dataset for our project. Her curiosity allowed us the opportunity to explore whether VR goggles and previous simulation experiences had an effect on nurses.- We also would like to thank Professor DeRuiter for all the help she has given us so far in this dataset. She helped us with our data challenges and explained complex concepts which has been incredibly valuable, and has lead to beneficial results.# Work-Cited- “Nursing at Calvin.” Calvin University, calvin.edu/academics/departments-programs/nursing.- “Katherine Kunnen.” Calvin University, calvin.edu/directory/people/katherine-kunnen.<imgsrc="IMG_2467.jpeg"alt="Image Caption"style="width: 50%; height: auto;">:::::::::