본문 바로가기

Radiant

Radiant 사용하기 (1) 설치, 실행

항상 R, Rstudio 만 쓰다가 Radiant 는 처음 써보게 됐다..!

 

먼저 설치는 R이 이미 깔려있는지 여부에 따라 2가지 방법으로 할 수 있다. 

1. R, Rstudio, Radiant 까지 한꺼번에 설치하기

https://cran.r-project.org/web/packages/radiant.data/readme/README.html

 

README

Radiant - Business analytics using R and Shiny Radiant is an open-source platform-independent browser-based interface for business analytics in R. The application is based on the Shiny package and can be run locally or on a server. Radiant was developed by

cran.r-project.org

2. Rstudio 에서 명령어로 설치하기

install.packages("radiant")

시간이 좀 걸리긴 하지만 성공!

만약에 잘 안된다면 이 코드를 시도해보면 된다.

options(repos = c(RSM = "https://radiant-rstats.github.io/minicran", CRAN = "https://cloud.r-project.org"))
install.packages("radiant")

 

실행하는건 Rstudio에서 할 수 있는데, Addins -> Start radiant 를 누르면 인터넷으로 실행된다.

다른 데이터를 넣어놔서 처음 실행했을 때 보이는 화면은 좀 다르겠지만 이런 느낌의 화면이 뜨면 성공이다!