"R mse()"의 두 판 사이의 차이

(새 문서: ==개요== ;R mse() * "Mean Squared Error {{해석|평균 제곱 오차}}" <syntaxhighlight lang='r' run> actual <- c(1.1, 1.9, 3.0, 4.4, 5.0, 5.6) predicted <- c(0.9, 1.8, 2.5, 4.5,...)
 
 
4번째 줄: 4번째 줄:


<syntaxhighlight lang='r' run>
<syntaxhighlight lang='r' run>
library(Metrics)
actual <- c(1.1, 1.9, 3.0, 4.4, 5.0, 5.6)
actual <- c(1.1, 1.9, 3.0, 4.4, 5.0, 5.6)
predicted <- c(0.9, 1.8, 2.5, 4.5, 5.0, 6.2)
predicted <- c(0.9, 1.8, 2.5, 4.5, 5.0, 6.2)

2020년 10월 27일 (화) 02:36 기준 최신판

1 개요[ | ]

R mse()
  • "Mean Squared Error → 평균 제곱 오차"
library(Metrics)
actual <- c(1.1, 1.9, 3.0, 4.4, 5.0, 5.6)
predicted <- c(0.9, 1.8, 2.5, 4.5, 5.0, 6.2)
mse(actual, predicted)

2 같이 보기[ | ]

3 참고[ | ]

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