naiveBayes()

CODEDRAGON Development/Big Data, R, ...

반응형


 

 

 

naiveBayes()

베이즈 분류/예측 모델 (Naive Bayes classificatio)

 

 

 

naiveBayes(y, data, laplace = 0)

 

 

Arguments

discription

y

Class vector.

data

Either a data frame of predictors (categorical and/or numeric) or a contingency table.

laplace

Laplace smoothing 여부

 

laplace = 0

Laplace smoothing 안함

laplace = 1

Laplace smoothing 수행

 

 

 

 

 

Naive Bayes Classifier

https://www.rdocumentation.org/packages/e1071/versions/1.7-3/topics/naiveBayes


 


반응형

'Development > Big Data, R, ...' 카테고리의 다른 글

평활 방법  (0) 2020.02.11
구간화(binning)  (0) 2020.02.11
R 코드 예시 - 나이브 베이즈  (0) 2020.02.11
e1071 패키지  (0) 2020.02.11
행렬(Matrics)의 생성 및 조작과 관련된 명령어 함수  (0) 2020.02.11