Google Colaboratory에서 R 언어 사용
1892 단어 GoogleColaboratoryR
이 기사에서는 그 방법을 소개합니다.
여기 영어 사이트 을 참고로 했습니다.
먼저 노트북에 다음을 복사합니다.
!apt-get install libssl-dev > /dev/null
!wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
!chmod +x ./Miniconda3-latest-Linux-x86_64.sh
!./Miniconda3-latest-Linux-x86_64.sh -b -p /conda > /dev/null 2>&1
!/conda/bin/conda install -c r r-rstan r-irkernel gxx_linux-64 -y -q > /dev/null 2>&1
!/conda/bin/R -e "IRkernel::installspec(name = 'python3', displayname = 'R', user = FALSE)" > /dev/null 2>&1
!mkdir /root/.R/
!echo "CXX14FLAGS=-O3 -mtune=native -march=native -Wno-ignored-attributes -Wno-deprecated-declarations" > /root/.R/Makevars
import os
os._exit(00)
그러나 위에서 여섯 번째 줄의 'python3'은 python2 시스템을 사용하는 경우 'python2'로 수정해야합니다.
이렇게하면 몇 분 후에 다음과 같은 화면이 표시됩니다.
"알 수없는 이유로 세션이 충돌했습니다."라고 표시되어야합니다.
그런 다음 상단의 "런타임"에서 "세션 관리"를 선택합니다.
그러면 활성 세션 목록이 표시되므로 종료 버튼을 누릅니다.
그런 다음 노트북을 다시 연결하면 R 언어를 사용할 수 있습니다.
예를 들어 다음과 같은 hello라는 R의 함수도 움직입니다.
Reference
이 문제에 관하여(Google Colaboratory에서 R 언어 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/morifuji551/items/8852203c911f0cc04369텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)