본문 바로가기
컴퓨터쟁이/R

R 코드를 Notion으로 옮기기

by 빙글빙글이 2021. 2. 8.
728x90
반응형

Notion: 에버노트나 원노트처럼 웹에서도, 어플에서도 작성가능한 메모 노트로 유용하게 사용할 수 있습니다. 

 

R studio에서 코드를 작성한 것을 결과와 함께 복사해서 Notion으로 붙여넣을 수 있습니다. 

 

intall.packages("reprex")

 

library(reprex)

 

한 다음에, 원하는 소스코드를 실행하고 그 소스코드 부분을 클립보드에 복사합니다.(ctrl + c)

 

reprex::reprex()

 

명령어를 입력하고, 

 

notion에서 ctrl + v 로 붙여넣기를 하면 소스코드와 결과를 함께 가져올 수 있습니다. 

 

끝에 광고가 붙는데 그부분은 아래와 같이 

 

reprex::reprex(advertise = False)

 

로 해주시면 광고 없이 사용할 수 있습니다.  

 

 

reprex 함수에 대한 설명 

www.rdocumentation.org/packages/reprex/versions/0.3.0/topics/reprex

 

reprex function | R Documentation

Looks like there are no examples yet.

www.rdocumentation.org

github.com/tidyverse/reprex

 

tidyverse/reprex

Render bits of R code for sharing, e.g., on GitHub or StackOverflow. - tidyverse/reprex

github.com

 

 

 

참고한 유튜브채널 "슬기로운 통계생활" 

www.youtube.com/watch?v=4Ac7SrJSOiY

 

728x90
반응형

'컴퓨터쟁이 > R' 카테고리의 다른 글

shinyAce  (0) 2016.04.29
R에서 require()랑 library()의 차이!  (0) 2016.04.29