powered by
Estimate marginal and joint distribution of lists j and k using logistic regression.
qhat_logit(List.train, List.test, K = 2, j = 1, k = 2, margin = 0.005, ...)
The training data matrix used to estimate the distibution functions.
The data matrix on which the estimator function is applied.
The number of lists in the data.
The first list that is conditionally independent.
The second list that is conditionally independent.
The minimum value the estimates can attain to bound them away from zero.
Any extra arguments passed into the function.
A list of the marginal and joint distribution probabilities q1, q2 and q12.
q1
q2
q12
# NOT RUN { qhat = qhat_logit(List.train = List.train, List.test = List.test, margin = 0.005) q1 = qhat$q1 q2 = qhat$q2 q12 = qhat$q12 # }
Run the code above in your browser using DataLab