Skip to content
Snippets Groups Projects
Commit 8680b1e4 authored by Holger Brandl's avatar Holger Brandl
Browse files

cleaned up method namign

parent d86efc74
No related branches found
No related tags found
No related merge requests found
......@@ -207,9 +207,10 @@ rmerge <- function(LDF, by, ...){
## Deprecated: use trim_ext instead
trimEnd <- function(fileNames, ...) trim_ext(fileNames, ...)
trim_ext <- function(fileNames, ...) trimEnd(fileNames, ...)
trimEnd <-function(fileNames, exts=c()){
trim_ext <-function(fileNames, exts=c()){
for(fileExt in exts){
fileNames <- str_replace(fileNames, paste(fileExt, "$",sep=""), "")
}
......
......@@ -5,6 +5,8 @@ require.auto(grid)
scale_fill_redgreed <- function() scale_fill_manual(values = c("red","darkgreen"))
rot_x_lab <- function() theme(axis.text.x = element_text(angle = 90, hjust = 1))
## DEPRACTED because of naming
rotXlab <- function() theme(axis.text.x = element_text(angle = 90, hjust = 1))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment