This file contains hidden or 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
#-----------------------------------------------------------------------------# | |
### Highlights of useR!2017 #################### BURN 2017. 07. 18. ########### | |
#-----------------------------------------------------------------------------# | |
############## | |
# | |
# Parallel computing tutorial | |
# | |
############## | |
# |
This file contains hidden or 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
#-------------------------------------------------------------------# | |
### Csalásdetektálás - gépjárműbiztosítás ########################### | |
### BURN meetup 2017.03.29 ########################### | |
#-------------------------------------------------------------------# | |
# szükséges csomagok: | |
# data.table | |
# stringr | |
# igraph |
This file contains hidden or 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
get_script_dir <- function(){ | |
ca <- commandArgs() | |
script_path <- gsub("--file=", "", | |
ca[grepl("--file=", ca)]) | |
return(dirname(script_path)) | |
} |