Mars Crater Study-2
This article was written as a practice exercise with reference to the information provided in the COURSERA course, specifically the Mars Crater Study.
=========================================
In this analysis, we used data on Martian craters to explore the impact of crater diameter, latitude, and longitude on their depth through multiple regression analysis. Our model shows that these variables significantly affect the variation in crater depth, with an overall R-squared of 0.345, indicating that the model explains about 34.5% of the variation in depth.
Relationship Between Explanatory Variables and Response Variable
1. Crater Diameter (DIAM_CIRCLE_IMAGE)
Beta Coefficient: 0.0151
p-value: 0.000
Relationship: Significantly positive, indicating that for each unit increase in crater diameter, the depth increases by an average of 0.0151 units.
2. Latitude (LATITUDE_CIRCLE_IMAGE)
Beta Coefficient: -6.507e-05
p-value: 0.000
Relationship: Significantly negative, suggesting that for each unit increase in latitude, the depth decreases by an average of 6.507e-05 units.
3. Longitude (LONGITUDE_CIRCLE_IMAGE)
Beta Coefficient: 3.384e-05
p-value: 0.000
Relationship: Significantly positive, indicating that for each unit increase in longitude, the depth increases by an average of 3.384e-05 units.
Hypothesis Testing
Our results support the initial hypothesis that crater diameter has a significant positive impact on crater depth. This indicates that larger craters tend to have greater depths. Additionally, geographical location (latitude and longitude) also has a significant effect on depth.
Confounding Factors Analysis
After incrementally adding latitude and longitude as control variables, we found no significant confounding effect on the relationship between diameter and depth. This means that while geographical location affects depth, it does not significantly alter the relationship between diameter and depth.
Regression Diagnostic Plots
a) Q-Q Plot
The Q-Q plot shows the normality of the residuals. The skewness of the residuals indicates some deviation from normal distribution, which may require further model adjustments.
b) Standardized Residuals Plot
The standardized residuals plot helps identify outliers and the model's fit. Some points deviate from the center line, indicating that the model may not fit well for certain observations.
c) Leverage Plot
The leverage plot shows influential observations and potential outliers. There are several points with high leverage values, which may have a significant impact on the model's fit.
Conclusion
In conclusion, our multiple regression analysis provides valuable insights into the factors influencing crater depth. Future research could further explore other potential variables and adjust the model to improve fit and explanatory power.













