Skip to content

Instantly share code, notes, and snippets.

@atajti
atajti / HighlightsOfUseR2017.R
Created July 23, 2017 18:48
BURN meetup 2017. 07. 18.
#-----------------------------------------------------------------------------#
### Highlights of useR!2017 #################### BURN 2017. 07. 18. ###########
#-----------------------------------------------------------------------------#
##############
#
# Parallel computing tutorial
#
##############
#
@atajti
atajti / csalasdetektalas.R
Created March 29, 2017 13:48
Csalásdetektálás az Andego-nál | BURN meetup 2017.03.29.
#-------------------------------------------------------------------#
### Csalásdetektálás - gépjárműbiztosítás ###########################
### BURN meetup 2017.03.29 ###########################
#-------------------------------------------------------------------#
# szükséges csomagok:
# data.table
# stringr
# igraph
@atajti
atajti / get_script_dir.R
Created December 23, 2016 22:05
get the running R script's directory
get_script_dir <- function(){
ca <- commandArgs()
script_path <- gsub("--file=", "",
ca[grepl("--file=", ca)])
return(dirname(script_path))
}