Student Study Habits and GPA Analysis
Student Study Habits and GPA Analysis
The study demonstrates the relationship between study hours and GPA through a scatter plot, which reveals a positive relationship. The upward trend of the regression line visually indicates that students who report more hours of studying tend to achieve higher GPAs. This positive correlation suggests that study habits play a central role in academic achievement. The methodology used involves exploratory data analysis, creating a reliable data set through systematic data cleaning and employing visualizations to identify trends .
The notable improvement in post-test scores (Mean=81.27) over pre-test scores (Mean=69.81) suggests that the study cohort likely adopted effective study habits between the assessments, contributing to better academic performance. This improvement may indicate that consistent study efforts can significantly enhance understanding and retention of course materials .
The analysis found that laptops are the dominant device type among students, with tablets and phones being used by a small minority. This suggests that digital course materials and platforms should be primarily optimized for a laptop experience to cater to the majority's technological preferences. Such optimization could enhance the effectiveness of digital learning environments .
The initial data inspection revealed data quality issues such as inconsistent categorical variable values, missing data, and suspected outliers. To address these, the data underwent comprehensive cleaning which involved standardizing column names, correcting categorical inconsistencies (e.g., correcting 'Femal' to 'Female'), removing rows with missing values, and using the IQR method to identify and filter out extreme values in the 'Study_hours' variable. These steps were necessary to ensure the dataset's reliability for analysis .
The GPA distribution within the student cohort is approximately normal, centered around a value of 3.2. Most students achieve a GPA between 2.8 and 3.6, indicating a generally strong academic performance with a concentration in the B+ range. This pattern implies that a majority of students maintain above-average academic standards, reflecting positively on the cohort’s overall academic achievement .
The study used the Interquartile Range (IQR) method to identify and filter out an extreme value in the 'Study_hours' variable, which was marked as an outlier with 12 hours. This approach was necessary to prevent the outlier from skewing the analysis and results, thus ensuring the accuracy and reliability of conclusions about the relationship between study hours and academic performance .
The study suggests that future research should validate the learning time-GPA correlation through statistical testing to confirm its significance. Additionally, it proposes analyzing the impact of having a statistical background on final exam scores and exploring performance differences across the four classes. These avenues could provide further insights into the factors influencing academic success and help tailor educational strategies .
The main objectives of the exploratory data analysis were to clean and prepare the data for analysis, explore the distributions of key variables, and investigate potential relationships between study habits and academic performance. To achieve these objectives, a comprehensive data cleaning process was implemented using the tidyverse and janitor packages in R, addressing issues such as inconsistent categorical variable values, missing data, and suspected outliers. This included standardizing column names, removing rows with missing values, and correcting inconsistencies, such as recoding 'Femal' to 'Female' and 'Laptopp' to 'Laptop' .
The study utilizes R software, specifically the tidyverse and janitor packages, to enhance data cleaning and analysis. These tools provided functionalities for standardizing column names, correcting categorical inconsistencies, and managing missing data and outliers, which ensured a robust and reliable dataset for analysis. This approach underscores the importance of software in efficiently preprocessing data for subsequent exploratory analysis .
Standardizing categorical variables is crucial in preparing a dataset as it ensures consistency and accuracy in the data. In the study, this process involved correcting typos and discrepancies, such as changing 'Femal' to 'Female', to prevent errors in analysis and facilitate meaningful comparisons across categories. Standardization helps maintain the integrity of the data and supports reliable statistical inference .