The data set I chose for this assignment is describing stars by observations such as temperature, absolute magnitude, color. I found that it is often used for machine learning, so it would be interesting to come back to this data later in the semester or for a different class.
Graphing the simplified version of by_color where each point has a label
ggplot(by_color_simple, aes(x = median_absolute_magnitude, y = median_temperature)) +geom_point() +geom_label(aes(label = Color)) +expand_limits(x =-15) +expand_limits(x =20) +labs(title ="Colors of Stars", subtitle =" By Temperature and Absolute Magnitude",x ="Median Absolute Magnitude", y ="Temperature (Degrees Kelvin)")
Conclusion
I found this to be a fun exercise in using some of what already knew about R and adding in some new functions I picked up from the text as well as the Data Camp course. My findings using the graph are consistent with generally accepted observations about stars within the astronomical community, so the graph was created correctly. I hope to revisit this data set in the future with the skills I develop in this class in order to find more insights. This data set is usually used for machine learning so it would be a natural progression to build an algorithm that could predict some features of these stars provided a limited set of observations.