-
Jan 2, 2015
Installing R on HLRN (Cray XC30/XC40) and enabling (R)MPI
The North-German Supercomputing Alliance (HLRN) offers a high performance computing (HPC) cluster with modern Cray XC30 and XC40 nodes. The main advantage (beneath fast processors and a high amount of RAM) is the opportunity to run massive parallel operations in compination with the Message Passing Interface (MPI). R can make...
-
Jul 23, 2013
Installing RMySQL under Windows
Update 2015-06-08: Hadley Wickham and Jeroen Ooms took over the development on RMySQL. They are offering a precompiled version of the package whcih can be installed unter windows by using install.packages(“RMySQL”). Compiling under windows is no longer necessary. Update 2015-01-02: I slightly updated this tutorial based on the comments. Update...
-
May 10, 2013
Postleitzahlen visualisiert, Teil 3
Bei der Auswertung der Zugriffe auf mein Blog, bin ich darüber gestolpert, dass relativ viele Zugriffe auf meine viualisierten Postleitzahlen erfolgen (Teil 1 und Teil 2). Ich habe daher die ursprünglichen Dateien nochmal überarbeitet und eine Version in Graustufen hinzugefügt. Die Dateien sind unter die Creative Commons (BY-NC-SA) veröffentlicht und...
-
Apr 17, 2013
Data Structures in R (Presentation)
Last week I hold a presentation about data structures in R. The presentation constists of a few slides and some code to create the mentioned structures (vector, matrix, array, factor, data frame, list) and to access the created data. Maybe this is helpful for some of you out there. All...
-
Apr 1, 2013
MonitoR - Using R for (Server) Monitoring
There are several programs for monitoring your server. All of these programs are powerful and extensive. But they are also quite heavy and consume a lot of resources. That does not affect big servers but may slow down smaller/embedded devices like a Raspberry Pi. That’s why I wrote a little...
-
Nov 20, 2012
Interactive Visualizations with Shiny
Last week, the guys from RStudio released Shiny, a neat new tool to create “interactive web applications”. It seems to focus on R users that are not very common with other languages than R and can help them to easily create web applications only using a few lines of code...
-
Sep 3, 2012
Bundesliga Predictions: Choosing the algorithm
This weekend was the 2nd matchday of the German Bundesliga and of course I predicted another nine games. Unfortunately, my predictions were not that successful so far. Last weekend I predicted two of nine winners right, this weekend three out of nine. Maybe I have to tune my algorithm better...
-
Aug 21, 2012
Bundesliga predictions: Data overview
Yesterday, I wrote about predicting the next German Bundesliga (soccer) season with R. I will join a betting community of other scientists (#Scientipps). Today, I will give an outlook over the data I gained so far and which will be used to predict the first games. As written previously, the...
-
Aug 20, 2012
Predicting the new season of the German Bundesliga (soccer league) with R
Last week, Jan Schmidt invited interested researchers (and others, too) to join a little betting community to bet on the games of the German Bundesliga (soccer league) season 2012/13 which will start on Friday night (further info here or under #scientipps on Twitter). There are also some prices to win....
-
Mar 14, 2012
Infografik: Schlecker schließt 2.000 Läden
Heute hat Schlecker angekündigt, infolge der Insolvenz 2.000 ihrer 5.400 Drogeriemärkte zu schließen. Die Liste der betroffenen Filialen ist öffentlich einsehbar. Auf ndr2 habe ich gerade übrigens gehört, dass die Liste noch nicht endgültig sei. Wie dem auch sei, ich habe mir heute vormittag eine Kopie der Liste besorgt und...
-
Aug 12, 2011
Plotting German municipalities using Twitter
More and more institutions do use social networks in Germany, including Twitter. This belongs to municipalities, too. Getting back to a idea of Claas Hanken (a ex-collegue of mine), wanted to visualize these ones. The result can be seen in German and in Englisch. The plot is completely done in...
-
Mar 21, 2011
Postleitzahlen visualisiert, Teil 2
[UPDATE] Die Grafiken sind in neuen und größeren Versionen auch hier zu finden. Im vorherigen Beitrag habe ich die deutschen Postleitzahlen visualisiert. Dort konnte man bereits sehr schön sehen, wie sich nur aus den Geo-Koordinaten die Deutschlandkarte abgebildet hat. Mit einer farblichen Unterleung fiel zudem auf, die Postleitzahlen sich nicht...
-
Jan 6, 2011
Postleitzahlen visualisiert
[UPDATE] Die Grafiken sind in neuen und größeren Versionen auch hier zu finden. Seit neuestem gibt es ein neues R-Package von Jeffrey Brenn in welchem sämtliche Postleitzahlen und Koordinaten der USA hinterlegt sind. Passend dazu findet sich in eine nette kleine Visualisierung. Sowas müsste sich doch auch für Deutschland realisieren...
-
Mar 4, 2010
R Variablensystem
R verfügt, im Gegensatz zu anderen Statistikprogrammen über mehrere Variablentypen. Während in der Regel mit einer Excel-ähnlichen Ansicht gearbeitet wird, sind in R auch Vektoren, Matrizen, Listen, Faktoren und mehr möglich. Als Neu-/Umsteiger kann dies durchaus verwirrend sein. Christopher Bare hat in seinem Blog einen kleinen Beitrag über die verschiedenen...