We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
split_into_pages_by_var()
From internal user @jasmina_u; proposed fix:
split_into_pages_by_var_custom <- function(lsting, var, page_prefix = var) { lsting_by_var <- list() for (lvl in levels(lsting[[var]])) { if(lvl %in% unique(lsting[[var]])) { var_desc <- paste0(page_prefix, ": ", lvl) lsting_by_var[[lvl]] <- lsting[lsting[[var]] == lvl, ] subtitles(lsting_by_var[[lvl]]) <- c(subtitles(lsting), var_desc) } } lsting_by_var }
The text was updated successfully, but these errors were encountered:
Fix split list for pagination when with ordered factors (#235)
d74b616
#234 #225
Melkiades
Successfully merging a pull request may close this issue.
From internal user @jasmina_u; proposed fix:
The text was updated successfully, but these errors were encountered: