Tag: data analysis
ggplot2 themes examples
Euro 2016 analytics: Who’s playing the toughest game?
I am really enjoying Uefa Euro 2016 Footbal Competition, even because our national team has done pretty well so far. That’s why after  browsing for a while statistics section of official EURO 2016 website I decided to do some analysis on the data they share ( as at the 21th of June).
Just to be clear from the beginning: we are not talking of anything too rigourus, but just about some interesting questions with related answers gathered mainly through data visualisation.
We can divide following analyses into two main parts: a first part were we analyse distribution of fouls and their incidence on matches outcome and a second part where ball possession in analysed, once again looking at relationship between this stat and matches outcome. Let’s start with fouls then.
which team committed the  greatest number of fouls?
Here we are with the first question. And here it is the answer:
Continue reading “Euro 2016 analytics: Who’s playing the toughest game?”
Over 50 practical recipes for data analysis with R in one book
- changed my job ( I am now working @ Intesa Sanpaolo Banking Group on Basel III statistical models)
- became dad for the third time (and if you are guessing, itâs a boy!)
- fixed some issues with the updateR package
- and I wrote a book!
RStudio for R Statistical Computing Cookbook
Continue reading “Over 50 practical recipes for data analysis with R in one book”
ramazon: Deploy your Shiny App on AWS with a Function
THIS IS AN OUTDATED VERSION OF THE POST. YOU CAN FIND THE UPDATED AND MAINTAINED ONE AT http://www.andreacirillo.com/2015/08/18/deploy-your-shiny-app-on-aws-with-a-function/
Because Afraus received a good interest, last month I override shinyapps.io free plan limits.
That got me move my Shiny App on an Amazon AWS instance.
Well, it was not so straight forward: even if there is plenty of tutorials around the web, every one seems to miss a part: upgrading R version, removing shiny-server examples… And even having all info it is still quite a long, error-prone process.
All this pain is removed by ramazon, an R package that I developed to take care of everything is needed to deploy a shiny app on an AWS instance. An early disclaimer for Windows users: only Apple OS X is supported at the moment.
Continue reading “ramazon: Deploy your Shiny App on AWS with a Function”
Introducing Afraus: an Unsupervised Fraud Detection Algorithm
on average, fraud accounts for nearly the 5% of companies revenues
Continue reading “Introducing Afraus: an Unsupervised Fraud Detection Algorithm”
How to add a live chat to your Shiny app
Catching Fraud with Benford’s law (and another Shiny App)
In the early ‘900 Frank Benford observed that ‘1’ was more frequent as first digit in his own logarithms manual.
More than one hundred years later, we can use this curious finding to look for fraud on populations of data.
just give a try to the shiny app
What ‘Benford’s Law’ stands for?
Around 1938 Frank Benford, a physicist at the General Electrics research laboratories, observed that logarithmic tables were more worn within first pages: was this casual or due to an actual prevalence of numbers near 1 as first digits?
Continue reading “Catching Fraud with Benford’s law (and another Shiny App)”
Network Visualisation With R
The main reason why
the solution: linker
excel right() function in R
as part of the excel functions in R, I have developed this custom function, reproducing the excel right() function in th R language. Feel free to copy and use it.
right = function (string, char){ substr(string,nchar(string)-(char-1),nchar(string))}
you can find other function in the Excel functions in R post.