Skip to main content
All CollectionsPractice ExercisesBaby Names
Baby Names Practice Exercise #3
Baby Names Practice Exercise #3
Updated over a week ago

Summary

This series of practice exercises is meant to give you a better understanding of the fundamental tools and features of the Savant workflow:

  • Upload data files

  • Use the Transform tool to clean and parse datasets

  • Use the Time Series tool to work with temporal data

  • Use the Filter tool to refine datasets

  • Export to destinations and schedule bots

To start, access and download a .csv of the practice exercise data here.


IMPORTANT NOTE: There are three Baby Names exercises in the series. If you haven't completed both Exercise #1 and Exercise #2, we recommend starting there.


Exercise #3: Find the Top 40 Baby Names with the Greatest Swing Between their Low and High Year as a Percentage of Total Names by Sex

In this third practice exercise, you will take a dataset which tracks the number of babies born with a certain first name each year:

Year

State

State Abbr

Sex

Name

# Babies Named

1980

California

CA

M

Bo

25

1980

Texas

TX

M

Bo

26

1981

Texas

TX

M

Bo

22

1986

Texas

TX

M

Bo

20

1989

California

CA

M

Bo

20

1990

California

CA

M

Bo

27

1991

Texas

TX

M

Bo

26

And then transform it into an output that shows the top 40 baby names ranked by the greatest swing between their lowest and highest year as a percentage of the total babies named by sex, along with their biggest year and the % within that year:

Name

Sex

Biggest Year

% of Year

Swing Rank

Jennifer

F

1980

0.0209675

1

Jessica

F

1987

0.0192928

2

Michael

M

1980

0.0246758

3

Ashley

F

1987

0.0188994

4

Christopher

M

1984

0.0211675

5

Jason

M

1980

0.0173008

6

Amanda

F

1987

0.0143972

7

Brittany

F

1989

0.0122644

8

Matthew

M

1983

0.0178428

9

Melissa

F

1980

0.0113635

10

* * *

NOTE: Steps 1 & 2 are identical to Exercise #1, except for the analysis naming convention.

Step 1: Open a New Analysis

  1. Log into Savant, navigate to the Analyses tab, and click “New Analysis”.

  2. Give your new analysis the name “Top 40 Baby Names with Greatest Swing by Decade - (Your Name)” by clicking the edit pencil next to the temporary name in the top bar:

Step 2: Add a Dataset

  1. If you have already downloaded the data in a previous exercise, add it to the canvas. If you haven't downloaded a .csv yet, download the data here.

  2. In your Analysis canvas, navigate to the “Add Dataset” button on the left nav bar:

  3. Select “Upload”.

  4. Click the grey box to open your file explorer and select the .csv file you downloaded.

  5. Click “Next” and then “Next” again.

  6. Name the file and hit "Confirm".

  7. Now you should see the dataset you just connected as the first step on your canvas.

