I'm performing LDA topic modeling on my dataset of tweets collected from several twitter accounts which consists of 9582 documents and 4144 terms after pre-processing. In order to run the LDA function, I have to define the parameter values that control how many Gibbs sampling draws are made when running the model.
fitted_many <- lapply(sequ, function(k) LDA(dtmTopicModeling, k = k,
method = "Gibbs",control = list(burnin = burnin, iter = iter, keep = keep) ))
How do I define the values of burnin, iter and keep for the above function?