lattice로 그래프 그릴 때의 몇가지 팁들.
1. 축값이 지수함수로 변환되어서 나올 때
- 특별히 설정을 바꾸지 않았는데도 갑자기 축값이 지수함수로 바뀌어서 나올 때가 있다.
그럴 때, 숫자로 설정해주려면 scale에서 다음과 같이 값을 지정해 준다.
xyplot(V3 + V4 ~ V2, data = test, scales=list(ylim=c(0,10000)))
- y축의 한계( ylim) 를 직접 xyplot 함수에서 설정해야 하는 경우도 있다. 이런 경우에는 다음과 같이 지정한다.
xyplot(V3 + V4 ~ V2, data = test, ylim=c(0, 5000))
2. 범주별로 색을 다르게 설정하고자 할 때
- auto.key는 자동으로 구분해주도록 할 때 사용한다
xyplot(hp ~ wt, data= mtcars, groups = gear, auto.key=TRUE)
- 이를 좀 더 정교하게 지정해주고 싶을 때는 아래와 같이 지정한다.
xyplot(hp ~ wt, data=mtcars, groups = gear, auto.key=list(space = "right", points = FALSE, lines = TRUE))
* 각 범주들의 범례는 그래프의 오른쪽 상단에 위치하며, 선으로 구분된다.
xyplot(hp ~ wt, data=mtcars, groups = gear, auto.key=list(text=c("Group 1", "Group 2")))
xyplot(hp ~ wt, data=mtcars, groups = gear, auto.key=list(text=list(c("Purple Line", "Dark-green Line")))
*위 : 범주를 각각 Group1과 Group 2로 지정한다.
* 아래 : Pulple line과 Green line 으로 지정한다.
복잡하게 설정하는 예시는 아래의 포스팅을 참조~
https://stackoverflow.com/questions/33013802/xyplot-legend-configuration
xyplot legend configuration
It's my first time in here, so I hope not to do it wrong. I have a database of different measures of wood moisture content in different species as well as various index. These measures have been t...
stackoverflow.com
'R' 카테고리의 다른 글
패키지 저장 폴더 설정 (0) | 2024.03.02 |
---|---|
가중치를 적용한 빈도표 만들기 (1) | 2024.01.02 |
plyr 패키지 설치 에러 (0) | 2023.12.23 |
Rstudio에서 copilot 사용하기 (0) | 2023.12.02 |
R에서 한글 사용하기/한글 폰트 불러오기 (1) | 2023.11.25 |