This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
theme_ik <- function( | |
base_size = 12, | |
base_family = "sans", | |
labs_color = "#074949", | |
axis_color = "#002F2F", | |
bg_color = "#eeffff", | |
grid_color = "#ccffff" | |
){ | |
theme_minimal(base_size = base_size, base_family = base_family)+ | |
theme( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
summarise_columns <- | |
function(dfname, ...) { | |
checkmate::assert( | |
checkmate::checkClass(dfname, "tbl_lazy"), | |
checkmate::checkClass(dfname, "data.frame") | |
) | |
grps <- enquos(...) | |
# print(as.character(grps)) | |