[결과물]
1
2
[코드]
## 1 igraph 패키지 사용
install.packages("igraph")
library(igraph)
emp <- read.csv("emp.csv")
a <- merge(emp, emp, by.x="mgr", by.y="empno")[ , c("ename.x", "ename.y")]
a
b <- graph.data.frame(a, directed = T)
plot(b)
## 2 - googleVis 패키지 사용
a <- merge(emp,emp, by.x="empno",by.y="mgr", all.y=T) org <- gvisOrgChart(a, idvar="ename.y",parentvar="ename.x", plot(org) |
반응형
'모조리 Data > 모조리 R' 카테고리의 다른 글
pie 차트에서 라벨 (labels) 크기 조절하기 :: R 모조리 정복하기 (0) | 2017.11.07 |
---|---|
R만의 명목변수 자료형 Factor 개념 이해하기 :: R 모조리 정복하기 (1) | 2017.11.06 |
R에서 Error : figure margins too large 해결방법 (0) | 2017.10.31 |
R에서 rJava 오류시 해결방법 (1) | 2017.10.30 |
4. rvest 라이브러리를 통해 웹 텍스트 스크래핑해오기 (1) | 2017.07.15 |