Skip to content

Instantly share code, notes, and snippets.

View jankowtf's full-sized avatar

Janko Thyson jankowtf

View GitHub Profile
format="%Y-%m-%dT%H:%M:%S+00:00"
as.POSIXlt(x, format=format)
@jankowtf
jankowtf / gist:6088894
Created July 26, 2013 13:35
Rhackathon
Rhackathon
@jankowtf
jankowtf / gist_threedots_for_batch
Created November 4, 2015 13:06
Handling threedots input to account for batch scenarios
---
title: "Handling threedots input in batch scenarios"
author: "Janko Thyson"
date: "4. November 2015"
output: html_document
---
# Problem
Function that take their main arguments via `...` are great for interactive use, but sometimes a bit inconvenient when you want to do stuff in a batch manner.
@jankowtf
jankowtf / _shiny_conditional_ui_reference
Last active December 31, 2015 14:15
Reference app for conditional UI and links
Reference app for conditional UI and links
Purpose: Reference app for datatable stuff
Frozen: yes
@jankowtf
jankowtf / TIL_dplyr_20190107_custom_dplyr_methods.Rmd
Last active January 8, 2019 14:25
TIL: defining custom dplyr methods
---
title: 'TIL: how to create custom dplyr methods'
author: "Janko Thyson"
date: "2019-01-08"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```