Shane

Shane is CEO and co-founder of EdgeTier, and blogs about python and data science at his own personal website. EdgeTier revolutionises the efficiency of customer service departments using machine learning and data science techniques.

Parallel programming allows you to speed up your code execution - very useful for data science and data processing

Using Python Threading and Returning Multiple Results (Tutorial)

Threading in Python is simple. It allows you to manage concurrent threads doing work at the same time. The library is called “threading”, you create “Thread” objects, and they run target functions for you. You can start potentially hundreds of threads that will operate in parallel. Speed up long running tasks by parallelising and threading computation where you can.

Multiple heatmaps

Self-Organising Maps for Customer Segmentation using R

Self-Organising Maps Self-Organising Maps (SOMs) are an unsupervised data visualisation technique that can be used to visualise high-dimensional data sets in lower (typically 2) dimensional representations. In this post, we examine the use of R to create a SOM for customer segmentation. The figures shown here used use the 2011 Irish Census information for the …

Self-Organising Maps for Customer Segmentation using R Read More »