How to Count Popularity of Baby Names in Python

Assignment viii: Data visualization¶

Every bit we've discussed in class, there are many different means y'all can visualize information! Y'all've learned several techniques for data visualization in this class thus far. This assignment will focus explicitly on information visualization, and include more of an emphasis on plot customization.

The dataset we'll exist using in this assignment is the popular "Baby names" dataset from the Social Security Administration, available at http://ssa.gov/oact/babynames/limits.html. We'll be using a pre-candy dataset bachelor in the R package babynames , which is a long-class table of baby names from 1880 to 2017. Download the dataset from TCU Online and upload to Colab or your Drive. Adjacent, import the necessary libraries for this assignment, then read in the dataset and have a quick await:

                            import              pandas              every bit              pd              import              seaborn              every bit              sns              import              matplotlib.pyplot              as              plt              sns              .              set_style              (              "white"              )              # Modify the path below to your data path              df              =              pd              .              read_csv              (              'information/babynames.csv'              )              # Converting the year to integer for ameliorate display              df              =              df              .              assign              (              yr              =              df              .              year              .              astype              (              int              ))              df              .              caput              ()            
twelvemonth sex name n prop
0 1880 F Mary 7065 0.072384
1 1880 F Anna 2604 0.026679
2 1880 F Emma 2003 0.020521
3 1880 F Elizabeth 1939 0.019866
4 1880 F Minnie 1746 0.017888

The data frame has the following columns: year , which is the twelvemonth the baby was born; sex activity , the sexual practice of the baby; name , the proper name of the baby; n , the number of babies born with that name for that sex in that year; and prop , the proportion of babies of that sex in that year with that proper name. As you lot tin see, over 7 pct of female person babies in 1880 were given the proper name Mary! Now allow's take a wait at the size of our data frame.

Our data frame has 1.92 1000000 rows! Equally such, this isn't a dataset that you could reasonably deal with manually. Besides: Excel worksheets cannot handle data of this size, equally they take row limits of 1,048,576 rows, which takes us up to around 1989. This is not a dataset that is "big" past standard definitions, every bit information technology is only about 49 MB in size given the small number of columns. Nonetheless, information technology is much-better suited to a computational approach to information analysis like Python/ pandas .

Granted, with ane.ix million rows in our dataset, we'll demand to carefully consider our enquiry questions and how they tin help us cut downward the size of our dataset. In this notebook, I'd like you to get feel with three skills in Python plot customization:

  1. Modifying nautical chart properties

  2. Annotation/labeling

  3. Small multiples

To practise this, we are going to focus on 3 topics:

  1. What were the most popular names in 2017 (the concluding year in the dataset), and how did their popularity change over the past 10 years?

  2. How does the release of Disney princess movies influence the popularity of baby names?

  3. How have diverse gender-neutral names shifted in popularity between male & female person over time?

You'll then go a risk to do some of this on your own at the end of the assignment.

Question 2: How does the release of Disney movies influence the popularity of baby names?¶

Baby names tin sometimes be responsive to trends in popular civilisation. For example, "Daenerys" showed up in the dataset for the get-go time in 2012, and 82 infant girls were named Daenerys in 2015!. In this practice, we'll examine how the release of Disney Princess movies relates to baby names.

Allow'due south examine trends in female baby names since 1980 for four Disney Princess names: Jasmine, Ariel, Elsa, and Tiana.

                                sns                .                set_style                (                "darkgrid"                )                princesses                =                [                'Jasmine'                ,                'Ariel'                ,                'Elsa'                ,                'Tiana'                ]                princess_df                =                (                df                .                query                (                'name in @princesses & sex == "F" & year > 1979'                )                .                assign                (                per1000                =                df                .                prop                *                1000                )                )                princess_df                .                head                ()              
year sex proper name northward prop per1000
864036 1980 F Jasmine 1187 0.000667 0.66672
864335 1980 F Tiana 377 0.000212 0.21175
864519 1980 F Elsa 243 0.000136 0.13649
864674 1980 F Ariel 181 0.000102 0.10166
883456 1981 F Jasmine 1400 0.000783 0.78290

Clearly, Jasmine was a popular name in the early 1980s prior to the release of Aladdin. Tiana, Ariel, and Elsa, however, were not equally popular. So how did their popularity shift over time?

