본문 바로가기

Test Code/R

[R] 정규분포 곡선 그리기

1. 먼저 스크립트 파일 작성합니다.



## dist.txt


x=seq(-3.5,3.5,length=200)

y=dnorm(x)


## 정규분포 곡선

plot(x,y,

type="l",

lwd=1, 

ylim=c(0,0.4), 

col="#777777", 

main="표준정규분포", 

col.main="#7777ff",

xlab="", 

ylab="",

las=1

)


## 라인

# lines(0, dnorm(0), type="h",lty=3, col="red")

# lines(-3, dnorm(-3), type="h",lty=3, col="blue")

# lines(-2, dnorm(-2), type="h",lty=3, col="blue")

# lines(-1, dnorm(-1), type="h",lty=3, col="blue")

# lines( 1, dnorm(1), type="h",lty=3, col="blue")

# lines( 2, dnorm(2), type="h",lty=3, col="blue")

# lines( 3, dnorm(3), type="h",lty=3, col="blue")


lines(-3:3, 

      dnorm(-3:3), 

      type="h", 

      lty=3, 

      col=c("blue", "blue", "blue", "red")

)



2. R 프로그램 프롬프트에서 아래 명령어를 실행합니다.


> source("D:/dist.txt")







'Test Code > R' 카테고리의 다른 글

[R] 일원배치 분산분석 (One-way ANOVA)  (0) 2014.01.02
[R] 회귀방정식 구하기  (0) 2014.01.01
[R] 독립 이표본 T 검정 (Two Sample T-Test)  (1) 2014.01.01
[R] 정규성 검정하기  (0) 2014.01.01
[R] 히스토그램  (0) 2014.01.01