Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
abennici committed Jul 15, 2024
1 parent 1968ca6 commit 59bbd11
Show file tree
Hide file tree
Showing 2 changed files with 341 additions and 417 deletions.
7 changes: 7 additions & 0 deletions assets/core/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,11 @@ dateformating<- function(date,period="start"){
dates<-c(dates,x)
}
return(dates)
}

#intersection
##Extension of intersect() function, allow intersection of more than two dataframe
intersection <- function(x, y, ...){
if (missing(...)) intersect(x, y)
else intersect(x, intersection(y, ...))
}
Loading

0 comments on commit 59bbd11

Please sign in to comment.