We learn from other people. We often learn from others with similar interests. Who are they? How do we find them?
I am studying at the University of Washington to become a data scientist. My first course, Introduction to Data Science, started a few weeks ago. All of the students completed a survey. Our professor, Dr. Bill Howe, made the anonymized results public. I put the data and my analysis on GitHub for anyone to see.
I am interested in three questions:
Which data science topics are the most popular? Let’s use boxplots to find out; they are an effective way to summarize this data.
This can be done in 7 lines of code in R:
The results are clear. My fellow students want to learn about techniques to work with “big data” or “fairly big data” in both practical and abstract ways. There is also a desire to understand machine learning.
My fellow students are a diverse group. How similar are our learning preferences?
If we pick a random student, S1, how similar are their preferences to another student’s, S2? If we can calculate a single metric to measure similarity for one pair of students, we could calculate that metric for__ _all _pairs of students. This is a Euclidean distance problem, and it comes from problems solved using clustering algorithms.
We’ll be using R again, again writing 7 lines of code:
The result shows each student’s learning preference compared to their classmates’.
Which groups of students in that chart have similar learning preferences? How do we find those groups? How big should they be?
Time for another algorithm: k-means clustering. This algorithm is used to find the k best clusters for a set of points. For example, if k=3, it would group all the data into 3 clusters.
Since k is not chosen automatically, we need to find a good value for it_._ There are a few different approaches to consider. We’ll use the elbow method: look at a graph of k vs efficiency, and identify where the line bends (like an elbow). It’s at k=5.
Great! Let’s see the clusters. We can do that with 2 lines of R code:
We can see there are 5 groups. They are 3, 6, 8, 8, and 12 people in size, and cover ~80% of the variation in learning preferences between students. That’s pretty good. If this data wasn’t anonymous, a teacher could use it to group students together with similar interests. Success!
This may seem intimidating for IT professionals or developers. It isn’t. There are fantastic resources available. You just need data, a computer, time, and curiosity.
I have progressed this far using only:
What’s next? More data. More algorithms. More questions. And above all, more insight.
PermalinkI want to be able to find data, analyze it, and turn it into meaning. Anywhere. Any time. I want to become a data scientist.
The term “data scientist” is not well defined. Many people try to define it precisely. This is ironic, because a huge part of the job is to use data to find knowledge and to measure uncertainty. For all of these people with definitions, I ask: where is your data?
Luckily, there is some agreement about what data scientists do and know. Armed with that basic information, I started studying. I learn the most when I scatter-gather.
First, I read a lot of books and blog posts. I watched videos. I started learning different tools and libraries.
The whole time I was careful to take notes, looking for similarities, for patterns, for connections between topics. Who are the key people in each field? What are the most popular concepts, and tools? What lessons and warnings keep cropping up?
Some common skills and tools emerged:
Skill | Popular Tool |
---|---|
Statistics | R. Python. SciPy. NumPy |
Programming / Scripting | Python. Java. Ruby. Regular expressions. |
Working at scale (“big data”) | Hadoop. Hive. Pig. HBase. Impala |
Infrastructure | Linux. AWS |
Visualization | Tableau. ggplot2. D3.js |
Storytelling | N/A |
Domain knowledge | N/A |
Linear algebra | R. Python. |
Machine learning | R. Python. Mahout. |
RDBMS | SQL queries. MySQL. PostgreSQL. SQL Server. |
NoSQL | Mongo. Cassandra. Redis |
Files | Log parsing. Regular expressions. |
After collecting all of this information, I puzzled through what the data meant. The most common lessons are:
The more I learn about this work, the more I love it.
Permalink