ADP (R)

[R] plot las=1

멋쟁이천재사자 2022. 9. 19. 16:15

1. 분산 분석 script 를 study 하는 중이었습니다.

interaction.plot(x.factor=ToothGrowth$dose, 
                 trace.factor=ToothGrowth$supp, 
                 response=ToothGrowth$len, 
                 trace.label="Supplement", 
                 las=1,type="b",pch=c(1,19), 
                 xlab="Supplement Dose combination", 
                 ylab="Tooth Growth", 
                 main="Means Plot for Tooth Growth of Guinea Pigs" ) 

 

출처 : https://youtu.be/tBn9APzzEhc?list=LL&t=1477 

2. las=1 이 궁금합니다.

?interaction.plot
찾아보았지만 딱 맞는 설명이 안보입니다.

3. 어떤 값이 가능할까?

0~3 총 4가지 값입니다.  https://rvisuall.tistory.com/35 블로그에 잘 정리되어 있습니다.

 

출처:https://rvisuall.tistory.com/35

 

4. las 는 무슨 글자의 약자일까? Label Axis Style

이런 종류의 검색은 국내 검색엔진보다는 googling 이 딱입니다.

R plot las stands for 라는 키워드로 구글링을 해보았습니다.

 

What does mean 'las' in R - Stack Overflow

 

제가 원하던 바로 그내용입니다.

주요 내용을 간추리면...

 

?par 를 보아라

다음 링크를 참고해라
https://jeromyanglim.blogspot.com/2010/05/abbreviations-of-r-commands-explained.html

 

5. ?par

las
numeric in {0,1,2,3}; the style of axis labels.

0: always parallel to the axis [default],
1: always horizontal,
2: always perpendicular to the axis,
3: always vertical