/* * http://sosal.tistory.com/ * made by so_Sal */ R프로그래밍에서는 간단한 통계함수들이 이미 구현되어진 상태로 주어집니다.scan(), plot(), sd(), median(), sort(). 함수들에 대한 설명은 help() 함수를 통해 자세한 정보를 알 수 있습니다. ex)───────────────────────────────────────────────────> help(sd)> Standard DeviationDescriptionThis function computes the standard deviation of the values in x. If na.rm is TRUE then missing values are removed before comput..