R 로지스틱 곡선 그리기

1 개요[ | ]

R 로지스틱 곡선 그리기
x <- seq(-5, 5, .05)
plot(x, plogis(x), type='l')
f <- function(x){1/(1+exp(-x))}
x <- seq(-5, 5, .05)
plot(x, f(x), type='l')
f <- function(x){1/(1+exp(-x))}
x <- seq(-5, 5, .05)
y <- f(x)
plot(x, y, type='l')

2 같이 보기[ | ]

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