Home R Programming 1주차
Post
Cancel

R Programming 1주차

월요일

R 기본 문법

  • R 기본 문법
    1
    2
    3
    4
    5
    
      install.packages("caTools")
      library(caTools)
      search()
      install.packages("dplyr")
      library(dplyr)
    

    기본적으로 R에서 패키지를 설치하고 라이브러리로 해당 패키지의 함수를 불러오는 코드를 배웠다.

목요일

내장 함수 사용법

  • 내장 함수 사용법
    1
    2
    3
    4
    5
    
      help.start()
      help(solve)
      ?solve
      example(solve)
      help.search("string")
    

    R의 내장함수들의 사용법을 알기위한 명령어들이다.

R 기본 연산

  • R 기본 연산
    1
    2
    3
    
      x <- 3; y = 15
      n <- 100
      p = 50
    

    할당 연산은 <- 또는 =으로 가능하다.

This post is licensed under CC BY 4.0 by the author.

-

R Programming 2주차

Comments powered by Disqus.