티스토리 뷰
R studio : IDE(Integrated Developing Environmet?) for R : https://www.rstudio.com/
Git : Version Control Program : http://git-scm.com/
BitBucket : https://bitbucket.org/dashboard/overview
서로 다른 컴퓨터로 코드를 작성함에 따른 불편함을 해결하는 방법은
1. Dropbox와 같은 파일 동기화 프로그램을 이용한다.
2. Git과 같은 Version control 프로그램을 이용한다.
R의 경우 R studio에서 손쉽게 클릭 몇 번으로 Version control program을 활용할 수 있다.
이 때 Server로 GitHub와 BitBucket을 쓸 수 있는데,
GitHub의 경우 개인용으로 사용할 경우 유료라고 한다.
따라서 BitBucket 낙점.
그런데 그것을 Setting하는 것이 쉽지만, 처음에는 조금 까다로울 수 있다.
참고가 될 만한 싸이트.
http://www.youtube.com/watch?v=jGeCCxdZsDQ
https://support.rstudio.com/hc/communities/public/questions/200649566--C-Program-Files-x86-Git-bin-sh-exe-clone-No-such-file-or-directory
http://stackoverflow.com/questions/16433970/unable-to-auto-detect-email-address-got-arreanearreane-pc-none
SHELL에서는 아래의 명령어를 모두 처야 하는데, R studio에서는 몇 번의 click으로 손쉽게 해결할 수 있다.
git init
git add --all
git commit
vim 상에서 edit 후 [SHIFT]ZZ
git push
'차기작 : R을 배우자' 카테고리의 다른 글
a CRF model for denoising (0) | 2014.10.04 |
---|---|
R source for lempel-ziv complexity (0) | 2014.08.02 |
frequency polygons (0) | 2014.02.22 |
R and Python : 번역 (0) | 2014.02.15 |
Python and R (0) | 2014.02.15 |