/* * http://sosal.tistory.com/ * made by so_Sal */ R 프로그래밍 개발환경은 아래에서 받을 수 있습니다. http://cran.r-project.orgn Download the precompiled binary distribution of the base system 주석처리: # 변수선언:변수명 = 값변수명 x = 3> y x+y[1] 9 벡터선언: function c() creates a vector> num = c(100,500,1200)> num[1] 100 500 1200 벡터연산:> x num num/x[1] 20 100 240 벡터변수 확인:> num num[1][1] 100> num[2][1] 500> num[3][1] 1200 Sequence의 선언..