fit_ordinal_logistic_regression | R Documentation |
주어진 데이터에 대해 서열형 로지스틱 회귀모형 계수를 추정한다.
fit_ordinal_logistic_regression( .data, .group_var, .xvar, .type = "cumulative", .control = list(fnscale = -1, maxit = 1000) )
.data |
관측 데이터 프레임. |
.group_var |
범주변수. |
.xvar |
범주 분류에 사용될 변수. |
.type |
로짓모형의 종류. "cumulative": 누적 로짓모형, "adjacent": 인근범주 로짓모형 |
.control |
|
리스트. 최우추정 계수 행렬 betas
. 헤시안 행렬 hessian
.
data(telconnection, package = "dmtr") fit_ordinal_logistic_regression( telconnection, y, c(N, L) ) fit_ordinal_logistic_regression( telconnection, y, c(N, L), .type = "adjacent" )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.