Nosotros'll make a line chart using the lineplot() function in seaborn . sns.lineplot() takes a long-form data frame similar our babynames data frame forth with a mapping of x and y values for a given dataset. The hue argument, if specified, volition split up up the data into groups within a given cavalcade and plot a dissever line, with different colors, for each group.

                                sns                .                lineplot                (                information                =                princess_df                ,                x                =                "twelvemonth"                ,                y                =                "per1000"                ,                hue                =                "proper noun"                )              
                  <AxesSubplot:xlabel='year', ylabel='per1000'>                

_images/08-data-visualization_15_1.png

We can start to get a sense here of some "spikes" in the data - for example, a clear fasten in babies named Ariel is evident later 1989, which is when The Piddling Mermaid was released. We can also notation small spikes for Tiana and Elsa after the release of their corresponding movies.

Still - how tin we limited this on the chart in clearer terms? One way to accomplish this is through annotation, which refers to the placement of text on the plot to highlight particular data points. Before doing this, let's effigy out approximately what the values are for each princess proper noun when its moving-picture show was released:

                                disney_yrs                =                {                'Ariel'                :                1989                ,                'Elsa'                :                2013                ,                'Jasmine'                :                1992                ,                'Tiana'                :                2009                }                for                princess                ,                year                in                disney_yrs                .                items                ():                # Subset the data frame for princess and twelvemonth                subset                =                princess_df                .                query                (                'name == @princess & year == @year'                )                # Extract the value for per1000 with .values                # .values returns a list, then we'll extract the 0th element                value                =                subset                .                per1000                .                values                [                0                ]                impress                (                princess                +                ': '                +                str                (                value                ))              
                Ariel: 0.64461 Elsa: 0.2942 Jasmine: v.2262699999999995 Tiana: 0.24864              

I accomplished this with a niggling new Python code. I've mentioned before the dict , a type of Python object enclosed in curly braces ( {} ) that can hold key-value pairs. The key comes before the colon, the value comes subsequently the colon, and each element of the dictionary is separated by a comma.

In this instance, our dictionary holds the name of the Disney princess, and the yr that the corresponding motion-picture show was released. Dictionaries can be iterated through with for and the .items() method; in this example, princess represents the key in the loop, and year represents the value. Within the loop, we can first create a princess and year-specific subset of our data frame, then excerpt the respective value from it.

Spend some time reading through the plt.annotate() code below so that you can empathise information technology. We're using a number of parameters here:

  • The annotation text is the first statement. Python will interpret the string '\n' as a line break, which allows us to put the text on multiple lines.

  • The xy parameter refers to the data coordinates of the point we desire to annotate, given that nosotros've specified this with the 'data' statement supplied to the xycoords parameter. We'll apply the twelvemonth of the moving-picture show release for the X value, and the data values nosotros obtained above (approximately) for the Y value.

  • In this example, withal, we don't want to put the text right on top of the lines themselves; as such, we can specify an commencement, and connect our text with the data point with an arrow. Nosotros use the xytext and textcoords parameters to do this; have a look at the plot and see where this puts the text. The argument supplied to arrowprops , which are in the form of a dict , govern the advent of the arrow.

Annotation often takes iteration and patience to become it correct. Try irresolute some of the arguments in the plt.annotate() calls below and see how the text and arrows move around!

                                # Set the figure size                plt                .                figure                (                figsize                =                (                8                ,                6                ))                # Generate the chart                sns                .                lineplot                (                data                =                princess_df                ,                x                =                "year"                ,                y                =                "per1000"                ,                hue                =                "name"                )                # Build each note individually                plt                .                annotate                (                'The Trivial                                \northward                Mermaid'                ,                xy                =                (                1989                ,                0.64                ),                xycoords                =                'data'                ,                xytext                =                (                1983                ,                2.five                ),                textcoords                =                'data'                ,                arrowprops                =                dict                (                arrowstyle                =                'simple'                ),                fontsize                =                10                )                plt                .                annotate                (                'Aladdin'                ,                xy                =                (                1992                ,                v.23                ),                xycoords                =                'information'                ,                xytext                =                (                1990                ,                6.1                ),                textcoords                =                'data'                ,                arrowprops                =                dict                (                arrowstyle                =                'simple'                ),                fontsize                =                ten                )                plt                .                comment                (                'Frozen'                ,                xy                =                (                2013                ,                0.294                ),                xycoords                =                'information'                ,                xytext                =                (                2011                ,                2.five                ),                textcoords                =                'information'                ,                arrowprops                =                dict                (                arrowstyle                =                'unproblematic'                ),                fontsize                =                x                )                plt                .                comment                (                'The Princess                                \n                and the Frog'                ,                xy                =                (                2009                ,                0.247                ),                xycoords                =                'data'                ,                xytext                =                (                2007                ,                ane.six                ),                textcoords                =                'data'                ,                arrowprops                =                dict                (                arrowstyle                =                'simple'                ),                fontsize                =                10                )                plt                .                ylabel                (                "Female baby names per m"                ,                fontsize                =                12                )                plt                .                xlabel                (                ""                )                plt                .                title                (                "Influence of Disney movies on infant names"                ,                fontsize                =                15                )                plt                .                legend                (                title                =                ""                ,                fontsize                =                12                )              
                  <matplotlib.legend.Legend at 0x7f43a9133940>                

