Building a data science portfolio: Storytelling with data
========
>This is the first in a series of posts on how to build a Data Science Portfolio. If you like this and want to know when the next post in the series is released, you can[subscribe at the bottom of the page][35].
Data science companies are increasingly looking at portfolios when making hiring decisions. One of the reasons for this is that a portfolio is the best way to judge someone’s real-world skills. The good news for you is that a portfolio is entirely within your control. If you put some work in, you can make a great portfolio that companies are impressed by.
The first step in making a high-quality portfolio is to know what skills to demonstrate. The primary skills that companies want in data scientists, and thus the primary skills they want a portfolio to demonstrate, are:
* Ability to communicate
* Ability to collaborate with others
* Technical competence
* Ability to reason about data
* Motivation and ability to take initiative
Any good portfolio will be composed of multiple projects, each of which may demonstrate 1-2 of the above points. This is the first post in a series that will cover how to make a well-rounded data science portfolio. In this post, we’ll cover how to make your first project for a data science portfolio, and how to tell an effective story using data. At the end, you’ll have a project that will help demonstrate your ability to communicate, and your ability to reason about data.
### Storytelling with data
Data science is fundamentally about communication. You’ll discover some insight in the data, then figure out an effective way to communicate that insight to others, then sell them on the course of action you propose. One of the most critical skills in data science is being able to tell an effective story using data. An effective story can make your insights much more compelling, and help others understand your ideas.
A story in the data science context is a narrative around what you found, how you found it, and what it means. An example might be the discovery that your company’s revenue has dropped 20% in the last year. It’s not enough to just state that fact – you’ll have to communicate why revenue dropped, and how to potentially fix it.
The main components of storytelling with data are:
* Understanding and setting the context
* Exploring multiple angles
* Using compelling visualizations
* Using varied data sources
* Having a consistent narrative
The best tool to effectively tell a story with data is[Jupyter notebook][34]. If you’re unfamiliar,[here’s][33]a good tutorial. Jupyter notebook allows you to interactively explore data, then share your results on various sites, including Github. Sharing your results is helpful both for collaboration, and so others can extend your analysis.
We’ll use Jupyter notebook, along with Python libraries like Pandas and matplotlib in this post.
### Choosing a topic for your data science project
The first step in creating a project is to decide on your topic. You want the topic to be something you’re interested in, and are motivated to explore. It’s very obvious when people are making projects just to make them, and when people are making projects because they’re genuinely interested in exploring the data. It’s worth spending extra time on this step, so ensure that you find something you’re actually interested in.
A good way to find a topic is to browse different datasets and seeing what looks interesting. Here are some good sites to start with:
* [Data.gov][20]– contains government data.
* [/r/datasets][19]– a subreddit that has hundreds of interesting datasets.
* [Awesome datasets][18]– a list of datasets, hosted on Github.
* [rs.io][17]– a great blog post with hundreds of interesting datasets.
In real-world data science, you often won’t find a nice single dataset that you can browse. You might have to aggregate disparate data sources, or do a good amount of data cleaning. If a topic is very interesting to you, it’s worth doing the same here, so you can show off your skills better.
For the purposes of this post, we’ll be using data about New York city public schools, which can be found[here][32].
### Pick a topic
It’s important to be able to take the project from start to finish. In order to do this, it can be helpful to restrict the scope of the project, and make it something we know we can finish. It’s easier to add to a finished project than to complete a project that you just can’t seem to ever get enough motivation to finish.
In this case, we’ll look at the[SAT scores][31]of high schoolers, along with various demographic and other information about them. The SAT, or Scholastic Aptitude Test, is a test that high schoolers take in the US before applying to college. Colleges take the test scores into account when making admissions decisions, so it’s fairly important to do well on. The test is divided into 3 sections, each of which is scored out of 800 points. The total score is out of 2400 (although this has changed back and forth a few times, the scores in this dataset are out of 2400). High schools are often ranked by their average SAT scores, and high SAT scores are considered a sign of how good a school district is.
There have been allegations about the SAT being unfair to certain racial groups in the US, so doing this analysis on New York City data will help shed some light on the fairness of the SAT.
We have a dataset of SAT scores[here][30], and a dataset that contains information on each high school[here][29]. These will form the base of our project, but we’ll need to add more information to create compelling analysis.
### Supplementing the data
Once you have a good topic, it’s good to scope out other datasets that can enhance the topic or give you more depth to explore. It’s good to do this upfront, so you have as much data as possible to explore as you’re building your project. Having too little data might mean that you give up on your project too early.
In this case, there are several related datasets on the same website that cover demographic information and test scores.
Here are the links to all of the datasets we’ll be using:
* [SAT scores by school][16]– SAT scores for each high school in New York City.
* [School attendance][15]– attendance information on every school in NYC.
* [Math test results][14]– math test results for every school in NYC.
* [Class size][13]– class size information for each school in NYC.
* [AP test results][12]– Advanced Placement exam results for each high school. Passing AP exams can get you college credit in the US.
* [Graduation outcomes][11]– percentage of students who graduated, and other outcome information.
* [Demographics][10]– demographic information for each school.
* [School survey][9]– surveys of parents, teachers, and students at each school.
* [School district maps][8]– contains information on the layout of the school districts, so that we can map them out.
All of these datasets are interrelated, and we’ll be able to combine them before we do any analysis.
### Getting background information
Before diving into analyzing the data, it’s useful to research some background information. In this case, we know a few facts that will be useful:
* New York City is divided into`5`boroughs, which are essentially distinct regions.
* Schools in New York City are divided into several school district, each of which can contains dozens of schools.
* Not all the schools in all of the datasets are high schools, so we’ll need to do some data cleaning.
* Each school in New York City has a unique code called a`DBN`, or District Borough Number.
* By aggregating data by district, we can use the district mapping data to plot district-by-district differences.
### Understanding the data
In order to really understand the context of the data, you’ll want to spend time exploring and reading about the data. In this case, each link above has a description of the data, along with the relevant columns. It looks like we have data on the SAT scores of high schoolers, along with other datasets that contain demographic and other information.
We can run some code to read in the data. We’ll be using[Jupyter notebook][28]to explore the data. The below code will:
0 883 Classon Avenue\nBrooklyn, NY 11225\n(40.67...
1 1110 Boston Road\nBronx, NY 10456\n(40.8276026...
2 1501 Jerome Avenue\nBronx, NY 10452\n(40.84241...
3 411 Pearl Street\nNew York, NY 10038\n(40.7106...
4 160-20 Goethals Avenue\nJamaica, NY 11432\n(40...
[5 rows x 58 columns]
```
We can start to see some useful patterns in the datasets:
* Most of the datasets contain a`DBN`column
* Some fields look interesting for mapping, particularly`Location 1`, which contains coordinates inside a larger string.
* Some of the datasets appear to contain multiple rows for each school (repeated DBN values), which means we’ll have to do some preprocessing.
### Unifying the data
In order to work with the data more easily, we’ll need to unify all the individual datasets into a single one. This will enable us to quickly compare columns across datasets. In order to do this, we’ll first need to find a common column to unify them on. Looking at the output above, it appears that`DBN`might be that common column, as it appears in multiple datasets.
If we google`DBN New York City Schools`, we end up[here][26], which explains that the`DBN`is a unique code for each school. When exploring datasets, particularly government ones, it’s often necessary to do some detective work to figure out what each column means, or even what each dataset is.
The problem now is that two of the datasets,`class_size`, and`hs_directory`, don’t have a`DBN`field. In the`hs_directory`data, it’s just named`dbn`, so we can just rename the column, or copy it over into a new column called`DBN`. In the`class_size`data, we’ll need to try a different approach.
The`DBN`column looks like this:
In[5]:
```
data["demographics"]["DBN"].head()
```
Out[5]:
```
0 01M015
1 01M015
2 01M015
3 01M015
4 01M015
Name: DBN, dtype: object
```
If we look at the`class_size`data, here’s what we’d see in the first`5`rows:
| | CSD | BOROUGH | SCHOOL CODE | SCHOOL NAME | GRADE | PROGRAM TYPE | CORE SUBJECT (MS CORE and 9-12 ONLY) | CORE COURSE (MS CORE and 9-12 ONLY) | SERVICE CATEGORY(K-9* ONLY) | NUMBER OF STUDENTS / SEATS FILLED | NUMBER OF SECTIONS | AVERAGE CLASS SIZE | SIZE OF SMALLEST CLASS | SIZE OF LARGEST CLASS | DATA SOURCE | SCHOOLWIDE PUPIL-TEACHER RATIO |
As you can see above, it looks like the`DBN`is actually a combination of`CSD`,`BOROUGH`, and`SCHOOL CODE`. For those unfamiliar with New York City, it is composed of`5`boroughs. Each borough is an organizational unit, and is about the same size as a fairly large US City.`DBN`stands for`District Borough Number`. It looks like`CSD`is the District,`BOROUGH`is the borough, and when combined with the`SCHOOL CODE`, forms the`DBN`. There’s no systematized way to find insights like this in data, and it requires some exploration and playing around to figure out.
Now that we know how to construct the`DBN`, we can add it into the`class_size`and`hs_directory`datasets:
One of the most potentially interesting datasets to look at is the dataset on student, parent, and teacher surveys about the quality of schools. These surveys include information about the perceived safety of each school, academic standards, and more. Before we combine our datasets, let’s add in the survey data. In real-world data science projects, you’ll often come across interesting data when you’re midway through your analysis, and will want to incorporate it. Working with a flexible tool like Jupyter notebook will allow you to quickly add some additional code, and re-run your analysis.
In this case, we’ll add the survey data into our`data`dictionary, and then combine all the datasets afterwards. The survey data consists of`2`files, one for all schools, and one for school district`75`. We’ll need to write some code to combine them. In the below code, we’ll:
* Read in the surveys for all schools using the`windows-1252`file encoding.
* Read in the surveys for district 75 schools using the`windows-1252`file encoding.
* Add a flag that indicates which school district each dataset is for.
* Combine the datasets into one using the[concat][6]method on DataFrames.
Once we have the surveys combined, there’s an additional complication. We want to minimize the number of columns in our combined dataset so we can easily compare columns and figure out correlations. Unfortunately, the survey data has many columns that aren’t very useful to us:
We can resolve this issue by looking at the data dictionary file that we downloaded along with the survey data. The file tells us the important fields in the data:
| | CSD | BOROUGH | SCHOOL CODE | SCHOOL NAME | GRADE | PROGRAM TYPE | CORE SUBJECT (MS CORE and 9-12 ONLY) | CORE COURSE (MS CORE and 9-12 ONLY) | SERVICE CATEGORY(K-9* ONLY) | NUMBER OF STUDENTS / SEATS FILLED | NUMBER OF SECTIONS | AVERAGE CLASS SIZE | SIZE OF SMALLEST CLASS | SIZE OF LARGEST CLASS | DATA SOURCE | SCHOOLWIDE PUPIL-TEACHER RATIO | DBN |
There are several rows for each high school (as you can see by the repeated`DBN`and`SCHOOL NAME`fields). However, if we take a look at the`sat_results`dataset, it only has one row per high school:
In order to combine these datasets, we’ll need to find a way to condense datasets like`class_size`to the point where there’s only a single row per high school. If not, there won’t be a way to compare SAT scores to class size. We can accomplish this by first understanding the data better, then by doing some aggregation. With the`class_size`dataset, it looks like`GRADE`and`PROGRAM TYPE`have multiple values for each school. By restricting each field to a single value, we can filter most of the duplicate rows. In the below code, we:
* Only select values from`class_size`where the`GRADE`field is`09-12`.
* Only select values from`class_size`where the`PROGRAM TYPE`field is`GEN ED`.
* Group the`class_size`dataset by`DBN`, and take the average of each column. Essentially, we’ll find the average`class_size`values for each school.
* Reset the index, so`DBN`is added back in as a column.
Next, we’ll need to condense the`demographics`dataset. The data was collected for multiple years for the same schools, so there are duplicate rows for each school. We’ll only pick rows where the`schoolyear`field is the most recent available:
We’ll need to condense the`math_test_results`dataset. This dataset is segmented by`Grade`and by`Year`. We can select only a single grade from a single year:
Data cleaning and exploration is critical before working on the meat of the project. Having a good, consistent dataset will help you do your analysis more quickly.
### Computing variables
Computing variables can help speed up our analysis by enabling us to make comparisons more quickly, and enable us to make comparisons that we otherwise wouldn’t be able to do. The first thing we can do is compute a total SAT score from the individual columns`SAT Math Avg. Score`,`SAT Critical Reading Avg. Score`, and`SAT Writing Avg. Score`. In the below code, we:
* Convert each of the SAT score columns from a string to a number.
* Add together all of the columns to get the`sat_score`column, which is the total SAT score.
Next, we’ll need to parse out the coordinate locations of each school, so we can make maps. This will enable us to plot the location of each school. In the below code, we:
* Parse latitude and longitude columns from the`Location 1`column.
0 NaN NaN 883 Classon Avenue\nBrooklyn, NY 11225\n(40.67...
1 NaN NaN 1110 Boston Road\nBronx, NY 10456\n(40.8276026...
2 NaN NaN 1501 Jerome Avenue\nBronx, NY 10452\n(40.84241...
3 NaN NaN 411 Pearl Street\nNew York, NY 10038\n(40.7106...
4 NaN NaN 160-20 Goethals Avenue\nJamaica, NY 11432\n(40...
DBN lat lon
0 17K548 40.670299 -73.961648
1 09X543 40.827603 -73.904475
2 09X327 40.842414 -73.916162
3 02M280 40.710679 -74.000807
4 28Q680 40.718810 -73.806500
[5 rows x 61 columns]
```
### Combining the datasets
Now that we’ve done all the preliminaries, we can combine the datasets together using the`DBN`column. At the end, we’ll have a dataset with hundreds of columns, from each of the original datasets. When we join them, it’s important to note that some of the datasets are missing high schools that exist in the`sat_results`dataset. To resolve this, we’ll need to merge the datasets that have missing rows using the`outer`join strategy, so we don’t lose data. In real-world data analysis, it’s common to have data be missing. Being able to demonstrate the ability to reason about and handle missing data is an important part of building a portfolio.
You can read about different types of joins[here][25].
In the below code, we’ll:
* Loop through each of the items in the`data`dictionary.
* Print the number of non-unique DBNs in the item.
* Decide on a join strategy –`inner`or`outer`.
* Join the item to the DataFrame`full`using the column`DBN`.
In[75]:
```
flat_data_names = [k for k,v in data.items()]
flat_data = [data[k] for k in flat_data_names]
full = flat_data[0]
for i, f in enumerate(flat_data[1:]):
name = flat_data_names[i+1]
print(name)
print(len(f["DBN"]) - len(f["DBN"].unique()))
join_type = "inner"
if name in ["sat_results", "ap_2010", "graduation"]:
join_type = "outer"
if name not in ["math_test_results"]:
full = full.merge(f, on="DBN", how=join_type)
full.shape
```
```
survey
0
ap_2010
1
sat_results
0
class_size
0
demographics
0
graduation
0
hs_directory
0
```
Out[75]:
```
(374, 174)
```
### Enjoying this post? Learn data science with Dataquest!
#####
* Learn from the comfort of your browser.
* Work with real-life data sets.
* Build a portfolio of projects.
[Start for Free][5]
### Adding in values
Now that we have our`full`DataFrame, we have almost all the information we’ll need to do our analysis. There are a few missing pieces, though. We may want to correlate the[Advanced Placement][24]exam results with SAT scores, but we’ll need to first convert those columns to numbers, then fill in any missing values:
In[76]:
```
cols = ['AP Test Takers ', 'Total Exams Taken', 'Number of Exams with scores 3 4 or 5']
Then, we’ll need to calculate a`school_dist`column that indicates the school district of the school. This will enable us to match up school districts and plot out district-level statistics using the district maps we downloaded earlier:
Finally, we’ll need to fill in any missing values in`full`with the mean of the column, so we can compute correlations:
In[79]:
```
full = full.fillna(full.mean())
```
### Computing correlations
A good way to explore a dataset and see what columns are related to the one you care about is to compute correlations. This will tell you which columns are closely related to the column you’re interested in. We can do this via the[corr][23]method on Pandas DataFrames. The closer to`0`the correlation, the weaker the connection. The closer to`1`, the stronger the positive correlation, and the closer to`-1`, the stronger the negative correlation`:
In[80]:
```
full.corr()['sat_score']
```
Out[80]:
```
Year NaN
Number Tested 8.127817e-02
rr_s 8.484298e-02
rr_t -6.604290e-02
rr_p 3.432778e-02
N_s 1.399443e-01
N_t 9.654314e-03
N_p 1.397405e-01
saf_p_11 1.050653e-01
com_p_11 2.107343e-02
eng_p_11 5.094925e-02
aca_p_11 5.822715e-02
saf_t_11 1.206710e-01
com_t_11 3.875666e-02
eng_t_10 NaN
aca_t_11 5.250357e-02
saf_s_11 1.054050e-01
com_s_11 4.576521e-02
eng_s_11 6.303699e-02
aca_s_11 8.015700e-02
saf_tot_11 1.266955e-01
com_tot_11 4.340710e-02
eng_tot_11 5.028588e-02
aca_tot_11 7.229584e-02
AP Test Takers 5.687940e-01
Total Exams Taken 5.585421e-01
Number of Exams with scores 3 4 or 5 5.619043e-01
SAT Critical Reading Avg. Score 9.868201e-01
SAT Math Avg. Score 9.726430e-01
SAT Writing Avg. Score 9.877708e-01
...
SIZE OF SMALLEST CLASS 2.440690e-01
SIZE OF LARGEST CLASS 3.052551e-01
SCHOOLWIDE PUPIL-TEACHER RATIO NaN
schoolyear NaN
frl_percent -7.018217e-01
total_enrollment 3.668201e-01
ell_num -1.535745e-01
ell_percent -3.981643e-01
sped_num 3.486852e-02
sped_percent -4.413665e-01
asian_num 4.748801e-01
asian_per 5.686267e-01
black_num 2.788331e-02
black_per -2.827907e-01
hispanic_num 2.568811e-02
hispanic_per -3.926373e-01
white_num 4.490835e-01
white_per 6.100860e-01
male_num 3.245320e-01
male_per -1.101484e-01
female_num 3.876979e-01
female_per 1.101928e-01
Total Cohort 3.244785e-01
grade_span_max -2.495359e-17
expgrade_span_max NaN
zip -6.312962e-02
total_students 4.066081e-01
number_programs 1.166234e-01
lat -1.198662e-01
lon -1.315241e-01
Name: sat_score, dtype: float64
```
This gives us quite a few insights that we’ll need to explore:
* Total enrollment correlates strongly with`sat_score`, which is surprising, because you’d think smaller schools, which focused more on the student, would have higher scores.
* The percentage of females at a school (`female_per`) correlates positively with SAT score, whereas the percentage of males (`male_per`) correlates negatively.
* None of the survey responses correlate highly with SAT scores.
* There is a significant racial inequality in SAT scores (`white_per`,`asian_per`,`black_per`,`hispanic_per`).
*`ell_percent`correlates strongly negatively with SAT scores.
Each of these items is a potential angle to explore and tell a story about using the data.
### Setting the context
Before we dive into exploring the data, we’ll want to set the context, both for ourselves, and anyone else that reads our analysis. One good way to do this is with exploratory charts or maps. In this case, we’ll map out the positions of the schools, which will help readers understand the problem we’re exploring.
In the below code, we:
* Setup a map centered on New York City.
* Add a marker to the map for each high school in the city.
Heatmaps are good for mapping out gradients, but we’ll want something with more structure to plot out differences in SAT score across the city. School districts are a good way to visualize this information, as each district has its own administration. New York City has several dozen school districts, and each district is a small geographic area.
We can compute SAT score by school district, then plot this out on a map. In the below code, we’ll:
* Group`full`by school district.
* Compute the average of each column for each school district.
* Convert the`school_dist`field to remove leading`0`s, so we can match our geograpghic district data.
We’ll now we able to plot the average SAT score in each school district. In order to do this, we’ll read in data in[GeoJSON][22]format to get the shapes of each district, then match each district shape with the SAT score using the`school_dist`column, then finally create the plot:
Now that we’ve set the context by plotting out where the schools are, and SAT score by district, people viewing our analysis have a better idea of the context behind the dataset. Now that we’ve set the stage, we can move into exploring the angles we identified earlier, when we were finding correlations. The first angle to explore is the relationship between the number of students enrolled in a school and SAT score.
We can explore this with a scatter plot that compares total enrollment across all schools to SAT scores across all schools.
As you can see, there’s a cluster at the bottom left with low total enrollment and low SAT scores. Other than this cluster, there appears to only be a slight positive correlation between SAT scores and total enrollment. Graphing out correlations can reveal unexpected patterns.
We can explore this further by getting the names of the schools with low enrollment and low SAT scores:
Some searching on Google shows that most of these schools are for students who are learning English, and are low enrollment as a result. This exploration showed us that it’s not total enrollment that’s correlated to SAT score – it’s whether or not students in the school are learning English as a second language or not.
### Exploring English language learners and SAT scores
Now that we know the percentage of English language learners in a school is correlated with lower SAT scores, we can explore the relationship. The`ell_percent`column is the percentage of students in each school who are learning English. We can make a scatterplot of this relationship:
It looks like there are a group of schools with a high`ell_percentage`that also have low average SAT scores. We can investigate this at the district level, by figuring out the percentage of English language learners in each district, and seeing it if matches our map of SAT scores by district:
As we can see by looking at the two district level maps, districts with a low proportion of ELL learners tend to have high SAT scores, and vice versa.
### Correlating survey scores and SAT scores
It would be fair to assume that the results of student, parent, and teacher surveys would have a large correlation with SAT scores. It makes sense that schools with high academic expectations, for instance, would tend to have higher SAT scores. To test this theory, lets plot out SAT scores and the various survey metrics:
Surprisingly, the two factors that correlate the most are`N_p`and`N_s`, which are the counts of parents and students who responded to the surveys. Both strongly correlate with total enrollment, so are likely biased by the`ell_learners`. The other metric that correlates most is`saf_t_11`. That is how safe students, parents, and teachers perceived the school to be. It makes sense that the safer the school, the more comfortable students feel learning in the environment. However, none of the other factors, like engagement, communication, and academic expectations, correlated with SAT scores. This may indicate that NYC is asking the wrong questions in surveys, or thinking about the wrong factors (if their goal is to improve SAT scores, it may not be).
### Exploring race and SAT scores
One of the other angles to investigate involves race and SAT scores. There was a large correlation differential, and plotting it out will help us understand what’s happening:
It looks like the higher percentages of white and asian students correlate with higher SAT scores, but higher percentages of black and hispanic students correlate with lower SAT scores. For hispanic students, this may be due to the fact that there are more recent immigrants who are ELL learners. We can map the hispanic percentage by district to eyeball the correlation:
It looks like there is some correlation with ELL percentage, but it will be necessary to do some more digging into this and other racial differences in SAT scores.
### Gender differences in SAT scores
The final angle to explore is the relationship between gender and SAT score. We noted that a higher percentage of females in a school tends to correlate with higher SAT scores. We can visualize this with a bar graph:
It looks like there’s a cluster of schools with a high percentage of females, and very high SAT scores (in the top right). We can get the names of the schools in this cluster:
Searching Google reveals that these are elite schools that focus on the performing arts. These schools tend to have higher percentages of females, and higher SAT scores. This likely accounts for the correlation between higher female percentages and SAT scores, and the inverse correlation between higher male percentages and lower SAT scores.
### AP scores
So far, we’ve looked at demographic angles. One angle that we have the data to look at is the relationship between more students taking Advanced Placement exams and higher SAT scores. It makes sense that they would be correlated, since students who are high academic achievers tend to do better on the SAT.
In[98]:
```
full["ap_avg"] = full["AP Test Takers "] / full["total_enrollment"]
It looks like there is indeed a strong correlation between the two. An interesting cluster of schools is the one at the top right, which has high SAT scores and a high proportion of students that take the AP exams:
Some Google searching reveals that these are mostly highly selective schools where you need to take a test to get in. It makes sense that these schools would have high proportions of AP test takers.
### Wrapping up the story
With data science, the story is never truly finished. By releasing analysis to others, you enable them to extend and shape your analysis in whatever direction interests them. For example, in this post, there are quite a few angles that we explored inmcompletely, and could have dived into more.
One of the best ways to get started with telling stories using data is to try to extend or replicate the analysis someone else has done. If you decide to take this route, you’re welcome to extend the analysis in this post and see what you can find. If you do this, make sure to comment below so I can take a look.
### Next steps
If you’ve made it this far, you hopefully have a good understanding of how to tell a story with data, and how to build your first data science portfolio piece. Once you’re done with your data science project, it’s a good idea to post it on[Github][21]so others can collaborate with you on it.
_If you liked this, you might like to read the other posts in our ‘Build a Data Science Portfolio’ series:_
*_[How to setup up a data science blog][4]._
*_[Building a machine learning project][3]._
*_[The key to building a data science portfolio that will get you a job][2]._
*_[17 places to find datasets for data science projects][1]_