Interpret data frame/ summary(), typeof(), str(), class(),View(),names(),ncol(),length(),nrow(),dim()
Interpreting the data frame > final_score student math science1 Jane 70 902 Dora 90 303 Beth 50 804 Park 100 100 > typeof(final_score) [1] "list" #list consists of 3 components which have 4 elements. #data frame is a kind of lists > class(final_score)[1] "data.frame" summary(), str() ----------------------identify data frame's structure > summary(final_score) student math science Length:4 Min. :..
2020. 7. 16.