_images/08-data-visualization_19_1.png

Question 3: How have gender-neutral names shifted in popularity between male and female person over time?¶

For the third and final question, we'll be looking at how four gender-neutral names have shifted between male and female over fourth dimension. Let's produce a new information frame from our original data frame that subsets for four popular gender-neutral names: Hashemite kingdom of jordan, Riley, Peyton, and Taylor. Nosotros'll take rows for years 1960 and later, and fill NaN values with 0.

                            neutral_names              =              [              'Jordan'              ,              'Peyton'              ,              'Taylor'              ,              'Riley'              ]            
                                neutral_df                =                (                df                .                query                (                'proper name in @neutral_names & yr > 1959'                )                .                fillna                (                0                )                )                neutral_df                .                head                ()              
yr sex name n prop
576603 1960 F Taylor eleven 0.000005
577863 1960 F Jordan 7 0.000003
580462 1960 Chiliad Jordan 137 0.000063
580537 1960 M Riley 108 0.000050
580590 1960 M Taylor 93 0.000043

In Assignment 6, you learned how to make faceted plots are available using the catplot() function, which is appropriate for charts that accept a categorical centrality. The companion relplot() function tin be used for plots with 2 continuous axes, such as scatterplots or lineplots. Let'south endeavor plotting faceted line charts that show how counts for these names vary by gender over time:

                                sns                .                relplot                (                information                =                neutral_df                ,                ten                =                "year"                ,                y                =                "n"                ,                hue                =                "sexual activity"                ,                col                =                "name"                ,                kind                =                "line"                )              
                  <seaborn.axisgrid.FacetGrid at 0x7f43b1f23d30>                

_images/08-data-visualization_24_1.png

We tin can start to get a sense of some of the variations here; Taylor is more popular amidst girls than boys, whereas the opposite is true for Jordan. Let's brand a few modifications to the plot to improve its clarity. We volition add a col_wrap argument to specify how many columns to create in our plot grid. We can too change the colors with the statement supplied to palette , and nosotros can specify a height argument to modify the plot size.

Additionally, plot objects themselves accept methods that you can employ to alter the chart advent; we'll use .set_axis_labels() to better the look of our axes, and we can modify the title of the legend as well.

                                # Notation the font_scale statement that increases all font size by 25 percent                sns                .                ready                (                style                =                "white"                ,                font_scale                =                1.25                )                chart                =                sns                .                relplot                (                data                =                neutral_df                ,                x                =                "year"                ,                y                =                "due north"                ,                hue                =                "sex activity"                ,                col                =                "proper name"                ,                kind                =                "line"                ,                col_wrap                =                two                ,                palette                =                [                "darkred"                ,                "navy"                ],                acme                =                iv                )                chart                .                set_axis_labels                (                'Year'                ,                'Number of names'                )                chart                .                _legend                .                set_title                (                'Sex'                )              

_images/08-data-visualization_26_0.png

Exercises¶

To become credit for this assignment, you lot are going to apply what you've learned to some boosted tasks using the baby names dataset. Some of this will involve re-producing some of the analyses in the notebook, but for different prompts.

Exercise i: Re-create the heatmap from Question i, but this fourth dimension for females. What trends practice you detect?

Practice 2: Create a line chart that shows how a proper name of your choice has varied in popularity over fourth dimension. Discover out the year when your called proper name peaked in popularity, and annotate your chart to bear witness where this acme is located on the line.

Practise 3: In Question 2, we looked at the possible influence of Disney princess movies on female baby names. Option four other names (male or female) from popular culture over the past 30 years and produce a nautical chart that illustrates their influence (or lack thereof) on babe names. Exist strategic with your proper name decisions! You lot tin create a unmarried line chart with 4 series, or a small multiples chart with facets - selection the one you think is ideal!

beebeballe1968.blogspot.com

Source: https://walker-data.com/geog30323/08-data-visualization.html

0 Response to "How to Count Popularity of Baby Names in Python"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel