R 함수 그래프 그리기

1 개요[ | ]

R 함수 곡선 그리기
R 함수 그래프 그리기

2 다항 함수[ | ]

f <- function(x){x^2}
x <- 1:100
plot(x, f(x), type='l')
f <- function(x){x^2}
x <- seq(-5, 5, .1)
plot(x, f(x), type='l')

3 1/x[ | ]

f <- function(x){1/x}
x <- seq(-5, 5, .05)
plot(x, f(x), type='l')

4 로지스틱 곡선[ | ]

f <- function(x){1/(1+exp(-x))}
x <- seq(-5, 5, .05)
plot(x, f(x), type='l')

5 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}