Monday, December 31, 2012

Misusage of the new shiny package: A nerdy drink tracker for your next party

Currently a lot of people are talking about the new shiny package. So I got curious and built an own, more or less useful app: A drink tracker


This app can be used to track how much someone drank and therefore it is very useful for every party, especially when you plan to play some drinking games.


The usage is very simple:

  1. Start an R session
  2. Run the following script (uncomment to install the packages) and change the names in the persons vector
  3. Game should start in your default browser
  4. Every person who had a shot / a sip beer / whatever can be chosen from the drop-down  list. If the same person has to drink again simply push "Drink again!". You can switch between the timeline and the leaderboard by clicking on the tabs
  5. Have fun!


Saturday, December 22, 2012

Get the party started

Have you already used trees or random forests to model a relationship of a response and some covariates? Then you might like the condtional trees, which are implemented in the party package.

In difference to the CART (Classification and Regression Trees) algorithm, the conditional trees algorithm uses statistical hypothesis tests to determine the next split. Every variable is tested at each splitting step, if it has an association with the response. The variable with the lowest p-value is taken for the next split. This is done until the global null-hypothesis of independence of the response and all covariates can not be rejected.

Conditional trees is my subject in a university seminar this semester. Here are my slides explaining the functionality of conditional trees, which I wanted to share with you. It includes the theory and two short examples in R.


Explaining the decisions of machine learning algorithms

Being both statistician and machine learning practitioner, I have always been interested in combining the predictive power of (black box) ma...