DirectingOptiRounds {SCFMonitor} | R Documentation |
This function is a internal function that directs the optimization round of a SCF convergence round. This helps SCFMonitor devide the SCF rounds to different sections that each refers to an optimization cycle.
DirectingOptiRounds(Pending, index)
Pending |
A integer refering to the row of the directed SCF convergence cycle is in. |
index |
A tibble including all the row number |
A integer directing the Optimization round of that SCF convergence round is in.
library(tibble)
example_index <- tibble(rowid = c(1, 30, 130))
DirectingOptiRounds(33, example_index)