Step 3: Analyze the Data

  1. In your Analysis canvas, navigate to the “Add Step” button on the left navigation bar:

  2. Select “Transform” and you will see the Transform step connected to your canvas.

  3. Double-click the “Transform” step to see a table view.

  4. Start by converting the Year to a date value

    1. Click the dropdown arrow inside the “Year” column and select “Insert left”:

    2. Give the column the name “Year Start” and enter the following expression to turn year into a date value:

    3. Click "Confirm" and validate that the data has populated correctly. It should look something like the following:

  5. Next, we need to hide the Year value from the table. Navigate to the left side panel, click the eye icon next to the Year value, and click "Apply":

  6. Use the Time Series tool to get the count of babies named a certain name by year.

    1. Click the Time Series step in the top bar of your Edit page:

    2. Enter the following config and click "Apply":

  7. Next we’ll want to use a series of custom calculated fields to determine the swing in relative popularity for baby names by year. Navigate to the canvas tab, and add another “Transform” step to your canvas by clicking the "Add Step" button and selecting "Transform" as you did at the beginning of Step 3. Double-click the “Transform” step to see a table view.

    1. First, rename the "Period Name" column to "Year".

    2. Hide the "Period Offset" column.

    3. Add another column to your table and rename the column to “Total Babies in Year”. Select “Builder” below the name text box and enter the following configuration:

      This will give the total babies named partitioned by year, so the sum value should appear the same in every row with the same year value.

    4. Next, add another column to your table, name the column to "% of Year". Select "Expression," enter the following configuration, and click "Confirm":

      This will return the percentage of the total babies within a year that a given baby name constitutes.

    5. Add another column to your table, rename the column to "Min %". Edit the column, select "Builder," and enter the following configuration:

      This will return the minimum value from the "% of Year" column for a given name and sex across all years.

    6. Next, add another column to your table, rename the column to "Max %". Edit the column, select "Builder," and enter the following configuration:

      This will return the maximum value from the "% of Year" column for a given name and sex across all years.

    7. Add another column to your table, rename the column to "Swing". Edit the column, select "Expression," and enter the following configuration:

      This will return the difference between the Max % and Min % for a given name and sex.

    8. Lastly, add another column to your table, rename the column to "Swing Rank". Edit the column, select "Builder," and enter the following configuration:

      This will return the rank of each name and sex according to their swing in descending order, i.e., the name and sex combination with the greatest swing will be ranked #1.

  8. Now, we need to filter the table so only rows with a name's maximum year remain. Returning to the analysis canvas, navigate to the side menu, click "Add Step" and then select the "Filter" icon:

    1. Click into the Filter node. In the configuration menu, select "Expression" and enter the following. Then click "Apply":

      This will return all rows where the "% of Year" value is equal to the "Max %" value.

  9. Next, we need to filter the table down to the top 40 values. To do this, let's follow the same sequence as in the previous step and add a Filter to the canvas. Open the new Filter node, select "Builder", and edit the configuration panel to set "Swing Rank Less Than Or Equal To 40", then click "Apply":

  10. We have one final Transform step to clean the data and prepare it for the destination. From the canvas, add an Transform step. Click into the Transform tool to make the following changes.

    1. Rename the "Year" field to "Biggest Year", since it now only includes the Year that a name and sex combination had its greatest % of the year's total.

    2. Toggles the settings as follows to show only the desired fields:

      (Note: You can change the order of the columns with the grid icon)

    3. The final table should look as follows:

Step 4: Configure a Destination

  1. At this stage, your analysis is complete. The last thing you want to do is add a destination. Go back to your canvas by clicking the “Canvas” tab on the top of your table.

  2. Click the “Add Destination” icon from the left nav bar:

  3. Select “Add System”.

  4. Select “Google Sheets”.

  5. Click “Next”.

  6. Create a blank Google sheet, name it "Baby Names Practice Exercise #3" and copy the URL into the Spreadsheet ID. Then click "Authenticate with Google".

  7. You’ll now be required to authenticate via Google. Click your email address associated with the Google Sheet.

  8. Click “Continue”.

  9. Give your spreadsheet a name.

  10. Click "Confirm".

  11. Confirm that the Google Sheet has been connected to the last edit step on your canvas.

  12. Click the Google Sheet Destination step on your canvas, and then click the left arrow on the right hand side to display the configuration.

  13. Enter the following configuration, which instructs the bot to create a tab called "Baby Names Practice Exercise #3" and replace its contents starting from cell A1:

  14. Hit "Apply".

Step 5: Run the Analysis

  1. Finally, you can run your analysis. Do this by selecting “Run Bot” at the top of the screen. Then select “Run Now”.

  2. You can view the progress of your run by clicking on the “Runs” tab at the top nav bar.

  3. Once the run is complete, you should see the data output to your Google Sheet.

Congrats! You just finished the Baby Names Practice Exercise #3. You completed the series!


Did this answer your question?