So you want to be an Analytics Developer?

Hello World!

I get a series of questions all the time.

  1. How do I switch careers to be a developer?
  2. How do I become a data scientist?
  3. How do I add intelligence to my code?
  4. How do I get a job in distributed computing?
  5. How do I code more analytically?

The answer to these questions are pretty much all the same.  Step 1, learn about it and build one piece of software focused on that goal.  Step 2, go for it, just do it.  So that said, Microsoft has a fantastic resource, Microsoft Virtual Academy, which provides free training around various topics from entry level to advanced.  This article focuses on a learning plan with MVA to attain the goal of becoming an Analytics Developer.

 This article is a pull from my website: www.indiedevspot.com I pull some articles from there and repost on my msdn blog for better visibility.

What is an Analytics Developer?

An analytics developer is a developer who focuses on answering deeper questions with software.  In traditional development shops, I often see basic CRUD operations, or the extent of the analytics is “Who are the top 5 paying customers”.  That’s fine, but that is not adding real analytics to a software product.

An analytics developer aims to take a product from its basic components into “We know what drives our top paying customers, lets deliver the experience to all customers based on criteria focused on them”.  Or perhaps it is predicting what the new hot commodity is for your website so you can market it first.  Perhaps it is realizing that based on statistics a particular customer has a 90% chance of having poor eyesight and we default an experience with larger font.

An analytics developer is a traditional full stack developer who takes their development skills to the next level to produce meaningful value specific to each and every user, be that user an admin, a customer, or even another developer.  Beyond the mindset change for an Analytics Developer, you will need a variety of skills.

So what is the learning plan?

The Baseline

As an analytics developer, you will spend 99% of your time working on backend systems.  Therefor there are 2 key programming languages you need.

You need C#.  The two below courses should be a good beginner as well as intermediary exposure to the core language you will use when interacting with most api’s.  C# will be used primarily to define data types, interact with architectural components and most data access.

  1. https://www.microsoftvirtualacademy.com/training-courses/c-fundamentals-for-absolute-beginners
  2. https://www.microsoftvirtualacademy.com/training-courses/developer-training-with-programming-in-c

You will need F#.  F# will be used for data crunching, analysis and distributed computing.  It will be your language for writing the core libraries used for the actual intelligence.

  1. https://www.tryfsharp.org/Learn

You will definitely need to understand SQL and Entity Framework for data storage and Access.  These are the core technologies I use.  SQL can support upwards of low TB, and Entity Framework is a great way to get access to that data quickly.

  1. https://www.microsoftvirtualacademy.com/training-courses/implementing-entity-framework-with-mvc
  2. https://www.microsoftvirtualacademy.com/training-courses/database-fundamentals
  3. https://www.microsoftvirtualacademy.com/training-courses/querying-with-transact-sql

You will need to understand a few important Azure Concepts.  Azure is my hosting platform of choice, it also has various PaaS capabilities that are crucial to Analytics Developers.

  1. https://www.microsoftvirtualacademy.com/training-courses/getting-started-with-microsoft-azure-machine-learning
  2. https://www.microsoftvirtualacademy.com/training-courses/microsoft-azure-fundamentals-storage-and-data
  3. https://www.microsoftvirtualacademy.com/training-courses/microsoft-azure-fundamentals-websites

You will need data exploration tools as well.  These tools are invaluable in that they help you prove your concepts prior to coding them into production systems.

  1. https://www.microsoftvirtualacademy.com/training-courses/from-data-to-insight-and-impact-the-bi-revolution
  2. https://www.microsoftvirtualacademy.com/training-courses/excel-2013-power-bi-fundamentals

Taking it to the next level

These are what I consider the advanced or specialist topics.  They are in this section as they will be needed for specific examples, or can be used to really differentiate yourself as an Analytics Developer.  These primarily focus around scaling your solutions or increasing performance.

When your data is too big to handle.

  1. https://www.microsoftvirtualacademy.com/training-courses/implementing-big-data-analysis
  2. https://www.microsoftvirtualacademy.com/training-courses/big-data-with-the-microsoft-analytics-platform-system

When you need to worry about on premise resources.  These may be more IT Pro, but an understanding of where your data works and lives is crucial to high performance analytics.

  1. https://www.microsoftvirtualacademy.com/training-courses/microsoft-azure-site-to-site-vpn
  2. https://www.microsoftvirtualacademy.com/training-courses/hybrid-cloud-workloads-sql

Everybody needs to know a little about performance

  1. https://www.microsoftvirtualacademy.com/training-courses/sql-server-2014-security-optimizer-and-columnstore-index-enhancements
  2. https://www.microsoftvirtualacademy.com/training-courses/mission-critical-performance-with-sql-server-2014-jump-start
  3. https://www.microsoftvirtualacademy.com/training-courses/querying-with-transact-sql

Summary

That is a TON of information.  Likely that you already know a fair amount of it, but if you are looking to jump into software engineering, my favorite place is definitely as an Analytics Developer.  There is something about answering questions that provide value that I just really like.  If you are comfortable with the material in at minimum the baseline training section, you should be successful in your endeavors.  Real Time analysis and Big data are my next favorite place in taking it to the next step.  Good luck!