diff --git a/docs/html/.doctrees/environment.pickle b/docs/html/.doctrees/environment.pickle index 864e3702..d11837bf 100644 Binary files a/docs/html/.doctrees/environment.pickle and b/docs/html/.doctrees/environment.pickle differ diff --git a/docs/html/.doctrees/exercises/Exercise_dask.doctree b/docs/html/.doctrees/exercises/Exercise_dask.doctree index 1763a33c..46923efb 100644 Binary files a/docs/html/.doctrees/exercises/Exercise_dask.doctree and b/docs/html/.doctrees/exercises/Exercise_dask.doctree differ diff --git a/docs/html/.doctrees/exercises/Solutions_dataframes.doctree b/docs/html/.doctrees/exercises/Solutions_dataframes.doctree new file mode 100644 index 00000000..a6297c0d Binary files /dev/null and b/docs/html/.doctrees/exercises/Solutions_dataframes.doctree differ diff --git a/docs/html/.doctrees/nbsphinx/solutions.ipynb b/docs/html/.doctrees/nbsphinx/solutions.ipynb index 60068ff8..a0a62d2d 100644 --- a/docs/html/.doctrees/nbsphinx/solutions.ipynb +++ b/docs/html/.doctrees/nbsphinx/solutions.ipynb @@ -13,7 +13,7 @@ "source": [ "- [Numpy Vector Solutions](exercises/Solutions_numpy_vectors.ipynb)\n", "- [Pandas Series](exercises/Solutions_series.ipynb)\n", - "- [Pandas DataFrames](exercises/Solutions_dataframe.ipynb)\n" + "- [Pandas DataFrames](exercises/Solutions_dataframes.ipynb)\n" ] } ], diff --git a/docs/html/.doctrees/solutions.doctree b/docs/html/.doctrees/solutions.doctree index c40434f0..7b68290c 100644 Binary files a/docs/html/.doctrees/solutions.doctree and b/docs/html/.doctrees/solutions.doctree differ diff --git a/docs/html/_sources/exercises/Solutions_dataframes.ipynb.txt b/docs/html/_sources/exercises/Solutions_dataframes.ipynb.txt new file mode 100644 index 00000000..0f73c361 --- /dev/null +++ b/docs/html/_sources/exercises/Solutions_dataframes.ipynb.txt @@ -0,0 +1,1119 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Estimating Labor Market Returns to Education\n", + "\n", + "In this exercise, we're going to use data from the [American Communities Survey (ACS)](https://usa.ipums.org/usa/acs.shtml) to study the relationship betwen educational attainment and wages. The ACS is a survey conducted by the United States Census Bureau (though it is not \"The Census,\" which is a counting of every person in the United States that takes place every 10 years) to measure numerous features of the US population. The data we will be working with includes about 100 variables from the 2017 ACS survey, and is a 10% sample of the ACS (which itself is a 1% sample of the US population, so we're working with about a 0.1% sample of the United States). \n", + "\n", + "This data comes from [IPUMS](https://usa.ipums.org/usa/), which provides a very useful tool for getting subsets of major survey datasets, not just from the US, but [from government statistical agencies the world over](https://international.ipums.org/international-action/sample_details).\n", + "\n", + "This is *real* data, meaning that you are being provided the data as it is provided by IPUMS. Documentation for all variables used in this data can be found [here](https://usa.ipums.org/usa-action/variables/group) (you can either search by variable name to figure out the meaning of a variable in this data, or search for something you want to see if a variable with the right name is in this data). \n", + "\n", + "Within this data is information on both the educational background and current earnings of a representative sample of Americans. We will now use this data to estimate the labor-market returns to graduating high school and college, and to learn something about the meaning of an educational degree. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Gradescope Autograding\n", + "\n", + "Please follow [all standard guidance](https://www.practicaldatascience.org/html/autograder_guidelines.html) for submitting this assignment to the Gradescope autograder, including storing your solutions in a dictionary called `results` and ensuring your notebook runs from the start to completion without any errors.\n", + "\n", + "For this assignment, please name your file `exercise_dataframes.ipynb` before uploading.\n", + "\n", + "You can check that you have answers for all questions in your `results` dictionary with this code:\n", + "\n", + "```python\n", + "assert set(results.keys()) == {\n", + " \"ex2_num_obs\",\n", + " \"ex3_num_vars\",\n", + " \"ex8_updated_num_obs\",\n", + " \"ex9_updated_num_obs\",\n", + " \"ex11_grade12_income\",\n", + " \"ex12_college_income\",\n", + " \"ex12_college_income_pct\",\n", + " \"ex14_high_school_dropout\",\n", + " \"ex15_grade_9\",\n", + " \"ex15_grade_10\",\n", + " \"ex15_grade_11\",\n", + " \"ex15_grade_12\",\n", + " \"ex15_4_years_of_college\",\n", + " \"ex15_graduate\",\n", + "}\n", + "```\n", + "\n", + "### Submission Limits\n", + "\n", + "Please remember that you are **only allowed three submissions to the autograder.** Your last submission (if you submit 3 or fewer times), or your third submission (if you submit more than 3 times) will determine your grade Submissions that error out will **not** count against this total.\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Exercises" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 1\n", + "\n", + "Data for these [exercises can be found here](https://github.com/nickeubank/MIDS_Data/tree/master/US_AmericanCommunitySurvey). \n", + "\n", + "Import `US_ACS_2017_10pct_sample.dta` into a pandas DataFrame (read it directly from a URL to help the autograder, please). \n", + "\n", + "This can be done with the command `pd.read_stata`, which will read in files created in the program Stata (and which uses the file suffix `.dta`). This is a format commonly used by social scientists." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "\n", + "pd.set_option(\"mode.copy_on_write\", True)\n", + "\n", + "\n", + "# Download the data\n", + "acs = pd.read_stata(\n", + " \"https://github.com/nickeubank/MIDS_Data/raw/\"\n", + " \"master/US_AmericanCommunitySurvey/US_ACS_2017_10pct_sample.dta\"\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Getting to Know Your Data\n", + "\n", + "When you get a new dataset like this, it's good to start by trying to get a feel for its contents and organization. Toy datasets you sometimes get in classes are often very small, and easy to look at, but this is a pretty large dataset, so you can't just open it up and get a good sense of it. Here are some ways to get to know your data. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 2\n", + "\n", + "How many observations are in your data? Store the answer in your `results` dictionary with the key `\"ex2_num_obs\"`." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "There are 319,004 observations\n" + ] + } + ], + "source": [ + "results = dict()\n", + "results[\"ex2_num_obs\"] = len(acs)\n", + "print(f\"There are {results['ex2_num_obs']:,} observations\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 3\n", + "\n", + "How many variables are in your data? Store the answer in your `results` dictionary with the key `\"ex3_num_vars\"`." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "There are 104 variables\n" + ] + } + ], + "source": [ + "# Either:\n", + "results[\"ex3_num_vars\"] = len(acs.columns)\n", + "print(f\"There are {results['ex3_num_vars']} variables\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "104" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Or you can do:\n", + "\n", + "acs.shape[1]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 4\n", + "\n", + " Let's see what variables are in this dataset. First, try to see them all using the command:\n", + "\n", + "\n", + "```python\n", + "acs.columns\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['year', 'datanum', 'serial', 'cbserial', 'numprec', 'subsamp', 'hhwt',\n", + " 'hhtype', 'cluster', 'adjust',\n", + " ...\n", + " 'migcounty1', 'migmet131', 'vetdisab', 'diffrem', 'diffphys', 'diffmob',\n", + " 'diffcare', 'diffsens', 'diffeye', 'diffhear'],\n", + " dtype='object', length=104)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "acs.columns" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As you will see, `python` doesn't like to print out all the different variables when there are this many in a dataset. \n", + "\n", + "To get everything printed out, we can loop over all the columns and print them one at a time with the command:\n", + "\n", + "```\n", + "for c in acs.columns: print(c)\n", + "```\n", + "\n", + "It's definitely a bit of a hack, but honestly a pretty useful one!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 5\n", + "\n", + "That's a *lot* of variables, and definitely more than we need. In general, life is easier when working with these kinds of huge datasets if you can narrow down the number of variables a little. In this exercise, we will be looking at the relationship between education and wages, we need variables for: \n", + "\n", + "- Age\n", + "- Income\n", + "- Education\n", + "- Employment status (is the person actually working)\n", + "\n", + "These quantities of interest correspond to the following variables in our data: `age`, `inctot`, `educ`, and `empstat`. \n", + "\n", + "Subset your data to just those variables. " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "acs = acs[[\"age\", \"inctot\", \"educ\", \"empstat\"]]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 6 \n", + "\n", + "Now that we have a more manageable number of variables, it's often very useful to look at a handful of rows of your data. The easiest way to do this is probably the `.head()` method (which will show you the first five rows), or the `tail()` method, which will show you the last five rows. \n", + "\n", + "But to get a good sense of your data, it's often better to use the `sample()` command, which returns a random set of rows. As the first and last rows are sometimes not representative, a random set of rows can be very helpful. Try looking at a random sample of 20 rows (note: you don't have to run `.sample()` ten times to get ten rows. Look at the `.sample` help file if you're stuck. " + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ageinctoteducempstat
244652140000grade 12employed
374424960000grade 12employed
23918357200000grade 12employed
1593879999999nursery school to grade 4n/a
79033351306001 year of collegeemployed
260259310grade 11not in labor force
23367089999999grade 5, 6, 7, or 8n/a
179288320grade 11not in labor force
2175826229004 years of collegenot in labor force
3141888054600grade 12not in labor force
2293943655001 year of collegeemployed
1849412019000grade 12employed
1576863820001 year of collegenot in labor force
274142511000002 years of collegeemployed
7798059160000n/a or no schoolingemployed
3021608674500grade 12not in labor force
21783099999999nursery school to grade 4n/a
11101267218402 years of collegenot in labor force
10252490grade 9not in labor force
15127143230grade 10not in labor force
\n", + "
" + ], + "text/plain": [ + " age inctot educ empstat\n", + "24465 21 40000 grade 12 employed\n", + "37442 49 60000 grade 12 employed\n", + "239183 57 200000 grade 12 employed\n", + "15938 7 9999999 nursery school to grade 4 n/a\n", + "79033 35 130600 1 year of college employed\n", + "260259 31 0 grade 11 not in labor force\n", + "233670 8 9999999 grade 5, 6, 7, or 8 n/a\n", + "179288 32 0 grade 11 not in labor force\n", + "217582 62 2900 4 years of college not in labor force\n", + "314188 80 54600 grade 12 not in labor force\n", + "229394 36 5500 1 year of college employed\n", + "184941 20 19000 grade 12 employed\n", + "157686 38 2000 1 year of college not in labor force\n", + "274142 51 100000 2 years of college employed\n", + "77980 59 160000 n/a or no schooling employed\n", + "302160 86 74500 grade 12 not in labor force\n", + "217830 9 9999999 nursery school to grade 4 n/a\n", + "111012 67 21840 2 years of college not in labor force\n", + "10252 49 0 grade 9 not in labor force\n", + "151271 43 230 grade 10 not in labor force" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "acs.sample(20)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 7\n", + "\n", + "Do you see any immediate problems? What issues do you see? (Please do answer in markdown)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> Uh, yup! People have incomes of 9 million?! And those people tend to be children?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 8 \n", + "\n", + "One problem is that many people seem to have incomes of $9,999,999. Moreover, people with those incomes seem to be very young children. \n", + "\n", + "What you are seeing is one method (a relatively old one) for representing missing data. In this case, the value 9999999 is being used as a **sentinel value** — a way to denote missing data that was used back in the day when there was no way to add a special data type for mossing data. In this case, it identifies observations where the person is too young to work, so their income value is missing. \n", + "\n", + "So let's begin by dropping anyone who has `inctot` equal to 9999999.\n", + "\n", + "After dropping, how many observations do you have? Save your answer in your `results` dictionary under the key `\"ex8_updated_num_obs\"`" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "After dropping there are 265,103 observations\n" + ] + } + ], + "source": [ + "acs = acs[acs[\"inctot\"] != 9_999_999]\n", + "results[\"ex8_updated_num_obs\"] = len(acs)\n", + "\n", + "print(f\"After dropping there are {results['ex8_updated_num_obs']:,} observations\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 9\n", + "\n", + "OK, the other potential problem is that our data includes lots of people who are unemployed and people who are not in the labor force (this means they not only don't have a job, but also aren't looking for a job). For this analysis, we want to focus on the wages of people who are currently employed. So subset the dataset for the people for whom `empstat` is equal to \"employed\". \n", + "\n", + "Note that our decision to only look at people who are employed impacts how we should interpret the relationship we estimate between education and income. Because we are only looking at employed people, we will be estimating the relationship between education and income *for people who are employed*. That means that if education affects the *likelihood* someone is employed, we won't capture that in this analysis.\n", + "\n", + "(You might also want to run `.sample()` after this just to make sure you were successful in your subsetting).\n", + "\n", + "After this subsetting, how many observations do you have? Save your answer in your `results` dictionary under the key `\"ex9_updated_num_obs\"`" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ageinctoteducempstat
28241844700001 year of collegeemployed
30105354750004 years of collegeemployed
15881845209004 years of collegeemployed
7073411300004 years of collegeemployed
1582154713100grade 12employed
4510942620004 years of collegeemployed
769286739600nursery school to grade 4employed
283121665000grade 12employed
29325556320001 year of collegeemployed
30111051753005+ years of collegeemployed
\n", + "
" + ], + "text/plain": [ + " age inctot educ empstat\n", + "282418 44 70000 1 year of college employed\n", + "301053 54 75000 4 years of college employed\n", + "158818 45 20900 4 years of college employed\n", + "7073 41 130000 4 years of college employed\n", + "158215 47 13100 grade 12 employed\n", + "45109 42 62000 4 years of college employed\n", + "76928 67 39600 nursery school to grade 4 employed\n", + "283121 66 5000 grade 12 employed\n", + "293255 56 32000 1 year of college employed\n", + "301110 51 75300 5+ years of college employed" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "acs = acs[acs.empstat == \"employed\"]\n", + "acs.sample(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "After subsetting for employed people there are 148,758 observations\n" + ] + } + ], + "source": [ + "results[\"ex9_updated_num_obs\"] = len(acs)\n", + "\n", + "print(\n", + " \"After subsetting for employed people \"\n", + " f\"there are {results['ex9_updated_num_obs']:,} observations\"\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 10\n", + "\n", + "Now let's turn to education. The `educ` variable seems to have a lot of discrete values. Let's see what values exist, and their distribution, using the `value_counts()` method. This is an *extremely* useful tool you'll use a lot! Try the following code (modified for the name of your dataset, of course):\n", + "\n", + "```python\n", + "acs[\"educ\"].value_counts()\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "educ\n", + "grade 12 47815\n", + "4 years of college 33174\n", + "1 year of college 22899\n", + "5+ years of college 20995\n", + "2 years of college 14077\n", + "grade 11 2747\n", + "grade 5, 6, 7, or 8 2092\n", + "grade 10 1910\n", + "n/a or no schooling 1291\n", + "grade 9 1290\n", + "nursery school to grade 4 468\n", + "Name: count, dtype: int64" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "acs[\"educ\"].value_counts()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 11\n", + "\n", + "There are a lot of values in here, so let's just check a couple. What is the average value of `inctot` for people whose highest grade level is \"grade 12\" (in the US, that is someone who has graduated high school)?\n", + "\n", + "Save your answer in your `results` dictionary under the key `\"ex11_grade12_income\"`." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The average income for an employed person \n", + "whose highest completed grade is Grade 12 $38,957.76.\n" + ] + } + ], + "source": [ + "results[\"ex11_grade12_income\"] = acs.loc[acs.educ == \"grade 12\", \"inctot\"].mean()\n", + "\n", + "print(\n", + " f\"The average income for an employed person \\n\"\n", + " f\"whose highest completed grade is Grade 12 ${results['ex11_grade12_income']:,.2f}.\"\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 12\n", + "\n", + "What is the average income of someone who has completed an undergraduate degree but not done any postgraduate education (\"4 years of college\")? \n", + "\n", + "Save your answer in your `results` dictionary under the key `\"ex12_college_income\"`.\n", + "\n", + "In percentage terms, how much does an employed college graduate earn as compared to someone who is only a high school graduate? Use the reference category that gives an answer above 100.\n", + "\n", + "Store your answer in `\"ex12_college_income_pct\"`. Put your answer in percentage terms (so 100 implies they earn the same amount).\n", + "\n", + "*Make sure to interpret your result in words when you print it out!*" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The average income for an employed person \n", + "with an undergraduate degree but no \n", + "postgraduate education is $75,485.05.\n" + ] + } + ], + "source": [ + "results[\"ex12_college_income\"] = acs.loc[\n", + " acs.educ == \"4 years of college\", \"inctot\"\n", + "].mean()\n", + "\n", + "print(\n", + " f\"The average income for an employed person \\n\"\n", + " f\"with an undergraduate degree but no \\n\"\n", + " f\"postgraduate education is ${results['ex12_college_income']:,.2f}.\"\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The avg employed college graduate earns 193.8%\n", + "the salaray of the average employed high school graduate.\n" + ] + } + ], + "source": [ + "results[\"ex12_college_income_pct\"] = 100 * (\n", + " results[\"ex12_college_income\"] / results[\"ex11_grade12_income\"]\n", + ")\n", + "\n", + "print(\n", + " f\"The avg employed college graduate earns {results['ex12_college_income_pct']:.1f}%\\n\"\n", + " \"the salary of the average employed high school graduate.\"\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The avg employed high school graduate earns 51.6%\n", + "what the average college graduate earns.\n" + ] + } + ], + "source": [ + "# The flip would be\n", + "\n", + "flipped = 100 * (results[\"ex11_grade12_income\"]) / results[\"ex12_college_income\"]\n", + "\n", + "print(\n", + " f\"The avg employed high school graduate earns {flipped:.1f}%\\n\"\n", + " \"what the average college graduate earns.\"\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "\n", + "### Exercise 13\n", + "What does that suggest is the value of getting a college degree after graduating high school?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> Getting a college education yields a *huge* wage premium." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 14\n", + "\n", + "What is the average income for someone who has not finished high school? What does that suggest is the value of a high school diploma? (Treat `n/a or no schooling` as having no formal schooling, not as missing).\n", + "\n", + "**Hint:** You may find the [.isin()](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.isin.html) method to be really helpful here.\n", + "\n", + "Save your answer in your `results` dictionary under the key `\"ex14_high_school_dropout\"`." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['grade 12',\n", + " '4 years of college',\n", + " '1 year of college',\n", + " '5+ years of college',\n", + " '2 years of college',\n", + " 'grade 11',\n", + " 'grade 5, 6, 7, or 8',\n", + " 'grade 10',\n", + " 'n/a or no schooling',\n", + " 'grade 9',\n", + " 'nursery school to grade 4']" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "education_levels = list(acs[\"educ\"].value_counts().index)\n", + "education_levels" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['grade 11',\n", + " 'grade 5, 6, 7, or 8',\n", + " 'grade 10',\n", + " 'n/a or no schooling',\n", + " 'grade 9',\n", + " 'nursery school to grade 4']" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "education_levels[5:]" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The average income for an employed person \n", + "without a high school diploma is $26,226.46.\n" + ] + } + ], + "source": [ + "results[\"ex14_high_school_dropout\"] = acs.loc[\n", + " acs.educ.isin(education_levels[5:]), \"inctot\"\n", + "].mean()\n", + "\n", + "\n", + "print(\n", + " f\"The average income for an employed person \\n\"\n", + " f\"without a high school diploma is \"\n", + " f\"${results['ex14_high_school_dropout']:,.2f}.\"\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 15 \n", + "\n", + "Complete the following table (storing values under the provided keys where listed):\n", + "\n", + "- Average income for someone who only completed 9th grade (`ex15_grade_9`): _________\n", + "- Average income for someone who only completed 10th grade (`ex15_grade_10`): _________\n", + "- Average income for someone who only completed 11th grade (`ex15_grade_11`): _________\n", + "- Average income for someone who finished high school (12th grade) but never started college (`ex15_grade_12`): _________\n", + "- Average income for someone who completed 4 year of college (in the US, this corresponds to getting an undergraduate degree), but has no post-graduate education (no more than 4 years, `ex15_4_years_of_college`): _________\n", + "- Average income for someone who has some graduate education (more than 4 years, `ex15_graduate`): _________" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "those who have finished grade 9 earn 27,171.91\n", + "those who have finished grade 10 earn 23,018.80\n", + "those who have finished grade 11 earn 21,541.69\n", + "those who have finished grade 12 earn 38,957.76\n", + "those who have finished 4 years of college earn 75,485.05\n", + "those who have finished 5+ years of college earn 110,013.22\n" + ] + } + ], + "source": [ + "import re\n", + "\n", + "for level in [\"grade 9\", \"grade 10\", \"grade 11\", \"grade 12\", \"4 years of college\"]:\n", + " avg_income = acs.loc[acs[\"educ\"] == level, \"inctot\"].mean()\n", + " print(f\"those who have finished {level} earn {avg_income:,.2f}\")\n", + " results[f\"ex15_{re.sub(' ', '_', level)}\"] = avg_income\n", + "\n", + "avg_income = acs.loc[acs[\"educ\"] == \"5+ years of college\", \"inctot\"].mean()\n", + "print(f\"those who have finished 5+ years of college earn {avg_income:,.2f}\")\n", + "results[\"ex15_graduate\"] = avg_income" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Exercise 16 \n", + "\n", + "Why do you think there is no benefit from moving from grade 9 to grade 10, or grade 10 to grade 11, but there is a huge benefit to moving from grade 11 to graduating high school (grade 12)?\n", + "\n", + "(Think carefully before reading ahead!)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> I mean... the answer is below. " + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "assert set(results.keys()) == {\n", + " \"ex2_num_obs\",\n", + " \"ex3_num_vars\",\n", + " \"ex8_updated_num_obs\",\n", + " \"ex9_updated_num_obs\",\n", + " \"ex11_grade12_income\",\n", + " \"ex12_college_income\",\n", + " \"ex12_college_income_pct\",\n", + " \"ex14_high_school_dropout\",\n", + " \"ex15_grade_9\",\n", + " \"ex15_grade_10\",\n", + " \"ex15_grade_11\",\n", + " \"ex15_grade_12\",\n", + " \"ex15_4_years_of_college\",\n", + " \"ex15_graduate\",\n", + "}" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Take-aways\n", + "\n", + "Congratulations! You just discovered \"the sheepskin effect!\": people with degrees tend to earn substantially more than people who have *almost* as much education, but don't have an actual degree. \n", + "\n", + "In economics, this is viewed as evidence that the reason employers pay people with high school degrees more than those without degree is *not* that they think those who graduated high school have learned specific, useful skills. If that were the case, we would expect employee earnings to rise with every year of high school, since in each year of high school we learn more. \n", + "\n", + "Instead, this suggests employees pay high school graduates more because they think *the kind of people* who can finish high school are the *kind of people* who are likely to succeed at their jobs. Finishing high school, in other words, isn't about accumulating specific knowledge; it's about showing that you *are the kind of person* who can rise to the challenge of finishing high school, also suggesting you are also the kind of person who can succeed as an employee. \n", + "\n", + "(Obviously, this does not tell us whether that is an *accurate* inference, just that that seems to be how employeers think.) \n", + "\n", + "In other words, in the eyes of employers, a high school degree is a *signal* about the kind of person you are, not certification that you've learned a specific set of skills (an idea that earned [Michael Spence](https://en.wikipedia.org/wiki/Michael_Spence) a Nobel Prize in Economics). " + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.10.2 ('ds')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.4" + }, + "vscode": { + "interpreter": { + "hash": "b9e56a7b23b1fac2eea1a993b805ed5c611aea1439c1f46315b23590ab6d3ba0" + } + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/docs/html/_sources/solutions.ipynb.txt b/docs/html/_sources/solutions.ipynb.txt index 60068ff8..a0a62d2d 100644 --- a/docs/html/_sources/solutions.ipynb.txt +++ b/docs/html/_sources/solutions.ipynb.txt @@ -13,7 +13,7 @@ "source": [ "- [Numpy Vector Solutions](exercises/Solutions_numpy_vectors.ipynb)\n", "- [Pandas Series](exercises/Solutions_series.ipynb)\n", - "- [Pandas DataFrames](exercises/Solutions_dataframe.ipynb)\n" + "- [Pandas DataFrames](exercises/Solutions_dataframes.ipynb)\n" ] } ], diff --git a/docs/html/exercises/Solutions_dataframes.html b/docs/html/exercises/Solutions_dataframes.html new file mode 100644 index 00000000..137603f2 --- /dev/null +++ b/docs/html/exercises/Solutions_dataframes.html @@ -0,0 +1,226 @@ + Estimating Labor Market Returns to Education — Practical Data Science Skip to content

Estimating Labor Market Returns to Education

In this exercise, we’re going to use data from the American Communities Survey (ACS) to study the relationship betwen educational attainment and wages. The ACS is a survey conducted by the United States Census Bureau (though it is not “The Census,” which is a counting of every person in the United States that takes place every 10 years) to measure numerous features of the US population. The data we will be working with includes about 100 variables from the 2017 ACS survey, and is a 10% sample of the ACS (which itself is a 1% sample of the US population, so we’re working with about a 0.1% sample of the United States).

This data comes from IPUMS, which provides a very useful tool for getting subsets of major survey datasets, not just from the US, but from government statistical agencies the world over.

This is real data, meaning that you are being provided the data as it is provided by IPUMS. Documentation for all variables used in this data can be found here (you can either search by variable name to figure out the meaning of a variable in this data, or search for something you want to see if a variable with the right name is in this data).

Within this data is information on both the educational background and current earnings of a representative sample of Americans. We will now use this data to estimate the labor-market returns to graduating high school and college, and to learn something about the meaning of an educational degree.

Gradescope Autograding

Please follow all standard guidance for submitting this assignment to the Gradescope autograder, including storing your solutions in a dictionary called results and ensuring your notebook runs from the start to completion without any errors.

For this assignment, please name your file exercise_dataframes.ipynb before uploading.

You can check that you have answers for all questions in your results dictionary with this code:

assert set(results.keys()) == {
+    "ex2_num_obs",
+    "ex3_num_vars",
+    "ex8_updated_num_obs",
+    "ex9_updated_num_obs",
+    "ex11_grade12_income",
+    "ex12_college_income",
+    "ex12_college_income_pct",
+    "ex14_high_school_dropout",
+    "ex15_grade_9",
+    "ex15_grade_10",
+    "ex15_grade_11",
+    "ex15_grade_12",
+    "ex15_4_years_of_college",
+    "ex15_graduate",
+}
+

Submission Limits

Please remember that you are only allowed three submissions to the autograder. Your last submission (if you submit 3 or fewer times), or your third submission (if you submit more than 3 times) will determine your grade Submissions that error out will not count against this total.

Exercises

Exercise 1

Data for these exercises can be found here.

Import US_ACS_2017_10pct_sample.dta into a pandas DataFrame (read it directly from a URL to help the autograder, please).

This can be done with the command pd.read_stata, which will read in files created in the program Stata (and which uses the file suffix .dta). This is a format commonly used by social scientists.

[1]:
+
import pandas as pd
+import numpy as np
+
+pd.set_option("mode.copy_on_write", True)
+
+
+# Download the data
+acs = pd.read_stata(
+    "https://github.com/nickeubank/MIDS_Data/raw/"
+    "master/US_AmericanCommunitySurvey/US_ACS_2017_10pct_sample.dta"
+)
+

Getting to Know Your Data

When you get a new dataset like this, it’s good to start by trying to get a feel for its contents and organization. Toy datasets you sometimes get in classes are often very small, and easy to look at, but this is a pretty large dataset, so you can’t just open it up and get a good sense of it. Here are some ways to get to know your data.

Exercise 2

How many observations are in your data? Store the answer in your results dictionary with the key "ex2_num_obs".

[2]:
+
results = dict()
+results["ex2_num_obs"] = len(acs)
+print(f"There are {results['ex2_num_obs']:,} observations")
+
+There are 319,004 observations
+

Exercise 3

How many variables are in your data? Store the answer in your results dictionary with the key "ex3_num_vars".

[3]:
+
# Either:
+results["ex3_num_vars"] = len(acs.columns)
+print(f"There are {results['ex3_num_vars']} variables")
+
+There are 104 variables
+
[4]:
+
# Or you can do:
+
+acs.shape[1]
+
[4]:
+
+104
+

Exercise 4

Let’s see what variables are in this dataset. First, try to see them all using the command:

acs.columns
+
[5]:
+
acs.columns
+
[5]:
+
+Index(['year', 'datanum', 'serial', 'cbserial', 'numprec', 'subsamp', 'hhwt',
+       'hhtype', 'cluster', 'adjust',
+       ...
+       'migcounty1', 'migmet131', 'vetdisab', 'diffrem', 'diffphys', 'diffmob',
+       'diffcare', 'diffsens', 'diffeye', 'diffhear'],
+      dtype='object', length=104)
+

As you will see, python doesn’t like to print out all the different variables when there are this many in a dataset.

To get everything printed out, we can loop over all the columns and print them one at a time with the command:

for c in acs.columns: print(c)
+

It’s definitely a bit of a hack, but honestly a pretty useful one!

Exercise 5

That’s a lot of variables, and definitely more than we need. In general, life is easier when working with these kinds of huge datasets if you can narrow down the number of variables a little. In this exercise, we will be looking at the relationship between education and wages, we need variables for:

  • Age

  • Income

  • Education

  • Employment status (is the person actually working)

These quantities of interest correspond to the following variables in our data: age, inctot, educ, and empstat.

Subset your data to just those variables.

[6]:
+
acs = acs[["age", "inctot", "educ", "empstat"]]
+

Exercise 6

Now that we have a more manageable number of variables, it’s often very useful to look at a handful of rows of your data. The easiest way to do this is probably the .head() method (which will show you the first five rows), or the tail() method, which will show you the last five rows.

But to get a good sense of your data, it’s often better to use the sample() command, which returns a random set of rows. As the first and last rows are sometimes not representative, a random set of rows can be very helpful. Try looking at a random sample of 20 rows (note: you don’t have to run .sample() ten times to get ten rows. Look at the .sample help file if you’re stuck.

[7]:
+
acs.sample(20)
+
[7]:
+
age inctot educ empstat
24465 21 40000 grade 12 employed
37442 49 60000 grade 12 employed
239183 57 200000 grade 12 employed
15938 7 9999999 nursery school to grade 4 n/a
79033 35 130600 1 year of college employed
260259 31 0 grade 11 not in labor force
233670 8 9999999 grade 5, 6, 7, or 8 n/a
179288 32 0 grade 11 not in labor force
217582 62 2900 4 years of college not in labor force
314188 80 54600 grade 12 not in labor force
229394 36 5500 1 year of college employed
184941 20 19000 grade 12 employed
157686 38 2000 1 year of college not in labor force
274142 51 100000 2 years of college employed
77980 59 160000 n/a or no schooling employed
302160 86 74500 grade 12 not in labor force
217830 9 9999999 nursery school to grade 4 n/a
111012 67 21840 2 years of college not in labor force
10252 49 0 grade 9 not in labor force
151271 43 230 grade 10 not in labor force

Exercise 7

Do you see any immediate problems? What issues do you see? (Please do answer in markdown)

Uh, yup! People have incomes of 9 million?! And those people tend to be children?

Exercise 8

One problem is that many people seem to have incomes of $9,999,999. Moreover, people with those incomes seem to be very young children.

What you are seeing is one method (a relatively old one) for representing missing data. In this case, the value 9999999 is being used as a sentinel value — a way to denote missing data that was used back in the day when there was no way to add a special data type for mossing data. In this case, it identifies observations where the person is too young to work, so their income value is missing.

So let’s begin by dropping anyone who has inctot equal to 9999999.

After dropping, how many observations do you have? Save your answer in your results dictionary under the key "ex8_updated_num_obs"

[8]:
+
acs = acs[acs["inctot"] != 9_999_999]
+results["ex8_updated_num_obs"] = len(acs)
+
+print(f"After dropping there are {results['ex8_updated_num_obs']:,} observations")
+
+After dropping there are 265,103 observations
+

Exercise 9

OK, the other potential problem is that our data includes lots of people who are unemployed and people who are not in the labor force (this means they not only don’t have a job, but also aren’t looking for a job). For this analysis, we want to focus on the wages of people who are currently employed. So subset the dataset for the people for whom empstat is equal to “employed”.

Note that our decision to only look at people who are employed impacts how we should interpret the relationship we estimate between education and income. Because we are only looking at employed people, we will be estimating the relationship between education and income for people who are employed. That means that if education affects the likelihood someone is employed, we won’t capture that in this analysis.

(You might also want to run .sample() after this just to make sure you were successful in your subsetting).

After this subsetting, how many observations do you have? Save your answer in your results dictionary under the key "ex9_updated_num_obs"

[9]:
+
acs = acs[acs.empstat == "employed"]
+acs.sample(10)
+
[9]:
+
age inctot educ empstat
282418 44 70000 1 year of college employed
301053 54 75000 4 years of college employed
158818 45 20900 4 years of college employed
7073 41 130000 4 years of college employed
158215 47 13100 grade 12 employed
45109 42 62000 4 years of college employed
76928 67 39600 nursery school to grade 4 employed
283121 66 5000 grade 12 employed
293255 56 32000 1 year of college employed
301110 51 75300 5+ years of college employed
[10]:
+
results["ex9_updated_num_obs"] = len(acs)
+
+print(
+    "After subsetting for employed people "
+    f"there are {results['ex9_updated_num_obs']:,} observations"
+)
+
+After subsetting for employed people there are 148,758 observations
+

Exercise 10

Now let’s turn to education. The educ variable seems to have a lot of discrete values. Let’s see what values exist, and their distribution, using the value_counts() method. This is an extremely useful tool you’ll use a lot! Try the following code (modified for the name of your dataset, of course):

acs["educ"].value_counts()
+
[11]:
+
acs["educ"].value_counts()
+
[11]:
+
+educ
+grade 12                     47815
+4 years of college           33174
+1 year of college            22899
+5+ years of college          20995
+2 years of college           14077
+grade 11                      2747
+grade 5, 6, 7, or 8           2092
+grade 10                      1910
+n/a or no schooling           1291
+grade 9                       1290
+nursery school to grade 4      468
+Name: count, dtype: int64
+

Exercise 11

There are a lot of values in here, so let’s just check a couple. What is the average value of inctot for people whose highest grade level is “grade 12” (in the US, that is someone who has graduated high school)?

Save your answer in your results dictionary under the key "ex11_grade12_income".

[12]:
+
results["ex11_grade12_income"] = acs.loc[acs.educ == "grade 12", "inctot"].mean()
+
+print(
+    f"The average income for an employed person \n"
+    f"whose highest completed grade is Grade 12 ${results['ex11_grade12_income']:,.2f}."
+)
+
+The average income for an employed person
+whose highest completed grade is Grade 12 $38,957.76.
+

Exercise 12

What is the average income of someone who has completed an undergraduate degree but not done any postgraduate education (“4 years of college”)?

Save your answer in your results dictionary under the key "ex12_college_income".

In percentage terms, how much does an employed college graduate earn as compared to someone who is only a high school graduate? Use the reference category that gives an answer above 100.

Store your answer in "ex12_college_income_pct". Put your answer in percentage terms (so 100 implies they earn the same amount).

Make sure to interpret your result in words when you print it out!

[13]:
+
results["ex12_college_income"] = acs.loc[
+    acs.educ == "4 years of college", "inctot"
+].mean()
+
+print(
+    f"The average income for an employed person \n"
+    f"with an undergraduate degree but no  \n"
+    f"postgraduate education is ${results['ex12_college_income']:,.2f}."
+)
+
+The average income for an employed person
+with an undergraduate degree but no
+postgraduate education is $75,485.05.
+
[14]:
+
results["ex12_college_income_pct"] = 100 * (
+    results["ex12_college_income"] / results["ex11_grade12_income"]
+)
+
+print(
+    f"The avg employed college graduate earns {results['ex12_college_income_pct']:.1f}%\n"
+    "the salary of the average employed high school graduate."
+)
+
+The avg employed college graduate earns 193.8%
+the salaray of the average employed high school graduate.
+
[15]:
+
# The flip would be
+
+flipped = 100 * (results["ex11_grade12_income"]) / results["ex12_college_income"]
+
+print(
+    f"The avg employed high school graduate earns {flipped:.1f}%\n"
+    "what the average college graduate earns."
+)
+
+The avg employed high school graduate earns 51.6%
+what the average college graduate earns.
+

Exercise 13

What does that suggest is the value of getting a college degree after graduating high school?

Getting a college education yields a huge wage premium.

Exercise 14

What is the average income for someone who has not finished high school? What does that suggest is the value of a high school diploma? (Treat n/a or no schooling as having no formal schooling, not as missing).

Hint: You may find the .isin() method to be really helpful here.

Save your answer in your results dictionary under the key "ex14_high_school_dropout".

[16]:
+
education_levels = list(acs["educ"].value_counts().index)
+education_levels
+
[16]:
+
+['grade 12',
+ '4 years of college',
+ '1 year of college',
+ '5+ years of college',
+ '2 years of college',
+ 'grade 11',
+ 'grade 5, 6, 7, or 8',
+ 'grade 10',
+ 'n/a or no schooling',
+ 'grade 9',
+ 'nursery school to grade 4']
+
[17]:
+
education_levels[5:]
+
[17]:
+
+['grade 11',
+ 'grade 5, 6, 7, or 8',
+ 'grade 10',
+ 'n/a or no schooling',
+ 'grade 9',
+ 'nursery school to grade 4']
+
[18]:
+
results["ex14_high_school_dropout"] = acs.loc[
+    acs.educ.isin(education_levels[5:]), "inctot"
+].mean()
+
+
+print(
+    f"The average income for an employed person \n"
+    f"without a high school diploma is "
+    f"${results['ex14_high_school_dropout']:,.2f}."
+)
+
+The average income for an employed person
+without a high school diploma is $26,226.46.
+

Exercise 15

Complete the following table (storing values under the provided keys where listed):

  • Average income for someone who only completed 9th grade (ex15_grade_9): _________

  • Average income for someone who only completed 10th grade (ex15_grade_10): _________

  • Average income for someone who only completed 11th grade (ex15_grade_11): _________

  • Average income for someone who finished high school (12th grade) but never started college (ex15_grade_12): _________

  • Average income for someone who completed 4 year of college (in the US, this corresponds to getting an undergraduate degree), but has no post-graduate education (no more than 4 years, ex15_4_years_of_college): _________

  • Average income for someone who has some graduate education (more than 4 years, ex15_graduate): _________

[19]:
+
import re
+
+for level in ["grade 9", "grade 10", "grade 11", "grade 12", "4 years of college"]:
+    avg_income = acs.loc[acs["educ"] == level, "inctot"].mean()
+    print(f"those who have finished {level} earn {avg_income:,.2f}")
+    results[f"ex15_{re.sub(' ', '_', level)}"] = avg_income
+
+avg_income = acs.loc[acs["educ"] == "5+ years of college", "inctot"].mean()
+print(f"those who have finished 5+ years of college earn {avg_income:,.2f}")
+results["ex15_graduate"] = avg_income
+
+those who have finished grade 9 earn 27,171.91
+those who have finished grade 10 earn 23,018.80
+those who have finished grade 11 earn 21,541.69
+those who have finished grade 12 earn 38,957.76
+those who have finished 4 years of college earn 75,485.05
+those who have finished 5+ years of college earn 110,013.22
+

Exercise 16

Why do you think there is no benefit from moving from grade 9 to grade 10, or grade 10 to grade 11, but there is a huge benefit to moving from grade 11 to graduating high school (grade 12)?

(Think carefully before reading ahead!)

I mean… the answer is below.

[20]:
+
assert set(results.keys()) == {
+    "ex2_num_obs",
+    "ex3_num_vars",
+    "ex8_updated_num_obs",
+    "ex9_updated_num_obs",
+    "ex11_grade12_income",
+    "ex12_college_income",
+    "ex12_college_income_pct",
+    "ex14_high_school_dropout",
+    "ex15_grade_9",
+    "ex15_grade_10",
+    "ex15_grade_11",
+    "ex15_grade_12",
+    "ex15_4_years_of_college",
+    "ex15_graduate",
+}
+

Take-aways

Congratulations! You just discovered “the sheepskin effect!”: people with degrees tend to earn substantially more than people who have almost as much education, but don’t have an actual degree.

In economics, this is viewed as evidence that the reason employers pay people with high school degrees more than those without degree is not that they think those who graduated high school have learned specific, useful skills. If that were the case, we would expect employee earnings to rise with every year of high school, since in each year of high school we learn more.

Instead, this suggests employees pay high school graduates more because they think the kind of people who can finish high school are the kind of people who are likely to succeed at their jobs. Finishing high school, in other words, isn’t about accumulating specific knowledge; it’s about showing that you are the kind of person who can rise to the challenge of finishing high school, also suggesting you are also the kind of person who can succeed as an employee.

(Obviously, this does not tell us whether that is an accurate inference, just that that seems to be how employeers think.)

In other words, in the eyes of employers, a high school degree is a signal about the kind of person you are, not certification that you’ve learned a specific set of skills (an idea that earned Michael Spence a Nobel Prize in Economics).

\ No newline at end of file diff --git a/docs/html/objects.inv b/docs/html/objects.inv index 49cdb692..08ca175d 100644 Binary files a/docs/html/objects.inv and b/docs/html/objects.inv differ diff --git a/docs/html/searchindex.js b/docs/html/searchindex.js index 110459fe..74097c5e 100644 --- a/docs/html/searchindex.js +++ b/docs/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:[".vscode/ltex.dictionary.en-US","Day_1_Plan","PhD_Advice","accessibility","autograder_guidelines","big_data_strategies","buying_datascience_computer","cheatsheets","chunking_snippets","class_schedule","cleaning_datatypes","cleaning_editing_globally","cleaning_editing_specific_locations","cleaning_identifying","cleaning_missing_data","data_structures","data_types","distributed_computing","distributed_ml","distributed_starting_dask_cluster","exercise_list","exercises/Discussion_vars_v_objects","exercises/Exercise_CommandLine_1_Basics","exercises/Exercise_CommandLine_2_Advanced","exercises/Exercise_bigdata","exercises/Exercise_cleaning","exercises/Exercise_cloud_dukesubscription","exercises/Exercise_codeyourownlinearregression","exercises/Exercise_dask","exercises/Exercise_dask_realdata","exercises/Exercise_dataframes","exercises/Exercise_debugger","exercises/Exercise_git","exercises/Exercise_git_2","exercises/Exercise_groupby","exercises/Exercise_indices","exercises/Exercise_indices_discussion","exercises/Exercise_jupyterlab","exercises/Exercise_jupytervscode","exercises/Exercise_merging","exercises/Exercise_missing","exercises/Exercise_numpy_vectors","exercises/Exercise_numpy_viewcopies","exercises/Exercise_plotting_part1","exercises/Exercise_plotting_part2","exercises/Exercise_plotting_part3","exercises/Exercise_reshaping","exercises/Exercise_scikit_learn","exercises/Exercise_series","exercises/Exercise_series1","exercises/Exercise_sklearn","exercises/Exercise_statsmodels","exercises/Exercise_variables_v_objects","exercises/Solutions_numpy_vectors","exercises/Solutions_series","exercises/code_drawing_template","first_class_questionnaire","git_and_github","index","languages","llms","more_vscode","not_a_mids_student","parallelism","parquet","patsy","performance_solutions","performance_understanding","plotting_with_pandas","pr_review","solutions","topic_list","vscode","vscode_outline","what_is_big_data"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":5,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,nbsphinx:4,sphinx:56},filenames:[".vscode/ltex.dictionary.en-US.txt","Day_1_Plan.ipynb","PhD_Advice.ipynb","accessibility.ipynb","autograder_guidelines.ipynb","big_data_strategies.ipynb","buying_datascience_computer.ipynb","cheatsheets.ipynb","chunking_snippets.ipynb","class_schedule.rst","cleaning_datatypes.ipynb","cleaning_editing_globally.ipynb","cleaning_editing_specific_locations.ipynb","cleaning_identifying.ipynb","cleaning_missing_data.ipynb","data_structures.ipynb","data_types.ipynb","distributed_computing.ipynb","distributed_ml.ipynb","distributed_starting_dask_cluster.ipynb","exercise_list.ipynb","exercises/Discussion_vars_v_objects.ipynb","exercises/Exercise_CommandLine_1_Basics.ipynb","exercises/Exercise_CommandLine_2_Advanced.ipynb","exercises/Exercise_bigdata.ipynb","exercises/Exercise_cleaning.ipynb","exercises/Exercise_cloud_dukesubscription.ipynb","exercises/Exercise_codeyourownlinearregression.ipynb","exercises/Exercise_dask.ipynb","exercises/Exercise_dask_realdata.ipynb","exercises/Exercise_dataframes.ipynb","exercises/Exercise_debugger.ipynb","exercises/Exercise_git.ipynb","exercises/Exercise_git_2.ipynb","exercises/Exercise_groupby.ipynb","exercises/Exercise_indices.ipynb","exercises/Exercise_indices_discussion.ipynb","exercises/Exercise_jupyterlab.ipynb","exercises/Exercise_jupytervscode.ipynb","exercises/Exercise_merging.ipynb","exercises/Exercise_missing.ipynb","exercises/Exercise_numpy_vectors.ipynb","exercises/Exercise_numpy_viewcopies.ipynb","exercises/Exercise_plotting_part1.ipynb","exercises/Exercise_plotting_part2.ipynb","exercises/Exercise_plotting_part3.ipynb","exercises/Exercise_reshaping.ipynb","exercises/Exercise_scikit_learn.ipynb","exercises/Exercise_series.ipynb","exercises/Exercise_series1.ipynb","exercises/Exercise_sklearn.ipynb","exercises/Exercise_statsmodels.ipynb","exercises/Exercise_variables_v_objects.ipynb","exercises/Solutions_numpy_vectors.ipynb","exercises/Solutions_series.ipynb","exercises/code_drawing_template.ipynb","first_class_questionnaire.ipynb","git_and_github.ipynb","index.rst","languages.ipynb","llms.ipynb","more_vscode.ipynb","not_a_mids_student.ipynb","parallelism.ipynb","parquet.ipynb","patsy.ipynb","performance_solutions.ipynb","performance_understanding.ipynb","plotting_with_pandas.ipynb","pr_review.ipynb","solutions.ipynb","topic_list.rst","vscode.ipynb","vscode_outline.md","what_is_big_data.ipynb"],objects:{},objnames:{},objtypes:{},terms:{"0":[5,8,10,11,12,13,14,16,17,19,21,22,24,25,28,30,34,35,36,39,40,42,43,44,46,47,48,49,50,51,54,59,63,64,65,66,67],"00":[6,17,19,28,47,50,53],"000":[13,19,24,29,32,33,35,39,40,41,44,48,49,51,53,54,63,64,65,66,67,74],"00000":[],"000000":54,"0000000000000000000000000000000000000000000000000000000000000001":16,"00000000e":47,"000000e":13,"00000e":53,"00001":[],"0001":33,"00018458037097611614":[],"0002":[],"00021":[],"000247":[],"000247393788613558":[],"00026633":[],"00028":[],"00028268480439183743":[],"0003796100616455078":[],"00043197415958967417":[],"000460":[],"000621":[],"000632":[],"000644":[],"000652":[],"000831":[],"000843":[],"000x":[],"001017":[],"00107023":[],"0011111111110000000000000000000000000000000000000000000000000000":16,"001113":[],"001389":[],"001448":[],"00155052":[],"001735":[],"001930":[],"002":66,"002037":[],"002144":[],"002180":[],"0022":[],"00221":[],"0022133472788366236":[],"002311":[],"002373":[],"002492":[],"002501":[],"002536":[],"002676":[],"002800":[],"003":66,"003191":[],"003263":[],"003439":[],"003486":[],"003498":[],"003848":[],"003883":[],"003934":[],"003944":[],"004156":[],"004166":[],"004251":[],"004355":[],"004525":[],"004669":[],"004826":[],"004866":[],"005":66,"005061":[],"005139":[],"005493":[],"005753":[],"00584856772745":63,"006":[],"00663479045383":63,"006938":[],"007":66,"00715e":[],"00745891":[],"008":65,"008130":[],"008613":[],"009":66,"009000":[],"0096841595076":63,"00_source_data":[],"01":[19,28,47,53],"01100001":22,"011029":[],"011492":[],"012247":54,"013":[],"015":[],"015489":54,"015489468":[48,49,54],"017":65,"01710e":53,"0174532925199433":[],"018":[],"01948361e":47,"02":[28,53,65],"020":[],"024222":13,"024882":[],"025":65,"026379":[],"027047":[],"02800e":[],"03":[13,28,47,53],"0313":65,"031683":[],"032":[],"03444":[],"03503371":[],"037":[],"03795967":[],"04":[13,28,53,65],"040":65,"040e":[],"04114893":[],"04192648":[],"04399308":[],"04466095":[],"044782":[],"0488846":[],"04913794186222824":[],"049201":[],"04937853468383546":13,"049478":[],"04th":[],"05":[13,28,44,53,65],"050000e":13,"05000e":[],"051133":[],"051795":[],"05293301983":[],"05533653":[],"056790":[],"056801":[],"056940":[],"058020":[],"05th":[],"06":[13,28,65],"06023399ad03ddb0261ddd8d1b79d5e3":17,"06189721":[],"064736":[],"06478":[],"06505":[],"06520e":[],"06737203":[],"07":28,"071":65,"071795":[],"072917":[],"074627":[],"07465525":[],"076631":[],"076923":[],"08":[28,65],"08009098":[],"08129883":[],"08149e":[],"08333333":[],"08783":[],"088":[],"0881394":[],"09":[28,67],"09064083":[],"09142589":[],"091944":[],"0919444129480198":[],"091954":[],"095":[],"095217":54,"096499":[],"09759":[],"09927974":[],"099989":[],"0_x":[],"0_y":[],"0f":[],"0s":22,"0x11341fe20":[],"0x11351e2b0":[],"0x11358f070":[],"0x1135ec6d0":[],"0x137d27df0":[],"0x137ee0af0":[],"0x1416f4850":[],"0x1417686d0":[],"0x14181de10":[],"0x14186f0a0":[],"0x1418d6ce0":[],"0x14198b670":[],"1":[4,6,8,9,10,11,12,13,14,16,17,19,21,24,26,27,28,29,33,36,46,47,50,51,57,59,63,64,65,66,71,74],"10":[9,10,11,12,13,14,17,19,24,26,28,29,32,33,35,36,46,47,48,49,50,51,54,63,64,66,67],"100":[5,8,24,27,28,29,30,33,34,39,40,41,48,49,53,54,63,66,67,74],"1000":[8,26,67],"10000":64,"100000":64,"1000000":[35,63,66,67],"10000000":[35,66],"1000000000":66,"10000e":[],"1002000":[],"10038e07":[],"1004":[],"10041":[48,49,54],"1005":[],"1006":[],"100686":[],"1007":[],"100710":[],"1008":[],"100928":[],"100_000":17,"100_000_000":[],"100_000_001":[],"100gb":[5,17],"100k":[],"100mb":33,"100x":66,"101":[],"10100":[],"1010038":[],"10109":[48,49,54],"101115":42,"10120":[],"1014":[],"10151827":[],"102":63,"10201":[],"102050":[],"1021":[],"102245":[],"10232":64,"102366":[],"10248069":[],"10252":[],"10267083":[],"10296":[10,11,12,14],"1029635613na855161397271":10,"103":[],"10300":[],"10328":[],"103399":42,"1035124":[],"1037":[],"1038":66,"10385":[],"1039":[],"10398":[],"104":[],"1040":[],"1041":[],"104450":[],"104676":[13,14],"105":[],"105000":[],"1055431317":[],"105772":[],"10582":[],"105_000":[],"105_250":[],"106":[],"10603":[],"1062":[],"1064":[],"10649":[],"10680":54,"107":[],"107007":42,"1075588":[],"1077231":[],"10784":[],"108":[],"1080":66,"108000":[],"10808":[],"10823224":[],"108262":42,"1084":[],"10850":[],"108727":[],"10883":[],"1089":[],"109":[17,65],"109046":[],"109413":42,"10962":[],"10966342":[],"10_000":[],"10_code":[],"10_import_data":[],"10_intro_to_panda":[],"10_pandas_seri":[],"10am":28,"10gb":[5,33],"10k":[],"10th":30,"10x":[8,63,66],"11":[4,9,10,12,13,14,19,28,31,32,33,47,50,51,54,65,66,67,74],"110":17,"110000":65,"11012":[],"11037":[],"11044314":[],"1106":[],"110795":42,"110_000":65,"1111":[],"111111111":34,"11138234":[],"11147407":[],"11158923":[],"1116":[],"1116052":[],"111923":53,"112":17,"112262":42,"1123678":[],"11241":[],"11283e":[],"1129":[],"113":[],"1130":[],"11315":[],"113217":53,"11323":[],"114":66,"1142890":[],"11471":[],"11496147":[],"115":[],"1153":[],"11537966":[],"1156":[],"115641":42,"1156516":[],"116":17,"116017":[],"1161000":[],"11619":[],"11637":[],"1164":[],"11643":[],"11670":[],"11676":[],"116965":[],"117":[17,65],"1176":[],"1176285234":[],"1177":[],"117831":[],"1179":[],"117968":42,"118":[17,19],"1180":[],"1181":[],"1183":[],"11835":42,"11837":[],"11863":[],"1187":[],"119":[],"11902":[],"11908":[],"1195":[],"1196980":53,"1198":[],"11996":[],"11ed":17,"11th":30,"12":[9,10,11,12,13,14,17,24,32,33,50,51,54,66],"120":[],"12000":[],"120000":[],"1203":[],"12041":[],"12043":[],"121":65,"12110":[],"121678":[],"122":65,"1221549":[],"12239":[],"12261":[],"1227":[],"122832":[],"1229":[],"122e":[],"123":[],"12316":[],"12321978429576":43,"12333389":[],"12347":64,"1236":51,"1237444":[],"12393":[48,49,54],"12395":[],"124":[],"124183":[],"1243309312":66,"12468434":[],"12469624":[],"1249":17,"125":[],"1250":[],"12500":[],"1250000000":[],"125596":[],"1258":[],"1260":[],"12611532":[],"1261548":[],"12631":[],"126451398":[],"12658":[],"12697":54,"127":[17,28],"12700":[],"1274":19,"12775":[],"1277908":[],"128":[],"12804":[],"1283780":[],"12841362":[],"1288":[],"129":51,"1290":[],"1291":[],"12928":[],"129585":42,"12967217":[],"12969624":[],"12_000":[],"12th":30,"13":[6,14,19,32,33,43,53,54,66,67],"13000e":[],"13011":[],"13018":[],"13037":[],"13079460":[],"13086":[],"1310":[],"13109125":[],"13111532":[],"13134":[],"1315":[],"1316":[],"13167":[],"13175":[],"1317ab53":17,"1318372":[],"132":[19,51],"1320":[],"132363":[],"1324":17,"1325":17,"13251":[],"1327":17,"1328044753":[],"132900":[],"1333":[],"1334":[],"134":[],"13441":[],"1347":[],"134911":53,"13494":[],"13498":[],"135":[],"1351":[],"13543908":[],"135490":[],"135535":[],"1356":[],"1358":[],"1358836":[],"136":9,"13600e":[],"13623":64,"137":[41,53],"1373":[],"13735491":[],"13776":[],"13783":[],"137th":[41,53],"138":65,"138140":53,"13816716":[],"1388571":[],"139":[19,51],"13922":[],"13960":[],"1399300":[],"13_objects_and_vari":[],"14":[6,9,10,12,14,17,19,32,33,52,54,65,66],"140":51,"140000":[],"140000e":13,"14003":[],"140037":42,"14034":10,"140473":42,"14077":[],"1409":[],"141":[],"1410":[],"14111":[],"1415":[],"1416":[],"141681":42,"14176":[],"141827":[],"142":9,"14207":[],"1422":[],"14229038":[],"1423":[],"14238":[],"1424670":[],"1427":[],"143":[],"14333":44,"1435":28,"143583":53,"14364726":[],"1437":[],"1439765":53,"144":[],"144914":[],"14495":[11,12,14],"14499":[],"145":[],"1451":[],"14516100":[],"14549":[],"1457095":[],"14572366":[],"14593":[],"146":[],"1464":[],"1465":[],"146514":[],"146543":[],"1466":[],"1466922":[],"1467":[],"1468":[],"1469":[],"147":53,"1479":[],"14800":[],"14802":[],"1480229":[],"14808":[],"1481704":[],"1482":[],"1483":[],"1484":[],"1484111":[],"1485":[],"148593":42,"1486":[],"1487":[],"148758":[13,14],"1488":[],"1489":[],"149":9,"1491":[],"14918":[],"14gb":5,"15":[11,12,14,28,32,38,44,51,54,63,65,66],"150":[],"150074":[],"15018":[],"150200":[],"15044":[],"15095":[],"150k":[],"151":17,"15196740e":47,"152":[17,65],"15200":[],"1520693":[],"1525":[],"15279443":[],"153":17,"1532":[],"153498":[],"153547":[],"154":17,"1540":28,"1544":[],"1545":[],"154754":[],"15495":[],"155":17,"15576172":[],"15589":54,"156":17,"15601864044243652":[],"1561157":[],"15623":[],"15651":[],"1565561":[],"15659":[],"156604":53,"15665343":[],"15677":[],"157":[9,17,28],"15703":[],"15708":[],"15728":[],"1574":[],"158":17,"1580":[],"1587600":[],"1588":[],"159":[],"159283":[],"1593":[],"15933":[],"15950":[],"1596":[],"15988":[],"15_export_cleanliness_report":[],"15e":65,"15km":[],"16":[9,10,11,12,14,28,32,54,63,65,66,74],"160":[],"16000":[],"1601621":[],"160603":42,"161":[],"16117164":[],"16119":42,"1613":[],"16134":53,"16139":[10,11,12,14],"162":[],"1621":10,"1622":10,"16223":[],"1623":10,"16238":17,"1624":10,"1626":10,"1627":10,"16276":[],"1628":10,"1629":10,"1629615":[],"163":[],"1630":10,"16336287":[],"163952":[],"164":17,"1642085":[],"1643":[],"164499":53,"16471612":[],"164737205":[],"165":17,"1650":[],"1657":[],"1659027":[],"166":17,"16609":[],"166590":13,"16666667":[],"166667":[],"1668870":[],"167":17,"167088":[],"16717":64,"167428":[],"1675":[],"1676":[],"1679":[],"16796":[],"168":17,"1680":[],"1682":[],"1682549":53,"1683":[],"1684":[],"1685":[],"1686":[],"169":17,"1694":[],"16942":53,"16gb":[5,6,24],"17":[9,10,11,12,14,32,44,48,49,54,65,67],"170":[17,65],"170000":13,"17000e":53,"1704":64,"1706447136":[],"1706451":[],"1708":[],"171":17,"17100":[],"171318":42,"17143257":[],"171997":[],"172":17,"1723013":[],"17231":[],"1723646":13,"17239":[],"1729":[],"172902":54,"1729378":[],"173":17,"173615":53,"173795":53,"174":[],"174677":42,"17488":[],"175":[],"1759141":[],"176":[],"17600":[],"176021":[],"1761548":[],"1763477":[],"176523":[],"176739":42,"177":[],"17717":[],"17789267":[],"178":[],"1782":17,"178297":53,"1783":17,"1784":17,"178760":42,"178919":[],"179":[],"179957":[],"18":[10,11,12,13,14,25,44,54,63,67],"180":63,"1800":[],"18000":[],"180090":[],"180346":42,"1803941":[],"18069":[],"18086":[],"18128":[41,53],"181324":13,"18134":[],"1824":[],"18250219":[],"1827":[],"18280":13,"183":[],"1831":[],"184":[],"18437":[],"1844405":[],"18446744073709551615":[],"18469":[],"1847341":[],"1849":[],"18490":[],"1850":[],"1851":[],"1852":[],"1853":[],"18533":[],"185378":[],"186":[],"1860":[],"18612":[],"186145":[],"186183":[],"18620":[],"187":[],"18724":[],"18729365":[],"187871":[],"188":[],"18801":[],"188091":[],"188411":42,"1884869":[],"18861":[],"18864":[],"1888":[],"189":[],"1895250":[],"189687":[],"18981525":[],"189834":53,"19":[9,14,54],"190":[],"19000":[],"190040e":13,"1902":[],"190694":[],"19084":[],"1909":[],"1910":[],"1911226":[],"191553":42,"19170":54,"192":[],"1922":64,"19242":[],"19245344":[],"1925334":53,"192994":[],"19300":[],"19330":[],"19380":[],"194":17,"19428":[],"19459":[],"1947":[],"1949":[],"1949727":[],"195":17,"1952":[],"1957":[],"196":17,"1960":51,"1961":[],"1962":[],"1963":[],"1964":51,"1965":[],"1965798":[],"1966":[],"1967":51,"196963":[],"197":66,"1970":46,"1971":[],"197138":[],"1972":[],"1974":[],"1975":[],"1978":[],"198":[],"1980":[25,34,40,46],"198049":42,"1981":[],"1982":[],"1983":[],"1984":[],"1985":[],"198539":[],"19856":[],"1986":[],"19862":[],"1987":[],"1988":[],"1988100":[],"1988232":[],"199":[],"1990":[25,28,40,59],"1991":[],"199152":[],"1992":[],"199232":[],"1993":[],"1994":[],"1995":[],"1996":[],"1997":[],"1998":[],"1999":[],"199991":53,"19_000":[],"1_000":[],"1_000_000":[],"1_000_000_000":[],"1_000_001":[],"1d":50,"1e6":[],"1f":[],"1j":10,"1pm":9,"1s":[22,27,50],"1st":[],"1tb":6,"2":[4,6,8,9,10,11,12,13,14,16,17,21,24,26,27,28,29,36,46,47,50,51,57,59,60,63,64,65,66,71],"20":[10,11,12,13,14,24,30,34,35,36,41,42,48,49,50,53,54,63],"200":[24,34],"2000":[48,49,51,54,63],"20000":[],"200000":[],"20000e":[],"2000x":[],"2001":[],"2002":[],"2003":[],"200310":13,"2004":[],"200443":[],"2005":[39,46],"2006":17,"200613":[],"2006262":[],"2007":44,"2008":[26,48,49,54],"2009":[39,51],"20096":[],"200_000":53,"201":[],"2010":[32,33,39,46],"2011":[],"2012":26,"2013":39,"2014":17,"2015":[33,46],"20150":[],"2016":[33,39],"2017":[13,30,39],"20170824":[22,23],"2018":[23,48,49,51,54,59],"2018_1":[],"2018_11_":[],"2018_1_":[],"2018_2":[],"2018_2_":[],"2019":[41,53,73],"20199":53,"2019_12_":[],"2020":[32,64,69,73],"2021":[41,53,65],"2022":[19,38],"2023":[6,58,62],"2025":[48,49,54],"202553":42,"2028":[],"203":65,"2030":[],"203072":[],"2046726":[],"204786":[],"205":[],"20550":[],"206290":[],"20683989":[],"207":[17,63],"207099":[],"20718956":[],"20753":[],"2077":[],"207895":13,"2079543889":12,"208":[17,53,65],"2082":[],"208607":[],"2087190":[],"20873":[],"2088307":[],"208947":42,"209":17,"2092":[],"209706":[],"20995":[],"20_000":[53,54],"20_clean_data":[],"20_intermediate_fil":[],"20_matric":[],"20k":[],"20x":63,"21":[9,10,14,42,43,63,65],"2103721":[],"211":[],"2110":[],"211420":42,"21168":[],"211960":[],"21200":[],"2127654":[],"212813":42,"2129122":[],"213":17,"2130":[],"21319":[],"21335":[],"2134":[],"2135":[],"2138":[],"214":17,"2142":[],"214500":13,"21464":[],"214895":[],"2149":[],"215":17,"21513":[],"21519":[],"215196740e":50,"2153":[],"216":17,"2166463":[],"2168":[],"21680":[],"2168118":53,"2168870":[],"2169":[],"217":65,"2173":[],"217426":[],"2175":[],"217535":[],"217787":[],"21787":[],"217888":[],"217917":[],"218":[],"21878":[],"219":[],"2197":[],"22":65,"220":38,"22000":[],"22000e":[],"220316":[],"2204":[],"2205":[],"22050":[],"2206":[],"2207":[],"2208":[],"2208582":[],"2209":[],"2210":[],"2215":[],"2216":[],"2218":[],"222":[],"2221":[],"222222":[],"222222222":34,"22251":[],"22299799":[],"2234691":[],"2239":[],"224":17,"224120":42,"224137":[],"2243":[],"2244":[],"22440":[],"2247":[],"2248":[],"2249046":[],"224e":[],"225":[17,51],"2250":[],"225207":[],"2254":[],"225516":42,"225842":53,"226":17,"2270012":[],"2272":[],"22738":[],"2278":[],"228":17,"22852":[],"2286":[],"2289510":[],"22899":[],"229":[],"22_000":[],"22_reshaping_matric":[],"23":[9,43,53,63,65],"230":65,"23000e":[],"230024":[],"23016":[],"230288":[],"2303":[],"230382379836":[],"231":[],"23132071":[],"231729":42,"232":[],"23221854":[],"232415":[],"23290":[],"2329974":[],"233":[],"23304":[],"23328900":[],"2338":[],"234":[],"235":[],"2350":[],"23500":[],"23514":[],"23522":[],"2352805381":[],"23585":[],"23589951":[],"236":[],"236313":[],"237":28,"2370438":[],"23709651":[],"23828426":[],"2383":[],"2389081209832":43,"2389710287":43,"239":17,"2391":[],"2394":[],"23980921730972":43,"23999":[],"23_500":[],"23_514":[],"23e":65,"24":[9,63,65],"240":17,"2400":[],"24000":[],"24081":[],"241":17,"2410903":53,"241528":53,"242":17,"242235":[],"24333":64,"243401":[],"243585":[],"24377704":[],"244025":[],"244097":42,"2445":[],"2446":64,"2447320":[],"2449727":[],"244e":[],"2451":[],"245298":[],"246":[],"246225":42,"24771":[],"247712":[],"247801":[],"248":51,"2481":64,"248211":[],"2489":[],"248968":[],"2490":[],"24900":[],"24924":64,"24934":[],"249436":[],"24gb":6,"25":[8,13,29,54,59,65,74],"250":[41,53,64],"250000":[],"250000000":[],"25024":42,"25063":42,"250_000":53,"250mb":[],"25143":[],"252":51,"2527":[],"252840":[],"253":[51,63],"25336":[],"253722":[],"25375799":[],"254":[],"254579":[],"254634":42,"2549970475168":[],"2549970476208":[],"255":[],"25526":[],"25552":[],"25556":[],"2556":[],"2559":[],"256":65,"256094530607":[],"25629":[],"257":[],"2571":[],"257223563":[],"257292":[],"25773":[],"2579":[],"258":65,"2581":[],"25810":[],"2594":[],"259942":[],"25e":65,"25pm":9,"25x":[63,67],"26":[9,28,65],"260":[],"260219":42,"26031226":[],"2607":[],"2614":[],"26154":[],"261540":42,"26158":[],"26171875":[],"2619":[],"262153":42,"262190":53,"26226":[],"26318":54,"264":[28,65],"26444":53,"2652":[],"265455":42,"2656":[],"266306":[],"267":[],"267072":[],"267390":[],"2677":[],"26815":[],"2686":[],"26927862167358396":[],"2699000":[],"269954":[],"27":[65,67],"27000":65,"270117":[],"270231":[],"2702318":[],"2703978634":13,"271044":[],"27159":[],"2718bcdb1d57":66,"272":[],"27222":[],"2723":[],"2724":[],"2725":[],"2726":[],"2727":[],"273":[],"27321":[],"273263":[],"273300":[],"273338":42,"27351":[],"2740":[],"2747":[],"274795":[],"275":19,"275485":42,"2761":[],"27616":[],"27750":[],"277650":[],"278":[],"2785":[],"27857208":[],"279":[],"2791":[],"27960":[],"27_222":[],"27_750":[],"28":[9,51],"28020":[],"28036829":[],"28050":[],"281":[],"28142":[],"28144":[],"2822400":[],"28236":[],"282399":42,"282814":[],"2829":64,"283":[],"283013":42,"28305":[],"284634":[],"2856":[],"2857":[],"285877":[],"286":[],"28618":[],"28621":[],"287":51,"287508":[],"287650":42,"28779":53,"2878":[],"288":[],"28821":[],"28833":[],"28863":13,"28877":[],"289":19,"28927599297":[],"29":[9,28,63],"29000":[],"29117":[],"29176334":[],"29206475":[],"29260":[],"29289":[],"293":[],"293222":53,"2934":[],"29342":[],"29380":[],"294":[],"29400e":[],"294172":[],"29427":[],"294731":[],"294986":[],"295":[],"29520":[],"295346":[],"29617":[],"296561":[],"29663":[],"296685":42,"297":[],"2972":[],"297434":[],"297688":54,"29768835":[48,49,54],"297992":[],"298":[],"29800":[],"29801":[],"2980522362":[],"29866":53,"299":[],"29917":42,"29975305":[],"299_999":[],"29_000":[],"29ac2137":[],"2d":[],"2f":53,"2gb":[17,29],"2nd":[],"2x":[6,63],"2x2":25,"2x3":[],"3":[2,4,6,8,9,10,11,12,13,14,16,17,19,21,24,26,27,28,29,33,36,46,47,50,51,63,64,65,66,67,71],"30":[9,13,19,41,53,62,63],"300":[5,34,51],"3000":[],"30000":13,"30000e":[],"3003":[],"30030776":[],"30050":54,"300856":[],"300_000":[],"300x":67,"3010":[],"301717":42,"302":[],"303":[],"30329":[],"30330":[],"3038":[],"303814":54,"304":[],"3051":[],"30511":[],"305186":42,"306":[],"3062":[],"306770":[],"3087":[],"30877":[],"3088":[],"309":66,"30_000":53,"30_analyze_data":[],"30_numpi":[],"30_result":[],"30gb":24,"30k":[],"31":[9,63,65],"310":[],"3103":[],"31058392e":47,"310941":[],"311":22,"3115000":17,"311619":[],"31185":[],"3119":64,"311_sr_data_dictionary_2018":[22,23],"311calls_2018_2_":22,"312":[],"31214":[],"31218":[],"312312":[],"31308814":[],"313094":42,"3135":[],"3137":[],"314":[],"3145":[],"3146":[],"31470":[],"315":[19,65],"315359":[],"315707":[],"315914":[],"316155":[],"316245":[],"31631":[],"3166":[],"3168":[],"317":[],"3172":[],"31780":[],"317877":[],"318386329":[],"318413":42,"318698":[],"319004":[],"31913":[],"31953":[],"32":[6,43,65,66],"320":[],"32026":[],"3203":[],"32047":17,"321":[],"3218":[],"322":66,"3220":[],"3221":[],"32213":42,"323":[],"3236":[],"324":[],"3240":[],"325":[],"3250":64,"325793":42,"326":[],"326386":42,"32642":[],"327":[],"32711":[],"32767":[],"32768":[],"32781":[],"32794049":[],"328134":13,"3289":[],"32894":54,"32941068":[],"32_cleaning_editing_specific_loc":[],"32gb":[6,24],"33":[19,23],"33037":[],"331":9,"3314":[],"33174":[],"332":[],"332059":[],"333":[],"33300":[],"333008":42,"333333":[],"33333333":[],"333333333":34,"333443":[],"33373":[],"334":[],"33400e":[],"33432026":[],"334823":[],"335140":42,"3353":[],"3366":[],"33679":13,"337":66,"3370":[],"337639":42,"338":54,"33854":53,"338722":53,"33873":[],"3388":[],"339":[],"33_matrix_recap":[],"34":[8,12,16,17,19,23,65,66],"340":53,"3404":[],"341":66,"3412":[],"342":66,"34255":[],"343":66,"343356":42,"344":66,"3442359e":50,"34455":[],"344916":53,"34493":[48,49,54],"345":66,"34549":54,"34556596":[],"345793635":[48,49,54],"345794":54,"34605":[48,49,54],"346098":[],"347234":[],"3473":[],"34752":53,"348":[],"348570":42,"3488":[],"348982":[],"3491":[],"3492":[],"349276":[],"34928":[],"3496":[],"34974":[],"349993":54,"349993318":[48,49,54],"34_255":[],"34gb":28,"35":19,"35000":[],"3502":[],"35030e":53,"350795":[],"350930":[],"35118":[],"3512":64,"352":[],"3530":[],"353049":42,"3543":[],"35455":42,"3558598166059":[],"356":19,"35613":[10,11,12,14],"35677":[],"3569":[],"357":67,"35700":[],"357396":[],"35814629":[],"3585":[],"359":9,"3590460e":[],"3594":[],"359408":[],"359548":[],"35972":[],"35973":[],"35_000":[],"35_modifying_subsets_of_vector":[],"36":[],"3600":[],"36000":[],"36001":[],"3603":[],"3604":64,"3605":[],"360918":[],"361":[],"36181":[],"36249":[],"36259":[],"362712":[],"362713":[],"3629":[],"363":[],"36376":[],"364":[],"3644":[],"36461":[],"365":23,"3651":[],"3652":[],"3653":[],"365406":[],"3656264991306195":54,"366":54,"36630483":[],"36634434":[],"3665938e":[],"3669605e":[],"367":65,"367843":[],"368":[],"368673331236263":[],"36909499":[],"36923808":[],"37":[],"37000":[],"370000e":13,"3705":[],"37065":[],"3707394":[],"371":[],"3719973852":[],"37247":[],"372707":[],"37306":[],"374":66,"3745401188473625":[],"3746007904":[],"374985":[],"375":66,"375059":42,"37525":[],"376":[28,66],"37609":[],"3768501e":[],"377":66,"3775":[],"378":66,"3781":[],"379802":42,"37_000":[],"38":[],"3800":[],"38000e":[],"38039":[],"38053":[],"3810":[],"38100429":[],"38152":[],"38175":42,"3819":[],"382803":42,"38317":42,"3836":[],"384":66,"384154":42,"3845":[],"3847":[],"3857":[],"3863":[],"3867":[],"387":[],"38746":[],"38768155":[],"387698":[],"388":[],"388234":42,"3887":[],"3892":[],"38957":[],"38961":[],"3897":[],"3898":64,"3899":[],"39":[8,17,19,31,52,54,65,66],"3911":[],"39200":[],"39203":[],"3920400":[],"39219733":[],"3923":[],"3926":[],"39399":[],"3940394":[],"3942971e":[],"394863":42,"3952":65,"396610":53,"3968":[],"3971":[],"39731834":[],"3975":42,"3977":[],"398":[],"3983607e":[],"39865":[],"39906":[],"3997":[],"39_200":[],"3_000":[],"3a29deea2d090d453bbd7546f1100890":[],"3d":[],"3f":54,"3fbadc183a38ae4572bc0a532c474cd5":17,"3min":63,"3prrdzz6":17,"3rd":9,"3x":26,"3x2":[],"3x3":[],"4":[2,9,10,11,12,13,14,17,21,24,26,27,28,29,33,36,46,47,50,51,62,63,64,65,66,71],"40":[13,25,28,41,48,49,53,54,67],"400":34,"4000":[],"40000":13,"40097491":[],"401":[],"401101":42,"40143":[],"40204897":[],"4022":[],"40256":[],"4028235e":[],"4038":53,"4041630850":[],"40446":[],"405":[],"40559":[],"4063":[],"40644":[],"406461":[],"40696":[],"406983":42,"4071":[],"40714":54,"407460":[],"407675":42,"4078":[],"407816":[],"40832":[],"40849":[],"4087062":[],"4088":[],"408830":42,"40950":[],"40_000":53,"40_doc":[],"40k":[],"40pm":9,"40x":17,"41":[],"410":[],"41135":[],"4119":34,"4121":34,"4122":34,"4123":34,"4124":34,"4125":34,"4127":34,"41282":[],"4132":[],"414556":[],"41593359":[],"416":[],"41666667":[],"416860634":[],"417229":[],"41796586":[],"418":[],"419":28,"419282":[],"419547":42,"42":[12,13,35,47,50,52],"42000":65,"42041":64,"42105":42,"42116":[],"4218":[],"42250":[],"42296":53,"424427":[],"42477":[],"425024":42,"425041":42,"42520":[],"42536":[48,49,54],"42554529":[],"4258":[],"426":[],"42600":[],"4276":[],"428162":[],"42824":[],"4286633":[],"4289":[],"429":[],"42920828":[],"42980055":[],"42_000":65,"42_250":[],"42n":[],"43":28,"430":[],"43036":[],"43044":[],"431":[],"431535":[],"4318":[],"4326":[],"4328532":[],"43304":[],"4331":[],"4338":[],"434981":[],"435193":[],"43530":[],"436100":[],"437":[],"43784":54,"439":19,"4390266800":[],"4390275632":[],"44":66,"4413":13,"4414":13,"44200":[48,49,54],"4425":[],"44332399":[],"444":[],"4443":[],"444444":[],"444899":42,"44521":64,"445314":[],"44541":[],"44594":[],"4461":[],"446358":[],"44637":[],"4474":[],"447533":[],"44807":[],"4483":[],"448304":53,"448552":[],"44942116":[],"44995":[],"449971":42,"45":[9,13,34,48,49,54,63,66],"450":[],"45000":[],"45000e":[],"4504":[],"45057":[],"451":[],"452":[],"45232207":[],"4524":[],"45248":[],"453":[],"454":[],"4556":53,"45568":[],"456":19,"45692998571":[],"4574":[],"458":[19,65],"45816":64,"4583":53,"459":64,"45_000":[],"45e":65,"46":66,"46000":[],"4602":53,"4603338":[],"46070":[],"4617":53,"462":[],"4622":64,"4626":53,"46264861963052545":[],"464":[],"4640":[],"46429364":[],"464609":[],"465":[],"465168":42,"46548":[],"46576":[],"466320":13,"46632017153389926":13,"466441":[],"467":[],"46716":[],"468":[],"468627":53,"468790":[],"46908":[],"4699":[],"47":[13,63],"47000":65,"47002851":[],"4709":[48,49,54],"472":[],"472031":42,"47212":[],"472459":[],"472677":[],"473":[],"4734":[],"47434573":[],"47485":[],"4751":53,"4756":53,"4756173843900709":[],"47573":[],"475937":[],"476442":42,"47698524":[],"477425":42,"4776":[],"4778":13,"47815":[],"479566":[],"47_000":65,"48":[],"480":[],"480744":[],"4811":53,"48137":53,"481981":42,"4821":[],"48272":[],"4830":[],"485":[],"485118":42,"48515621":[],"48543779276265":[],"4859":[],"486":[],"4863":17,"487364":[],"4876":[],"487635":[],"48767":[],"48801552":[],"48931243":[],"4894":[],"4896":64,"489984":42,"48e":65,"49":67,"49000":[],"4913":[],"492":[],"49284":[48,49,54],"49298357":[],"4932000":[],"494184":42,"495":[],"4950":[],"49580":[],"49584":[],"495925":[],"49666":65,"496966":42,"4979":64,"49805":[],"499":[],"4996":[],"499628":[],"49982":42,"49992":[],"49995":64,"49996":64,"49997":64,"49998":64,"49999":64,"499998":53,"499e0f8d8a2531f815b06b72dcbc9adc":17,"4_000":[],"4e":65,"4f":53,"4gb":24,"4th":[],"5":[8,9,10,11,12,13,14,16,17,19,24,26,27,28,29,32,36,46,47,50,51,63,64,65,66,71],"50":[13,54,64,65],"500":[34,41,53],"5000":[],"50000":[13,64],"500000":42,"500000000":[],"50000e":[],"500_000":53,"501":[],"5010":[],"50126400":[],"50169":[],"502":65,"50229":54,"502458":[],"50309":[],"50375576":[],"5049":64,"505":[34,51],"505400":13,"507":66,"507081":[],"509091":[],"50_000":[],"50k":[],"51":[],"5100930":[],"5103338":[],"51051":[],"511881":[],"512":[],"5122":[],"512gb":6,"5138":[],"515":[],"5153":[],"51609419":[],"5169":64,"51700e":[],"5178569394014167":[],"518":51,"5180":[],"51841":[],"51865":[],"51945731":[],"52":[23,65],"520":[],"52000":[],"5201":[],"52022":[],"5205401359786243":[],"522":65,"522781":[],"52290":[],"52295":[],"523276":[],"52375":[],"52475":[],"52496":[],"525":[],"52535":[],"52547":42,"5255":[],"526":[],"526295":[],"52695041":[],"527":[],"5278":[],"528":[],"52852":[],"529":[],"52968":[],"529919":54,"52991925":[48,49,54],"52eca15982ab857959b3001545bb57fa":17,"53":13,"530":[],"5300":[],"531":[],"53164607":[],"5317":[],"532":65,"5321":[],"533":[],"53308":[],"534":[],"53444994":[],"534460":[],"53504":[],"53521":[],"535560":[],"5376067":[],"538":[],"5380":[],"538166":[],"53901":13,"5393":[],"54":[],"540":[],"5401":53,"541":[],"542":[],"5420":[],"5435":[],"54353377":[],"5442":[],"54435239":[],"54567":[],"5464":[],"547":[],"54705":[],"54788029":[],"54833997":[],"54841552":[],"5484221":[],"5491218":[],"549555":[],"5499":[],"55":[],"55000":65,"55015849":[],"5510032":[],"551103":[],"55235":[],"55372018":[],"555":[],"55529585":[],"5558":[],"555987":[],"556886":[],"5573":[],"55746652":[],"5577":[],"559":[],"5590":65,"55_000":65,"55e":65,"56":65,"560":65,"5604":[],"5612":[],"56174":42,"563":65,"565618":[],"56669873391075":63,"56804":[],"569":[],"56960":[],"56aae5aa":17,"57":[],"570e":[],"57109971":[],"571846":[],"57211":[],"572746":[],"5748":[],"57482":[],"5749":[],"575":[],"575437":[],"57549359e":47,"5755":[],"5759325044404974":[],"576":[],"57713":[],"57760":13,"57771":[],"57826":[],"57843":[13,14],"57937":[],"57945":[],"57967373":[],"58":[],"58138":[48,49,54],"5816":[],"581676":[],"581939":[],"58308":[],"58333333":[],"584":[],"585":[],"58592":[],"586":[],"58611077":[],"5866":[],"587":[],"587626":[],"58797881":[],"588":[],"589":[],"5899":44,"59":[],"590":[],"590019":[],"59025":[],"590e":[],"591":[],"59154":[],"591919":[],"59193":[],"592":[],"592212":[],"59257365":[],"593":[],"594":[],"5945":[],"59470":53,"595":[],"59501":[],"595848":[],"59617785":[],"5962":[],"59641":42,"59694827":[],"597":[],"5975":[],"598":66,"5985209":[],"5986584841970366":[],"59909269":[],"59944":[],"59959455":[],"59998":[],"5_000":53,"5e":65,"5f":[],"5km":[],"5pm":9,"5x":[63,66],"6":[2,6,9,10,11,12,13,16,17,24,26,27,28,32,33,36,46,47,50,51,61,63,64,65,66,67,71],"60":[],"600":65,"60000":65,"60000e":[],"60015":[],"60078767":[],"600x":66,"60184894":[],"60193508":[],"602":[],"6021":[],"602486":[],"602e":44,"60519528":[],"60593":[],"606":[],"6066":[],"6070":44,"6074546":[],"6078":[],"608":19,"60969":[],"60_000":65,"61":[],"610e":[],"613":63,"613503":[],"614":[],"61437":17,"61440":17,"61441":17,"61442":17,"61443":17,"61444":17,"61455":17,"61456":17,"61457":17,"61458":17,"61459":17,"61461":17,"61463":17,"61464":17,"61467":17,"61468":17,"615":[],"616":[],"61669":[],"617":[],"617397":[],"61759801":[],"618":52,"61831":[],"61882428":[],"62":[13,65],"620058":[],"620058054736359":[],"620248":[],"62038":[],"621416804":[48,49,54],"621417":54,"622":[],"62255074":[],"6227843":[],"6229":17,"623":53,"6230":17,"6231":17,"6232":17,"6236":17,"6237":17,"6238":17,"6239":17,"6241":17,"624340":[],"62513":[],"625494":[],"6258":17,"6259":17,"627":[],"6278":[],"62796":[],"62805":[],"62849767":[],"62e":65,"63":[],"630483":[],"63064283":[],"630699":[],"630e":[],"63175":[],"632":[],"632e":[],"6336":[],"63426611":[],"6343":[],"63480174":[],"6350":[],"6354":[],"6378137":[],"638":[],"63857":42,"6396":64,"63986":[],"63e":65,"64":[17,66,67,74],"64000":[],"641":[],"6424":[],"6427274":[],"6430":[],"6447":[],"6458":[],"646":13,"6469":[],"647581":[],"6494":[],"64992682":[],"64gb":29,"65":[],"65000":65,"6507":[],"65090e":[],"652498":[],"6533":[],"654":[],"655":[],"655485":[],"656":66,"65600025":[],"6563":[],"657":66,"65722656":[],"65780":[],"658":66,"659":[65,66],"65_000":65,"65b082a7179bbd179d42b1f248add400":17,"66":[],"660":66,"66036632":[],"6610":54,"66292":54,"66300":[],"664939":[],"666":[],"666666666666666":[],"66666667":65,"666667":[],"6669":[],"6682":64,"66899":[],"67":65,"670":[],"6700":[],"6707":[],"670947":[],"67106161":[],"671392522":[],"67139801":[],"6730":64,"6740":64,"675":[],"6750":64,"67573864":[],"67609513":[],"6766":[],"6768833":[],"678558":[],"67866126":[],"68":63,"68165e":[],"6818":[],"682123":[],"68240119":[],"682723":[],"684":[],"68414135":[],"6846":65,"685":[],"6851":[],"68568":[],"686556736":[48,49,54],"686557":54,"688000":[],"688381":[],"68900e":[],"69":17,"69000":[],"6909701":[],"69295594":[],"694007":[],"694416":[],"695":[],"69579177":[],"696132":[],"697454":[],"69790":[],"69808":[],"69831":53,"698539":[],"6989":[],"699144":[],"69948409":[],"6_700":[],"6f":[],"6pm":9,"7":[9,10,11,12,13,17,24,26,27,28,32,33,36,46,47,50,51,63,64,65,66,67,71],"70":17,"700":[],"7000":[],"70000":[],"70000e":[],"700872":[],"700_000":[],"700x":[],"701":[],"70134871e":47,"70149904":[],"7028":[],"703439":[],"7040":64,"70405126":[],"705":[],"70520":13,"70523691":[],"70552356":[],"70563":[],"706338":[],"706907":54,"708":[],"7080":[],"7088":[],"709":[],"70919":[],"70_000":[],"71":63,"710":[],"711000":[],"711411":53,"7124":64,"713":[],"714":[],"7143":[],"7148":[],"715":[],"716":[],"7160":65,"716502":[],"71660":[],"71703749":[],"719":65,"7198138":[],"71992":[],"72":[17,63],"720":58,"7200":[],"72000":[],"72000e":[],"720787":54,"721":[],"7212":[],"723":13,"72320727":[],"723646e":13,"7237005577332262213973186563042994240829374041602535252466099000494570602496":[],"7237659":[],"7252":[],"7256":[],"727037":[],"7271":[10,11,12,14],"727718":[],"72918353":[],"73":[],"7301":64,"731297":[],"73178":[],"7318":[],"7319939418114051":[],"732":[],"732326e":13,"73335":42,"734486":[],"73450":[],"734889":[],"73525":[],"73550":[],"73562217":[],"736":[],"736345":[],"73700e":[],"7372":[],"7386":[],"73892819281":43,"739":64,"739100":[],"739410":[],"739559":[],"74":65,"741":[],"742":[],"7435111":[],"74567022":[],"747":[],"7474784":[],"7487":[],"75":[13,54,63],"750":[],"750000":[],"750000000":[],"7502":[],"751":66,"75118362":[],"7514458":[],"751875":[],"75299":[],"7541526024":[],"7541526059":[],"7541531491":[],"7541648760":[],"7541675910":[],"7542991659":[],"7542991743":[],"7543731818":[],"7544165":[],"75485":[],"755":[],"75539786":[],"7557":[],"759":[],"7593652":[],"75_000":[],"75e":65,"75k":[],"76":[],"760":[],"7603":[],"76068179442":[],"761":[],"762":[],"76227577":[],"7624":[],"763":[],"7634":[],"763450":[],"76379":[],"764":[],"765":[],"76580":53,"766":[],"7660":[],"76680":13,"767":[],"76728975":[],"768":[],"76908136":[],"769231":[],"77":[],"770":[],"77000":[],"77013":[],"77015697":[],"771252":[],"7715":44,"7725":[],"7727":[13,14],"7727330":[],"772b":17,"773":65,"775132":54,"775132075":[48,49,54],"77542e":53,"7767":[],"7774":[],"7777":[],"778286":[],"779":[],"779784":54,"77e":65,"78":[],"780":[],"78026":[],"780953":[],"781354":[],"78152768e":[47,50],"781869":[],"78218":[],"78277488":[],"78347282":[],"78350":[],"78435":[],"7844":[],"785":[],"78616":[],"786697":[],"78699":[],"78904":[],"789474":[],"7898":[],"79":[],"79000":[],"79035305":[],"791667":[],"792339":[],"79348432":[],"7949":[],"796":[],"796_095":[],"7974":[],"7981":64,"7_000":53,"7e":65,"7th":[],"8":[8,9,10,11,12,13,17,19,26,27,28,32,33,36,46,47,50,51,63,64,65,66,67,71],"80":[13,17,50],"800":[],"8000":[],"80000":65,"800000":54,"80000e":[],"801":[],"8016":[],"802":[],"80200":[],"8024":[],"8027":[],"8033":44,"8050":[],"807":[],"8078":[],"808089":[],"80842":42,"80_000":65,"80gb":26,"81":[],"812":[],"8123":[],"81257636":[],"813660":[],"8137":[],"81790":54,"81949992":[],"81965":[],"81969":42,"82":63,"820":[],"820238":[],"823":[],"827":[],"82867":[],"829665":[],"829715d":33,"83":[],"83000":[],"831":[],"8311":[],"8317254":[],"832":[],"832803":[],"8329":53,"833":[],"83333333":[],"83368":[],"834":[],"835":[],"835458":[],"8358062":[],"836":[],"836013":54,"83654764":[],"8369":[],"837000":[],"837287":[],"839":6,"84":[],"8400":[],"841371e":[],"841463":[],"8425333":[],"8427":[],"844":[],"84423828":[],"8447":[],"84488":[],"84555":[],"8468555":[],"847":65,"8471":13,"8485":[],"849643":54,"85":53,"852430":[],"85250":[],"85298":53,"853":[],"853030":[],"85316":[],"853640":[],"85440059":[],"85466838":[],"8547":[],"855":[10,11,12,14],"8552":65,"85541":[],"855942":[],"856412":[],"8577":[],"85780e":[],"858":19,"85821":[],"85868":[],"8594":[],"859424":[],"86":[],"86190":[],"86235":54,"86245":[],"86446":53,"864994":[],"8652":64,"8664":[],"8675":64,"8684":[],"869":[],"8696":64,"87":[],"870":[],"87000":[],"87040205":[],"8719":[],"8725":[],"873267":[],"874":[],"87429194":[],"875000":[],"87633":[],"8766506697893":[],"8766523976497":[],"87670":[],"8785":[],"87851439":[],"8786":19,"8787":[17,19],"878744":[],"8793":[],"88":28,"88000e":[],"8801":[],"8802":[],"8805":[],"8806":[],"8807":[],"881":[],"88137":[],"8821":[],"88254":[],"882895":[],"88298":[],"883":66,"88460":[],"8853":[],"885748":[],"8862":[],"88884669":[],"88967789e":47,"89":[],"890":[],"891":65,"89134143":[],"89185":[],"89347789e":50,"8941997":[],"89536":[],"897":[],"8973":42,"89783887":[],"899":6,"899191":[],"89970768":[],"89_000":[],"8_000":[],"8eec3fa0":[],"8gb":24,"8km":[],"9":[8,9,10,12,13,17,19,24,26,27,28,32,33,36,46,47,50,51,63,64,65,66,71],"90":[25,40,48,49,54],"9000":13,"90000":[],"90000e":53,"90005":[],"901":19,"90200":[],"9026":[],"903":[],"903249":[],"90580108":[],"90589732":[],"90602161":[],"907":[],"907990":[],"9087":[],"909":[],"909091":[],"909724":[],"90_000":[],"91":[],"910":[],"911":[],"912281":[],"912773":[],"91323":[],"913731":[],"9138":[],"91524":53,"91666667":[],"9174":[],"91807":[],"918279":[],"9192013418709424":[],"91957":[],"92":[],"920597":[],"92100e":53,"9223372029312625299":[],"9223372029312629956":[],"9223372029312635420":[],"9223372029312645660":[],"9223372029312645800":[],"9223372029312856274":[],"9223372029312882723":[],"9223372029312888302":[],"9223372029313258415":[],"9223372036854775807":[],"9223372036854775808":[],"923077":[],"9232":64,"9232726829228909":[],"9239":[],"9240934":[],"9243747":[],"92447914":[],"92576":[],"92680002":[],"928":[],"9283e987":[],"929":53,"92918":[],"929623340":[],"9297":[],"93":[19,66],"93135":[],"93143":[],"931782":[],"93225841":[],"933":[],"93325258":[],"933333":[],"933695":[],"9350":42,"9355":[],"938e":[],"939046":[],"9392":[],"94":[],"94022452":[],"941":[],"9413":[],"94300e":[],"944742":[],"945":[],"945562":[],"946":[],"947368":[],"948":65,"949":[],"94o6ttr":17,"95":63,"95000":[],"9502":[],"9507143064099162":[],"9509871630756775":[],"95173":[],"95197":[],"9537":[],"954196":53,"955":[],"95526696":[],"95583":[],"957":[],"95700e":[],"958":65,"95926878":[],"95949":[],"96":[],"960":[],"96024e4c":17,"96068":[],"961222":[],"96201":[],"96239991":[],"96246675":[],"96252916":[],"964432":[],"96448626157":[],"96472654":[],"96662":[],"96669":[],"967e":65,"968":[],"9682":65,"968220":54,"968408":[],"96cb":17,"96e":65,"97":[],"970221":[],"970514":54,"9717":[],"975":65,"976":[],"9767":[],"977128":[],"9776":[],"979":65,"9795978":[],"98":[28,43],"98000e":53,"98028362":[],"980299584":[48,49,54],"980300":54,"9807":[],"9808969":[],"981106":[],"981126":[],"982":[],"982775":54,"982775018":[48,49,54],"984111":[],"984130":[],"9856":[],"986111":[],"98881644218754":63,"989723798729874":[],"9897238":[],"98dc9420c2f021fb4e0bb3d80c72065d":17,"99":[47,50,51,63],"990":65,"9900":[],"9901":[],"990293":[],"990807":[],"992588":[],"99273975":[],"993":[],"993103":[],"994660":[],"9967":[],"99699f0c":[],"997":[],"997409":[],"99778":[],"998":[],"998140":[],"999":[13,30,40],"99930":[],"9996":[],"9999":[],"999997":67,"999998":67,"999999":67,"9999999":[13,14,25,30,40],"99999999":35,"999999e":13,"9_999_999":[],"9ab4fa814864c801e2cba6374dc6a7ac":17,"9b6041b75a79c3e71d6d7acd7239fd91":17,"9b67ae1a2bd7fb1817a63efa1994d7b4":17,"9cd2f2682352":66,"9th":30,"\u00b5s":[66,67],"\u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f":11,"\u0443\u043a\u0440\u0430\u0457\u043d\u0430":11,"\u0444\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f":11,"\u76fc\u76fc":[],"abstract":67,"boolean":[8,12,34],"break":[5,8,9,26,34,63],"byte":[22,28,74],"carr\u00e9":[],"case":[5,8,10,11,13,17,22,25,27,28,29,30,31,32,33,34,39,40,42,46,47,49,50,51,52,57,59,60,63,66,67,68],"catch":66,"class":[1,2,4,5,6,17,24,26,27,30,40,45,47,50,56,57,60,62,63,66,69],"default":[8,13,14,19,22,34,36,37,38,39,47,50,54,64],"do":[2,3,4,6,7,8,9,10,11,12,13,14,19,21,22,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,57,58,59,60,63,64,67,69],"export":[23,42],"final":[5,6,9,11,17,19,27,28,39,41,42,44,53,57],"float":[4,8,10,14,16,17,28,47,50,66,67],"function":[4,5,7,8,14,17,21,27,28,29,34,35,39,41,43,44,46,47,48,49,50,51,52,53,54,59,60,63,66],"import":[2,4,5,6,7,8,10,11,12,13,14,15,17,19,22,23,24,25,28,30,32,33,34,35,36,38,39,41,42,43,44,46,47,49,50,51,52,53,54,59,62,64,65,66,67,69,72,74],"int":[5,8,17,28,66,67],"long":[2,5,6,8,14,24,26,29,33,39,41,46,51,53,59,63,66,74],"m\u00e9xico":11,"new":[4,5,6,8,12,13,17,21,22,23,26,27,28,29,30,33,34,35,36,37,38,39,41,42,47,48,49,50,51,52,53,54,57,58,59,60,62,63,66,67],"null":8,"public":26,"return":[5,8,10,11,12,13,14,17,19,22,25,27,28,29,31,34,37,40,42,43,47,50,54,63,66,68],"short":[2,10,11,17,22,28,35,62,63,74],"super":[5,6,42,52,66],"switch":[8,32,33,63],"throw":[5,17,24,32,33,35,39,44],"true":[5,8,10,11,13,14,17,25,27,28,34,35,36,39,40,41,42,47,50,51,53,54,60,65,66,67],"try":[2,5,6,8,10,11,12,13,17,19,22,23,24,25,26,28,29,30,31,32,33,34,35,36,38,39,42,44,47,48,49,50,51,54,57,59,60,63,64,74],"var":[9,12,17,47,50,52],"voil\u00e0":[],"voil\u00e1":[],"while":[2,5,6,7,8,10,11,13,14,17,22,24,26,27,28,32,33,35,39,40,44,47,48,49,50,52,54,57,59,60,62,63,66,74],A:[2,6,8,9,12,13,14,17,32,34,37,38,39,41,42,47,48,49,50,51,53,54,57,59,60,62,66,72],AND:[9,12,24,28,42,67],AS:26,And:[2,5,6,10,11,12,13,14,17,19,21,22,32,33,36,39,42,44,47,50,51,57,59,60,62,63,66,67,74],As:[2,5,11,12,13,14,17,22,23,25,27,28,29,30,31,32,33,34,36,37,38,39,40,41,44,46,47,48,49,50,51,52,53,54,57,59,60,62,63,66,67,72,74],At:[2,5,6,13,17,37,67],BE:[],BEING:42,BUT:[34,39,59,66],BUt:66,Be:[5,22,41,48,49,53,54],Being:[7,39],But:[2,4,5,6,10,12,13,14,17,21,22,23,24,28,30,32,33,34,36,37,38,39,40,42,44,46,47,48,49,50,51,54,57,59,60,62,63,66,67,74],By:[8,13,32,33,34,37,39,41,47,50,51,53,58,63,66],FOR:51,For:[5,8,10,11,12,13,14,17,21,22,23,25,27,28,29,30,32,33,34,36,39,40,41,43,44,46,47,48,49,50,51,52,53,54,57,59,60,62,63,66,67],IF:[],IN:25,IT:[],If:[2,5,6,8,9,10,11,12,19,22,23,24,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,44,46,47,48,49,50,51,52,53,54,57,58,59,60,63,66,67],In:[4,5,8,9,10,11,12,13,14,17,22,23,24,25,26,27,28,29,30,32,33,34,36,37,38,39,40,41,42,43,44,46,47,48,50,51,52,53,54,57,59,62,63,66,67,68,69,74],Is:[28,40,41,46,47,50,51,53,67],It:[2,6,12,13,17,19,21,23,24,28,29,30,32,33,34,36,39,40,41,42,43,44,46,53,58,59,63,64,66,68,69],Its:59,NO:[],NOT:[4,9,23,34,36,47,50,51],No:[9,17,57,60,62,65,71],Not:[13,14,39,66],ON:[],ONE:[],Of:[6,11,13],On:[32,33,57,63],One:[2,5,8,10,14,22,27,28,29,30,31,37,39,41,42,44,46,47,48,50,51,52,53,54,59,66],Ones:[],Or:[5,6,11,13,14,17,39,41,53,54],Such:[],THAT:[25,63],THE:[17,22,25,46],TO:[22,46,51],That:[2,4,5,12,13,17,19,21,22,24,27,30,32,33,34,36,40,46,50,51,59,62,63,64,66,67,74],The:[2,4,5,6,8,9,13,14,15,17,19,21,22,23,24,26,27,28,30,31,32,33,34,35,39,40,41,42,45,46,47,48,50,51,52,53,54,57,58,59,62,63,64,66,69,71],Then:[5,10,17,19,22,23,24,25,27,32,33,35,37,38,39,40,41,46,47,50,52,53,63,64,66,67],There:[2,5,10,11,14,19,22,23,24,27,28,30,32,33,46,48,49,51,54,57,59,60,62,66,67,74],These:[4,10,11,13,17,22,28,30,33,41,48,49,51,53,54,63],To:[5,8,11,13,14,17,23,24,26,27,28,30,32,33,34,35,36,37,38,39,40,41,43,46,47,48,49,50,51,52,53,54,57,63,64,66,68,69],WILL:25,WITH:[],Will:66,With:[2,6,27,28,34,40,47,48,49,50,54,59,62,66],_:8,__:[],_________:30,__dask_postcompute__:[],__exit__:17,__init__:27,__main__:31,__mul__:17,__name__:31,__nonzero__:[],__setitem__:[],__traceback__:66,_arith_method:17,_compile_for_arg:66,_construct_result:17,_core:[],_engin:[],_ensure_numer:10,_episodes_rmd:[],_evalu:17,_evaluate_standard:17,_event_pip:66,_frame:17,_gather:[],_generatorcontextmanag:17,_get_binary_oper:17,_growth:[48,49,54],_has_valid_setitem_index:[],_head:[],_is_broadcast:17,_is_master_process:66,_lib:[],_locationindex:[],_lsprof:66,_masked_arith_op:17,_matrix:[],_mean:40,_merg:39,_meta:17,_na_arithmetic_op:17,_name:17,_of:40,_rate:[48,49,54],_schedule_flush:66,_set_item_frame_valu:34,_setitem_with_index:[],_store_test_result:17,_sync_cluster_info:19,_thread:66,_total:[],_unbox_scalar:[],_unpack_zerodim_and_def:17,_validate_scalar:[],_valu:[48,49,54],_vector:[],_w_degre:[],_wait_for_tstate_lock:66,_x:[40,43],_y:43,a1:[],a52aba7de6d5:[],a9efa4ff5a9d6612f62c70f567177170:17,a_0:[],a_1:[],a_2:[],a_:[],a_boolean_vector:[],a_fast_funct:66,a_float_vector:[],a_fold:[],a_folder_with_stuff:[],a_medium_funct:66,a_slow_funct:66,a_string_vector:[],aa11_pm300m:[],aaa:8,ab:[],abandon:[],abcdefghiklmnopqrstuwx1:[],abcfghloprstuw:[],abidjan:[],abil:[2,5,6,41,42,46,52,53,57,63],abl:[2,5,6,8,17,23,25,27,32,33,34,39,40,41,46,47,50,51,53,58,59,60,62,63,67,74],abort:33,about:[1,5,6,7,10,12,13,14,21,22,24,25,26,27,28,29,30,32,33,34,36,37,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,56,57,58,59,60,61,62,63,64,66,67,68,69,72,74],abov:[2,5,10,12,13,17,19,25,28,30,33,34,38,39,40,41,42,44,45,47,48,49,50,51,53,54,60,63,66],absent:39,absolut:[5,6,17,22,25,39,50],abstractli:[],abu:[],abus:[],ac:[13,14,25,30,40,41,45,53],academ:[2,57],acceler:[],accelerationord:[],accent:11,accept:[8,11,17,28,29,39,66],access:[8,11,17,26,32,42,48,49,51,54,57,59,62,63,66,67,74],accessor:28,accid:[],accident:[10,67],acclaim:[],accommod:[],accomplish:[13,39,47,48,49,50,51,54],accord:39,accordingli:[],account:[19,26,33,40,47,50,51,57,59],account_kei:[],account_nam:26,accra:[],accru:[41,46,53],accumul:[17,30,66],accur:[13,27,30,39,40,44],accuraci:[24,47,50],accustom:[21,48,54],achiev:[2,35,46,66],acm:[],acquir:[2,66],across:[5,6,11,17,22,24,28,29,39,40,41,46,47,48,49,50,53,54,63,66,74],act:[2,25],action:[23,36,63],action_ind:17,activ:[2,5,24,32,33,37,38,62,63,66],actor:[],actual:[4,5,6,13,14,17,19,21,22,23,24,25,26,27,28,29,30,33,34,39,40,41,42,43,46,47,48,49,50,51,53,54,57,58,59,60,62,63,64,66,67,68,69,74],acut:74,acw00011604:[],ad:[15,26,28,32,33,35,36,39,49,51,54,57,66,67,69,74],adapt:[48,49,54],add:[6,8,23,27,28,30,32,33,34,36,39,43,44,46,52,57,59,66,67,74],add_categori:[],add_select:[],add_up_entri:[],addict:6,adding_tot:66,addit:[2,6,8,13,14,17,24,27,28,29,33,41,53,57,60,62,63,66,67],addition:28,addr:19,address:[17,22,23,32,33,39,40,51,67],adequ:2,adf:[],adj:65,adjust:[43,46,51],adjusted_incom:[],adlf:[],admin:19,administr:51,admit:[6,38],admittedli:[],adob:22,adopt:[],adult:13,advanc:[2,8,9,20,39,45,58,60,66,67,71],advantag:[13,14,22,23,29,40,48,49,51,54,59,67,72],advic:[2,3,42],advis:[41,53],advoc:[48,49,54],ae:[],aesthet:[],af:19,affect:[5,30,33,47,50],affili:17,afford:62,affort:62,afghanistan:[],afraid:[26,64],africa:[10,11,12,14,44,48,49,54],african:[],after:[2,5,7,8,11,12,17,19,23,24,30,33,35,39,41,46,47,48,49,50,51,53,54,67],after_tax:[],afterward:[],ag:[4,13,25,30,40,47,50,59],again:[17,24,25,26,28,31,32,34,35,36,38,42,47,50,51,52,57,63,74],against:[4,8,12,25,27,30,32,34,39,40,41,46,47,48,50,51,53,54],age_group:[],age_squar:59,agenc:[2,23,30],agent:17,agesquar:59,agg:17,aggdata:[],aggreg:[28,34,46],aggress:[],agnost:[],ago:[14,51,57],agre:[17,47,50],agricultur:[],ah:[],ahead:[13,17,27,29,30,48,49,54],ahv:28,ai:[],aic:[51,65],aid:39,aim:2,air:6,airlin:[],airport:28,aka:60,alabama:[],alameda:34,alaska:[],albania:44,albeit:[],albertson:[],aldi:[],alert:[],algebra:[27,63],algeria:44,algorithm:[13,47,50,60,63],ali:[],alia:8,align:[],align_method_seri:17,aliv:[],all:[2,3,5,6,8,10,11,12,13,14,17,19,22,23,24,25,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,44,46,47,48,49,50,51,52,53,54,57,58,59,62,63,66,67,68,69,72,74],all_piec:8,all_prescript:17,all_rows_w_even_a:64,all_year:[],alleg:[],alloc:[5,41,53],allow:[2,4,5,8,10,17,22,25,27,28,30,33,34,38,39,40,41,44,46,48,50,51,53,54,57,59,60,63,64,66,67],almost:[2,5,10,27,30,39,42,52,57,59,60,63,67,69],alon:[12,17],along:[2,24,33,37,38,66,69],alongsid:[],alpha:[],alphabet:[34,48,54],alpin:[],alreadi:[12,13,17,22,24,26,27,32,33,37,38,47,48,49,50,51,54,59,66,67],also:[2,4,5,6,8,10,11,12,13,14,15,17,19,22,23,24,25,27,28,30,32,33,34,35,36,37,38,39,40,41,42,44,46,47,48,49,50,51,52,53,54,57,59,60,62,63,64,66,67,68,69,74],alt:43,altair:[9,34,43,44,46,51],altair_data_serv:[],altair_figur:[],altair_sav:[],altern:[2,28,33],although:[41,53,59],altitud:[],altogeth:8,alwai:[2,5,6,10,11,12,14,17,21,22,23,26,32,33,36,39,42,44,46,57,60,63,64,66,69],alwg:[],alwi:[],alzheim:[],am:[3,9,33,34,60],amador:[],amaz:[5,13,19,32,33,57,59,67],amazingli:31,amazon:3,ambient:[],ambigu:[],amc:[],america:[10,11,12,14,44],american:[13,14,25,30,40,41,47,50,51,53],amlclust:26,amman:[],among:[29,59,60,63],amoung:25,amount:[2,5,30,35,39,41,49,53,59,66,67],amp:[10,11,12,14,44],ampersand:11,an:[2,4,5,8,10,11,12,13,14,17,19,21,22,24,25,26,27,28,30,31,32,33,34,36,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,57,58,59,60,62,64,66,67,69,72],an_integer_vector:[],anaconda3:[],anaconda:13,analog:[22,32,41,50,53,63,64],analogu:51,analys:[5,13,47,50,51,59],analysi:[1,5,10,17,24,25,30,32,33,34,37,38,40,44,46,47,48,49,50,51,54,57,58,59,60,66,69],analysis:59,analyst:[],analyt:[],analyz:[2,13,22,23,34,39,41,44,51,53,58,66],analyze_health:37,analyze_health_and_incom:[37,38],anchor:63,ancillari:[],anderson:62,andr:[],anesthesia:57,anew:[],angel:[],angl:[],angleunit:[],anglic:11,angola:44,ani:[4,5,6,8,10,11,14,17,19,22,24,25,26,27,28,30,32,33,34,39,40,41,43,45,46,47,48,49,50,51,53,54,57,58,59,60,63,66,67,72],anim:52,animals_in_my_zoo:52,ankara:[],annoi:[],annot:[],announc:33,annual:[],anomyli:[],anoth:[2,6,11,17,19,22,23,27,28,33,39,42,43,45,47,50,51,57,59,63,66,67],answer:[2,4,7,10,14,17,21,25,26,30,31,34,36,39,40,41,42,44,46,48,50,51,52,53,54,57,63,67],antarctica:[],anti:[28,29],anticip:27,antigua:[],anymor:[5,17],anyon:[2,4,13,25,30,32,33,40,50,57,59,69],anyth:[17,22,27,28,32,33,34,35,39,42,44,46,47,49,50,59,60,67],anytim:[],anywai:[11,28],anywher:62,aoa:3,ap:31,apach:[5,17,64],apex:[],api:[17,27,28,44,47,50,59,60,65],apolog:[41,53],app:60,appar:66,appeal:[],appear:[10,13,14,19,26,31,32,33,34,37,38,41,51,53,54],append:[8,17,21,28,52,63,64,66],append_42:[],appendectomi:57,appl:6,apple_selector:[],appli:[2,5,8,9,17,19,22,24,27,28,33,41,44,48,49,53,54,57,58,59,63,66,67],applic:[2,3,5,13,27,42,47,49,50,59],appreci:[41,53],approach:[2,27,32,46,57,60],appropri:[25,34,38,47,50,62],approv:[17,60],approxim:63,aquarium:[],aqyrgykooc:64,ar:[2,4,5,6,7,8,9,10,11,12,13,14,17,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,56,57,58,59,60,61,63,64,66,67,69,72,74],arab:44,arabia:44,arang:67,arb:[],arbitrari:[17,67],arbitrarili:[],arcgi:59,archeolog:[],archer:[],architectur:[63,74],archiv:57,arco:[17,26],arcos_:26,arcos_all_washpost_2006_2012:17,area:[28,48,49,54,59,62,63,68],area_impact:[],aren:[4,5,10,13,17,24,27,28,30,31,33,34,36,40,42,44,51,52,59,60,62,63,66],arg:[17,66],argentina:44,args2:17,argtyp:66,argu:[6,39,48,49,54],arguabl:39,argument:[8,11,14,17,27,28,34,35,39,40,51,60,63,66,68],aris:[],arithmet:28,arithmetic_op:17,arkansa:[],arm:31,armchair:[],armenia:44,around:[6,15,17,19,22,23,24,28,29,38,43,47,50,57,59,60,63,66,67,74],arr:[],arrai:[5,8,9,10,12,15,17,27,34,36,42,47,48,49,50,51,53,54,59,65,67],arrang:[],array_op:17,arraylik:17,arrest:51,arreste:34,arrests_2009:[],arrests_2018:[],arrests_collaps:[],arriv:[6,13,35,36,62,74],arrival_ord:[35,36],arrival_pr:[35,36],arrow:[38,52],arrwjcypco:64,art:2,articul:[],artifact:[],artist:53,as_:[],as_a_float:[],as_index:34,asarrai:65,ascend:54,ascii:22,ascii_uppercas:[35,64],ashgabat:[],asia:[],asian:[47,50,51],asid:[],asizeof:[],ask:[2,4,13,17,19,22,27,28,29,31,32,34,38,39,41,46,48,53,54,59,60,62,66,67,69,74],aspect:63,aspir:[46,48,49,54],assert:[25,30,34,39,40,41,46,48,50,51,53,54],assertionerror:34,assess:34,asset:59,assign:[2,4,17,21,25,26,30,34,39,40,41,45,46,48,50,51,52,53,54,63,66],assist:[2,60],asso:[],associ:[5,11,27,35,36,46,51,62,67],assum:[2,11,22,23,25,27,28,39,47,48,49,50,54,57,62,65,67],assume_miss:28,assumpt:[23,39,69],assur:64,asterick:[],asterisk:25,asterix:28,astound:[],astyp:[10,59],astype_nansaf:[],asynchron:[],asyncio:19,atg:[],atheist:[],atol:[],atom:[32,33],attach:[],attain:[25,30],attempt:[8,25,47,50,51,63],attend:[],attende:[35,36],attent:[40,51,62],attornei:[34,39],attribut:[27,28],aug:9,augment:[9,38],australia:[],austria:[],autauga:[],auth:[],authent:26,author:[17,28,57],auto:33,autocrat:44,autograd:[41,42,53],autom:5,automat:[5,8,22,35,48,51,54,64],autonomi:2,avail:[2,11,14,17,19,33,38,40,41,47,50,51,53,57,59,60,62,63],availbl:[],averag:[5,10,13,24,25,28,30,34,39,40,42,44,46,48,49,51,54,63,66],average_growth:[],avers:59,avg:[34,66],avg_c:[],avg_growth:[48,49,54],avg_incom:[],avg_numb:66,avg_number_up_to:66,avg_numbers_up_to:66,avoid:[2,5,6,33,35,36,67],aw:[13,19,53,57,59],awai:[5,10,24,32,39,62,66],await:19,awar:[3,4,6,13,14,17,22,34,41,46,51,53,57,63,66],award:[],awri:[],ax:[8,43],axesimag:[],axessubplot:[],axi:[24,39,41,43,48,49,53,54],axis_lin:[],axis_tick:[],az:26,azur:[5,19,26,71],azure_sa_connection_str:[],azure_sa_name_and_kei:[],azure_secret:[],azureml:[],azureml_c6bd17107f471892400d23146f291775:[],azuremlclust:[],azurevmclust:[],b4fc17c18d2b87711188593a28c0412d:17,b65c:17,b:[2,5,8,12,13,17,22,24,31,32,33,34,39,41,48,49,50,53,54,59,60,63,64,66,67,74],b_0:[],b_1:[],b_2:[],babi:51,bachelor:[2,25],back:[2,5,12,13,17,21,22,26,27,28,29,30,32,33,34,38,42,44,46,51,57,59,62,63,66,74],backbon:[],backend:[9,28,29,66],background:[30,47,50,59,72],backslash:11,backup:[],backward:[9,13,34,51],backwat:31,bad:[8,11,13,15,41,53,57,59,66],bad_county_year:[],bad_year:[],bag:28,bahrain:[48,49,54],bai:[],bake:[],balanc:[29,46],balanced_panel:[],baldwin:[],ball:34,baltimor:[],banana:[],bandwidth:2,bank:[2,46,74],bar:[8,9,29,41,53,68],barbara:[],barbour:[],barbuda:[],barcontain:53,bard:60,bare:[],barplot:[],barrier:63,barter:[],base:[3,6,11,12,17,22,31,33,35,36,38,39,43,44,51,59,60],base_famili:[],basegeogcr:[],baselin:[47,50],bash:[7,22,32],bash_profil:[],bashrc:[],basi:[2,58],basic:[5,9,11,17,19,20,29,32,33,37,38,46,47,50,51,59,60,62,63,66,67,71],bass:2,bat:13,batch:[],batteri:[],battl:39,baz:8,bazaar:15,bb:[],bbb:8,bbox:[],bcafrn3aap8:3,bcoil:19,bear:[6,27,52],bearer:67,beat:[17,59,63],beauti:63,beautiful_plot_from_notebook:[],becam:[47,60],becaus:[2,4,5,6,8,10,11,12,13,14,17,19,21,22,24,25,26,28,30,32,33,34,35,36,37,38,39,40,41,42,43,46,47,48,49,50,51,53,54,57,59,60,63,66,67,72,74],becom:[2,17,34,35,46,57,59,60,63,74],been:[2,5,6,13,17,21,22,24,25,31,33,36,38,39,40,41,45,46,47,48,49,50,53,54,59,60,62,63,66,67],befor:[2,4,6,9,11,12,13,22,25,26,27,28,30,32,33,34,36,39,40,41,42,45,46,47,48,50,51,53,54,57,59,60,63,64,66,69,74],beg:[],begin:[2,8,11,13,17,23,24,26,28,29,30,32,33,37,38,39,40,41,42,46,47,48,49,50,51,53,54,60,74],begrudingli:17,behalf:[],behav:66,behavior:[8,14,34,35,36,59],behind:[17,27,33,50,58,59],behold:[47,50],being:[2,6,8,10,11,12,13,17,22,23,24,26,29,30,32,33,34,40,41,43,44,47,50,51,52,53,59,62,63,66,67,69,74],belaru:[],belgium:[48,49,54],belgrad:[],belief:34,believ:[22,44],bell:51,below:[2,5,6,11,13,17,28,29,32,34,35,37,38,41,42,44,46,48,49,51,52,53,54,57,62,63,66,69,72],below_median:[],below_poverti:[],benchmark:[],bend:[],beneath:50,benefici:66,benefit:[5,30,57,59,63,66],benin:[],benito:[],bent:[],bera:65,berin:[],bernardino:[],besid:35,best:[2,3,4,6,17,24,26,32,34,41,43,44,47,50,53,58,59,60,62,63,64,72],bet:66,beta:27,betrai:[],better:[2,5,6,10,13,15,17,24,28,30,39,41,43,44,46,47,50,51,53,59,60,63,69,74],between:[2,5,6,13,15,17,19,22,24,25,28,29,30,33,34,40,41,44,46,48,49,50,51,52,53,54,59,62,63,66,67,74],betwen:30,bewar:4,beyond:[13,50],bezo:[],bhutan:[],bia:[47,50],bias:[],bibb:[],bibl:[],bic:65,bidirect:2,big:[6,9,10,13,17,22,23,29,34,44,46,51,52,57,59,60,63,66,67,71,72],big_arrai:[],big_countri:[],bigger:[2,5,24,51],biggest:[17,39,59,63,66],bill:33,billion:66,bin:[41,53,68],binari:[9,22,33,67],bind:[],binding_rang:[],binwidth:[],biologist:[],biometr:[47,50,51],bird:[],birth:[32,33,47,50],birthweight:[47,50,51],birthyr:[],bissau:[],bit:[5,22,28,29,30,34,59,66,67,74],bite:52,bitei:52,bitstr:16,bivari:[],bizarr:59,black:[4,25,27,34,40,47,48,50,51,52,54,61],black_arrest:[],black_row:[],blank:[8,33],blaze:[66,67],blend:[],blkgrpce:[],blob:[13,14],blob_nam:[],blobclient:[],block:[17,22,24,33,37,42,52,59,66,67],blockwis:17,blog:17,blood:[],blosc:[],blount:[],blow:28,blr:[],blue:[31,37],bmatrix:42,board:23,bodega:[],bodi:[],bol:[],bold:36,bolivia:[],bolt:[],book:51,bool:[8,28,34],bool_vector:[],boot:[],bootcamp:62,border:[],bore:52,born:[47,50,51],borough:23,borrow:51,both:[2,5,11,12,13,14,17,22,24,27,28,30,31,32,33,35,39,40,41,42,44,46,47,50,51,53,57,59,63,66,67],bother:[],bottom:[5,6,8,24,29,37,38,44,47,51,54,62],boulder:[],bound:[],boundari:[51,57],bown:62,box:[27,37,66,68],boxplot:68,bpl:[],bpld:[],brace:[],bracket:[9,23],bradburi:57,brain:[],brainer:17,branch:[9,32,33,57],branch_nam:32,brasil:11,brazil:[10,11,12,14],bread:58,breakdown:[],breakpoint:[],breath:[],breviti:[],bridg:23,brief:[],briefli:22,bright:[],bring:[5,29,33,54,63],british:[],broad:[],broadcast:[9,17],broader:57,broadli:[11,27],broken:[26,63],brook:2,broswer:[],brought:[],brows:[41,53],browser:[22,28,29,32,33],browswer:32,brush:[],bsd:[],btw:[],bucharest:[],buck:[5,6],budapest:[],buddhist:[],budget:6,buffer:[],bug:[31,38],buggi:[19,38],bui:[3,5,74],build:[2,17,32,35,62,63,66,69],builder:[],built:[11,17,47,50,59,64,66,68],builtin:[8,66],bujumbura:[],bulgaria:[48,49,54],bulk:11,bullet:63,bunch:[33,63,67],bureau:[13,25,30,41,53],bureauid:[],buren:[],burn:6,busi:[17,39,60],busy_dai:[],butt:[],butter:58,button:[32,33,38,41,53],buyer_addl_co_info:17,buyer_address1:17,buyer_address2:17,buyer_bus_act:17,buyer_c:17,buyer_counti:17,buyer_dea_no:17,buyer_nam:17,buyer_st:17,buyer_zip:17,bwt:[47,50],bwt_oz:[47,50],bytearrai:[],bytearray_inst:[],bytes_inst:[],bz2:8,c1:[],c2:[],c5ctbfi4:17,c:[8,10,11,12,14,28,30,41,44,47,50,53,59,63,64,65,66,67],ca:[34,51],ca_arrests_2009:39,ca_arrests_2018:[],ca_felonies_2001_2010:[],ca_misdomeaners_2001_2010:[],ca_pop2009:[],ca_pop2017:[],cabl:[],cach:8,cache_d:8,calavera:[],calc_base_wt_in_gm:[17,29],calcualt:[],calcul:[10,13,17,24,25,26,27,29,34,39,40,41,46,48,51,53,54,74],california:[34,39,51],californian:34,call:[2,4,5,8,10,11,13,15,17,19,21,22,23,25,26,27,28,30,31,32,33,34,36,37,38,39,40,41,46,47,48,49,50,51,53,54,57,59,60,63,66,67,69,74],callabl:[8,17],callback_timeout:[],calul:44,came:[17,39],camera:[],campaign:57,campu:62,can:[2,4,5,6,7,8,10,11,12,13,14,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,57,58,59,60,62,63,64,66,67,68,69,74],can_swim:[],canada:[],cancel:[28,41,53],cancellederror:19,cancer:60,candid:17,cannib:[],cannot:[8,17,32,34,60,63,66],canon:[],cap:11,capabl:[59,60,63],cape:[],capit:[11,39,41,53],capita:[11,32,33,39,43,44,46,48,49,54],capitabetween:[],captur:30,car:[],carbon:[],card:26,cardin:[],care:[4,5,10,22,28,39,42,46,47,48,49,50,54,63],career:[2,60],carefulli:[2,4,10,17,30,34,41,53,67],careless:[],carolina:[],carpentri:[],carri:[37,38,39],cart:[],cartesian:[],cartoon:[],carv:[],cash:[6,26],cast:10,casted_kei:[],casual:[],cat:[22,23,47,50],cat_nam:52,categor:[5,9,10,25,47,50,51,59,60,64],categori:[13,25,30,34,40,47,50,51,59,64],categoricaldtyp:[],cathedr:15,cathol:[],caught:[],caus:[4,8,10,13,14,17,19,24,25,33,34,39,46,50,51,66,67],causal:[39,46],cautiou:60,cavali:[47,50],caveat:12,cbook:[],cbpernum:[],cbserial:[],cd:[22,23],cdef:66,cdot:[],ce:[22,23],cea:[],cell:[4,12,17,25,26,29,33,34,42],cellphon:[],censu:[13,25,30,40,41,53],census:25,cent:19,center:33,center_most_c:[],centermost_c:[],centigrad:[],central:[17,57,59,63],centric:[],centroid:[],ceo:[],cerebellum:[],certain:[4,8,10,12,14,33,34,39,66],certainli:[2,27,46,57],certif:[2,30],certifi:3,chain:42,challeng:[2,17,24,30,52],chanc:[2,33],chang:[2,5,11,12,22,24,25,33,34,36,38,39,41,42,43,46,50,51,52,53,57,58,59,60,63,67,69],change_contrast:[],change_from_09_to_18_in_high_drug_arrest_counti:[],change_from_09_to_18_in_low_drug_arrest_counti:[],change_in_drug_2018_2009:[],change_in_violent_2018_2009:[],channel:[],chao:17,chapter:[9,51,62],charact:[8,11,24,25],character:51,characterist:[14,51],charg:13,charl:[],chart:[38,43,44,68],chatgpt:9,chdir:17,cheap:[],cheaper:6,cheat:[24,27,47,49],cheatsheet:[7,17,57],check:[10,13,17,22,24,25,26,29,30,32,33,34,39,40,41,42,43,44,46,47,48,50,51,52,53,54,59,60,63,66,67,68,74],checklist:[],checkout:32,chevel:[],chevroelt:[],chickasaw:[],chide:[],child:[47,50,51],childhood:[],children:[13,14,30,40,47,50,51],childrenki:[],chile:[],china:[],chines:[],chip:[6,63],chl:[],choic:[27,35,47,50,59,64],choos:[37,38,47,50,59],choropleth:[],chose:[],chosen:17,chpt:9,chrome:22,chunk:[5,8,17,24,29],chunksiz:[5,8,17],ci:[],ci_high:[],ci_low:[],ciat:[],circl:[12,59],circular:[],circumst:12,cite:[41,53],citi:[22,23,24,28],cities_reproject:[],cities_w_counti:[],citizen:[11,22],city_buff:[],city_nam:[],citypop:[],civil:39,civiliansk:[],claim:15,clara:[],clarifi:69,clariti:[],class_2:[],class_3:[],classif:[47,50],classifi:[47,50],classroom:[2,58,62],classwkr:[],classwkrd:[],clean:[2,9,13,14,41,46,51,53,58,59,71],cleanest:[41,53],cleanli:[10,11,13,58],cleanup:[],clear:[2,10,13,25,39,40,44,47,50,51,60,62,63,66,74],clearer:[],clearli:[4,13,44,60],clever:[],cleverli:28,cli:71,click:[22,26,28,29,32,33,37,38,41,53,69],client:[17,19,28,29],climat:24,climatedata:[],climatolog:24,clinic:60,clock:26,clone:[32,33],close:[6,11,17,19,23,24,26,27,38,39,41,42,53,63,74],closer:[4,63],closest:[],cloth:[],cloud:[4,5,6,9,28,29,34,46,51,57,59,60,63,71],cloudprovid:[],clumsi:13,clunki:[],cluster:[5,9,13,17,26,63,71],clutter:[],cmap:[],cmd:[],cmder:32,co2:[],co:57,coauthorship:2,code:[4,5,6,9,10,11,13,15,17,19,21,22,24,25,26,28,29,30,32,33,34,35,36,37,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,57,58,60,63,64,67,74],codebook:39,codec:8,coef:65,coef_:[47,50],coeffic:[27,44],coeffici:[27,41,46,47,50,51,53],coerc:[],coerce_dtyp:[],coercion:[],coffe:[],coher:[],cohort:[],coil:17,col1:34,col2:[],col:[],col_index:12,col_nam:[],cold:[],collabor:[32,33,57,58,59],collaps:[5,17,34,39],colleagu:[31,57,58,59],collect:[2,15,17,28,41,51,52,53,66,67],colleg:[2,25,30],college_degre:[25,65],colloqui:[],colombia:[],colon:22,color:[9,33,73],colorado:[],colour:[],column:[5,7,8,10,12,17,23,24,25,26,27,28,29,30,32,34,35,36,38,39,42,43,46,47,50,51,59,64,65],column_a:[],colusa:[],com:[3,11,12,13,14,16,17,32,41,43,44,53,58,66,73],combin:[5,8,9,24,25,27,28,33,36,46],combined_labeler_nam:17,come:[5,6,11,13,17,22,24,28,29,30,32,33,34,39,41,46,47,48,49,50,52,53,54,57,58,59,60,62,63,64,66,67,68,69,74],comedi:[],comer:17,comfort:[28,39,47,50,57,59,60],comm:[17,19],comma:[8,22,24,43],command:[4,5,6,9,17,19,20,21,30,31,32,33,34,37,38,40,46,57,58,59,67,71],command_lin:[],commandlin:[],commandnam:[],commandtolaunchyoureditor:32,commensur:2,comment:[4,8,25,32,34,39,46,51,57,59,69],commerc:[],commit:[2,32,33,34,39,57,69],common:[10,11,13,14,17,28,31,32,33,39,42,44,47,50,51,53,69],commonli:[13,22,30,41,53,57,66,69],commun:[2,10,13,14,23,25,28,29,30,39,41,43,45,51,53,57,59],compani:[5,6,17,19,23,29,32,47,50,57,60],compar:[17,24,30,31,33,34,38,41,42,46,51,53,63,64,66,67],comparison:[17,33,39,47,49,50],compartment:[],compat:[13,22,66],compel:2,compens:2,compet:74,competit:[],competitor:[],compil:[17,60,66,67],complain:[13,59],complaint:[22,23],complement:28,complet:[2,4,8,12,17,25,30,32,33,34,37,38,39,40,41,42,46,48,50,51,52,53,54,60,62,63,67],complex:[6,10,17,44,59,60],complic:[22,59,63],compliment:59,complimentari:[],compon:[2,6,47,50,63],compos:[],composit:46,compound:[48,49,54],comprehens:51,compress:[5,8,17,29,33,46,64],compromis:[4,59],comput:[2,3,4,9,10,13,22,24,26,29,32,33,42,47,50,57,58,59,60,64,66,67,71,74],computation:6,computerphil:16,con:59,concat:[8,64],concaten:[8,9,23,46,67],concept:[9,17,62,71],conceptu:[2,17],concern:[2,47,49,50],concert:5,concis:66,conclud:[39,43,44],conclus:[44,51,57,60],concord:[],concret:[],cond:65,conda:[0,17,19,28,37,38,41,53,58,63,64],condabin:[],condit:[3,12,63,66],conduct:[13,25,30,39],conf_int:[],confess:37,confid:[47,50,60],config:32,configur:9,confirm:[10,23,51],conflat:40,conflic:57,conflict:57,conflicted_fil:33,confound:[],confus:[36,63],confusingli:[36,63],congo:[],congrat:[],congratul:[22,30,33,41,47,50,53,60],connect:[2,8,17,19,24,26,28,29,32,45,59,73],connect_timeout:19,connection_str:[],connector:19,connot:13,consecut:8,consequ:[44,62],conserv:[],consid:[2,3,5,8,12,13,15,17,33,34,35,47,50,51,52,59,63,66,67],consider:[],consist:[2,13,27,39,47,50,59,63],consol:[32,37,38,72],consolid:2,constain:24,constant:[8,12,27,32,33,40,46,63],constantli:[],constitu:[],constitut:[34,47,50,60],constrain:[],constraint:[3,66],construct:[2,40,69],constructor:[],construt:[],consult:[],consum:[47,50],contact:[41,53],contain:[8,11,13,21,22,23,24,28,33,41,43,46,52,53],container_nam:[],contect:[],content:[22,23,30,31,33,38,67],content_as_text:[],context:[5,8,9,41,47,50,53,60,63,74],contextlib:17,contextu:[],contin:[],continu:[4,9,11,13,23,33,35,38,47,48,49,50,51,54],contour:[],contra:[],contract:[],contrast:[2,13,17,22,33,47,48,49,50,54],contribut:[2,32,39,57],contributor:[],contriv:[],control:[8,22,57,74],conveni:51,convent:5,converg:[48,49,51,54,72],convers:[8,49,57],convert:[5,8,10,11,24,25,27,35,40,47,50,62,66,67],convert_feet_and_inches_to_inch:[],convex:[],convex_hul:[],convolut:[],cool:[13,28,29,51],coolest:[],coordin:23,copi:[5,9,12,32,34,39,41,42,53,57,63,67,71],copilot:60,copy_on_writ:39,copyright:[],cord:[],core:[6,10,17,19,28,29,32,34,59,63,66,74],corner:[47,50,60],cornflowerblu:[],corpor:[],corport:[],corr:44,correct:[10,13,27,33,34,39,40,42,49,52,54,60],corrected_arrest:[],correction_no:17,correctli:[39,60,65],correctly_signed_and_squar:[],correl:[33,39,43,44,46,47,50,51],correspond:[8,30],corrupt:[39,63],cost:[2,5,6,24,26,59,63],costa:[],cote:[],coton:[],could:[2,8,10,11,12,13,14,17,33,39,41,45,47,50,52,53,66,67,74],couldn:[10,25,63],count:[4,13,14,23,24,25,28,30,34,39,40,41,42,44,48,49,50,51,53,54],counter:22,counti:[17,26,29,34,39,51],countri:[10,11,12,13,14,24,32,41,43,44,46,48,49,53,54],country_centroid:[],countyfip:[],countyfp:[],countyicp:[],coup:[11,12],coupl:[2,5,26,30,39,45,57,62,66],cours:[6,11,13,17,27,30,41,44,47,50,51,53,58,60,62,69,72,74],coursera:62,coursework:62,covari:[27,65],cover:[2,5,11,19,28,62,72],coverag:66,coverg:[48,49,54],cow:9,cp:[],cpi99:[],cpu:[17,19,26,28,63],cpu_count:[17,63],cpython:66,cr:[],craft:[],cram:[],crash:[5,17,28],crazi:[33,59],creat:[4,5,17,19,21,23,25,26,27,28,29,30,32,35,36,37,39,41,43,44,47,48,49,50,51,52,53,54,57,58,59,60,62,63],creater:17,creation:33,creator:59,creatur:[],credenti:[2,19],credibl:2,credit:26,credit_a:53,credit_b:53,credit_cutoff_:53,credit_cutoff_d:53,crime:[34,51],crimin:39,criteria:[],critic:[6,12,32,39,60],crn:24,croatia:[],crop:[13,33],cross:[23,25,47,50,54],crosstab:25,crowd:[],crs_dep_tim:28,crselapsedtim:28,crucial:[47,50,57,62],crude:49,crunch:19,crush:[2,59],cruz:[],cry:28,cryptic:[],crystal:[],cs:2,csv:[5,8,10,11,12,14,17,22,23,24,26,28,32,34,38,39,43,44,47,50,51,64],ct:[],cub:[],cuba:[],cudf:17,culpa:[],cumberland:[],cumbersom:[],cumtim:66,cumul:[48,49,54],cup:[],curat:7,cure:39,curiou:17,curli:[],currenc:49,current:[8,10,22,23,25,30,33,37,38,40,48,49,54,59,60,63,67],cursor:37,curt:[],curv:49,custom:[59,61,73],cut:39,cutoff:[],cutoff_a:53,cutoff_b:53,cyber:[],cycl:[32,33],cyclecloud:[],cylind:[],cynthia:2,cyp:[],cypru:[],cython_avg_numbers_up_to:66,cython_w_overflow_avg_numbers_up_to:66,d010:[41,53],d3:[],d5a6d15d0b1463d80fbfbb777dc826f7:17,d6ab8c8f87e7:66,d7f6:17,d:[6,11,13,14,17,23,24,27,28,33,39,41,46,47,50,51,53,62,63,67,74],da:[],dai:[6,7,9,13,22,23,24,27,28,30,37,38,39,51,57,58,63,66,74],daili:[2,24,60],dakota:[],danger:39,dare:[],dark:[],darker:[],darn:[],dash:46,dashboard:[17,19,26,28,29],dashboard_link:19,dask:[5,7,9,26,63,71],dask_cloudprovid:[],dask_temp:[],dat:24,data:[1,2,4,7,8,9,12,17,19,21,22,23,26,27,32,33,35,36,38,40,42,43,44,45,46,48,49,51,54,57,58,62,63,64,65,66,67,68,71],data_in_all_year:[],data_on_own_comp:[],data_serv:[],data_transform:[],databas:[5,29],datacamp:[9,22,62],dataconversionwarn:50,datafram:[8,9,10,12,14,17,29,30,34,35,36,38,39,43,47,50,51,63,64,65,70,71],dataframe_typ:17,dataframegroupbi:[],dataframeiolay:17,dataframetreereduct:17,datanum:[],dataset:[4,5,6,9,10,11,12,13,14,17,19,24,25,26,28,29,30,34,35,39,41,42,43,44,45,46,47,48,49,50,51,53,54,57,58,59,62,63,64,66,74],datatyp:[5,14,28,66],date:[8,9,17,23,28,33,61,65],date_:[],date_pars:8,datetim:[8,28],datetime64:28,dateutil:8,datum:[],dayfirst:8,dbf:[],dbl:[],dcxo:54,dd:[8,17,26,28],ddd:8,ddf:[],de:66,dea:29,deactiv:[],dead:63,deadlin:[],deal:[3,5,6,10,14,25,39,57,59],dealer:39,dealership:[],dealt:24,debat:[],debt:[13,41,53],debug:[9,24,47,50,66],debugg:[9,61,73],debugging_in_vscod:[],dec:9,decad:[6,7,24,39,59],decemb:[],decept:[47,50],decid:[2,6,17,27,32,33,39,41,53,66,67],decim:[8,41,42,50,53],decis:[30,47,50],declar:[66,67],declin:[48,49,51,54],decompos:[],decompress:[5,8,17,22,24,64],decor:66,decreas:[25,39,41,51,53],dedic:66,deduc:66,deem:[],deep:[6,52,62],deeper:59,deepli:[2,40],def:[17,27,54,63,66],defens:[9,58],defer:[],defi:44,defin:[2,8,9,27,32,33,42,48,49,51,54,66],definit:[2,6,13,30,40,41,44,46,53,57,59,62,66,74],deg:[],degfield2:[],degfield2d:[],degfield:[],degfieldd:[],degre:[6,25,30,34,48,49,54,56,63],degredation_over_tim:[],del:5,delai:[17,28,63],delet:[5,17,22,23,28,33,57],deli:[],deliber:[4,14,34,46,51],delim_whitespac:8,delimit:[8,17,43],deliv:[19,67],deliver:[],deliveri:[],dell:6,delnort:[],demand:46,demean:46,demo:[],democraci:11,democrat:44,demograph:51,demonstr:[2,17,66],demystifi:74,denot:[8,14,30,40],densiti:68,dep:[9,65],depart:59,departure_timestamp:28,depdelai:28,depend:[2,8,10,17,41,44,46,49,53,59,60,63,72],depict:[],deploi:19,deploy:[],depot:[],deprec:8,depreci:[],depth:[],dequ:66,derefer:67,dereferenc:67,deriv:[27,39],descend:31,describ:[5,13,47,50,51,54],descript:22,descriptor:23,design:[2,5,9,17,24,31,44,50,57,58,59,60,62,63,66,67],designmatrix:65,desir:[12,46],desktop:[5,6,22,23,63,64],despit:[60,74],destin:[],detail:[8,13,17,19,26,27,28,29,32,33,44,69,72],detect:[8,13,34,43],determin:[2,4,25,30,34,39,40,41,46,48,49,50,51,53,54,67],determinist:50,detriment:60,deutschland:11,dev:[43,66,67],develo:32,develop:[2,4,17,27,28,32,44,46,48,49,51,54,57,59,60,62,63,66,73],deviat:[28,43,44],devicelogin:[],devot:2,df1:[28,39],df1_var:39,df1f62c87a9d21a7c2e1959a33e7735a:17,df2:[28,39,64],df2_correct:39,df2_var:39,df:[8,10,12,17,26,28,34,43,46,59,64,65,68],df_new:[],dhabi:[],di:17,diagnos:39,diagnost:[9,47,50],diagon:27,diagram:[],dialect:8,diamet:[],dict:[8,41,53,54],dict_kei:[],dictat:[63,66],dictionari:[4,11,15,25,30,34,39,40,41,46,48,50,51,52,53,54],dicuss:59,did:[2,12,17,21,26,28,29,31,33,34,36,38,39,42,44,46,47,50,52,57,60,64],didn:[2,4,9,10,13,14,21,26,32,33,36,39,47,50,57,59,60,67],diego:[],dif_in_dif:[],diff:33,diffcar:[],differ:[2,5,6,7,8,9,10,11,13,17,19,21,22,25,26,30,32,33,34,36,37,40,41,43,44,45,46,47,48,49,50,51,52,53,54,57,59,60,62,63,66,67,74],differenti:[2,22,43,47,50],diffey:[],diffhear:[],difficult:[27,39,41,44,53,57],difficulti:[],diffmob:[],diffphi:[],diffrem:[],diffsen:[],dig:[47,50],digit:31,digitalocean:19,dignost:47,digress:74,dimens:12,dimension:8,dinosaur:52,dinosaur_nam:52,diploma:30,direct:[2,4,6,17,19,22,23,26,32,37,38,44],directli:[2,4,8,10,11,12,13,17,19,24,28,30,33,37,39,41,46,53,57,64,66,68,74],directori:[17,22,23,24,33,39],dirt:[],dirti:67,disabl:66,disable_max_row:[],disappear:5,disappoint:[],disast:[],disciplin:[39,50,63],disclosur:3,disconnect:[],discount:6,discov:[2,10,23,30,47,50,57,60],discret:[9,13,30,41,48,49,53,54,57],discuss:[2,5,6,11,12,13,17,22,28,32,34,35,40,43,44,48,49,52,54,57,59,62,63,64,67,69,72],diseas:39,disgust:[],disk:[8,23,28],dispatch:66,dispers:[],displac:[],displai:[38,43],disproportion:[],dissatisfi:2,dissert:2,dissolv:[],distanc:31,distance_col:[],distant:[],distibut:[],distinct:[2,11,17,22,40,52,63],distinguish:[],distort:[],distribut:[9,13,19,27,28,29,30,39,40,41,46,47,48,49,50,53,54,57,64,66,67,71],distutil:66,dive:[2,12,46,57,59,63],diverg:33,divers:[],divert:33,divid:[2,12,17,23,33,39,41,49,53],divis:[2,17,51],divvi:[],djibouti:[],dl:17,dmatric:[47,50,65],doc:[8,11,12,22,47,51,66],docker:[],docstr:8,doctest:8,doctor:[5,50],documen:13,document:[2,8,10,12,13,22,23,30,33,38,47,50,51,52,57,58,66,68],docx:22,doe:[4,5,6,7,10,14,17,22,24,25,28,29,30,33,34,35,38,39,40,41,42,43,44,46,47,48,49,50,51,53,54,57,59,63,66,67],doesn:[2,5,13,14,17,22,24,27,29,30,32,33,34,35,36,38,39,40,42,44,46,48,49,50,51,54,57,59,63,64,66,67,74],dog:[47,50],dog_nam:52,dogmat:[],doha:[],doi:[41,53],doj:[],dollar:[5,6,13,33,35,36,40,41,46,49,53],domain:[5,60],domest:49,domin:[59,66],dominican:[],don:[2,4,5,6,10,11,12,13,14,17,19,22,24,26,27,28,29,30,32,33,34,36,37,38,39,41,44,46,47,49,50,51,53,54,57,59,60,62,63,66,69,74],done:[3,5,13,17,22,23,24,28,30,32,33,39,44,45,46,48,49,50,51,54,57,66,67],dont:66,door:6,dorado:[],dos_str:17,dosage_unit:17,dot:38,dotfil:[],doubl:[6,12,22,27,62,63,66,67],double_nonvector:[],double_vector:[],doublequot:8,doubli:[47,50],doubt:[],down:[5,13,24,26,30,31,32,34,38,39,41,42,43,44,46,47,50,52,53,59,60,63,64,66],download:[9,17,22,24,26,28,29,31,33,37,38,39,43,44,46,58],download_blob:[],downsid:59,downstream:[],downward:[],dozen:57,dqcfywcfmx:64,draft:[9,60],drag:37,dramat:[],drastic:[],draw:[44,52],drawn:[],dread:57,drew:[],drift:[],drive:[5,6,17,41,53,74],driven:[41,53,59],driver:22,drobox:57,drone:[],drone_strik:[],drone_strikes_project:[],drop:[2,5,8,14,17,24,28,30,35,36,38,40,41,44,46,53],drop_dupl:28,drop_level:46,dropbox:[17,57,59],dropdown:[26,44],dropna:14,drug:[17,29,34,51,60],drug_arrest_rate_2009:39,drug_arrest_rate_2018:[],drug_cod:17,drug_nam:17,ds11:[],ds_store:[],dsk:[],dst:[],dt:17,dta:[13,14,25,30,40,59,64],dtype:[5,8,10,11,13,14,17,28,34,36,39,54,64,67],dtypearg:8,duct:[],due:[9,14,23,28,29,41,47,50,53,60,63],dug:[],duke:[2,6,26,57,58,60,72],dumb:[15,63],dummi:34,dump:[],dunk:[],duplic:[8,28,34,46,63],durat:6,duration_with_copi:[],duration_with_view:[],durbin:65,dure:[2,5,17,19,24,27,40,41,46,47,50,51,53,66],durham:[],dwell:[],dynam:[48,49,54,66,67],e8b1118eea72:[],e:[2,4,5,8,10,11,12,13,14,17,22,24,25,26,28,31,32,33,34,37,38,39,40,41,42,43,44,46,47,48,49,50,51,53,54,57,62,63,66,67,68,74],ea64fhre5:[],each:[2,4,5,8,11,13,17,22,23,24,25,26,27,28,29,30,32,33,34,36,37,39,40,41,43,44,46,47,48,49,50,51,52,53,54,57,62,63,64,66,67,74],earli:[2,51,59,60],earlier:57,earliest:24,earn:[25,30,40,41,48,49,53,54],earner:[41,46,53],earth:57,earthwork:[],eas:[9,47,50],easi:[5,13,17,21,22,28,30,33,34,46,47,50,57,59,60,63,66,67,69],easier:[6,7,11,17,19,22,26,30,32,44,48,49,51,54,57,59,66],easiest:[19,30,35,39,41,53,59],easili:[5,6,11,28,33,39,42,45,47,50,54,57,59,60,64],east:[],eastern:44,eastu:[],ec20074c:[],echo:[],econom:[13,30,48,49,54,59],econometr:59,econometrician:59,economi:[39,49],economist:[48,49,51,54,59],ecosystem:[],ecuador:[],ecur:[],edg:[],edgecolor:[],edit:[9,11,14,32,33,57,72],editor:[37,38,72],edmund:[],edt:9,edu:[41,53],educ:[2,25,56,59,60],educationdummi:59,educd:[],effect:[5,17,22,30,39,41,51,53,58,60],effici:[5,17,23,28,42,57,59,62,63,66],efficiency_data:[],effort:[2,4,39,41,53],eight:[],either:[2,5,6,8,10,13,21,23,24,25,27,28,29,30,32,35,51,63],el:[],elaps:[],elect:[],elector:57,electr:[],element:[8,67],element_blank:[],element_lin:[],elementwis:28,elemwis:17,elev:[],eleven:[],elid:66,elig:[],ell:[],ellipsoid:[],ellp:[],elon:[],els:[2,5,24,25,32,33,46,47,50,66],elsewher:[],elud:57,emac:[],email:[2,58],emb:[],embarass:[],embarassingli:63,embark:2,embed:[],embodi:[],embrac:[48,49,54],emerg:[22,60],emir:44,emiss:[],emoji:[],emp_rat:13,emphas:[5,17,36,51,69],emphasi:[47,50],empir:60,emploi:[13,14,30,40],employ:[13,14,30],employe:30,empow:32,empstat:[13,14,30,40],empstatd:[],empti:[5,8,32,42],emul:[],en:[],enabl:8,enact:[41,53],encod:[8,13,22],encoding_error:8,encount:[2,8,14,31,34,50,63,66,72],encourag:[4,5,62],end:[2,6,8,11,12,15,17,21,22,23,24,28,31,32,38,39,42,46,52,53,58,61,63,66,67],endeavor:62,endless:14,endors:[],endpoint:[],enemi:[],energi:57,enforc:28,engag:[2,60,69],engin:[8,51,64,66,67],enhanc:[],enjoi:[6,51],enough:[5,6,17,24,28,40,41,42,53,57,60,67],enrich:62,enrol:2,ensembl:[],ensembleaccuraci:[],ensur:[2,4,8,17,24,25,27,30,32,33,34,38,39,40,41,46,47,48,50,51,53,54,66,69],entail:[2,60],enter:[17,22,24,37,38,50],enterpris:17,entir:[8,12,21,28,32,33,34,49,52,57,59,60,62,63,66,67],entireti:[],entiti:[33,46,48,49,54],entri:[5,11,12,13,14,25,34,36,46,48,49,51,54,67,74],enumer:[],env:17,environ:[19,37,58,59,71,73],epidem:29,epoch:[],epsg:[],equal:[12,30,46,51,53,59,66],equalearth:[],equat:[],equatori:44,equit:[],equival:[8,17,29],era:59,eras:5,eric:15,erika:[],eritrea:[],err:[10,60,65],erron:[],error:[4,5,8,10,13,17,19,25,26,27,28,30,31,33,34,39,40,41,42,46,48,50,51,53,54,58,60,65,66,71],error_bad_lin:8,error_rewrit:66,errorband:[],errstat:17,escap:[8,11,25],escapechar:8,esoter:[],especi:[2,5,6,8,27,34,42,46,47,50,53,58,60],esri:[],essai:60,essenc:44,essenti:[46,49,62,74],establish:[2,6,46,47,50],estim:[9,17,27,39,40,41,44,46,47,48,49,50,51,53,54,74],estout:[],etc:[2,4,6,8,10,11,17,22,24,25,28,33,35,36,37,38,41,47,50,53,59,60,64,66,67],ethernet:[],ethic:49,ethnic:[40,47,50,51],eubank:[],europ:[10,11,12,14,44],european:8,evalu:[4,8,28,39,41,42,44,46,51,53,60,67],evalut:[47,50],evang:[],even:[2,4,5,11,12,13,14,17,19,22,32,34,37,38,40,41,46,47,50,51,53,57,63,66,69,74],even_row:64,evenli:[23,41,48,49,53,54],event:2,eventu:[17,28,39],ever:[10,13,22,27,35,42,47,50,59,63,66,67],everi:[2,7,13,23,24,30,33,34,39,41,42,46,47,50,53,57,63,66,67],everyon:[2,17,24,25,33,35,40,41,53,63],everyth:[5,6,10,11,13,22,24,30,32,33,34,46,51,59,60,62,63,66,67,69,74],everywher:19,evid:[10,30,32,39,41,47,50,51,52,53],evidenc:2,evil:[],evolut:[],evolutionari:[],evolv:[43,60,63],ewcskolhuv:64,ex10_demeaned_corr:46,ex10_gini_policy_d:[41,53],ex10_merged_successfulli:39,ex10_num_high_drug_arrest:51,ex10_svr_linear_scor:50,ex10_wage_gap:40,ex11_black_drug_shar:34,ex11_diff_in_diff:51,ex11_gini_policy_:[41,53],ex11_grade12_incom:30,ex11_proportion:[],ex11_share_:[],ex11_share_female_w_degre:25,ex11_share_male_w_degre:25,ex11_white_drug_shar:34,ex12_college_incom:30,ex12_college_income_pct:30,ex12_compar:25,ex12_diff_in_diff_weight:51,ex12_policy_recommend:[41,53],ex12_proportion:34,ex12_recommend:[],ex14_high_school_dropout:30,ex15_4_years_of_colleg:30,ex15_grade_10:30,ex15_grade_11:30,ex15_grade_12:30,ex15_grade_9:30,ex15_gradu:30,ex16_num_ob:39,ex17_drug_chang:39,ex18_violent_chang:39,ex21_diffindiff:39,ex22_diffindiff:[],ex23_diffindiff_proportion:39,ex24_diffindiff_proportion:39,ex2_avg:[],ex2_avg_incom:40,ex2_birth_weight_low:51,ex2_mean:[48,54],ex2_median:[48,54],ex2_num_ob:30,ex2_num_row:46,ex3_avg:[],ex3_highest_gdp_percap:[48,54],ex3_lowest_gdp_percap:[48,54],ex3_num_column:50,ex3_num_var:30,ex3_share_making_9999999:40,ex3_share_making_zero:40,ex3_smoking_coeffici:51,ex4_gini:[41,53],ex4_lessthan20_000:[48,54],ex4_num_row:[34,46],ex4_share_below_poverti:[41,53],ex4_smoking_coeffici:51,ex5_age_old:25,ex5_age_young:[4,25],ex5_avg_incom:40,ex5_collapsed_var:34,ex5_num_countri:46,ex5_switzerland:[48,54],ex6_compare_white_black:51,ex6_compare_white_black_tstat:51,ex6_gini_loop:[48,54],ex6_gini_policy_a:[41,53],ex6_gini_policy_b:[41,53],ex6_gini_which_reduced_mor:[41,53],ex6_merge_typ:39,ex6_model_smok:50,ex6_relationship:46,ex6_validate_keyword:39,ex7_alameda_1980_share_violent_arrestees_black:34,ex7_avg_ag:25,ex7_first_predict:50,ex7_gini_policy_c:[41,53],ex7_gini_vector:[48,54],ex7_predict:51,ex7_relationship:46,ex7_validate_keyword:[],ex8_avg_ag:25,ex8_avg_income_:[],ex8_avg_income_black:40,ex8_avg_income_whit:40,ex8_countries_in_panel:46,ex8_gini_2025:[48,54],ex8_racial_differ:40,ex8_revenue_rais:[41,53],ex8_scor:50,ex8_smoking_coeffici:51,ex8_updated_num_ob:30,ex9_avg_income_:[],ex9_avg_income_black:40,ex9_avg_income_whit:40,ex9_num_colleg:25,ex9_svr_scor:50,ex9_transf:[41,53],ex9_updated_num_ob:30,ex:[8,9],exact:[4,11,17,22,41,46,53,62,67],exactli:[13,17,19,25,27,28,29,32,34,39,43,47,50,51,66,67],exagger:57,exam:2,examin:[24,25,31,34,39,40,44],exampl:[2,5,6,8,10,11,12,13,14,17,21,22,23,25,27,28,31,33,34,35,36,39,40,41,42,43,44,46,47,50,51,53,57,64,67,68,69,74],example_csv:[],example_data:[11,12,14,41,43,44,53],exc:[17,19],exc_info:[],exceed:[],exceedingli:[],excel:[23,48,49,54,62,74],except:[8,10,13,17,19,22,23,33,34,42,52,66,69],exception:[],excercis:24,exchang:[49,69],excit:72,exclud:[40,44],exclus:[25,40],excruci:17,exec:66,execut:[4,17,19,28,29,31,34,36,37,38,46,51,52,58,63,66,67,74],exercis:[4,6,9,11,13,14,26,27,32,33,45,47,58,60,69,71],exercise_:4,exercise_clean:[],exercise_datafram:30,exercise_groupbi:34,exercise_merg:39,exercise_miss:[25,40],exercise_numpy_vector:[41,53],exercise_numpy_viewcopi:[],exercise_reshap:46,exercise_seri:[48,54],exercise_sklearn:[4,50],exercise_statsmodel:51,exhaust:63,exhibit:14,exist:[2,5,8,25,30,32,33,42,51,57,59,60,63],exit:2,expand:[6,24,51,59],expect:[1,4,6,8,11,17,26,27,28,30,31,35,36,39,41,44,46,50,53,57,63],expenditur:[],expens:[2,6,26,51,74],experi:[5,17,32,37,38,51,58,59,62,63],experienc:[12,39],experiment1:[41,53],experiment:[],expert:[],expertis:60,expir:[],explain:[4,27,32,47,50,59,60,62],explan:[],explicit:[28,34,47,50,69],explicitli:[8,26,40,67],explod:[24,33],explor:[13,17,32,33,37,38,39,41,44,48,50,53,54],exploratori:68,explos:[],expon:[],exported_statist:[],expos:[47,50,51],exposit:[],exposur:62,express:[2,8,11,17,34,63],ext_modul:66,extend:12,extens:[2,8,17,41,53,60],extensionarrai:17,extent:[],extern:6,extra:[5,8,17,26,27,47,50,59],extract:[17,28,41,53],extrapol:[48,49,54],extrem:[2,10,30,40,41,53,59,60,63],ey:[30,34,47,50],eyebal:[],f11741173297:17,f3bb5298:[],f485e25f94f5664c192e73df6d42002d:17,f623161a15eb:17,f:[10,13,17,34,53,54,65,66],f_alloth:[],f_drugoff:[],f_drugoff_tot:[],f_sexoff:[],f_total:[],face:[2,33,47,50],facebook:5,facet:[],facet_wrap:[],facetim:2,facil:23,facilit:[17,57],fact:[2,5,10,13,17,22,25,27,34,39,41,44,46,47,50,53,60,64,66,67,74],facto:[],factor:[5,47,50,59,64,67],factori:[],fail:[2,5,14,17,19,24,33,39,66],failur:10,fair:[],fake:35,fall:[9,33,38,39,41,53,58],fallaci:[],fallback:17,fallen:39,fals:[8,10,11,14,16,17,25,28,29,34,42,50,51,60,65],false_valu:8,famili:51,familiar:[2,11,13,22,28,29,31,37,44,59,62],famou:[],famunit:[],fan:[34,46],fanci:[5,27,62],fancier:[],fang:69,far:[5,17,28,31,39,40,48,49,54,59,63,66,72],farenheit:63,farm:[],farthest:[],fast:[6,8,15,24,28,42,59,63,64,66],faster:[5,6,8,17,26,28,35,42,48,49,54,59,63,64,66,67,74],fastest:15,fastparquet:[51,64],fate:[],fault:17,favor:59,favorit:[22,57],fda:60,fdrspgywqk:64,fear:[],feasibl:[],featuer:[],featur:[2,6,8,17,30,33,34,38,47,50,57,59,63,66],februari:22,feder:[],fee:19,feed:[],feedback:4,feel:[2,6,13,24,28,30,34,37,39,41,51,53,57,59,60],feet:[],fell:[],fellow:[2,57],feloni:[34,39],felony_arrest:[],femal:[13,25,65],fend:58,feng:69,few:[2,5,6,11,13,17,22,23,24,28,33,34,37,38,39,41,42,46,47,48,49,50,52,53,54,57,59,63,66],fewer:[4,25,30,34,39,40,41,46,47,48,50,51,53,54,64],fewest:[41,53],fiber:[],fido:52,field:[2,8,10,13,58,59,60],fifo_timeout:[],fifteen:[],fifti:51,fig:[],figsiz:[],figur:[13,17,24,25,28,30,31,34,38,39,43,44,47,50,51,52,57,59,60,63,64,66,67],file:[4,5,8,10,17,19,24,25,26,28,29,30,31,32,33,34,37,39,40,41,43,46,48,50,51,53,54,57,58,59,64,66,69],filenam:[22,28,38,66],filepath:8,filepath_or_buff:8,filepathorbuff:8,files_in_fold:[],filesystem:22,fill:[13,58,74],fill_valu:[],fillna:14,filter:[17,24,25,28,38,64],filterwarn:[],fin:[],final_data:[],final_max:28,financ:57,financi:2,find:[2,5,6,11,13,14,15,17,22,24,25,26,28,29,30,32,33,35,39,41,42,46,47,48,49,50,51,52,53,54,57,58,59,60,66,67,69],finder:32,fine:[13,22,24,27,33,39,41,53],finicki:66,finiki:66,finish:[2,5,6,23,24,29,30,34,63],finland:[],fiona:[],fire:[],firewal:[17,28,29],firm:2,firmli:[],first:[2,5,8,10,11,13,14,17,19,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,47,50,51,52,53,54,58,59,60,62,63,64,66,67,74],first_jupyter_notebook:[37,38],first_matrix:42,first_seri:[],first_subset:[],fish:[],fishi:[],fit:[2,12,17,24,27,44,46,47,50,51,59,60,62,65,72],fit_intercept:50,fitbit:[],five:[13,29,30],fiveyeardata:[],fix:[5,8,10,13,14,23,24,26,31,34,38,39,46,57,63],flag:[14,23,24,33,60],flag_dict:[],flash:6,flat:[],flatten:[],flavor:[],flexibl:[44,59,67],flight:28,flip:[58,62],flipper:[],float16:[],float32:5,float64:[5,8,10,13,17,28,54],float_precis:8,flood:[41,53],floor:[],florida:[],flow:[32,47,50,62,72,74],fluctuat:[],fluffi:52,fly:[8,10],fmri:[],fn:28,fo:44,focu:[1,5,13,17,24,25,30,41,47,50,53,59,60,63,67],focus:[2,58,63],foggiest:10,fold:[],folder:[5,12,17,23,28,32,33,37],foldernam:22,folk:[17,19],follow:[2,3,4,5,8,11,12,14,17,19,21,23,25,26,27,28,30,32,33,34,35,36,37,38,39,40,41,42,48,49,50,51,52,53,54,62,66,67],fond:6,font:[3,22],foo:[8,10],food:[],fool:6,foot:[],footag:[],footbal:[],footprint:[5,24],forbid:[],forc:[8,13,14,30,33,43,60,63],ford:[],foreach:63,foreign:59,forest:[],forev:[],forg:[28,64],forget:[],forgiv:57,forgot:[],forgotten:27,fork:28,form:[6,24,28,31,41,43,44,45,46,48,49,53,54,57,63],formal:[17,24,30,51,63],format:[4,5,8,9,11,13,17,22,23,24,28,30,33,34,42,43,46,48,51,54,57,58,59,64,71],former:10,formul:35,formula:[27,40,44,47,48,49,50,51,54,65],forth:[5,48,49,54,59,63,74],forti:[],fortran:[],fortun:[5,13],forum:[],forward:[8,33,47,51,60],foster:[41,53],found:[8,10,11,13,14,17,19,24,28,30,31,33,39,40,47,50,51,58,59,64],foundat:[44,51,60,64],founder:17,four:[5,27,28,29,34,41,50,53,63,74],fourth:42,fox:[],fpeehrfgka:64,frac:[40,41,48,49,53,54,63],fraction:54,fragil:[17,28],fragment:[47,50],frame:[17,34,62],framework:[51,66],franc:[],franca:[],francisco:[],freakonom:[],free:[19,26,33,37,39,59,63,66],freedom:2,frequenc:[14,63,74],frequent:[48,49,54],frequntli:54,fresno:[],fret:[],fri:9,fridai:[22,23],friend:[3,10,13,33,34,59],friendli:[57,59],from:[2,4,5,6,8,9,10,11,12,13,15,17,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,40,41,43,44,45,46,47,48,49,50,51,52,53,54,57,58,60,62,63,64,66,67,69,71,74],from_arrai:28,from_connection_str:[],from_delai:28,from_epsg:[],from_panda:28,front:[17,33,37,60,63],frontend:66,frontier:2,frozen:[],frozenset:[],fruit:[],frustrat:[2,6,60],frustratingli:67,fs:17,fsspec:8,ftlobltjaa:64,ftotinc:[],ftp:8,full:[2,11,17,22,24,26,27,28,32,33,38,43,47,50,58,59,63,65,66,67],fulli:[8,13,17,22,33,39,50,52,63,66,72],fulton:[],fun:[13,17,24,26,45],func:[8,17],funcation:46,funcnam:17,fundament:[33,59,63],further:[16,17,68],fut:19,futur:[6,17,40,41,43,46,47,48,49,50,53,54,59,63,66,74],futurewarn:[],fyi:[17,63],g1150:[],g1674:[],g1762:[],g730:[],g873:[],g:[2,4,5,8,10,11,13,17,22,26,28,31,33,34,38,39,41,43,49,53,57,62,63,66,68],gabon:44,gain:[41,53,63,67],galaxi:31,galleri:43,gallon:[],game:[6,17],gang:39,gap:[25,40,48,49,54,58],gapmind:[],gapminder_2007:[],garfield:[],gather:[15,17],gave:[13,17,66],gawegktkxi:64,gb:[5,6,24,29],gc:8,gcp:19,gdal:[],gdf:[],gdp:[10,11,32,33,43,44,46,48,49,54],gdp_and_co2:32,gdp_growth_2014_2018:[],gdp_md_est:[],gdp_per_cap:[],gdp_per_capita_2008:[],gdp_per_capita_2018:[],gdp_rank:54,gdppcap08:[10,11,12,14,44],gdppercap:[48,49,54],gdppercap_2025:54,gen:17,gender:[13,25,59,65],gener:[4,5,10,12,13,17,19,24,25,27,30,34,35,38,39,41,42,43,44,46,47,48,49,50,51,52,53,54,59,60,63,66,68,74],generaliz:59,genom:[],genuin:[2,28],geo:[],geocod:[],geodatafram:[],geodes:[],geodet:[],geograph:[],geographi:[],geojson:[],geolyt:[],geom:[],geom_boxplot:[],geom_histogram:[],geom_lin:[],geom_point:[],geom_smooth:[],geom_text:[],geometr:57,geometri:[],geopackag:[],geopanda:[],geopandasl:[],geopi:[],georgia:[],geoseri:[],geospati:59,germani:[10,11,12,14],gerrymand:57,gestat:[47,50,51],get:[4,5,6,8,9,10,11,12,14,19,21,22,23,24,25,26,27,28,29,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,56,59,60,62,63,64,66,67,68,72,74],get_chunk:8,get_item:[],get_loc:[],get_path:[],get_predict:[],get_reg_fit:[],getitem:17,getpid:66,ggplot2:[],ggplot:7,ggsave:[],ggtheme:[],ggtitl:[],gh:17,ghcnd:24,ghcnd_daili:24,ghcnd_daily_30gb:24,gi:58,giant:[28,47,50],gib:17,gif:[],gig:[],gigabyt:74,gil:63,gini:46,gini_vector:54,gini_w_loop:54,girl:[],gisjoin:[],git:[7,9,58,71],gitattribut:33,github:[9,13,14,37,39,51,58,60,62,66,71,73],githubusercont:[11,12,14,32,41,43,44,53],give:[2,5,6,12,13,17,22,23,25,28,29,30,33,34,35,38,39,41,43,44,46,47,49,50,51,53,58,59,63,66],given:[2,5,6,8,11,22,24,26,27,33,34,39,41,42,47,49,50,51,52,53,54,59,60,63,65,66,67],glad:60,glenn:[],glimps:59,glob:28,global:[11,12,24,32,48,49,54],global_climate_data:[],globaltemp:[],globe:[],gmail:[],go:[2,5,10,11,13,22,24,26,27,29,30,32,33,34,36,38,39,41,42,44,46,47,49,50,51,52,53,57,59,60,62,63,66],goal:[2,5,9,19,24,27,29,34,39,45,47,50,59,62,63,69],gobblygook:22,god:[],goe:[46,60],goeken:[41,53],gold:[],gone:58,gonna:[5,6,10,17,26,29],good:[2,4,5,6,7,13,15,17,24,27,28,29,30,32,34,39,40,41,42,43,46,47,50,51,53,57,59,60,61,62,66,67,69,72],googl:[5,7,13,19,23,34,60],gorgeou:[],got:[10,17,52],gotcha:[9,50],gotten:[13,25,26,52],gov:[],govern:[2,17,30,51],govt:[],gpd:[],gpdvega:[],gpu:[6,17],gq:[],grab:37,grade:[2,4,25,30,34,39,40,41,46,48,50,51,53,54],gradeatt:[],gradeattd:[],grader:46,gradescop:[41,53],graduat:[2,30,60],grai:[],grammer:[],grand:[],granular:5,graph:[5,28,44,48,49,54,57],graphic:[22,59,63],graphnic:[],graphviz:17,grasp:13,grayson:[],great:[2,5,6,7,11,12,17,19,23,24,33,34,38,40,44,45,57,59,69],greater:[2,34,39,40,46,51],greatest:59,greec:[],greedi:[],green:[5,31,38,57],greenland:[],greenwich:[],grei:[],greyscal:[],grid:[],grl:[],grocer:[],gross:49,ground:[62,66],group:[2,5,9,14,17,22,25,26,28,29,32,39,48,50,51,54,57,64],group_emploi:[],groupbi:[9,17,28,46,71],grow:[17,48,49,54],growth:[48,49,54],gruel:2,grumpi:[],grunt:13,gs:8,gsn:24,gt:[8,17,53,66],guarante:66,guard:[],guayama:[],guess:[17,26,34,43,47,50,51,60],gui:[22,52],guid:[17,47,50,57,66],guidanc:[6,25,30,39,40,41,48,50,53,54,62],guidelin:[41,42,53],guilti:39,guinea:44,gutter:[],gynecolog:51,gz:[8,17,24],gzip:8,h:28,h_8_rwsn5hvg9mhp0txgc_s9v6191b:17,ha:[2,5,6,8,10,11,12,13,14,17,19,21,22,23,24,25,27,28,29,30,32,33,34,36,37,38,39,40,41,43,46,47,48,49,50,51,53,54,57,59,60,62,63,64,66,67,68,69,74],habit:[],hachi:[],hack:[30,63],had:[5,11,12,13,17,22,23,26,39,40,41,47,48,49,50,51,53,54,59,60,63,67],hadlei:46,hadn:[17,39],hadoop:[5,17,59,64],half:[47,74],hand:[2,13,17,26,29,30,33,34,37,47,50],handi:[],handl:[8,9,17,19,28,34,57,59,66],handler:8,hang:[],hangov:[37,38],hanson:[],happen:[2,5,10,14,17,22,24,31,33,34,36,39,44,47,50,52,57,60,63,67,74],happi:59,happier:[],harbor:[],hard:[2,5,6,17,25,28,32,33,34,36,41,46,47,50,53,57,59,60,63,74],harddriv:6,harder:[2,6,62],hardwar:[63,66],harmon:[41,53],harvard:2,has_black_row:[],has_fur:[],has_white_row:[],hash:[28,33],hashtabl:[],hashtable_class_help:[],hasn:[],hate:[34,59],have:[2,4,6,8,10,11,12,13,14,15,17,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,53,54,57,58,59,60,62,63,64,66,69,74],haven:[11,13,17,22,37,38,39,47,50,63],hbar:68,hcn:24,hconcat:[],hcovani:[],hcovpriv:[],hcovpub:[],hdf5:[5,33,64],hdf:[],hdr:[],he:[15,66],head:[11,13,23,26,28,29,30,33,39,41,42,44,53,54,64],headach:[9,39,63],header:8,health:[47,50,51],healthcar:[47,50],healthi:3,healthier:47,hear:[2,40],heard:[5,17,63],heart:[7,62],heed:[],hei:[],height:[47,50,59],heights_in_cm:[],heinou:46,held:[],hello:5,helloworld:[],help:[2,5,6,8,9,12,13,17,19,24,25,28,30,31,33,39,40,44,46,47,50,52,59,60,62,64,66,74],helper:33,helpfulli:33,helsinki:[],helvetica:[],hemispher:[],her:[2,36],here:[2,6,7,9,10,11,12,13,19,22,24,26,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,46,47,48,49,50,51,52,53,54,57,58,59,60,63,64,66,67,68,69,72,74],herself:[],hesist:57,hesit:46,heterogen:[47,50,59],hetzner:19,hexagon:68,hexbin:68,hhmm:28,hhtype:[],hhwt:[],hi:[15,36,37],hidden:38,hide:[28,29],hierarch:46,hierarchi:[],high:[2,8,13,17,24,30,35,39,40,41,42,48,49,51,53,54,59],high_drug_2009:[],higher:[10,17,39,44,46,74],highest:[30,44,48,49,54],highlevelgraph:17,highli:[5,39,60],highlight:[37,38],highwai:23,hinscaid:[],hinscar:[],hinsemp:[],hinsih:[],hinspur:[],hinstri:[],hinsva:[],hint:[22,23,25,27,28,30,33,34,43,46,48,49,50,51,54],hire:[41,53],hispan:[25,34,40,47,50],hispand:[],hist:[41,53,68],histogram:[41,53,68],histor:24,histori:[1,17,33,39,47,50],histplot:[],hit:[37,38,50,67],hmaojwgsth:64,hmmm:40,hnave:63,hoc:57,hold:[21,48,49,52,54,67],hole:[],home:[17,22,24,26,62],homepag:[],homework:[51,57],homogen:[],honda:[],honestli:[6,7,10,19,30,66,74],honiara:[],honor:60,hood:[11,17,50],hop:6,hope:[6,39,47,50,56,57,60,62],hopefulli:[38,47,50],horizon:2,horizont:24,hors:63,horsepow:[],hospit:51,host:[8,33,39,57],hostcomputeraddress:[],hot:63,hotlin:22,hour:[5,17,19,24,26,28,62,74],hours_timedelta:28,hous:[],household:[41,53],hover:[],how:[6,7,8,9,10,11,12,13,14,17,21,22,23,24,25,26,28,29,30,31,32,33,34,35,36,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,57,58,59,60,61,63,66,67,72],howev:[2,4,11,17,27,28,29,33,34,36,40,41,43,44,46,51,53,57,59,60,62,63,64,66,74],href:[],html:[8,12,17,38,42,66],http:[3,8,11,12,13,14,16,17,19,32,41,43,44,53,66,73],huge:[5,17,19,28,30,34,42,44,59,63,66,67,74],hugo:62,huh:66,hull:[],human:[47,50,74],humboldt:[],hundr:[2,5,25,57,59,63,66],hurt:[39,42],hygein:22,hyperbol:[47,50],hyperparamet:9,hyperthread:63,hypothes:51,hypothesi:[48,49,54],hypothet:[25,51],i7:[6,63],i9:[6,63],i:[2,3,4,6,7,8,9,10,11,12,13,15,22,24,25,26,27,28,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,53,54,59,60,62,63,64,65,66,67,69,72],iam:[],ian:[],iceberg:9,iceland:[],icon:[37,69],id:[24,26,58],id_var:[],idea:[17,21,30,31,33,39,48,49,51,54,57,62,63,66],ideal:[],idenfi:34,ident:[8,14],identifi:[12,22,30,31,33,34,39,40,44,46,47,50,51,58],idl:[],iffi:63,ignor:[8,14,17,33,40,47,50,63],igraph:[],ihgi:[],illeg:39,illinoi:[],illus:60,illustr:[11,14,33,34,35,48,49,52,54,60,66,69],iloc:[12,54],imag:[9,22,38,63],imageri:[],imagin:[10,33,39,48,49,54,59],imessag:6,immedi:[10,17,28,29,30,33,37,39],immut:[21,52],impact:[30,32,33,39,42,47,50,51],imperfect:39,imperi:[],implement:[17,27,28,29,46,47,50,51,63,66],impli:[13,27,30,32,33,39,48,49,54],implic:[],implicit:28,implicitli:[10,28,39,47,50],importantli:[],impos:[41,44,53],imposs:[],imprecis:[],impress:[43,59],improv:[2,6,8,9,26,38,41,53,57,63,69,71,74],imread:[],imshow:[],inabl:10,inaccur:[],inadequ:[47,50,60],inadvert:[],inari:[],inattent:[],inbuilt:[39,59],incap:5,incarcer:[],incbus00:[],incearn:[],inch:6,incid:23,incinvst:[],inclin:[],includ:[4,5,8,9,13,17,22,23,24,25,27,28,29,30,34,39,40,41,44,47,48,50,51,53,54,58,59,62],inclus:46,incom:[2,10,13,14,17,25,30,40,46,47,50,59,62],income_2017:[],income_2018:[],income_2019:[],income_column:[],income_threshold:[],income_vector:[41,53],incompat:17,incomplet:[],inconsist:40,incorpor:[],incorrect:28,incorrectli:17,incoth:[],increas:[8,25,26,28,39,41,44,51,53,67],increasingli:[14,72],incred:[2,5,59],increment:[],incretir:[],incss:[],incsupp:[],inctot:[13,14,25,30,40],incwag:[],incwelfr:[],ind:8,inde:[2,4,10,13,22,33,36,44,47,50,51,57,59,60,66,67,68,74],indefinit:39,indent:[],indeped:63,independ:[2,17,32,33,52,63],index:[8,9,12,21,28,33,34,46,48,49,50,54,63],index_col:8,index_right:[],indexengin:[],indexopsmixin:17,india:[],indian:[],indic:[2,8,9,10,12,13,14,25,32,34,35,39,43,44,46,47,51,71],individu:[5,23,28,40,41,45,46,50,51,53,63,69,72],induc:[],industri:[2,14],ineffici:[2,5],ineqpi:[41,53],inequ:[25,40,46,48,49,54],inescap:[],inevit:[2,59,60],inf:[],infant:[32,33,47,50,51],infer:[8,17,28,30,39,66],infer_datetime_format:8,inferior:[],infinit:[42,63],inflat:46,influenc:[8,49,51],info:[17,19,33,66],inform:[8,19,22,28,30,33,40,44,46,47,50,51,64,66],infrastructur:[17,28],infuri:[],ing:[],ingest:[28,66],ingredient_nam:17,inher:[],inherit:[],init:32,initi:[2,17,27,57,59,66],initial_data:[],initial_node_count:26,injo:[],injur:[],inner:39,innermost:74,innov:[48,49,54],input:[26,47,50,66],input_list:[],inroad:17,ins:[],insan:[17,66],inscrut:63,insecur:[],insert:[10,17,34],insid:[6,8,17,22,37,63,74],insight:73,insignific:31,inspect:[],inspir:[],instal:[4,6,9,17,19,22,32,33,37,38,41,51,53,58,63,64,71,72,73],instanc:[8,11,19,34],instant:[],instanti:[8,47,50],instantli:[],instead:[2,4,5,7,8,10,11,12,13,14,17,21,22,23,24,26,27,28,29,30,32,33,36,39,40,41,43,46,48,49,53,54,57,62,63,66,67],institut:2,instruct:[4,17,62,66],instructor:57,instrument:[],insul:[],insult:[],insur:[42,47,50],int16:[],int32:[5,8],int64:[5,8,10,13,14,17,28,36,39,54,64,66],int_vector:[],intact:[],integ:[8,28,47,50,66,67],integr:[4,6,17,33,57,59,60,62,66,69],intel:[6,63],intellectu:2,intellig:[],intend:[2,41,53],intens:6,intent:[],inter:[17,69],interact:[19,22,33,44,45,50,51,62,67],intercept:[50,65],interchang:63,interest:[2,17,30,41,44,49,51,52,53,59],interestingli:[],interf:32,interfac:[22,27,33,38,47,50,57],intermedi:[4,62,74],intern:[6,8,41,53,57,62,66],internation:[],internet:19,internship:2,interpol:[],interpret:[8,10,11,22,23,25,30,34,38,39,40,44,47,48,49,50,51,54,67],interrog:[],interrupt:[4,34,46,51],intersect:23,interv:[47,50],interven:[5,8],intervent:[41,47,50,53],interview:[17,40,51],intial:[],intimid:[],intricaci:[],intrins:58,intro:[9,36,66,73],introduc:[5,14,17,39,59,62],introduct:[9,57,62],introductori:60,intuit:[17,59],inv:65,invalid:[],invent:[48,49,54,59,64],inventori:[],invers:40,invert:10,invest:[5,41,51,53,63,66],investig:13,invis:33,invit:[4,34,46,51],invok:[],involv:2,inyo:[],io:8,iostream:66,ip:[17,60],ipum:[9,30,41,53],ipycytoscap:17,ipykernel_13964:[],ipykernel_14379:[],ipykernel_16753:[],ipykernel_24588:[],ipykernel_26205:[],ipykernel_30350:[],ipykernel_40833:[],ipykernel_41268:[],ipykernel_51318:[],ipykernel_59349:[],ipykernel_64429:[],ipykernel_84190:12,ipykernel_88045:[],ipynb:[4,25,30,34,37,39,40,41,46,48,50,51,53,54],ipynb_checkpoint:33,ipython:[4,35,37,38,66,72],ireland:[48,49,54],iron:60,ironpython:66,irreplac:[],irrit:[],is_al:66,is_categorical_dtyp:[],is_cmp:17,is_materi:17,is_object_dtyp:17,is_set:66,is_this_even:66,isclos:4,ish:28,isin:[13,28,30],isinst:66,island:[],isn:[2,5,13,14,24,28,30,33,34,39,41,45,47,50,53,57,59,63,66,69],isnul:14,isnumer:[10,11],iso8601:8,iso_a3:[],isol:2,israel:[],issu:[4,8,9,10,11,14,17,19,22,30,31,33,36,50,51,57,58,59,62,72],issue_typ:66,itali:[],item:[8,21,46],item_from_zerodim:17,iter:[4,5,8,17,43,64],iter_row_group:64,iteritem:[],its:[5,10,12,13,17,22,23,26,30,31,33,39,42,44,47,50,59,60,63,69],itself:[14,17,19,21,22,29,30,33,44,49,52,57,63,64,66],iv:[11,12,44],ivoir:[],jacqu:[],jail:39,januari:[],japan:[],japanes:[],jarqu:65,java:[17,66],javascript:[],jaw:[],jb:65,ject:[],jeff:[],jellyfish:[],jerk:13,jetbrain:73,jill:[35,36],jit:66,jkliajolzz:64,jncmxhqtdb:64,joaquin:[],job:[2,5,6,13,17,19,30,33,44,51,59,60,63,69],jobqueu:19,joe:[],johnson:[],join:[23,28,35,54,64],jor:[],jordan:[],jose:[41,53],journal:[47,50,51],jpn:[],jpython:66,json:33,juli:6,julia:[37,38,63,67],julio:[],jumbl:[],jump:[2,13,48,49,54,57,59,63,66],june:62,junior:2,jupyt:[0,4,9,20,26,28,29,32,42,43,58,66,69,71,72,73],jupyter_exercise_materi:38,jupyter_lab:37,jupyterlab:[],juri:[],just:[2,5,6,10,11,12,13,14,17,19,22,23,24,25,26,27,30,31,32,33,34,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,59,63,66,67,69,74],just_another_fil:[],just_high_earn:[],just_the_letter_a:22,just_this_column:8,justic:[],jvp:9,k:[35,64],kaggl:[],kaiser:51,kandiyohi:[],kansa:[],karlrupp:63,kazakhstan:[],kb:[],kd:[],kde:68,keep:[2,5,8,17,24,28,29,33,35,39,46,57,59,63,66,67,74],keep_date_col:8,keep_default_na:8,keeper:[],kei:[4,8,10,11,13,17,23,25,30,34,39,40,41,46,48,50,51,53,54],kept:[],kern:[],kernel:[24,32,38,47,50],key1:39,key2:39,keybind:73,keyboard:61,keyerror:[],keymap:73,keypair:[],keystrok:[],keyword:[11,13,14,28,34,39,51,54],khassokhel:[],kid:[59,60],kill:[24,47,50],killedwork:[],kilomet:[],kind:[2,5,10,12,17,25,28,30,31,39,40,41,47,51,53,57,60,66,67,68,69],kinda:[12,57,63,66,67],kindli:33,king:[],kinshasa:[],kitt:[],kjb17:[],km:[],kn:[],kna:[],knew:[17,39],knife:[],know:[2,4,5,6,7,10,11,12,14,17,19,21,22,24,27,32,33,34,35,36,38,39,40,41,46,47,50,53,57,58,59,60,62,63,66,67,72],knowledg:[2,30,51,60,62],known:66,koala:17,kosovo:[],kubernet:[],kumar:[35,36],kurtosi:65,kuwait:44,kw:66,kwarg:17,kyle:57,kyrgyz:[],kyrgyzstan:[],l:[],la:33,lab:[2,32,38,51,66],lab_black:[],label:[8,12,23,32,40,44,48,49,54,63],labforc:[],labor:[13,14],lack:14,lackawanna:[],lag:74,lai:67,laid:[60,67],lake:[],lamb:[],lambda:[8,17,46],lamp:[],land:[],landmark:23,languag:[14,17,22,51,57,60,63,66,67],lao:[],laptop:[6,17,63],larg:[5,6,8,12,13,17,23,29,30,47,48,49,50,51,54,57,58,59,60,63,74],large_sal:[],larger:[3,24,25,28,34,39,51,57,63,64],largest:[5,17,46],lassen:[],lassi:[],last:[4,6,10,13,17,19,23,25,26,28,29,30,33,34,36,39,40,41,42,45,46,47,48,50,51,53,54,59,60,62,63,66,67,69],lastli:[],lat:[],lat_t:[],late:[17,32],latenc:74,later:[4,5,6,10,17,25,26,28,29,37,40,44,57,60,74],latest:[13,66],latex:[42,57],latin:[],latino:40,latitud:23,latter:8,latvia:[],launch:60,lava:[],law:39,layer10:17,layer11:17,layer12:17,layer13:17,layer14:17,layer1:17,layer2:17,layer3:17,layer4:17,layer5:17,layer6:17,layer7:17,layer8:17,layer9:17,layer:[17,43,59,67],layer_typ:17,layout:[],lazi:28,ldhoqvnkzp:64,lead:[2,21,35,42,59,63],leadership:2,leak:[],leakag:60,learn:[2,4,5,6,7,9,10,11,12,13,14,24,26,27,30,33,44,49,58,59,61,62,66,68,71],learner:[],least:[2,3,4,5,6,13,17,25,28,41,44,51,53,54,60,65],leav:[5,10,22,25,32,57],lectur:[60,62],left:[9,12,17,22,33,36,37,38,39,41,53,54,57,58,63],left_index:28,left_onli:39,legaci:8,legal:51,legend:[],legibl:43,leland:[],len:[28,34,54,67],length:[8,13,36,51],lengthunit:[],lenovo:6,leon:[],lesotho:[],less:[4,13,17,22,23,25,26,39,40,41,47,48,49,50,51,53,54,57,63,65,66,67],less_than_20_000:54,less_than_colleg:[],lessen:39,lesson:[5,10,17,37,40,41,43,53,62,63],lest:[47,50],let:[5,10,11,12,13,19,22,23,24,25,27,30,32,33,34,35,36,37,38,39,40,42,44,46,47,48,49,50,51,52,54,58,60,62,63,66,67],letter:[2,11,22,24,47,50,51],level:[5,17,22,30,32,33,34,39,40,41,44,46,50,51,53,58,59,67],leverag:63,levitt:[],lh:[],li:[31,60],lib:[8,10,17,19,34,65,66],liber:[2,11,44],liberia:[],liberti:[],librari:[4,7,8,14,17,28,43,47,49,50,59,62,63,64,66,67],librarian:[],libya:44,licens:[],lie:10,life:[6,7,13,30,31,39,60],lifeexp:[],lifestyl:2,lifetim:[],light:[2,3,22,59],like:[2,4,5,6,7,8,10,11,13,14,17,19,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,60,62,63,66,67,69,72,74],likelihood:[30,51,57,65],limit:[2,5,13,24,59],linalg:65,linchpin:[],line2d:[],line:[5,6,8,9,17,19,20,24,29,31,32,33,34,37,38,41,44,48,49,51,52,53,54,57,58,63,66,67,69,71],linear:[9,44,46,47,50,63],linear_model:[47,50],linearregress:[47,50],lineno:66,lineprof:66,linetermin:8,lingo:[],lingua:[],linguist:25,link:[6,19,24,28,29,34,39,46,47,49],linspac:[],linter:[],linu:15,linux:6,list:[4,5,6,7,8,11,12,14,15,17,21,22,23,30,31,34,35,38,41,48,51,52,53,54,62,63,66,67],list_size_in_gb:[],lite:[],liter:[11,25,47,50,66],literaci:[],lithuania:[],littl:[2,6,11,13,17,19,22,24,26,27,30,31,33,35,37,38,39,41,44,47,50,51,52,53,57,59,62,63,66,67,74],live:[2,13,28,29,32,33,47,50,51,60,67],live_comm:19,lizard:52,ljubljana:[],ll:[1,5,6,10,11,13,14,17,21,22,23,24,25,26,27,28,29,30,32,33,34,36,37,38,39,40,41,43,44,45,46,47,48,49,50,51,53,54,57,59,60,62,63,64,66,74],llama:60,lm:59,lo:[],load:[5,9,10,13,17,19,24,26,28,38,40,41,43,44,46,47,49,50,51,53,59,64],load_dataset:[],load_ext:66,loadtxt:[41,53],loan:[],loc:[10,12,13,14,28,35,39,54,59,64],local:[8,17,19,24,32,44,49],local_work:[],localclust:17,localhost:8,locat:[8,11,22,23,24,31,34,41,53,67,74],lock:66,loess:[],log:[46,57,65],log_gdp_per_cap:[],log_popul:[],log_under5_mortality_r:[],logarithm:[],logic:[10,12,17,31,59,62,63],login:[],logist:[],logisticregress:[47,50],logo:[],lome:[],lon:[],lon_0:[],lone:2,longer:[5,8,24,25,33,41,42,53,60,63,67,74],longitud:23,look:[2,4,10,11,13,14,17,19,22,23,24,25,26,28,30,32,33,34,35,36,37,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,59,60,62,63,64,66,67,69],lookup:[15,67],loop:[5,28,30,43,46,48,49,51,54,60,63,66],loose_restrict:[],lose:21,loss:2,lost:[22,63],lot:[2,5,6,10,11,12,13,15,17,22,26,30,32,39,40,41,44,46,53,57,59,60,62,63,64,66,67,68,72],love:[17,33,37,47,50,59,66],low:[17,24,35,39,41,44,51,53,67],low_memori:8,lower:[8,11,22,41,47,50,51,53],lower_salari:[],lowercas:11,lowess:[],lowest:[41,48,49,53,54],lp:73,ls:[22,23,33],ls_output:[],lt:[8,17,53,66],luck:66,lucy92:[],lui:[],lumin:[],lunch:[],luxembourg:[],lvalu:17,lw:[],lwczoqlani:64,lx:[],lz4:[],m1:6,m2:[6,74],m8:17,m:[6,10,13,17,26,28,33,39,46,47,50,51,57,60,63,64],m_total:[],mac:[6,22,24,32,63],macbook:6,macedonia:[48,49,54],machin:[5,6,9,13,14,17,26,27,63,66,67],maco:[],made:[2,10,12,17,24,25,26,27,32,33,39,40,41,42,47,49,50,51,53,57,59,66,67],madera:[],madrid:[],mage:[47,50],magic:[4,10,22,35,57,66],magnitud:[],mai:[2,4,5,8,10,11,12,13,14,17,19,23,24,25,28,29,30,32,33,34,37,38,39,40,42,45,46,47,48,49,50,51,52,54,57,59,60,62,63,64,66,67,69],mail:[],main:[5,6,10,14,22,32,33,44,57,59],major:[2,30,40,63],make:[2,4,5,6,7,8,10,11,12,13,17,19,22,23,24,26,27,28,29,30,33,34,35,37,38,39,40,41,42,43,44,45,46,47,49,50,51,52,53,54,57,59,62,63,64,66,67,68,69,74],maker:63,male:[13,25,51,59,65],malform:8,malibu:[],man:[],manag:[5,6,8,9,10,17,19,30,32,33,37,38,46,57,58,60,63,74],manageri:2,manama:[],mandatori:62,mangle_dupe_col:8,mani:[2,4,5,6,8,10,11,13,14,15,17,23,24,28,29,30,31,33,34,35,37,39,41,44,46,47,48,49,50,51,53,54,57,60,63,64,74],manifest:[32,63],manipul:[5,9,11,12,17,24,29,31,34,46,52,58,59,62],manner:[5,22,28,32,39,57],manual:[5,26,33],map:[8,15,17,46],mapclassifi:[],margin:51,marijuana:39,marin:[],marion:[],mariposa:[],mark:33,mark_area:[],mark_bar:[],mark_errorband:[],mark_geoshap:[],mark_lin:[],mark_point:[],mark_text:[],markdown:[25,30,39,42],marker:8,market:[],marketplac:[],marst:[],maryland:[],mask:[17,44],mass:[],massiv:[6,17,41,53,63,66,67],master:[2,6,11,12,13,14,32,33,41,43,44,53,58,62],match:[2,11,35,39,51,59],mateo:[],materi:[60,62,63],matern:[],math:[58,63],mathemat:[48,49,54,60,74],matlab:59,matplotlib:[4,34,38,41,46,51,53,68],matplotlibdeprecationwarn:[],matric:[9,42,59,67],matrix:[9,27,47,50,63,65],matter:[5,6,22,27,39,44,59,63],matthew:[41,53],matur:66,max:[13,17,24,28,40,54],max_candid:17,max_row:38,max_ship:17,maxim:[5,48,49,54],maximium:[17,28],maximum:[10,13,17,28,48,49,54],mayb:[6,13,33,39,44,51],mb:34,mcwilqynyx:64,md:[22,23,32,33],md_hh_inc:[],me:[1,2,6,22,25,28,29,33,58,60,62,63,66],mea:[],mean:[2,4,5,6,7,8,10,11,13,17,22,24,27,28,30,32,33,34,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,57,59,60,62,63,64,66,67,74],mean_delai:28,mean_delay_r:28,meaning:[14,39,43],meaningfulli:2,meaningless:39,meant:[10,13,22,57],measur:[11,17,24,25,30,44,46,66],mechan:[32,47,50,57],media:[22,32],median:[10,28,34,48,49,54],mediat:[],medic:[3,5,47,50],medicin:[39,47],meerkat:52,meet:[2,12,24,60,62],megan:[41,53],melt:46,member:26,memor:7,memori:[8,17,24,28,29,42,54,59,63,64,67],memory_map:8,men:[13,25,59],mendocino:[],mental:[],mention:[2,11,38,51,60,66],mentor:2,mentorship:2,menu:[26,38,41,44,53],merc:[],mercat:[],merg:[9,23,28,32,34,35,51,57,58,62,69,71],merged_2009:[],merged_2018:[],merged_thinned_2009:[],merged_thinned_2018:[],meridian:[],merit:[],mess:[39,69],messag:[5,28,33,63,66],messi:[13,58],met:[],meta:17,metadata:17,meter:[],method:[8,10,12,14,17,21,25,27,28,29,30,39,41,43,46,47,50,53,63,65,66,68],metr:[],metric:[41,47,50,53],metro:[],mexican:[47,50,51],mexico:[10,11,12,14],mht:[47,50],mi:11,miami:[],michael:30,michigan:[],microsoft:[5,22],mid:[2,6,26,27,37,47,50,51,57,58,59,60,63,72],middl:[10,15,44,62],middle_numb:[],midnight:28,mids_coursera:[],mids_data:[13,14,32],mids_data_prep:17,midst:[],midster:[],migcounty1:[],might:[2,5,10,23,24,25,26,28,30,33,34,39,41,43,44,46,48,49,51,52,53,54,57,59,63,66,67,68,74],migmet131:[],migplac1:[],migrat:[],migrate1:[],migrate1d:[],mijmeoh9lt4:16,mile:31,mileag:[],miles_per_gallon:[],milisecond:42,milit:[],million:[7,31,39,47,50,63,66],millionair:[13,41,53],millisecond:[],mimetyp:38,min:[13,40,54],minc:[],mind:[2,6,27,40,47,50,59,63],mine:63,miner:[],mini:[],miniconda3:[8,10,17,19,34,65,66],miniconda:[9,72],minim:[17,51,66],minimum:[6,13,48,49,54],miniscul:[],minneapoli:[41,53],minnesota:[],minor:[],minut:[9,17,26,28,51,57,61,74],minutes_timedelta:28,mir:[],mirror:[],misc:17,misdomean:[],misdomeaner_arrest:[],miser:24,mislead:22,mismatch:[19,28],misperc:[],miss:[8,9,10,13,17,28,30,39,62,71],mississippi:[],mistak:[4,24,39,57],mix:[8,47,50,51,59],mixed_timezon:8,mixtur:8,mkd:[],ml:17,mm:8,mme_conversion_factor:[17,29],mn:[41,53],mod:[],modal:[41,53],mode:[3,39,66],model:[4,6,9,44,51,59,60,62,65,71],model_predict:[],model_select:[47,50],moder:24,modern:[6,57,59,63,74],modif:[12,32],modifi:[10,11,12,30,33,42,47,50,52,59,67,68],modoc:[],modul:66,modular:[],momement:44,moment:[19,24,33,34,40,41,46,53,57],mon:[],mondai:[],monei:[5,41,53],moni:[],monitor:[5,24,63],monkei:[],mono:[],monterei:[],month:[19,22,24,28,39,62,63,74],monthli:[],monti:[],moor:63,moral:[],more:[2,3,4,6,7,8,9,10,11,12,13,14,15,19,22,26,27,28,30,31,32,33,34,37,38,39,40,41,42,44,45,46,48,49,51,53,54,57,58,59,60,62,66,67,68,69,71,74],moreov:[6,13,14,17,24,30,33,35,39,44,47,50,57,59,60,63,66,67],morn:66,morphin:[17,29],morphine_equivalent_g:17,mortal:[32,33],mortamt1:[],mortamt2:[],mortem:[],mortgag2:[],mortgag:[],moscow:[],moss:30,most:[2,3,4,5,6,10,11,13,14,17,19,22,24,25,28,29,31,32,33,34,37,39,40,41,42,44,46,47,48,49,50,51,53,54,56,59,60,62,63,66,67,72,74],mostli:[2,17,47,51,59,63],mother:[47,50,51],motherboard:63,motiv:[],mount:[],mous:[22,32,69],mouseov:44,mousepad:[],move:[2,5,17,19,22,23,28,30,32,33,36,37,38,46,47,50,51,58,59,60,66,67,74],movement:63,mozambiqu:[10,11,14],mpg:[],mpregwt:[47,50,51],mrace:[47,50,51],mri:[],mri_neck_vertical_slic:[],ms:[2,28,63,66,67],msg:[17,19,66],mtcar:[],much:[2,5,6,8,13,17,22,24,26,27,30,32,33,35,39,40,41,44,46,47,49,50,53,57,59,63,66,69,74],muck:6,mul:17,multi:[8,17,38,46],multiindex:[8,9],multipl:[2,5,8,19,23,27,28,34,38,39,46,57,59,60,67],multipli:[17,27,41,53,67],multipoint:[],multipolygon:[],multiprocess:63,municipio:[],muscl:[],musk:[],must:[2,8,14,34,40,41,44,50,53,60,66,67,74],mutabl:[41,52,53],mutat:[47,50,52],mutual:[25,40],mv:22,mwe:[],mxyzrovfiv:64,my:[3,6,10,17,19,22,24,26,28,29,31,32,33,34,42,46,52,54,57,60,62,63,66],my_:[],my_analysi:66,my_arrai:[12,67],my_big_loop:66,my_chart:43,my_copi:[],my_data:8,my_data_science_project:[],my_doubl:66,my_fil:8,my_file1:[],my_file2:[],my_file3:[],my_first_altair_figur:[],my_geojson:[],my_list:[4,12],my_matrix2:[],my_matrix:[],my_method:27,my_model:[27,47,50],my_new_branch:32,my_numb:[],my_object:[],my_predict:[47,50],my_properti:[],my_shapefil:[],my_slic:42,my_str:31,my_subset:[],my_vector:42,my_view:[],mybag:28,mydata:59,mydata_menonli:59,mydatafil:59,myfil:59,myfunc:28,mylinearmodel:27,mylist:[],mynsgrulewithasg:[],myopic:67,myrenamedvari:59,myself:[],myvari:59,n1:8,n:[5,8,10,11,12,13,14,17,28,30,41,48,49,53,54,63,66],n_job:63,n_worker:[],na:[8,10],na_filt:8,na_logical_op:[],na_valu:[8,10],nagiv:22,nah:6,name:[2,4,7,8,10,11,13,14,17,19,22,23,24,25,26,27,28,30,31,32,33,34,35,36,37,38,39,40,41,43,44,46,48,49,50,51,52,53,54,56,57,59,62,63,69],name_left:[],name_right:[],nameerror:[],nameofcommand:[],namibia:[],nan:[8,10,14,25,39,40,65],nanni:17,nano:[23,32,33],nanop:10,napa:[],narrow:30,nasa:[],nassau:[],nate:[],nation:[2,41,53],nativ:[11,66],natur:[2,13,14,39,44,46,48,49,52,54,59,63],naturalbreak:[],naturalearth_c:[],naturalearth_lowr:[],navig:[9,13,31,32,33,37],nb_black:[],ncall:66,nce8:[17,19],nce8nsg:[],nce8rg:[],nce8sa:[],nce8vn:[],nce8w:[],nd:9,ndarrai:17,ndc_no:17,ndframe:[],ndigit:[],nearby_c:[],nearest:[],nearli:[2,6,7,13,22,39,47,50,51,57,66],neat:31,neatli:2,nec:[],necess:[],necessari:[8,11,28,54,62,67],necessarili:[44,72],neck:[],need:[2,5,6,10,11,12,13,17,22,23,25,26,27,28,29,30,32,33,34,35,37,38,39,40,41,42,43,48,50,51,52,53,54,57,59,60,62,63,67,74],nefari:[],neg:[46,49,66],negat:10,negoti:[],negro:[],neighbor:[],neighborhood:51,neither:[],ner:[],nerv:[],nervou:33,ness:[],nest:[],net:[6,63,66],netflix:[],netherland:[],network:[6,17,24,28,29,59,63],neural:63,neurosci:[41,53],neutral:[],nevada:[],never:[2,4,5,6,13,17,21,30,37,39,42,57,60,66,67],nevermind:59,nevertheless:[47,50],nevi:[],new_branch_nam:32,new_branch_to_merge_lat:33,new_data:39,new_dd_object:17,new_method:17,new_salari:[],newborn:51,newcom:62,newer:67,newli:21,next:[8,11,12,13,17,33,34,38,39,69],nhgi:[],nhgis_county_popul:39,niamei:[],nice:[5,9,17,33,35,38,47,50,59,60,63,66],nicer:[],nick:[4,9,11,22,28,31,58,64,65],nick_plays_with_coil:19,nickeubank:[11,12,13,14,32,33,41,43,44,53,58],nifti:[47,50],niger:[],nigeria:[],nih:[],nineti:31,no_def:[],no_default:8,no_longer_an_int_vector:[],noaa:24,nobel:30,nobodi:[],node:[17,26],nois:[22,27],nolan:51,non:[8,14,17,22,25,28,33,37,38,40,41,44,46,47,51,53,57,59],non_cancel:28,non_zero:[],none:[5,8,11,14,17,21,23,66],nonlinear:[],nonrobust:65,nonvector:[],nopython:66,nor:[],noreturn:[],norm:60,normal:[12,13,14,22,24,25,27,33,38,39,40,41,48,49,53,54,63,66,74],nort:[],north:22,northern:[],norwai:[44,48,49,54],nosql:[],notabl:[],notat:[48,49,54],note:[2,4,5,6,7,8,9,10,11,12,13,17,22,24,25,26,27,28,29,30,31,32,34,35,37,38,39,40,41,43,44,46,47,49,50,51,52,53,57,58,59,60,63,64,65,66,69],notebook:[4,9,17,19,24,25,26,28,29,30,32,34,37,39,40,41,42,46,48,50,51,53,54,58,66,69,72],noth:[5,8,19,21,22,29,33,66,69],notic:[6,28,34,39,41,53,57],notif:57,notion:10,notnul:14,notori:[47,50],nov:[9,65],novemb:[],novic:[],now:[4,5,6,10,11,12,13,14,17,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,59,62,63,66,67],now_a_matrix:[],now_a_vector:[],nowher:[],np:[4,8,10,12,14,17,25,34,36,39,40,41,42,53,54,63,65,67],npartit:17,npr:[13,35,63,64],npy:[],nrow:[5,8],nrzmunykzo:64,ns:[17,28,66],nsg:[],nuanc:42,num:[],num_counti:[],num_hh_under_30k:53,num_hh_under_40k:53,num_racial_group:[],num_run:[],num_year:[],number:[2,4,5,8,9,10,11,12,13,14,17,19,21,22,23,24,25,26,27,28,30,32,33,34,35,36,39,40,41,43,46,47,49,50,51,52,53,59,60,63,64,66,67,69,71,74],numbers2:[],numbers3:[],numer:[4,5,8,13,14,25,30,59,64,71],numeric_onli:[],numpi:[4,7,9,10,13,14,17,27,28,34,35,36,39,41,46,47,48,49,50,51,53,54,58,59,63,64,65,66,67,70,71],numprec:[],numpy_tot:[],numpy_vector:[],numpysupport:66,nuniqu:[],nurseri:[],nut:[],ny:[],nyc311_calls_2018:23,nyc311_column_nam:[22,23],nyc:28,nyc_311calls_2018:[22,23],nycflight:28,o:[8,17],oakland:51,ob273:[],ob:[],obispo:[],obj:[],object:[5,8,9,10,11,14,17,26,27,28,34,35,42,46,53,63,64,66,71,72,74],object_numb:67,objectid:[],obreangvda:64,obscen:[],obscur:63,observ:[5,11,13,14,17,24,30,34,35,39,40,41,44,46,47,48,49,50,51,53,54,59,65],obstetr:51,obviat:[5,28,29],obviou:[5,39,44,51],obvious:[2,10,11,30,39,41,46,48,49,53,54,66,67,74],occ:[],occas:[],occasion:[19,25,38],occassion:17,occup:3,occupi:66,occur:[8,10,13,14,17,19,33,46,47,50,51,60,66],occurr:[11,13,31],oceania:[],oct:9,octob:64,odd:[12,14,51,61,66],odditi:13,oddli:5,off:[5,11,13,19,32,33,57,59,66],offend:28,offens:34,offer:[2,5,6,7,14,17,39,48,49,54,57,59,63,66,68],offic:[34,39,59],offici:[11,13,28],offset:[8,28],offshor:[],often:[2,5,11,13,14,17,19,23,24,28,29,30,32,33,34,35,36,39,43,44,46,47,50,51,57,58,59,62,63,66,74],ogr:[],oh:[6,9,32,36],ohio:2,oil:44,oiv3k3sfwiviup5:17,ok:[10,12,13,17,21,22,28,29,30,32,35,36,38,40,42,46,47,50,57,63,66,67],okai:[],ol:[44,59,65],old:[10,13,30,33,35,36,37,38,40,51,66],older:[6,59],older_gap:[],older_t:[],olsresult:59,oman:44,omit:[],ommiss:51,omni_normtest:65,omnibu:65,on_bad_lin:8,onc:[5,8,11,12,13,14,17,22,23,24,25,26,27,28,31,32,33,34,37,38,39,40,43,44,48,51,52,54,62,63,66,67,74],one:[2,5,6,8,10,11,14,15,17,22,23,24,25,26,27,28,29,30,31,32,33,34,35,37,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,59,60,62,63,66,67,69,74],one_to_one_hund_mil_list:[],one_to_one_hund_mil_vector:[],ones:[8,47,50,59],oneself:[],onli:[2,4,5,6,8,9,10,11,12,13,14,17,22,23,24,25,26,28,29,30,32,33,34,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,53,54,57,59,60,62,63,64,66,67,68,69,71,74],onlin:[8,9,42,59,62],onlinearrestdata1980:[],onshor:[],onto:[8,63],ontop:[],oop:10,oopsi:9,op:17,op_str:17,opac:[],opaqu:17,open:[5,6,8,17,19,22,23,24,26,28,29,30,32,33,37,38,42,47,50,52,57,59,62,63,67],openjustic:[],oper:[5,10,12,17,22,27,28,29,32,35,36,43,46,48,49,54,57,63,64,66,67,71,74],operand:[],opiat:[],opinion:[],opioid:[9,26,29],opportun:[2,4,39,63],oppos:[],opposit:40,opsmixin:17,opt:[8,10,17,19,34,65],optim:[17,24,62,71],option:[5,8,9,10,14,22,26,27,28,32,33,36,38,39,41,43,53,57,61,66],option_context:[],optum:[47,50],or_:[],orang:[],orbit:31,order:[5,6,8,25,32,34,35,36,37,38,41,43,48,49,53,54,57,66],order_form_no:17,ordinari:[8,44],oregon:[],org:[3,8,12,41,53,66],organ:[2,4,30,33,34,35,36,37,39,51,57,59,60,62,67],organiz:[],orgin:[],orient:27,origin:[5,8,12,17,21,27,28,32,34,36,39,40,42,44,51],os:[8,17,63],oserror:19,osgeo:[],osx:5,other:[4,8,10,11,12,15,17,22,23,24,25,26,27,29,30,32,33,34,36,37,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,59,63,66,74],otherus:32,otherwis:[4,5,8,10,42,61],otter:[],our:[2,4,10,11,13,14,17,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,38,39,40,41,42,44,46,47,48,49,50,51,52,53,54,57,60,63,66,69,72],our_data:[],our_matrix:[],ourselv:49,out:[2,4,5,6,11,13,17,19,22,23,24,25,26,28,30,31,32,33,34,35,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,56,57,59,60,61,62,63,64,66,67,68,74],outcom:[39,46,63],outer:39,outfil:[],outlier:44,outlin:27,outperform:[],output:[5,8,17,23,27,38,42,47,50,60,66,69],outreach:2,outsid:[51,59],outward:[],over:[5,6,8,11,13,24,25,28,29,30,32,34,36,39,41,42,43,44,46,48,49,51,53,54,59,60,62,63,64,66,67,69,74],overal:[13,44,51],overcom:[39,60],overdos:[],overflow:[5,66,67],overhead:[8,63],overlai:44,overlap:[43,72],overli:60,overlook:5,overnight:66,overreli:60,overrid:[8,66],overspend:[],overview:[11,13],overwhelm:[5,22,38,59],overwhelmingli:[],overwrit:4,overwritten:8,own:[2,9,11,17,19,23,24,26,32,33,39,41,47,50,53,57,58,60,62,63,66,71,72],owner:33,ownershp:[],ownershpd:[],oz:[47,50],p9:[],p:[63,65],paca:[41,53],pace:2,pacif:[],pack:[],packag:[4,7,8,9,10,13,17,27,31,34,37,38,41,44,47,50,51,53,57,58,59,62,63,65,66],page:[27,33,37,57,58,59,63,66],pai:[26,30,39,41,53,57,66],paid:[2,17,24,26],pain:[28,46,57],painfulli:59,pair:[8,11,13,26,32,34,37,62,63],pais:[],pakistan:[],palikir:[],panama:[],panda:[4,5,7,8,9,10,11,14,17,24,25,27,28,29,30,34,35,36,38,39,40,43,44,46,47,49,50,51,54,58,59,64,65,66,67,70,71],pandoc:[],pane:37,panel:[28,29,38,46],panic:17,paper:[2,22,47,50,57],papua:[],paraguai:[48,49,54],parallel:[5,6,9,17,26,28,29,59,71],paralleliz:[5,28,63],paramet:[8,47,50,51,63],parametr:[],paren:[],parent:51,parenthes:25,parenthesi:[],pariti:49,park:23,parlanc:12,parquet:[9,51,71],parquetfil:64,pars:[8,10],parse_d:[8,28],parser:8,parserwarn:8,part:[2,5,12,13,17,24,26,38,41,47,50,53,57,60,62,63,66,71],parti:35,partial:[4,8],partial_by_ord:17,particip:[2,13,48,49,54],particular:[8,13,17,27,28,32,39,41,51,53,57,59,63,67],particularli:[2,51],partit:28,partner:[32,43,44],pass:[5,8,11,12,13,14,17,23,27,28,31,34,39,41,44,50,51,53,63,66],passion:2,passiv:60,password:8,past:[2,10,17,34,39,46,51,62,63],patch:33,patch_messag:66,path:[2,8,22,32,58],pathlik:8,patient:[5,24,39,47,50],patsi:[4,9,47,50,65],pattern:[11,22,63],paus:66,paygrad:33,payment:6,payrol:[],pbrgopujxj:64,pc:5,pcap:[],pct:[],pct_change_from_09_to_18_in_high_drug_arrest_counti:[],pct_change_from_09_to_18_in_low_drug_arrest_counti:[],pct_change_in_violent_2018_2009:[],pct_dif_in_dif:[],pct_drug:[],pd:[4,8,10,11,12,13,14,17,25,28,30,32,34,35,36,38,39,43,44,48,49,51,54,64,65],pdb:[],pdf:[22,23,28,33,42],pdfkit:[],pdqapaihlv:64,peak:66,pedant:69,peep:52,peer:32,pen:[],penal:39,penalti:[39,74],penc:[],pend:[],pennsylvania:2,peopl:[2,4,5,11,13,14,17,24,25,30,32,34,35,39,40,41,42,44,47,48,49,50,51,53,54,57,59,62,63,64,69],peoria:[],pep8:[],per:[8,11,17,19,23,26,32,33,34,39,43,44,46,48,49,54,66,67],percal:66,percent:[48,49,54],percentag:[25,30,39,40,46,47,48,49,50,54],perfect:[13,48,49,54,69],perfectli:[24,39,60],perform:[5,6,8,9,17,28,29,47,50,51,57,59,60,63,67,71,74],perhap:[2,6,19,44],period:[5,7,11,14,24,33,46,48,49,51,54],perman:33,permiss:[41,53],pernici:[],pernum:[],persist:53,person:[2,6,13,17,19,25,26,30,32,33,34,35,36,41,45,46,49,53,59,62],perspect:[2,6,17,21,67],pertain:10,perwt:40,petzold:[],pevofcioxp:64,pf:64,pharmaceut:29,phenomena:49,phenomenon:[10,39,60],phew:[],philosophi:[],phone:6,photo:[],photograph:[],photon:[],photoshop:[],physic:[5,17,63,74],pi:[],pic:9,pick:[2,6,13,23,24,25,38,41,43,47,50,51,53],pickl:59,pictori:[],pictur:[22,46,47,50],pie:68,piec:[2,5,7,8,17,34,45,46,63],pile:[],pill:[17,29],pinto:[],pip:[4,37,41,53,58,63],pipe:[],pipelin:66,pit:[],pitfal:[],pivot:[2,44,46],pivot_t:46,pixel:[],pk_drone_strikes_2007_2013:[],pkl:59,place:[2,8,10,17,21,22,28,30,34,39,41,42,47,50,52,53,60,63,66,67,69,74],placehold:28,placer:[],plai:[6,17,24,26,28,29,33,47,50,52,57,60,66],plain:[22,38,69],plaintext:[9,22,32,33],plan:[5,6,9,17,26,28,35,46,57,58,60,66],plane:23,planet:[31,57],planetari:[],plant:[],plate:[],platform:[5,17,19,22],platter:74,plausibl:[],pleas:[3,4,8,17,22,24,25,26,30,32,34,39,40,41,42,46,48,49,50,51,53,54,58,59,62,66],plenti:42,plot:[9,17,20,24,32,34,38,39,41,46,48,49,51,53,54,71],plotnin:[7,37],plotninewarn:[],plotter:68,plt:[41,53],plu:[27,32],plug:63,pluma:[],plural:[],pluse:25,plymouth:[],pm2:[],pm:9,png:[],podgorica:[],point:[4,5,8,13,14,16,17,21,24,32,33,34,37,38,39,42,43,44,46,47,48,49,50,54,63,66,67],pointer:33,points_from_xi:[],poke:[],polar:52,pole:[],poli:57,polic:[39,51],polici:[2,10,41,53],policy_:53,policy_a:53,policy_b:53,policy_c:53,policy_d:53,polit:[2,44,49,57,59],politi:[11,12,14,44],polityiv:[10,11,12,14,44],poll:[],pollut:[],polyfit:[],polygon:[],polynomi:44,pomelo:9,pool:[],poor:[6,48,49,54],poorer:[47,48,49,54],poorest:[48,49,54],poorli:[47,50,58,59],pop2009:[],pop2017:[],pop:[21,28,29,38,52],pop_dens:[],pop_est:[],pope:[],popoul:[],popul:[13,30,39,40,41,48,49,51,53,54],popular:[17,40,59],port:[6,8],portabl:64,portal:[],portfolio:[2,45],portion:[13,17,28,34,74],posit:[2,8,39,41,46,53,60,62],posix:66,possess:39,possibl:[2,5,8,12,28,57,59,63],post:[17,26,29,30,39,46,51,74],postcomput:[],poster:[],postgradu:30,potenti:[2,17,25,30,32,59,60],pov:[],poverti:[41,53],power:[5,6,28,49,52,59],powershel:[],pp:[9,51],ppp:49,pr:[32,33,69],practic:[4,5,10,17,22,27,29,32,39,42,58,59,60,63,69],practicaldatasci:[11,12,14,41,43,44,53],practicaldatascience_book:[],practicalds2020arco:26,practicalds2020rg:26,practicalds2020sa:26,practition:[],pragu:[],pratic:[],pre:[51,59,62],preced:[39,42],preciption:24,precis:[5,8,12,17,19,74],preclud:60,predic:[],predict:[27,42,47,50,51,52,54,63,66,74],predictor:[],predominantli:[],prefer:[6,13,38,41,46,53,72],prefix:[8,22,47,50,51],pregnanc:51,prejudic:[],prematur:[47,50,51],prep:[47,50],prepar:[2,27,62],preprocess:5,prerequisit:17,prescript:[],presenc:34,present:[9,32,33,38,47,48,54,58,61,63,66],preserv:[8,64],presid:[41,53],press:22,pressur:5,prestigi:[],presum:59,pretend:[51,57,66,74],pretti:[5,13,17,19,28,30,31,32,33,40,46,53,59,60,63],prettier:[],preval:[],prevent:[5,17,34,47,50,60],preview:22,previou:[11,12,13,14,39,46,49,51,57],previous:[5,8,22,25,39,40,51,63],price:6,primaci:[],primari:[32,33,63,67],primarili:[5,32,60],prime:[3,60],primem:[],primit:31,princeton:2,princip:[],principl:[9,17,22,60,63],print:[11,17,19,22,23,30,37,42,43,44,46,47,48,49,50,52,53,54,64,66],printout:[47,50],prior:[4,59],priorit:[47,50],prioriti:2,pristina:[],privaci:[],privat:19,priviledg:[],prize:[30,35,36],prj:[],prng:[],pro:[6,24,59],prob:65,probabl:[5,6,10,11,13,17,22,23,24,26,28,30,32,33,34,36,40,41,43,47,48,49,50,51,53,54,63,66,74],probalbi:[48,54],problem:[2,4,5,10,14,17,19,21,22,23,24,25,30,31,33,34,35,39,40,41,42,47,50,51,53,57,59,60,62,63,64,66,74],problemat:[11,25,40,57,60],proceed:[],process:[2,5,8,17,23,24,28,29,44,59,66,67,69,74],processed_for_stud:[],processor:[5,6,63,67,74],produc:[8,39,44,49],product:[44,49,66],product_nam:17,profession:[2,3,45,60],professor:[2,60],profici:[],profil:[],profit:[],profound:63,progam:22,progess:[],program:[5,6,9,22,27,30,33,56,57,58,59,60,62,63,66,67,71,72],programm:[5,15,22,59,67,74],programmat:[48,49,54],programming4d:[],progress:26,prohibit:60,proj:[],projcr:[],project:[2,9,17,24,29,32,47,50,57,58,59,60,66,69],promis:57,promot:2,prompt:[4,32,34,46,51],prone:[8,11,28,60,66],proof:6,propag:45,proper:11,properli:[5,23,40,44,47,50],properti:[27,39,41,42,48,49,53,54],propog:[],propon:39,proport:[13,34,40,41,49,53,63],proportion:[34,39],propos:[39,41,53],proposit:[],prosector:[],prosecutor:[],protect:[17,33],protocl:[],protocol:[19,28,29],prototyp:29,proud:27,prove:60,provid:[2,4,5,8,11,13,14,17,19,24,26,27,30,32,33,34,35,38,39,46,47,48,50,51,54,59,60,62,66,69],proxi:[39,47,50],proxim:[],prun:66,pseudo:[],publish:[2,13,29,59],puerto:[],pull:[5,13,22,28,33,35,40,69],pun:27,punchlin:63,punctuat:[],purchas:[6,49],pure:66,purpos:[11,41,53,59,63],pursu:2,push:[5,32,33],put:[4,6,7,10,12,17,22,24,26,27,30,32,33,45,48,49,50,54,57,63,66,67,74],pwd:22,pxi:[],py39:19,py:[8,10,12,17,19,31,32,34,37,65,66,67,69],pyarrow:[9,64],pyc:[],pydata:[8,12,66],pygeo:[],pympler:[],pyobjecthasht:[],pypdf2:[],pyplot:[41,53],pyproj:[],pyspark:63,pysupport:66,python3:[8,10,17,19,34,65,66],python:[4,5,8,9,11,14,17,19,21,23,24,25,26,27,28,29,30,31,32,37,38,40,42,46,48,49,51,52,54,57,58,63,64,66,69,71,72,73],python_tot:[],pythondebug:[],pythondontwritebytecod:[],pythoninspect:[],pythonpath:[],pyx:66,pzri1ifsty0:16,q:22,qatar:44,qflag10:[],qflag11:[],qflag12:[],qflag13:[],qflag14:[],qflag15:[],qflag16:[],qflag17:[],qflag18:[],qflag19:[],qflag1:[],qflag20:[],qflag2:[],qgi:[],qnan:8,qth:[],quad:[],qualiti:[41,53,59],quantifi:[],quantil:[],quantit:60,quantiti:[17,26,30,34,39,41,53],quantum:57,quarterli:[],queri:[5,9,35,59],question:[2,4,5,7,13,14,22,25,26,27,30,34,39,40,41,46,48,50,51,53,54,57,63,69],questionnair:1,queue:33,quick:[10,13,34,51,66,68],quicker:22,quickest:[],quickli:[5,17,23,25,29,32,38,39,47,50,59,68],quickstart:[],quintil:[],quip:[],quirk:[13,37,66],quirki:59,quit:[22,27,40,47,50,51,52,59,63,64,67],quo:[],quot:[7,8],quota:33,quotat:[],quote_:8,quote_al:8,quote_minim:8,quote_non:8,quote_nonnumer:8,quotechar:8,qwfdeasrum:64,r1:2,r:[7,8,9,27,33,36,37,38,47,50,52,63,64,65,66,67],race:[19,25,40,47,50,51,63],race_recod:[47,50],racial:[25,40,47,50,51],racist:[],radar:[],radic:44,radiu:[],rage:63,rai:[],rais:[2,8,10,17,19,34,41,53,58,60,66],raise_on_meta_error:17,ram:[5,6,17,24,42,59,63,64,74],ramp:23,ran:[5,17,21,28,31,47,50,51,52,66,67],rand:[],randint:[35,42,64],random:[13,30,35,41,42,50,53,63,64],random_integ:42,random_st:[47,50],randomli:[47,48,50,54],randomuser123:[],rang:[2,8,11,13,35,41,43,49,51,53,54,58,63,64,66,67],rangeindex:[],rank:[2,41,48,49,53,54],rank_doubl:[],rapid:[4,17],rapidli:60,rare:[2,12,69],raster:[],rasterio:[],rate:[13,32,33,48,49,51,54,74],rather:[8,11,17,22,24,38,39,42,43,44,49,54,57,59,60,66,67,72],ratio:[41,49,53],raw:[5,11,12,13,14,22,23,24,33,34,37,41,43,44,46,47,50,53],raw_wdi_data_csv:[],raymond:15,raza:[],rb:[],rdata:59,rdd:17,re:[3,4,5,6,11,12,13,14,17,19,21,22,23,24,26,28,29,30,31,32,33,34,35,36,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,59,60,62,63,64,66,67,69,72,74],re_center_and_re_scal:[],reach:[2,66,67],read:[2,5,8,9,10,11,12,13,14,16,17,22,24,26,28,29,30,32,33,34,38,41,42,43,45,46,47,48,49,50,51,53,54,59,60,62,63,64,66,67,68,69,71,72],read_csv:[5,8,10,11,12,14,17,26,28,32,43,44],read_excel:[],read_fil:[],read_fwf:8,read_hdf:[],read_json:28,read_orc:28,read_parquet:[28,64],read_pickl:59,read_sql:[],read_stata:[13,14,30],read_tabl:[],readabl:59,reader:[2,8,22,44,45,47,50,54,62],readi:[],readili:27,readm:[22,23,24,32,33],real:[2,5,10,11,13,17,25,29,30,35,41,44,46,47,48,49,50,53,54,58,60,63,67,69],realist:63,realiti:[33,44,63],realiz:[10,63,66],realli:[2,3,5,6,10,24,28,29,30,32,34,38,39,42,44,47,49,50,51,57,59,60,62,63,66,67],realm:[],reappear:[],reason:[2,4,5,6,10,17,24,28,30,33,35,39,40,42,47,49,50,51,52,57,59,60,62,63,64,66,74],reassign:[4,5],rebas:33,rebecca:[],recal:[10,12,17,22,23,27,40,47,50],recap:9,recapitul:[47,50],recast:10,receiv:[2,32,35,41,47,50,53],recent:[10,11,13,17,19,25,33,34,39,41,47,50,53,60,63,66,74],recip:[17,28],recod:[50,51,57,59],recogn:[2,8,10,33,47,50,67],recognit:[],recombin:[5,17,63],recommend:[2,3,7,13,27,28,33,39,41,47,50,53,59,62,66],reconnect:19,reconstruct:33,record:[5,10,14,24,25],recours:6,recov:[33,47,50,51,57],recoveri:[],recreat:[25,39],recruit:[],recurs:[21,42,52],red:[5,57,60],redirect:[],redistribut:[41,53],reduc:[17,41,51,53,63,67],reduct:[28,51],redund:[],ref:[8,33],refactor:[],refer:[8,17,21,22,30,32,34,40,41,51,52,53,63,66,67,74],referenc:[52,66],refin:60,reflect:[33,63,69],refresh:[5,12,32],refund:[],refus:14,reg:[],reg_chart:[],regardless:[8,37,38],regex:[8,9,11],region:[10,11,12,14,44],regist:[9,74],registri:[],regplot:[],regress:[9,44,47,50,59,65],regressor:51,regular:[4,8,11,17,22,29,32,35,42,62,63,66],regularli:[2,25,60,66],regulatori:39,reinsert:[],reinvent:17,reject:[48,54],rel:[6,22,26,30,41,53,59,63],relat:[6,34,39,46,50,51,60,63],relatedli:[],relationship:[2,30,34,44,46,51],relatively_democrat:[],relativlei:[],releas:[39,59,66],relev:[47,50,57,63],reli:[46,48,49,54,66],reliabl:[42,67],reliant:[],religion:[],reload:64,remain:39,remaind:[8,12],remak:[],remakr:[],remark:[6,60],rememb:[2,5,7,10,22,24,25,26,27,28,29,30,32,34,39,40,41,42,44,45,46,48,49,50,51,53,54,57,63,64,66,67],remind:[17,27,34,46],remiss:66,remot:[19,32,41,53,73],remov:[5,10,11,21,23,33,41,53],renam:[22,59],render:[33,42],rent:5,reorgan:[],repack:[],repeat:[28,39,47,50,67],repeatedli:2,repetit:[],repit:34,replac:[8,10,12,14,25,40,59],replai:33,replic:[47,50],repo:[17,33,47,50,51,62],report:[9,13,14,17,22,23,29,33,39,40,51,57,60,66],reporter_addl_co_info:17,reporter_address1:17,reporter_address2:17,reporter_bus_act:17,reporter_c:17,reporter_counti:17,reporter_dea_no:17,reporter_famili:17,reporter_nam:17,reporter_st:17,reporter_zip:17,repositori:[32,33,39,41,53,57],repositorii:57,repr:17,repres:[8,10,13,14,22,30,34,41,44,53,62],represent:[10,14],reproduc:66,reproject:[],republ:[],reput:59,request:[2,17,33,41,53,69],requir:[2,4,5,7,13,17,22,27,28,33,34,42,46,51,57,59,60,62,63,67],requisit:62,rerais:66,rerun:[],res_nam:17,res_valu:17,rescal:[],research:[3,40,44,51,57,59,60,62,63],reset:[35,36,42],reset_index:36,reshap:[9,24,51,71],resid:13,residenti:[47,50],residu:65,resolut:23,resolv:[39,50,57,58,66],resourc:[2,5,7,9,16,24,26,41,44,53,57,59,62,63],resource_group:[],respect:[22,28,50],respmod:[],respond:[2,13,25,40,60,69],respons:[29,39,66,69],respresent:28,rest:69,restart:[],restaur:22,restrict:39,result:[2,4,5,8,11,13,17,19,21,22,24,25,27,30,31,34,35,36,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,59,60,62,63,65,66,67,74],resum:[],retail:6,retain:[],retir:40,retri:[],retriev:[],retrospect:[],revenu:[41,53],revers:33,revert:66,review:[2,4,9,22,26,29,33,34,42,43,44,46,51,57,60],revis:39,revised_company_nam:17,revisit:[],revok:[],rewind:33,rg:64,rgeo:[],rhistori:33,rica:[],rich:[44,48,49,54],richer:46,richest:[46,48,49,53,54],rico:[],rid:40,ridden:58,right:[4,5,12,13,17,19,28,30,32,33,34,35,37,38,39,40,41,42,44,48,49,53,54,57,63],right_index:28,right_onli:39,rightli:57,rightmost:[],rigor:3,rise:[17,30,49,54],risen:[],risk:[51,59,60,63],river:[],riversid:[],rm:[9,33],rmdir:[],road:[23,47,50,60],robust:[46,66],rock:[],rodent:22,role:[60,69],roll:[],rome:[],ronald:[41,53],room:[60,69],root:[19,33],roper:[],ror_:[],rough:9,roughli:[17,28,31,63],round:[8,50],round_trip:8,rout:6,routin:57,row:[5,8,12,13,14,17,24,25,28,30,34,35,38,39,42,43,46,47,59,64],row_group_offset:64,row_index:12,rows_to_get:[],rprof:66,rsa:[],rstudio:32,rsync:[],rtf:[],rtol:[],rubric:[],rude:[],rudin:2,ruggl:[41,53],ruin:[],rule:[5,28,42,59,60,66],run:[2,4,5,6,10,12,13,14,17,19,21,22,25,26,27,28,29,30,31,32,33,34,35,37,39,40,41,42,46,47,48,50,51,52,53,54,59,60,63,66,67,72],run_simul:63,run_test:[],runtim:[],russia:[10,11,12,14],russian:[],rvalu:17,rwanda:[],s3:[8,19],s8f2_ks15h315z5thvtnhz8r0000gp:12,s:[2,4,5,6,8,9,10,11,12,13,14,15,19,21,22,23,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,57,59,62,64,66,68,69,72],s_total:[],sacramento:[],sacrosanct:[],sadli:[6,13],safari:22,safe:[28,32,42,63],safegraph:[],safeguard:[],safer:[],safeti:6,sai:[2,5,6,8,10,11,12,13,22,24,26,33,34,41,42,46,47,50,51,53,57,59,60,63,66,67,74],said:[2,6,10,13,17,32,48,49,50,54,59,60,66],salari:[2,40,41,53],salaries_in_thousand:[],sale:39,same:[2,5,6,8,11,12,13,14,17,19,21,22,24,25,27,28,29,30,32,33,34,36,37,38,39,41,42,43,44,46,47,50,51,53,57,60,62,63,64,66,67,74],sampl:[13,17,25,28,30,39,40,41,46,47,48,49,50,51,53,54,64,65],san:[],sanaa:[],sanction:[],sane:44,saniti:[10,39],sanitize_datafram:[],santa:[],santiago:[],sarah:[41,53],sarajevo:[],sata:74,satelit:[],satellit:[],saturdai:[],saudi:44,savabl:[],save:[5,9,21,22,23,24,25,26,29,30,32,37,38,64,66],saw:[11,31,38,47,50,63],scala:17,scalabl:[],scalar:[8,27,28],scale:[17,43,74],scale_s:[],scale_size_continu:[],scale_x_continu:[],scale_x_log10:[],scale_x_revers:[],scale_x_sqrt:[],scale_y_continu:[],scaler:[],scaleunit:[],scan:[],scandinavia:[],scanner:[],scarc:[],scatter:[39,43,44,68],scatterplot:[],scene:[17,27,33,50,59],schedul:[17,19,66],schema:[],scheme:[8,37],schltype:[],school:[2,13,30,40,60],schouweil:[41,53],sci:[57,67],scienc:[1,4,5,7,13,27,32,47,48,49,50,54,57,58,62,63,66,71,74],scientif:[3,59,63],scientist:[2,5,6,7,13,14,17,30,42,44,45,47,50,51,57,59,60,63,66,67],scikit:[7,9,17,27,66,71],scikitlearn:71,scipi:[],sckikit:9,scope:[2,59],score:[11,12,14,27,41,44,46,47,50,53],scp:[],scratch:27,screen:[22,23,32],screw:[],script:[31,66],scroll:34,se:17,seaborn:[4,38],seamlessli:[],search:[30,60],searchabl:[],second:[2,10,12,19,22,23,32,34,35,36,39,42,52,62,63,64,66,67,74],second_column:34,second_matrix:42,second_seri:[],second_subset:[],secondari:[],secondhand:3,secret:[9,67],section:[9,22,28,42,51,61,63,66,71],secur:[34,35,60,63],security_group:[],see:[4,6,8,9,10,11,12,13,14,17,19,22,24,26,27,28,29,30,31,32,33,34,36,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,57,58,59,60,62,63,66,67,68],seed:[13,35,42,50],seek:[13,46],seem:[2,4,10,11,17,21,29,30,40,41,44,48,49,50,51,53,54,59,62,63,69],seen:[17,34,48,49,54,66,69],segment:23,segrat:47,segreg:50,select:[5,24,28,32,33,37,38,39,40,41,42,44,45,47,48,50,51,53,54],selection_interv:[],selection_singl:[],selector:[],selectornam:[],self:[17,27,34,66],sell:39,semest:[],semiolog:[],send:[2,5,19,37,38,66],send_recv_from_rpc:19,sens:[2,4,8,13,17,22,24,28,29,30,38,39,43,47,48,49,50,54,59,60,67],sensibl:34,sensit:6,sensor:14,sent:29,sentec:[],sentenc:31,sentinel:[13,14,30,40],sep:[8,9,17],separ:[8,12,22,24,33,41,42,43,44,45,46,53,57,63],seper:[63,66],sequenc:[8,17,33,63],sequenti:63,seri:[4,6,8,9,10,11,14,17,24,28,33,35,36,40,43,48,49,54,57,67,70,71],serial:63,series_dtyp:17,series_w_numeric_index:[],seriou:[3,6,59,67],serious:[5,13,17,47,50,69],serv:[],server:[32,33,63],servic:[17,19,33,51,57,59,60,62],session:[17,19,22,28,32,37,38,48,54,63],set:[2,4,5,6,8,9,11,12,13,14,15,17,19,22,23,25,26,27,28,29,30,32,33,34,35,37,38,39,40,41,46,47,48,50,51,52,53,54,57,58,59,60,61,62,63,66,71,72,74],set_cr:[],set_geometri:[],set_index:28,set_opt:39,setitem:[],settingwithcopywarn:12,settl:[],setup:[5,9,17,19,26,32,37,38,58,66,71,72],seven:17,sever:[28,29,33,34,39,46,51,60,66,74],sex:[13,25],sexist:[],sf:[],sfvmhgqeyn:64,sh:[],shadow:[],shape:[6,28,51,60,65],shapefil:[],share:[13,22,25,33,34,36,41,42,46,48,49,53,54,57],share_:[],share_f_drugoff:[],share_feloni:[],share_viol:[],sharpli:[],shasta:[],she:2,sheepskin:30,shelf:59,shell:22,shelv:[],shift:[37,38],shifted_and_scaled_back:[],shine:59,ship:29,shipment:[17,26,29],shipper:29,shockingli:60,shoot:[9,67],shope:63,shortcom:63,shortcut:[22,61],shorten:31,shorter:67,shortest:[],shorthand:13,shortli:62,shot:[48,54],should:[2,4,5,6,8,10,13,14,17,22,24,25,26,27,28,29,30,31,32,33,34,37,38,39,40,41,44,46,47,50,51,53,59,60,62,64,66,67,74],should_rejoin:[],shouldn:[26,33,34,43,57],shove:17,show:[2,5,13,23,28,29,30,32,33,36,39,42,46,62,63,66,74],shown:[13,60,63],shp:[],shuffl:28,shut:26,shx:[],shy:[],si:[],side:[9,12,19,33,36,37,38,48,49,51,54,60,67],sidebar:37,sidewai:[],sierra:[],sight:22,sigma:27,sign:[9,12,32],signal:[30,47,50],signatur:8,signific:[8,41,47,50,51,53,60,63],significantli:34,silent:66,silicon:63,silli:11,silver:63,sim:63,similar:[17,22,32,34,39,41,45,46,50,53,60,66],similarli:[5,13,22,44,52,66],simpl:[2,6,22,26,32,39,43,44,47,48,49,54,59,63,67,69],simpler:[46,59],simplest:27,simpli:[39,41,48,49,52,53,54],simplic:22,simpliest:63,simplif:44,simplifi:40,simplist:[],simul:[42,57,59,63],simulan:[],simulate_weath:63,simultan:[2,57,63],sinc:[2,4,5,6,11,13,14,17,22,23,24,28,29,30,32,33,34,39,40,41,42,46,47,50,51,53,59,63,67],singapor:[48,49,54],singl:[5,6,8,9,12,13,17,22,23,24,28,29,33,34,38,41,43,46,47,50,51,53,63,74],single_fil:[],singular:[],siskiy:[],sit:63,site:[8,10,17,19,27,34,46,57,58,60,62,65,66],situat:[5,10,14,29,33,39,48,49,52,54,63,67],six:[27,29,66],sixteen:[],size:[5,6,11,17,24,28,29,35,39,42,63,64,67],sjoin:[],sjoin_nearest:[],skeptic:[47,50],sketch:52,skew:[41,53,65],skill:[6,24,27,30,39,43,46,59,60,62],skim:9,skinni:[],skinny_matrix:[],skip:[8,9,13,27,33,37],skip_blank_lin:8,skipfoot:8,skipinitialspac:8,skipna:[],skiprow:[5,8],sklearn:[4,27,47,50],skopj:[],skull:[],slam:[],slb:[],sleep:66,sleight:[],slice:[12,28,42],slider:[],slightli:[2,13,17,29,41,47,50,53,59,61],slip:[],slipperi:[],slog:57,slope:44,slot:[34,74],slow:[5,15,23,24,28,59,63,64,66,67,74],slower:[17,28,66,67,74],slowest:17,slowli:[26,67],slurm:[],slwt:[],sm:65,small:[2,4,5,6,7,10,11,12,14,17,22,23,24,26,28,30,31,33,38,39,40,41,44,48,49,52,53,54,57,63,64],smaller:[5,17,25,26,28,50,51,63],smallest:[],smallworld:[11,12,14],smart:[15,17,67],smarter:67,smf:[44,51,65],smoke:[47,50,60],smoker:51,smoking_and_bw:[47,50],smooth:[6,19],smoothest:[],sn:[],snake:[],snap:[48,54],snapshot:49,sneak:[],sniffer:8,snippet:59,snowflak:63,so:[4,6,7,8,10,11,12,13,14,17,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,53,54,57,62,63,64,66,67,69,72],sobek:[41,53],social:[30,34,35,40,51,59],social_security_numb:[34,35],socioeconom:51,socket:66,softwar:[4,7,9,17,32,57,59,64],soil:[],solano:[],sold:[],solder:6,sole:[59,63],solid:6,solomon:[],solut:[4,25,28,30,34,39,40,41,46,48,50,51,53,54,63,66,67],solv:[2,28,33,57,59,60],som:[],some:[5,6,8,10,11,13,14,17,19,22,23,24,26,27,30,32,33,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,59,60,62,63,64,66,67,69,72,74],somebodi:[],somedai:17,somehow:[],someon:[2,13,14,22,30,33,40,48,49,54,59,69],someth:[2,4,5,6,10,13,17,21,22,24,27,28,30,33,37,39,43,44,45,46,47,48,49,50,54,57,59,60,63,66,67,69,74],sometim:[5,10,12,14,15,17,21,24,25,28,30,33,35,39,42,46,47,50,59,63,67],somewhat:[41,53],somewher:[22,27,28,37,63],song:[],sonoma:[],soon:[17,28,38,60,62,66,72],sooner:5,sophi:63,sophia:[41,53],sophist:[47,50,59,60,63],sorri:[24,26,33,38,57,60,66],sort:[5,13,22,24,28,29,35,36,38,48,52,54,57,59],sort_index:[],sort_valu:[36,54],sortabl:[],sorted_incom:[],sot:66,sound:13,sourc:[10,17,31,41,47,50,53,57,58,63,66],source_data:[],south:[48,49,54],sp:[],space:[5,8,17,22,24,33,37,46,52,74],spaghetti:[],spare:[],spark:[5,59],spatial:59,spawn:[],speak:[6,27,47,50],speakeng:[],spear:[],spec:[],specfic:[],special:[11,13,14,25,26,28,30,47,50,59,63],specialist:[],specialti:[],specif:[2,5,7,8,11,14,17,21,24,26,28,30,32,33,37,43,47,50,57,59,62,64,69],specifi:[4,5,8,10,12,22,26,28,35,36,39,47,50,51,63,65],speed:[8,9,29,51,59,63,74],speedup:[63,66,67],spell:11,spenc:30,spend:[2,13,60,62,66,74],spender:[],spent:[24,47,49,62,66],sphere:[],spin:[29,63,74],spinal:[],spine:[],spiral:31,spirit:[48,49,54],split:[1,9,39,40,51],splurg:6,sport:[],spot:[],spread:[],spreadsheet:[22,59],spuriou:51,sq:[],sql:5,sqrt:[],squar:[9,23,27,44,47,50,51,59,63,65],squared_valu:[],squeez:8,squiggl:[],squish:[],ssd:[6,74],ssh:73,sslerror:34,sso:3,st:[],stabl:[8,12,42,66],stack:46,stackoverflow:73,staff:2,stage:2,stagger:60,stai:[13,25,33,39,51,60,66],stake:2,stakehold:[],stall:63,stand:[17,22,23,40,60],standand:[],standard:[4,6,8,17,25,27,28,30,39,40,41,43,44,46,48,50,53,54,58,59,60,64,65,67,68],standard_d11_v2:[],standard_ds11_v2:26,standard_ds4_v2:26,stanford:2,stanislau:[],stapl:60,stare:[],stargaz:[],start:[2,4,5,8,11,13,15,17,22,23,24,25,26,27,30,31,32,33,34,35,36,39,40,41,42,43,46,47,48,49,50,51,53,54,59,60,61,62,63,66,67,69,74],startegi:32,starter:[13,37],starting_temp:63,startup:[],stat:[51,59,65],stat_smooth:[],stata:30,statalist:59,state:[2,6,13,17,23,25,29,30,33,34,39,40,41,47,50,53],statefip:[],statefp:[],statehold:[],stateicp:[],statement:[17,34,38,42],station:24,statist:[9,13,27,30,44,47,50,51,54,58,59,60,65],statistician:[27,47,50,51,59],statsmodel:[4,9,27,44,46,47,50,65,67,71],stattool:65,statu:[13,14,17,23,28,29,30,33,51],std:[13,28,43,54,65,66,67],std_delai:28,std_delay_r:28,std_dev:63,stdin:[],steal:[],steeper:[],step:[2,13,17,22,33,38,47,50,57,59,63,66,67],steppingston:[],steven:[41,53],stick:[],sticker:[],sticki:51,still:[5,7,13,24,31,32,33,36,37,38,39,41,42,44,46,51,53,59,60,61,62,63,64,66],stimul:2,stipend:2,stock:[],stockholm:6,stolen:59,stop:[13,21,63,66,74],stopiter:17,storag:[6,8,19,33,71],storage_opt:[8,26],storageopt:8,store:[4,5,22,25,27,28,30,33,34,39,40,41,46,48,50,51,53,54,64,74],stori:[25,44,45,74],str:[8,10,28,46,66],straight:[44,46,47],straightforward:[5,50],straightfoward:66,strand:[],strang:[],stranger:[],strata:[],strategi:[7,9,22,32,46,59,63,71,74],stream:[5,19],street:[22,23],strength:[17,59,64],stress:6,stretch:[],strict:[8,44],strictli:54,strike:29,string:[4,5,8,9,10,24,25,28,31,35,39,40,41,47,48,50,51,52,53,54,59,64,66,67,71],stringio:8,strip:11,stripei:52,strive:[48,49,54],stroke:[],strokedash:[],strong:[59,60,62],strongest:59,strongli:[2,6,62],strorag:64,structur:[1,2,8,12,17,21,22,23,36,39,42,46],struggl:[2,24,33,47,49],stuck:[30,33,60],student:[2,11,13,24,26,27,37,41,53,57,58,60,72],student_ag:[],studi:[2,17,30,34,44,47,48,49,50,51,54,56,57,60],studio:[],stuff:[5,10,33,47,50,51,60,67],stumbl:6,stunt:60,style:[27,72],su:[],sub:[11,17,28,34,40,42,63,71],subject:[46,47,50,58,62],submit:[4,25,30,32,34,39,40,41,46,48,50,51,53,54,57,69],subnet:[],subplot:[],subpopul:51,subsamp:[],subsampl:[41,53],subscrib:[],subscript:26,subsect:9,subsequ:[25,34,42,51],subset:[5,8,9,12,13,14,17,25,26,29,30,31,35,40,42,46,48,49,51,54,59,64],substant:[2,49],substanti:[2,5,28,30,34,60,63,74],substitut:[6,11,25],substr:11,subtitl:60,subtl:[39,47,50,63],subtract:46,succe:[2,30],succeed:[],success:[2,13,30,39],successfulli:[39,60],suce:62,suck:57,suddenli:57,suffic:40,suffici:[2,41,53],suffix:[22,30,37,38,66],suggest:[2,11,13,17,22,25,28,30,32,33,38,42,47,50,60,63,66,69],suit:[4,63],suitabl:8,sum:[17,24,28,34,48,49,51,53,54],sum_:[41,48,49,53,54],sum_i:40,summar:[13,32,44,58],summari:[44,51,54,65],summary_fram:[],summary_stat:54,summat:[48,49,54,67],summer:[2,44,62],sun:31,sundai:[],superiv:[],supermarket:[],superpow:[],supervis:[47,50,60],supervisor:[],suppli:[],support:[8,11,17,19,27,28,47,50,51,59,64,66,72],suppos:[11,12,13,14,17,22,28,33,35,39,40,41,42,46,47,50,53,57,63,67],suppress:17,suprisingli:[],sur:[],sure:[4,6,12,17,19,23,24,29,30,32,33,34,37,38,39,40,42,43,44,45,46,47,50,51,52,57,59,60,62,63,67,69],surfac:[],surinam:[],surpris:[51,52,63,68],surprisingli:[6,47,50],survei:[10,13,14,25,30,40,41,53,73],suspect:2,suspici:[],sutter:[],suzi:9,svg:[],svm:[47,50],svr:[47,50],swcarpentri:[],swe:1,swim:46,swith:32,switzerland:[48,49,54],sy:[28,63],syllabu:9,symbol:[22,42],symmetr:[],sync:19,synchron:[],syndrom:[3,6],synopsi:[],syntact:[],syntax:[5,7,11,17,27,31,38,42,46,47,50,51,57,59,66],syntaxerror:[],system76:6,system:[4,5,17,22,26,28,29,32,34,38,39,46,47,50,51,57,63,74],systemat:[48,49,50,54],sytem:[],t0:[],t1:[],t:[2,4,5,6,7,8,9,10,11,12,13,14,19,21,22,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,51,52,53,54,57,59,62,63,64,65,66,69,74],ta:[4,34,41,46,51,53,69],tab:[5,17,24,26,28,29,32,37,43,69],tabl:[8,17,25,30,38,41,46,53,74],tabul:25,tabular:[9,17,22,58,59,64],tack:66,tada:13,tag:34,taggint:[],tail:[13,23,28,30,40,41,53],tailnum:28,tailor:[26,62],tajikistan:[],take:[2,5,10,13,14,17,22,23,24,26,27,28,29,32,33,34,36,39,40,41,42,45,46,47,48,49,50,51,53,54,59,60,62,63,66,69,74],takeawai:[],taken:[28,41,53,59,60,62],talk:[2,3,13,17,24,25,33,37,39,41,53,59,60,63,64,66,67],taller:[],tallest:[],tallinn:[],tank:2,taoqccnkhh:64,tape:[],tar:24,target:[],task:[2,5,11,13,19,23,27,28,29,48,49,51,54,59,60,63],tast:[],taught:[13,58],tax:[6,41,53],tax_:53,tax_c:53,tax_cutoff_:53,tax_cutoff_c:53,tax_cutoff_d:53,tax_d:53,taxi:23,tb:[6,17,66],tcp:[17,19],tcpclient:19,teach:[2,7,17,38,60,62,66],team:[2,17,32,33,57,69],teammat:33,tech:57,technic:[2,57],techniqu:12,technolog:[2,6,48,49,54,59,66],tediou:[],teeth:[],teh:52,tehama:[],telescop:[],tell:[5,10,11,13,22,23,25,28,29,30,32,33,34,39,43,44,45,50,52,63,66,67],temp:[24,63],temp_at_t:63,temperatur:[24,63],templat:52,template_row:[],temporarili:[],tempt:[],temptat:60,ten:[30,44,59,66],tenant:[],tend:[2,27,30,39,42,46,47,50,51,59],tendenc:[2,63],tennesse:[],tenni:[],tensor:[],tent:58,term:[17,22,24,27,30,39,40,50,59,61,63,65,69,74],termin:[32,63,67,73],terminolog:[47,50],terribl:[2,33],terrif:63,territori:39,test:[4,27,31,39,42,47,48,49,50,51,54,60,64],test_fil:[],test_siz:[47,50],tex:[],texa:[],text:[5,22,26,32,33,34,37,38,44,57,59,69],text_fil:[],textfil:32,textfileread:8,textpars:8,textual:59,th:[],tha:[],thailand:[],than:[2,4,5,6,7,8,10,11,12,13,14,15,17,19,22,24,25,26,27,28,30,31,32,33,34,35,38,39,40,41,43,44,46,47,48,49,50,51,53,54,57,59,60,62,63,64,65,66,67,74],thank:[],thankfulli:[12,24,36,47,50,66],thanksgiv:9,the_list:[],the_name_of_your_commit:33,thei:[2,4,5,6,7,8,10,11,13,14,17,21,22,23,24,27,28,30,31,33,34,35,36,37,38,39,40,42,43,44,46,47,50,51,52,57,58,59,60,62,63,66,67,74],them:[2,5,6,8,11,12,13,17,19,22,23,25,26,27,28,30,31,32,33,34,36,37,39,40,41,42,43,46,47,50,51,53,57,59,60,62,63,66,67],theme:3,theme_class:[],themselv:[28,44,58,63,66],theoret:[],theori:[34,39,47,50,51,67],therapist:3,therefor:[2,44],thi:[2,3,4,5,6,7,8,10,11,12,13,14,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,56,57,58,59,61,62,63,64,66,67,69,72],thin:[5,17,29,46,67],thing:[2,5,6,7,10,11,13,14,15,17,21,22,24,25,29,31,32,33,34,36,39,44,45,46,47,50,51,52,57,59,62,63,66,67,74],think:[4,5,6,10,17,22,23,27,28,30,31,33,34,39,40,41,44,46,47,48,49,50,51,52,53,54,56,57,60,62,63,64,66,67,72],third:[2,4,25,30,34,35,39,40,41,42,46,48,50,51,53,54,67],third_column:34,thirti:[],this_file_is_invis:[],this_is_gonna_be_a_problem:33,this_obj:65,those:[2,5,11,12,13,14,17,22,25,26,27,28,29,30,31,32,33,34,39,40,41,43,46,47,50,51,53,57,59,60,62,63,67,74],though:[4,5,6,11,12,13,17,22,26,30,32,33,39,43,47,50,51,52,57,59,63],thought:[2,10,35,39,43],thousand:[5,8,24,63],thread:[17,28,29,66],three:[4,6,8,13,21,24,25,28,30,31,38,39,40,41,46,48,50,51,52,53,54,59,63],threshold:[],throttl:[],through:[9,11,17,19,22,24,26,27,33,37,38,41,44,47,50,52,53,58,59,60,62,69],throughout:[27,53],thu:[13,33,34,42,52,59,63,67],thumb:28,thur:9,thursdai:[9,22,23],thursdays_and_fridai:23,thursdays_and_fridays_w_columnnam:23,ti:26,tick:74,ticket:[],tidi:46,tier:[],tiger:52,tight:[],tightli:17,till:[22,28,32,57,63],time:[2,4,5,6,8,11,13,17,19,22,24,25,29,30,31,32,33,34,35,36,37,39,40,41,43,44,46,47,48,49,50,51,52,53,54,57,59,60,62,63,65,66,67,69,72,74],time_nonvector:[],time_vector:[],timedelta:28,timeit:[35,66,67],timeout:19,timeouterror:19,timer:26,timeunit:[],timezon:8,tini:74,tip:[24,63],tire:[],tissu:[],titanium:[],titl:[32,33,43],tj:12,tjk:[],tl:19,tmax:[],to_cr:[],to_csv:8,to_datafram:28,to_datetim:[8,17],to_excel:[],to_fil:[],to_hdf:[],to_numer:28,to_parquet:[28,64],to_sql:[],to_stata:[],to_timedelta:28,to_wkt:[],todai:[14,24,25,26,27,29,39,40,47,49,50,57,63,64],togeth:[8,17,23,28,36,43,54,57],toi:[10,11,27,30,64],told:[13,32],toler:17,tomorrow:63,ton:[5,51,59],tone:[],too:[2,5,6,8,11,13,14,17,26,30,33,34,36,41,46,47,50,51,53,57,58,59,64,66],took:[13,24,63,66,69,74],tool:[4,5,7,8,9,10,11,12,13,17,19,22,23,30,32,33,38,40,44,46,51,57,58,59,60,62,63,66,67,72,73],toolbox:60,toolkit:[],tooltip:[],top:[2,9,10,17,23,24,25,26,33,34,37,38,41,46,48,49,53,54,59,60,66,67],top_few_lines_of_temp:[],topic:[4,9,57,60],topograph:[],topolog:57,tornado:19,torvald:15,total:[2,4,13,14,17,24,25,28,29,30,31,34,39,40,41,46,48,50,53,54,62,63,66],total_bil:[],total_incom:[],total_popul:51,total_population_2009:[],total_population_2018:[],total_tim:[],totalkil:[],tottim:66,touch:[],toward:[47,50],tower:[],town:[],tp:66,tpksmslrei:35,trace:[],traceback:[9,10,17,19,34,66,71],track:[17,21,31,33,34,35,57,59],tracker:57,tractabl:[],tractc:[],traction:46,trade:[39,51,66],tradeoff:[5,9],trader:[],trail:[],train:[6,62,63],train_siz:[47,50],train_test_split:[47,50],trajectori:39,transaction_cod:17,transaction_d:17,transaction_id:17,transcrib:[],transcript:[],transfer:[6,17,41,53,64,74],transfers_:53,transform:[34,44,62],transform_dens:[],transform_divis:17,transform_loess:44,transform_quantil:[],transform_regress:[],transist:63,transistor:63,transit:2,translat:13,transpar:[],transpos:65,transvers:[],trap:42,travel:[],travers:[],treat:[8,11,14,22,25,30,34,38,39,40,47,51,57,66],treatment:[39,47,50],tree:33,tremend:[44,62],trend:[24,44],tri:[4,10,17,22,33,47,50,51,66],trial:60,trick:[13,31,74],tricki:[17,21,28,29,37,52,66],trickier:50,trickiest:28,trigger:29,trillian:4,triniti:[],trip:8,tripl:[],trivial:[11,28,33,34,46],trope:[],troubl:[9,17,23,42,51,67],troubleshoot:66,true_valu:8,trueli:42,truli:[],truncat:[],trust:[2,54],trusti:[],trustworthi:[],truth:59,truthfulli:33,tsv:[17,22,26],tue:[9,65],tuesdai:[9,64],tular:[],tune:66,tuolumn:[],tupl:[46,52],turn:[5,6,11,13,24,28,29,30,31,38,39,45,47,50,51,52,60,62,63],tutori:[17,28,37,42,52,57,58,62,71],tuturi:63,tuv:[],tuvalu:[],tweak:[7,59],tweet:[],twelv:[],twenti:[],twice:[28,63],twitter:[],two:[2,5,6,8,10,11,12,13,14,21,22,24,25,27,28,29,31,32,34,36,38,39,42,43,44,45,46,47,50,51,57,59,62,63,64,66,67,74],two_ton:[],twofold:67,txt:[22,23,24,41,43,53],ty:[],tylenol:39,typ:17,type:[2,4,5,8,12,13,15,17,22,23,25,28,29,30,31,32,34,37,38,39,43,46,47,50,51,60,63,64,65,67],typeerror:[10,17],typic:[],typingerror:66,typo:39,u21:[],u32:[],u4:[],u7:[],u:[41,53],udf:17,ufunc:[],ufunctypeerror:[],ugh:[],ugli:[],uglier:[],uh:[13,36],uint16:[],uint32:[],uint64:[],uint:[],ukrain:[10,11,12,14],ultra:6,umn:[41,53],un:2,unabl:17,unalt:8,unary_union:[],unavail:14,unawar:[2,39],unbeknownst:[],uncaught:[],uncertain:[],unchang:[],unchart:31,uncheck:[],unclear:[],uncomfort:60,uncommon:[14,33,63],uncompress:[5,64],undefin:[],undemocrat:44,under:[5,11,13,17,25,26,30,31,33,39,40,41,48,53,54,59,60],underestim:[40,41,53],underflow:[],undergradu:[2,30],underlai:22,underli:[17,42,47,50,57,58,63],underpin:[],underscor:7,understand:[2,5,6,7,9,13,17,27,32,33,34,40,42,44,47,49,50,59,60,62,63,67,69,71],understood:[51,62],undesir:[],undisput:13,undo:57,unemploi:[13,14,30],unemploy:13,unemployment_percentag:[],unequ:[48,49,54],unexpect:[],unfashion:31,unfinish:[],unfold:[],unfortun:[22,57,67],unicod:[16,22],unifi:66,uniform:[41,53],uniformli:[],unimagin:74,unimport:[],unintend:[],unintenti:[],union:17,uniqu:[8,10,13,14,23,33,34,39,46,57,60,63],unit:[13,17,25,28,30,34,40,41,44,46,47,50,51,53,63],uniti:[],univers:[2,19,22],unix:[],unknow:[47,50],unknown:[2,47,50,51],unlabel:[],unless:[4,6,17,28,42],unlik:[4,13,14,17,23,25,28,41,46,47,50,53,59,60,64,66,67],unlimit:33,unnam:[],unnecessari:[],unneed:5,unnot:[],unpack:63,unpack_zerodim_and_def:17,unpars:8,unpredict:[],unproduct:[],unread:[],unreason:[],unregard:31,unsign:[],unstack:46,unsubscrib:[],unsuccess:[],unsupport:[8,66],unsupportederror:66,unsur:[39,47],unsurprig:[],unsurprisingli:11,until:[17,22,23,24,28,29,34,39,47,49,58,67],unto:63,unusu:59,unwant:[],unwittingli:[],unzip:[22,24,26,28,29,46],up:[2,5,6,8,9,10,11,12,13,17,19,21,22,24,26,27,28,29,30,32,33,34,37,39,41,42,44,45,46,47,48,49,50,52,53,54,58,59,60,62,63,66,67,69,71,72,74],upcom:[13,41,53],updat:[17,23,26,32,33,34,41,44,46,53,69],upfront:5,upgrad:[],uphil:57,upload:[4,25,26,30,39,40,41,42,48,50,53,54],upon:[4,8],upper:[8,11],uppercas:[],upsid:[],uptak:59,urban:2,url:[4,8,13,25,30,32,34,41,46,51,53],urllib:8,us:[2,3,5,6,7,8,9,10,11,12,13,14,19,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,59,63,65,68,69,72,74],us_acs_2017_10pct_sampl:[13,14,25,30,40],us_americancommunitysurvei:[13,14],us_household_incom:[41,53],usa:[28,41,53],usag:[8,24,73],usbempwyah:64,usc00050848:24,usd:26,use_inf_as_na:[],use_numexpr:17,usecol:[5,8,17],useless:46,user:[6,8,10,17,19,22,26,27,28,32,33,39,44,47,50,57,59,60,63,64,65,66,67],user_guid:[8,12],usernam:8,userwarn:[],usg:[],usr:[],usual:[4,5,10,12,17,19,22,24,40,51,57,66,67,69],utc:8,utf:8,util:[5,11,14,17,39],utm:[],utterli:31,uzbekistan:[],v0_8:[],v100:[],v11:[41,53],v1:[],v2:[5,17],v5:[],v:[3,9,16,42,71],vacat:[],vagu:[],valid:[4,8,9,47,50,65],valu:[4,6,8,10,12,13,14,15,17,22,24,25,27,28,30,34,36,39,41,42,43,44,46,47,48,49,50,51,52,53,54,57,59,63,66,67],valuabl:[2,5,27],value1:[],value31:[],value_column:[],value_count:[10,11,13,28,30,39,40],valueerror:[10,17,34],valuewarn:65,van:[],vanessa:69,vanilla:66,vaniti:[],vanuatu:[],var212:[],vari:[25,34,40],variabl:[4,5,9,10,11,13,17,21,25,28,30,32,33,34,38,39,40,41,42,43,44,46,47,48,50,51,53,54,57,58,59,65,66,67,69,71],varianc:27,variat:[41,44,46,51,53],variou:[17,47,50],vast:[],vault:[],vconcat:[],ve:[2,3,10,11,12,13,14,17,22,24,25,26,27,28,30,31,32,33,35,37,38,40,44,45,46,47,48,49,50,51,52,54,58,60,63,64,66,74],vect1:[],vect2:[],vector1:[],vector2:[],vector:[9,12,15,27,41,47,48,49,50,51,53,54,59,63,66,70,74],vector_size_in_gb:[],vega:[],vega_dataset:[],vehicl:23,ven:[],venezuela:[],ventura:[],verbatim:[],verbos:8,veri:[2,4,5,6,10,11,12,13,14,17,23,24,27,30,32,33,34,39,40,41,44,46,47,48,49,50,52,53,54,57,59,60,63,66,67],verif:[],verifi:60,verison:[],versa:25,versatil:29,version:[10,13,17,24,29,32,33,38,39,41,47,48,49,53,54,57,59,67],version_modul:19,versionad:8,versionchang:8,versionmismatchwarn:19,versitil:28,versu:[2,12],vertic:24,vessel:[],vetdisab:[],vfgzshnckl:64,via:[5,8,28,29,33,41,53],viabl:[],vice:25,video:[9,17,33,38,57,61,72],vientian:[],vietnam:[],view:[9,12,19,28,30,65,71],viewer:[],vim:32,violat:[22,60],violenc:[39,51],violent:[34,51],violent_arrest_rate_2009:39,violent_arrest_rate_2018:[],violent_tot:[],violin:[],virginia:[],virtu:[],virtual:[5,17],viru:[28,29],visibl:[32,33,37,41,53],vision:[],visit:66,visual:[9,28,33,41,48,49,53,54,62],vm:[26,71],vm_size:26,vmax:[],vmin:[],vnet:[],voila:[11,12,17],volum:[],volumetr:[],volunt:2,vote:[],voter:[],vs:[9,24,32,58],vscode:[],vulner:60,vut:[],w:[10,11,12,14],wa:[7,8,10,12,13,14,17,19,21,22,26,28,30,33,34,36,37,38,39,40,41,44,47,50,51,53,54,59,62,64,66,67],wage:[30,40,41,53,65],wai:[2,5,6,8,11,13,14,15,17,19,22,23,24,25,27,28,29,30,31,32,33,34,35,37,38,39,41,42,44,46,47,49,50,53,57,59,60,62,63,64,66,67,74],wait:[2,17,32,42,47,50,63,74],wait_for:19,walk:[],wall:[28,63],walmart:[],wanna:[],want:[2,4,5,6,8,10,11,12,13,14,21,22,23,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,51,52,53,57,59,60,62,64,66,67,68,69,74],war:39,warehous:[],warm:13,warn:[8,17,19,34,35,50,60,65],warn_bad_lin:8,warren:[],was_busi:[],washington:[26,29],wasn:[10,47,50,59],wast:[],watch:[3,9,16,17,24,26,31,38,57,61],watchlist:[],water:[],watson:65,wave:[],wavelength:[],wc:23,wdi:[38,44,45],wdi_data:[],wdi_melt:[],wdi_plot:[],wdi_reshap:[],wdi_small_tidy_2015:32,we:[1,2,4,5,8,10,11,12,13,14,15,17,21,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,57,58,60,62,63,64,66,67,72,74],weak:[2,59],wealth:[40,41,46,48,49,53,54],wealthi:[],wealthier:46,weather:[24,39,63],weather_at_t_plus_on:63,weather_at_time_t:63,weather_data:24,weather_std_dev:63,web:[51,59,60],webpag:32,webscrap:59,websit:[35,45,51,60,62],wed:[],wednesdai:9,weed:[],week:[2,23,24,26,29,34,39,57,62,68],week_2:[],week_3:[],weigh:6,weight:[40,47,49,50],weight_i:40,weight_in_lb:[],weird:[10,24,32,52],weirdli:[],welcom:[9,27,41,53],welfar:[],well:[2,4,5,6,10,12,13,17,19,24,28,32,33,34,37,38,39,40,43,44,46,47,50,51,53,58,60,62,63,66],wen:22,went:[35,36,39],were:[2,5,6,10,14,17,22,23,25,28,29,30,31,33,34,36,37,38,39,40,41,42,44,47,49,50,51,52,53,59,60,63,65,67,69,74],weren:[28,59],western:31,wg:[],wgs84:[],what:[1,2,4,5,6,7,8,9,10,11,13,14,19,21,22,24,25,26,27,29,30,31,32,33,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,56,59,60,62,64,66,67,69,71,72],whatev:[12,21,22,33,37,39,47,50,67],wheel:17,when:[2,4,5,6,7,8,9,10,11,12,13,14,17,19,21,22,23,24,26,27,28,29,30,31,32,33,34,35,37,38,39,40,41,42,43,44,46,47,48,49,50,51,53,54,56,57,58,59,60,62,63,64,66,67,68,69,74],whenev:[13,47,50,60,67],where:[2,3,5,8,10,11,12,17,22,27,28,29,30,31,32,33,34,36,37,39,41,42,46,47,48,49,50,51,52,53,54,57,58,59,63,66,67,74],wherea:[],whether:[2,5,8,13,15,25,27,30,34,39,41,44,46,47,50,51,52,53,60,63,66],which:[2,4,5,8,10,11,12,13,14,17,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,39,40,41,44,46,47,48,49,50,51,52,53,54,59,60,62,63,64,66,67,69,74],whistl:51,white:[25,34,40,47,50,51,52],white_nonhisp:[],white_nonhisp_weight:[],white_row:[],whitegrid:[],whitespac:[8,11],who:[2,4,6,13,17,19,24,25,30,31,32,33,34,35,36,39,40,41,44,47,50,51,53,57,59,60,62],whoever:5,whole:[4,5,13,17,22],whom:[30,40],whose:[2,12,24,25,30,31,47,50],why:[1,4,5,9,10,12,13,14,22,25,30,31,33,34,36,38,39,40,41,42,50,52,53,56,60,66,67,72],wickham:46,wide:[2,13,46,51,57],widget:[26,60],width:[8,24],wikipedia:63,wild:[],wildcard:[22,28],wildli:[],wildlif:[],wilkinson:[],willing:2,wilson:63,wind:[],window:[5,6,22,24,32,37,63],winner:[],wire:14,wisdom:69,wise:[8,28],wish:[2,5,25],with_traceback:66,withheld:[],within:[2,30,40,43,49,63,66],without:[2,4,5,8,9,10,13,14,22,25,27,30,31,32,33,34,35,39,40,41,42,46,47,48,50,51,53,54,57,59,66],wizard:19,wkt:[],wl:51,wm:9,wo_zxjlh:17,wolframalpha:[],woman:[],women:[13,25],won:[2,4,5,7,10,11,12,17,19,21,26,28,29,30,32,33,34,39,41,42,46,50,51,53,63,66,67],wonder:58,wonderfulli:[],woo:26,woofer:52,word:[17,22,25,26,27,30,31,32,34,38,39,40,41,46,48,49,50,52,53,54,57,66,74],word_count:31,wordpress:[],work:[3,5,6,7,9,10,11,12,13,14,15,17,22,23,24,25,26,27,29,30,32,33,34,37,39,40,41,43,44,45,46,47,50,51,53,57,58,59,60,62,63,64,66,67,69,71,72,74],workabl:6,workaround:28,worker:[17,19,22,26,28,29],workflow:[9,29,32,33,74],workhors:11,workload:17,workplac:[],workspac:26,world:[2,10,11,12,13,14,17,30,32,39,41,43,44,46,47,48,49,50,53,54,57,59,60,63],world_development_ind:32,worldwid:[],worri:[6,19,26,28,29,32,39,47,49,50,56,59,63,67,74],wors:[19,39,47,50],worst:[53,60],worth:[5,19,41,51,53,66],would:[2,4,5,6,8,10,11,12,13,14,17,21,22,27,28,29,30,31,32,33,39,40,41,44,46,47,48,49,50,51,52,53,54,59,60,62,63,66,67,69,74],wouldn:[2,6,17,22,39,40,60,63,66,67],wow:17,wrangl:[1,13,17,46,47,50],wrap:42,wrapper:[],wrestl:24,wrinkl:[],writ:[],write:[2,4,8,9,12,17,19,24,25,27,28,29,32,33,34,41,42,43,44,46,48,49,50,51,52,53,54,57,59,60,63,66,69,71],writer:[2,27,69],written:[4,7,11,17,22,27,34,42,46,48,49,51,54,59,60,62,66,67],wrong:[6,13,34,35,39,44,47,50,52,59],wrote:[19,22,31,32,33,43,57,67],wsl:6,wt:[],wtwfzmrkrj:64,www:[3,16,17,32,73],x0:8,x1:8,x27:17,x:[4,5,8,10,12,14,17,21,23,27,28,39,41,42,43,46,47,48,49,50,52,53,54,59,64,65,66,67],x_0:[],x_i:40,x_test:[27,47,50],x_train:[47,50],xarrai:[],xbool:[],xi:59,xint:[],xkcd:[],xl:[],xlab:[],xlabel:[],xlsx:[22,23],xmax:[],xmin:[],xrav:17,xseq:[],xvar:[],xvqunbqdek:64,xxd:22,xxxx:[],xxxxxx:[],xxxxxxxx:[],xz:8,y102szmlszq:[],y103szmlszq:[],y2:[],y:[3,5,17,21,22,23,27,28,39,42,43,47,48,49,50,52,54,59,65,66],y_0:[],y_copi:[],y_i:[41,48,49,53,54],y_test:[47,50],y_train:[47,50],yai:[33,47,50],yamhil:[],yamoussoukro:[],yarr:[],ye:[13,35,38,42,46,47,50,51,60,66,67],yeah:[36,63],year:[2,6,13,17,22,23,24,25,26,28,29,30,33,34,39,40,41,43,46,48,49,51,53,54,56,59,60,62,63,69],yelirstlgv:64,yellow:[5,31],yem:[],yemen:[],yera:[],yerushalmi:51,yet:[2,17,28,32,39,47,50,58,59,63,66,74],yield:[2,17],yint:[],ykurkgkf5hu:3,ylab:[],ylabel:[],yolo:[],york:[22,28],you:[3,4,5,6,7,8,9,10,11,12,13,14,19,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,56,57,58,59,63,64,67,68,69,72,74],young:[13,17,30],younger:[],younger_gap:[],younger_t:[],youngest:4,youngman:59,your:[2,4,5,9,10,11,12,17,19,22,24,25,26,31,33,35,36,37,39,40,41,42,44,46,48,49,51,52,53,54,56,57,59,60,63,64,66,67,69,71,74],your_arrai:[41,53],your_test_her:[],yourself:[2,17,22,24,26,31,41,47,49,51,53,57,59,60,63,66],yourusernam:[],youth:[],youtub:[3,16],yrav:17,yrimmig:[],yrnatur:[],yuba:[],yup:[10,51,66],yvar:[],z:52,zaf:[],zagreb:[],zaira:[35,36],zambia:[],zebra:52,zero:[12,34,40,63],zero_and_two:[],zero_to_on:[],zimbabw:[],zip:[8,22,23,29,37,38,46,47,50],zipcod:47,zogcwfrwhz:64,zone:[],zoo:52,zoom:28,zsh:32,zshrc:[],ztvpeyodwm:64,zxewnrbp:17},titles:["<no title>","<no title>","So You\u2019re Thinking About a PhD","Accessibility Tech for Data Science","Guidelines for Using the Gradescope Autograder","Big Data Strategies","Advice on Buying Computers for Data Science Students","Cheat Sheets","<no title>","Class Schedule","Cleaning Data Types","Fixing Data Value Problems","Editing Specific Locations","Identifying Data Problems","Missing Data","Data Structures","How computers think about numbers and text","Distributed Computing with dask","Distributed Machine Learning with dask-ml","Starting a Cloud Dask Cluster","Exercises","Return Values and Object Mutations","Welcome to the Command Line Basics Exercises!","Advanced Command Line Exercises","Big Data Exercises","Cleaning Data Exercises","Time to Scale!","Coding Your Own Linear Regression Model","Dask DataFrames","Importing ARCOS Data with Dask","Estimating Labor Market Returns to Education","Practicing with the VS Code Debugger","Git and Github, Part 1","Git and Github, Part 2","Groupby and Arrest Data","Index alignment","Index Alignment Exercises, Discussion","Jupyter Lab Exercises","VS Code Exercises","Merging Data to Understand the Relationship between Drug Legalization and Violent Crime","Missing Values Exercises","Measuring Income Inequality","Numpy Exercises","Plotting Exercises, Part 1","Plotting Exercises, Part 2","Build Your Own Chart","Reshaping Exercises","Machine Learning with Scikit-Learn","Measuring Income Equality with the Gini Coefficient","Measuring Income Equality with the Gini Coefficient","Machine Learning with Scikit-Learn","Maternal Smoking and Birth Weight","Variables v Objects Exercises","Measuring Income Inequality","Measuring Income Equality with the Gini Coefficient","Code-Drawing Template","Welcome to Practical Data Science I!","Git and Github","Hello!","Data Science Languages: Why So Many?","chatGPT and You","More on VS Code","Welcome non-Duke MIDS Students!","Parallel Computing","Parquet","<no title>","Solving Performance Issues","Speed in Python","Plotting with Pandas","Reviewing Code on Github","Solutions","Course Topics and Materials","VS Code for Data Science","<no title>","What is Big Data?"],titleterms:{"0":[32,41,53],"1":[5,22,23,25,30,31,32,34,35,37,39,40,41,42,43,44,48,49,52,53,54,67],"10":[22,25,30,34,39,40,41,42,44,53],"11":[22,25,30,34,39,40,41,42,44,53],"12":[25,30,34,39,41,42,44,53],"13":[25,30,39,42,44],"14":[30,39,42],"15":[30,39],"16":[30,39],"17":39,"18":39,"19":39,"2":[5,22,23,25,30,31,32,33,34,35,37,39,40,41,42,43,44,48,49,52,53,54,67],"20":39,"2018":39,"2020":[],"21":39,"22":[39,60],"23":39,"24":[],"3":[5,22,23,25,30,31,32,34,35,37,39,40,41,42,43,44,48,49,52,53,54],"4":[5,22,23,25,30,31,32,34,35,37,39,40,41,42,43,44,48,49,52,53,54],"5":[22,23,25,30,31,33,34,35,37,39,40,41,42,43,44,48,49,52,53,54],"6":[22,25,30,31,34,35,37,39,40,41,42,43,44,48,49,52,53,54],"7":[22,25,30,31,34,35,37,39,40,41,42,43,44,48,49,52,53,54],"8":[22,25,30,34,35,39,40,41,42,43,44,48,49,53,54],"9":[22,25,30,34,35,39,40,41,42,44,48,49,53,54],"boolean":[],"catch":60,"class":[9,58],"default":32,"do":[5,15,17,28,62,66,74],"final":[],"float":[],"function":[11,67],"import":[29,60,63],"long":60,"new":32,"public":[],"return":[21,30],A:[19,33,67],AND:[],AT:[],Be:[],By:[],IN:[],IS:[],If:[17,62],In:[2,49,60],Is:[2,57,60],It:[57,60],No:[],Not:2,OF:[],Of:[],On:67,One:[],THE:[],That:60,The:[11,36,49,60,67],There:17,To:2,With:38,about:[2,16,17],absolut:[24,47,49],access:[3,5],account:[],accuraci:[],activ:60,actual:[],ad:[],add:[],adjust:[],advanc:23,advantag:66,advic:6,aesthet:[],after:60,against:38,aggreg:[],ahead:[],aid:3,aka:3,align:[35,36],all:60,alloc:[],altair:[],altairn:38,altern:[],amdahl:63,an:[6,37,63],analysi:39,analyz:[],answer:[],ar:62,arang:[],arco:29,arrai:[],arrest:[34,39],asid:[],ask:6,assign:12,assumpt:34,attribut:[],authent:[],author:[],autograd:[4,25,30,34,39,40,46,48,50,51,54],avoid:3,aw:[],awai:[30,35,44],awar:[],azcopi:[],azur:[],azureml:[],back:[],backward:[],bad:[],base:42,basic:[3,22],beauti:[],befor:[17,62],below:[],benefit:[],between:39,big:[5,24,74],bigger:[],bin:[],birth:51,bodi:3,both:[],bracket:[],bring:[],broadcast:[],bug:[],bui:6,build:45,cach:[28,74],calcul:[49,60],can:17,capita:[],care:3,carefulli:[],categor:[],caus:[],caution:[],cautionari:[],censu:[],chain:12,challeng:13,chang:32,channel:[],chart:45,chatgpt:60,cheat:7,cheatsheet:[],check:[5,23],choic:43,choos:[],chunk:64,citat:[41,53],clean:[10,11,23,25],cli:[],close:[],cloud:19,cloudprovid:[],cluster:[19,28,29],code:[27,31,38,55,59,61,66,69,72],coeffici:[48,49,54],coil:19,collabor:[],collect:[],color:[],column:[],combin:23,come:36,command:[22,23],comment:58,common:[],commun:[],compar:[39,47,50],complet:[],complex:[],complic:60,compon:[],composit:34,comput:[5,6,16,17,19,28,63],conclus:[],conda:[],confid:[],conflict:33,confus:[],congratul:32,connect:[],consider:[2,59],construct:[],contain:[],content:[],context:[],contrast:[],conveni:[],convert:28,coordin:[],copi:52,cost:19,cours:71,cow:[],cr:[],creat:33,crime:39,crsdeptim:28,cryptographi:[],csv:[],current:6,curricular:2,cython:66,danger:60,dask:[17,18,19,28,29],dask_cloudprovid:19,data:[3,5,6,10,11,13,14,15,24,25,28,29,30,34,39,41,47,50,53,56,59,60,72,74],datafram:28,datasauru:43,dataset:[],datatyp:[],deal:[33,74],debug:[],debugg:31,dec:[],deepcopi:52,defens:[],defin:[],definit:28,degre:2,deliber:10,democraci:44,demonstr:[],departur:28,describ:[],descript:[],design:[],detail:[48,49],develop:43,diagnost:39,dictat:3,didn:17,differ:[15,39],digress:[],dimens:[],dimension:[],directori:[],disabl:3,discuss:36,disk:5,distribut:[5,17,18,63],diva:[],divers:[],divis:60,doe:[60,74],doesn:28,don:[42,67],done:[],dot:[],down:[],draw:55,drawback:[],drug:39,duke:62,duplic:[],e:[],each:59,eas:67,easi:[],econom:43,ecosystem:[],edit:[12,23],editor:32,educ:[6,30],effect:[],effici:[],elect:[],els:17,emerg:[],encod:[],end:[],engin:60,entri:[],environ:[],environment:[],equal:[48,49,54],ergonom:3,error:[],estim:30,etc:19,evalu:[17,47,50],even:60,exampl:[59,63,66],execis:[42,43],exercis:[5,17,20,22,23,24,25,30,31,34,35,36,37,38,39,40,41,42,43,44,46,48,49,50,51,52,53,54,57,62],exist:15,experi:2,experiment:3,explor:22,extens:[],ey:3,facet:[],faculti:2,falsifi:[],fanci:[],fast:67,faster:[],featur:[],few:[],figur:[],file:[22,23,38],find:10,fit:[5,74],fix:11,flag:[],flux:[],fold:[],folder:22,forc:36,form:[],format:[47,50],from:59,fun:[],futur:60,g:[],galleri:[],gdp:[],gener:11,geocod:[],geograph:[],geojson:[],geometr:[],geometri:[],geopanda:[],get:[2,13,17,30,57],ggplot2:[],gi:[],gini:[41,48,49,53,54],git:[32,33,57],github:[32,33,57,69],gitignor:33,go:[6,67],good:[],googl:[],got:[],gotcha:[],govern:[],gpu:63,grade:[],gradescop:[4,25,30,34,39,40,46,48,50,51,54],grammar:[],grammer:[],graph:17,graphic:[],groceri:[],group:34,groupbi:34,guidelin:4,happen:28,have:[5,67],hazard:[],headach:[],hear:17,hello:58,help:57,here:17,hierarchi:[],high:19,histogram:[],histori:[],homework:[],hour:9,how:[2,5,16,62,74],hub:57,i:[5,17,56,57,74],iceberg:[],identifi:13,illustr:[],iloc:[],imag:[],immut:[],implicit:[],imposs:[],inclus:[],incom:[41,48,49,53,54],index:[35,36,41,53],indic:[],inequ:[41,53],inform:[],instal:28,integ:[],interact:38,interfac:37,intermedi:28,interpret:[],interv:[],intro:[],introspect:13,invis:[],io:19,ipynb:38,isn:60,issu:66,joblib:63,join:[],julia:[59,66],jupyt:[33,37,38],just:[28,60],kei:[3,6],kernel:37,keyboard:3,keyword:[],know:[13,28,30],lab:37,label:[],labor:30,languag:59,larg:[],law:63,layer:[],lazi:17,learn:[17,18,34,47,50,57,60,63],leav:60,legal:39,length:[],let:[17,28,29],lf:[33,57],librari:[],life:[],like:[],limit:[4,25,28,30,34,39,40,41,46,48,50,51,53,54,63,66],line:[22,23],linear:[27,51],link:9,list:[],littl:[],llm:60,load:29,loc:[],locat:12,loess:[],logic:[],logist:51,look:[],loop:67,lot:[],machin:[18,47,50],magic:17,main:74,make:32,manag:[],mani:59,manipul:28,map:[],mark:[],markdown:[],market:30,match:[],materi:71,matern:51,math:[],matplotlib:[],matric:[],matrix:[],matter:74,me:17,measur:[41,48,49,53,54],medicin:50,member:2,memori:[5,74],merg:[33,39],merit:15,method:[11,13],mice:3,mid:62,minim:5,miss:[14,40],mix:[],ml:18,model:[27,47,50],modifi:[],moment:[],monei:6,monitor:3,more:[5,17,24,25,47,50,61,63],mouseov:[],move:[],mozambiqu:12,much:[],multi:63,multipl:37,mutabl:[],mutat:21,my:5,my_arrai:42,name:[],nano:[],narrow:[],nativ:[],navig:22,nd:[],nearest:[],need:[24,47,49,66],network:[],never:62,next:2,nick:[],non:[10,62],norm:[],notat:[],note:[19,33,42,67],notebook:[33,38],numba:66,number:16,numer:10,numpi:[12,42,62],object:[21,52,67],observ:10,obviat:60,odd:[],offic:9,ok:[60,74],onli:[],onlin:[],oper:6,opioid:[],optim:66,option:[],order:[],organ:22,other:[2,3,13,14,28,62,67],our:12,outlin:[],output:[],overflow:[],overview:[],own:[27,28,29,45],packag:19,pai:5,panda:[12,13,62,68],paral:63,parallel:[63,66],parquet:[28,64],part:[32,33,43,44],particularli:60,pass:[],path:[],pattern:[],pb:19,penalti:5,peopl:67,per:[],perform:[19,66],persist:28,phd:2,pick:[5,59],pipe:[],place:[],plot:[43,44,68],plotnin:[],point:[],pointer:[],poll:[],posit:[24,47,49],practic:[2,24,25,31,47,50,56],pre:39,precis:[],preliminari:[],primarili:[],principl:[],print:[],problem:[3,11,13,36,67],problemat:10,process:63,profil:66,program:[2,3],project:[],promot:[],pull:32,py:38,pypi:66,pyspark:17,python:[12,59,62,67],queri:[],question:[6,58],quick:[],quickli:[],quirk:[],quota:[],r:[51,59],racial:34,radic:15,random:[],raster:[],rate:39,re:2,read:[],real:28,realli:17,recap:[],recurs:[],refer:[],regress:[27,51],regular:[],rel:15,relationship:39,relev:[],relianc:60,remind:[],rent:[],replac:11,replic:37,repo:32,repres:[],request:32,requir:[],research:2,reshap:46,resolv:33,resourc:[],result:[23,28],review:[10,11,12,14,32,69],revis:32,right:2,row:36,rstudio:37,rule:67,run:38,s:[17,28,29,60,63,67,74],sai:17,satellit:[],save:6,scalar:[],scale:26,schedul:[9,28,58],scienc:[3,6,56,59,60,72],scikit:[47,50],seaborn:[],secret:[],see:5,seen:62,select:[],seri:[],set:[],setup:23,shape:[],shapefil:[],share:28,sheet:7,shipment:[],should:57,simpl:[],simultan:[],singl:[],slurm:19,small:[],smoke:51,so:[2,5,15,59,60,74],softwar:[19,60],solut:[24,47,49,70],solv:66,some:[2,28,29],sourc:[],spark:17,spatial:[],spec:6,specif:[4,6,12],speech:3,speed:[66,67],spend:[],split:[47,50],spyder:37,squar:[],ssh:[],stabil:66,start:[19,28,29],stata:59,state:[],statement:[],statsmodel:51,step:5,still:67,storag:[],store:6,str:11,strategi:5,string:11,structur:[15,34],strutur:[],student:[6,62],studi:[],stuff:74,style:[],submiss:[4,25,30,34,39,40,41,46,48,50,51,53,54],subscript:[],subset:[],suggest:6,summar:[],summari:[13,47,50],supervis:[],syllabu:58,symmetri:[],syntax:[],system:6,t:[17,28,42,60,67],tab:[],tabl:[],tabular:[],take:[3,30,35,44],talon:3,task:17,taught:62,tech:3,tell:17,templat:55,termin:38,terminolog:[],test:34,text:[3,16],them:[],theme:[],theoret:63,theori:[],thi:[17,60,74],thing:28,think:[2,16],thread:63,three:[],through:2,tidi:[],till:5,time:[9,26,28],timestamp:28,titl:[],togeth:[],tool:14,topic:[62,71],track:3,tradeoff:67,train:[2,47,50],transcrib:[],transform:[],transpos:[],trick:[],trim:5,trust:42,tupl:21,tutori:[],two:[],type:[3,10,66],um:17,understand:39,unsur:2,up:[23,36],upgrad:6,upload:[],us:[4,17,28,60,62,64,66,67],user:[],v:52,valid:39,valu:[11,21,40],value_count:14,variabl:52,ve:62,vector:67,version:19,versu:[17,51,52,57,63],view:[23,42],violent:39,virtual:[],vision:3,visual:17,vm:[],vocabulari:[17,63],vocat:2,vs:[31,38,61,72],wait:[],want:[17,24,25,47,50,63],warn:12,wdi:[],we:[],wealth:44,week:[],weight:51,welcom:[22,56,62],what:[15,17,28,57,63,74],when:36,where:60,which:[],why:[15,17,57,59,63,74],wildcard:[],window:38,wish:[],without:[],work:[2,28,38,42],workflow:[47,50],workhors:[],workspac:[],would:[],wrap:[],write:67,you:[2,17,60,62,66],your:[3,6,13,23,27,28,29,30,32,34,38,43,45,47,50],yourself:6,zoom:[]}}) \ No newline at end of file +Search.setIndex({docnames:[".vscode/ltex.dictionary.en-US","Day_1_Plan","PhD_Advice","accessibility","autograder_guidelines","big_data_strategies","buying_datascience_computer","cheatsheets","chunking_snippets","class_schedule","cleaning_datatypes","cleaning_editing_globally","cleaning_editing_specific_locations","cleaning_identifying","cleaning_missing_data","data_structures","data_types","distributed_computing","distributed_ml","distributed_starting_dask_cluster","exercise_list","exercises/Discussion_vars_v_objects","exercises/Exercise_CommandLine_1_Basics","exercises/Exercise_CommandLine_2_Advanced","exercises/Exercise_bigdata","exercises/Exercise_cleaning","exercises/Exercise_cloud_dukesubscription","exercises/Exercise_codeyourownlinearregression","exercises/Exercise_dask","exercises/Exercise_dask_realdata","exercises/Exercise_dataframes","exercises/Exercise_debugger","exercises/Exercise_git","exercises/Exercise_git_2","exercises/Exercise_groupby","exercises/Exercise_indices","exercises/Exercise_indices_discussion","exercises/Exercise_jupyterlab","exercises/Exercise_jupytervscode","exercises/Exercise_merging","exercises/Exercise_missing","exercises/Exercise_numpy_vectors","exercises/Exercise_numpy_viewcopies","exercises/Exercise_plotting_part1","exercises/Exercise_plotting_part2","exercises/Exercise_plotting_part3","exercises/Exercise_reshaping","exercises/Exercise_scikit_learn","exercises/Exercise_series","exercises/Exercise_series1","exercises/Exercise_sklearn","exercises/Exercise_statsmodels","exercises/Exercise_variables_v_objects","exercises/Solutions_dataframes","exercises/Solutions_numpy_vectors","exercises/Solutions_series","exercises/code_drawing_template","first_class_questionnaire","git_and_github","index","languages","llms","more_vscode","not_a_mids_student","parallelism","parquet","patsy","performance_solutions","performance_understanding","plotting_with_pandas","pr_review","solutions","topic_list","vscode","vscode_outline","what_is_big_data"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":5,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,nbsphinx:4,sphinx:56},filenames:[".vscode/ltex.dictionary.en-US.txt","Day_1_Plan.ipynb","PhD_Advice.ipynb","accessibility.ipynb","autograder_guidelines.ipynb","big_data_strategies.ipynb","buying_datascience_computer.ipynb","cheatsheets.ipynb","chunking_snippets.ipynb","class_schedule.rst","cleaning_datatypes.ipynb","cleaning_editing_globally.ipynb","cleaning_editing_specific_locations.ipynb","cleaning_identifying.ipynb","cleaning_missing_data.ipynb","data_structures.ipynb","data_types.ipynb","distributed_computing.ipynb","distributed_ml.ipynb","distributed_starting_dask_cluster.ipynb","exercise_list.ipynb","exercises/Discussion_vars_v_objects.ipynb","exercises/Exercise_CommandLine_1_Basics.ipynb","exercises/Exercise_CommandLine_2_Advanced.ipynb","exercises/Exercise_bigdata.ipynb","exercises/Exercise_cleaning.ipynb","exercises/Exercise_cloud_dukesubscription.ipynb","exercises/Exercise_codeyourownlinearregression.ipynb","exercises/Exercise_dask.ipynb","exercises/Exercise_dask_realdata.ipynb","exercises/Exercise_dataframes.ipynb","exercises/Exercise_debugger.ipynb","exercises/Exercise_git.ipynb","exercises/Exercise_git_2.ipynb","exercises/Exercise_groupby.ipynb","exercises/Exercise_indices.ipynb","exercises/Exercise_indices_discussion.ipynb","exercises/Exercise_jupyterlab.ipynb","exercises/Exercise_jupytervscode.ipynb","exercises/Exercise_merging.ipynb","exercises/Exercise_missing.ipynb","exercises/Exercise_numpy_vectors.ipynb","exercises/Exercise_numpy_viewcopies.ipynb","exercises/Exercise_plotting_part1.ipynb","exercises/Exercise_plotting_part2.ipynb","exercises/Exercise_plotting_part3.ipynb","exercises/Exercise_reshaping.ipynb","exercises/Exercise_scikit_learn.ipynb","exercises/Exercise_series.ipynb","exercises/Exercise_series1.ipynb","exercises/Exercise_sklearn.ipynb","exercises/Exercise_statsmodels.ipynb","exercises/Exercise_variables_v_objects.ipynb","exercises/Solutions_dataframes.ipynb","exercises/Solutions_numpy_vectors.ipynb","exercises/Solutions_series.ipynb","exercises/code_drawing_template.ipynb","first_class_questionnaire.ipynb","git_and_github.ipynb","index.rst","languages.ipynb","llms.ipynb","more_vscode.ipynb","not_a_mids_student.ipynb","parallelism.ipynb","parquet.ipynb","patsy.ipynb","performance_solutions.ipynb","performance_understanding.ipynb","plotting_with_pandas.ipynb","pr_review.ipynb","solutions.ipynb","topic_list.rst","vscode.ipynb","vscode_outline.md","what_is_big_data.ipynb"],objects:{},objnames:{},objtypes:{},terms:{"0":[5,8,10,11,12,13,14,16,17,19,21,22,24,25,28,30,34,35,36,39,40,42,43,44,46,47,48,49,50,51,53,55,60,64,65,66,67,68],"00":[6,17,19,28,47,50,54],"000":[13,19,24,29,32,33,35,39,40,41,44,48,49,51,54,55,64,65,66,67,68,75],"00000":[],"000000":55,"0000000000000000000000000000000000000000000000000000000000000001":16,"00000000e":47,"000000e":13,"00000e":54,"00001":[],"0001":33,"00018458037097611614":[],"0002":[],"00021":[],"000247":[],"000247393788613558":[],"00026633":[],"00028":[],"00028268480439183743":[],"0003796100616455078":[],"00043197415958967417":[],"000460":[],"000621":[],"000632":[],"000644":[],"000652":[],"000831":[],"000843":[],"000x":[],"001017":[],"00107023":[],"0011111111110000000000000000000000000000000000000000000000000000":16,"001113":[],"001389":[],"001448":[],"00155052":[],"001735":[],"001930":[],"002":67,"002037":[],"002144":[],"002180":[],"0022":[],"00221":[],"0022133472788366236":[],"002311":[],"002373":[],"002492":[],"002501":[],"002536":[],"002676":[],"002800":[],"003":67,"003191":[],"003263":[],"003439":[],"003486":[],"003498":[],"003848":[],"003883":[],"003934":[],"003944":[],"004":53,"004156":[],"004166":[],"004251":[],"004355":[],"004525":[],"004669":[],"004826":[],"004866":[],"005":67,"005061":[],"005139":[],"005493":[],"005753":[],"00584856772745":64,"006":[],"00663479045383":64,"006938":[],"007":67,"00715e":[],"00745891":[],"008":66,"008130":[],"008613":[],"009":67,"009000":[],"0096841595076":64,"00_source_data":[],"01":[19,28,47,54],"01100001":22,"011029":[],"011492":[],"012247":55,"013":53,"015":[],"015489":55,"015489468":[48,49,55],"017":66,"01710e":54,"0174532925199433":[],"018":53,"01948361e":47,"02":[28,54,66],"020":[],"024222":13,"024882":[],"025":66,"026379":[],"027047":[],"02800e":[],"03":[13,28,47,54],"0313":66,"031683":[],"032":[],"03444":[],"03503371":[],"037":[],"03795967":[],"04":[13,28,54,66],"040":66,"040e":[],"04114893":[],"04192648":[],"04399308":[],"04466095":[],"044782":[],"0488846":[],"04913794186222824":[],"049201":[],"04937853468383546":13,"049478":[],"04th":[],"05":[13,28,44,53,54,66],"050000e":13,"05000e":[],"051133":[],"051795":[],"05293301983":[],"05533653":[],"056790":[],"056801":[],"056940":[],"058020":[],"05th":[],"06":[13,28,66],"06023399ad03ddb0261ddd8d1b79d5e3":17,"06189721":[],"064736":[],"06478":[],"06505":[],"06520e":[],"06737203":[],"07":28,"071":66,"071795":[],"072917":[],"074627":[],"07465525":[],"076631":[],"076923":[],"08":[28,66],"08009098":[],"08129883":[],"08149e":[],"08333333":[],"08783":[],"088":[],"0881394":[],"09":[28,68],"09064083":[],"09142589":[],"091944":[],"0919444129480198":[],"091954":[],"095":[],"095217":55,"096499":[],"09759":[],"09927974":[],"099989":[],"0_x":[],"0_y":[],"0f":[],"0s":22,"0x11341fe20":[],"0x11351e2b0":[],"0x11358f070":[],"0x1135ec6d0":[],"0x137d27df0":[],"0x137ee0af0":[],"0x1416f4850":[],"0x1417686d0":[],"0x14181de10":[],"0x14186f0a0":[],"0x1418d6ce0":[],"0x14198b670":[],"1":[4,6,8,9,10,11,12,13,14,16,17,19,21,24,26,27,28,29,33,36,46,47,50,51,58,60,64,65,66,67,72,75],"10":[9,10,11,12,13,14,17,19,24,26,28,29,32,33,35,36,46,47,48,49,50,51,55,64,65,67,68],"100":[5,8,24,27,28,29,30,33,34,39,40,41,48,49,53,54,55,64,67,68,75],"1000":[8,26,68],"10000":65,"100000":[53,65],"1000000":[35,64,67,68],"10000000":[35,67],"1000000000":67,"10000e":[],"1002000":[],"10038e07":[],"1004":[],"10041":[48,49,55],"1005":[],"1006":[],"100686":[],"1007":[],"100710":[],"1008":[],"100928":[],"100_000":17,"100_000_000":[],"100_000_001":[],"100gb":[5,17],"100k":[],"100mb":33,"100x":67,"101":[],"10100":[],"1010038":[],"10109":[48,49,55],"101115":42,"10120":[],"1014":[],"10151827":[],"102":64,"10201":[],"102050":[],"1021":[],"102245":[],"10232":65,"102366":[],"10248069":[],"10252":53,"10267083":[],"10296":[10,11,12,14],"1029635613na855161397271":10,"103":53,"10300":[],"10328":[],"103399":42,"1035124":[],"1037":[],"1038":67,"10385":[],"1039":[],"10398":[],"104":53,"1040":[],"1041":[],"104450":[],"104676":[13,14],"105":[],"105000":[],"1055431317":[],"105772":[],"10582":[],"105_000":[],"105_250":[],"106":[],"10603":[],"1062":[],"1064":[],"10649":[],"10680":55,"107":[],"107007":42,"1075588":[],"1077231":[],"10784":[],"108":[],"1080":67,"108000":[],"10808":[],"10823224":[],"108262":42,"1084":[],"10850":[],"108727":[],"10883":[],"1089":[],"109":[17,66],"109046":[],"109413":42,"10962":[],"10966342":[],"10_000":[],"10_code":[],"10_import_data":[],"10_intro_to_panda":[],"10_pandas_seri":[],"10am":28,"10gb":[5,33],"10k":[],"10th":[30,53],"10x":[8,64,67],"11":[4,9,10,12,13,14,19,28,31,32,33,47,50,51,55,66,67,68,75],"110":[17,53],"110000":66,"11012":[],"11037":[],"11044314":[],"1106":[],"110795":42,"110_000":66,"111012":53,"1111":[],"111111111":34,"11138234":[],"11147407":[],"11158923":[],"1116":[],"1116052":[],"111923":54,"112":17,"112262":42,"1123678":[],"11241":[],"11283e":[],"1129":[],"113":[],"1130":[],"11315":[],"113217":54,"11323":[],"114":67,"1142890":[],"11471":[],"11496147":[],"115":[],"1153":[],"11537966":[],"1156":[],"115641":42,"1156516":[],"116":17,"116017":[],"1161000":[],"11619":[],"11637":[],"1164":[],"11643":[],"11670":[],"11676":[],"116965":[],"117":[17,66],"1176":[],"1176285234":[],"1177":[],"117831":[],"1179":[],"117968":42,"118":[17,19],"1180":[],"1181":[],"1183":[],"11835":42,"11837":[],"11863":[],"1187":[],"119":[],"11902":[],"11908":[],"1195":[],"1196980":54,"1198":[],"11996":[],"11ed":17,"11th":[30,53],"12":[9,10,11,12,13,14,17,24,32,33,50,51,55,67],"120":[],"12000":[],"120000":[],"1203":[],"12041":[],"12043":[],"121":66,"12110":[],"121678":[],"122":66,"1221549":[],"12239":[],"12261":[],"1227":[],"122832":[],"1229":[],"122e":[],"123":[],"12316":[],"12321978429576":43,"12333389":[],"12347":65,"1236":51,"1237444":[],"12393":[48,49,55],"12395":[],"124":[],"124183":[],"1243309312":67,"12468434":[],"12469624":[],"1249":17,"125":[],"1250":[],"12500":[],"1250000000":[],"125596":[],"1258":[],"1260":[],"12611532":[],"1261548":[],"12631":[],"126451398":[],"12658":[],"12697":55,"127":[17,28],"12700":[],"1274":19,"12775":[],"1277908":[],"128":[],"12804":[],"1283780":[],"12841362":[],"1288":[],"129":51,"1290":53,"1291":53,"12928":[],"129585":42,"12967217":[],"12969624":[],"12_000":[],"12th":[30,53],"13":[6,14,19,32,33,43,54,55,67,68],"130000":53,"13000e":[],"13011":[],"13018":[],"13037":[],"130600":53,"13079460":[],"13086":[],"1310":[],"13100":53,"13109125":[],"13111532":[],"13134":[],"1315":[],"1316":[],"13167":[],"13175":[],"1317ab53":17,"1318372":[],"132":[19,51],"1320":[],"132363":[],"1324":17,"1325":17,"13251":[],"1327":17,"1328044753":[],"132900":[],"1333":[],"1334":[],"134":[],"13441":[],"1347":[],"134911":54,"13494":[],"13498":[],"135":[],"1351":[],"13543908":[],"135490":[],"135535":[],"1356":[],"1358":[],"1358836":[],"136":9,"13600e":[],"13623":65,"137":[41,54],"1373":[],"13735491":[],"13776":[],"13783":[],"137th":[41,54],"138":66,"138140":54,"13816716":[],"1388571":[],"139":[19,51],"13922":[],"13960":[],"1399300":[],"13_objects_and_vari":[],"14":[6,9,10,12,14,17,19,32,33,52,55,66,67],"140":51,"140000":[],"140000e":13,"14003":[],"140037":42,"14034":10,"140473":42,"14077":53,"1409":[],"141":[],"1410":[],"14111":[],"1415":[],"1416":[],"141681":42,"14176":[],"141827":[],"142":9,"14207":[],"1422":[],"14229038":[],"1423":[],"14238":[],"1424670":[],"1427":[],"143":[],"14333":44,"1435":28,"143583":54,"14364726":[],"1437":[],"1439765":54,"144":[],"144914":[],"14495":[11,12,14],"14499":[],"145":[],"1451":[],"14516100":[],"14549":[],"1457095":[],"14572366":[],"14593":[],"146":[],"1464":[],"1465":[],"146514":[],"146543":[],"1466":[],"1466922":[],"1467":[],"1468":[],"1469":[],"147":54,"1479":[],"148":53,"14800":[],"14802":[],"1480229":[],"14808":[],"1481704":[],"1482":[],"1483":[],"1484":[],"1484111":[],"1485":[],"148593":42,"1486":[],"1487":[],"148758":[13,14],"1488":[],"1489":[],"149":9,"1491":[],"14918":[],"14gb":5,"15":[11,12,14,28,32,38,44,51,55,64,66,67],"150":[],"150074":[],"15018":[],"150200":[],"15044":[],"15095":[],"150k":[],"151":17,"151271":53,"15196740e":47,"152":[17,66],"15200":[],"1520693":[],"1525":[],"15279443":[],"153":17,"1532":[],"153498":[],"153547":[],"154":17,"1540":28,"1544":[],"1545":[],"154754":[],"15495":[],"155":17,"15576172":[],"15589":55,"156":17,"15601864044243652":[],"1561157":[],"15623":[],"15651":[],"1565561":[],"15659":[],"156604":54,"15665343":[],"15677":[],"157":[9,17,28],"15703":[],"15708":[],"15728":[],"1574":[],"157686":53,"158":17,"1580":[],"158215":53,"1587600":[],"1588":[],"158818":53,"159":[],"159283":[],"1593":[],"15933":[],"15938":53,"15950":[],"1596":[],"15988":[],"15_export_cleanliness_report":[],"15e":66,"15km":[],"16":[9,10,11,12,14,28,32,55,64,66,67,75],"160":[],"16000":[],"160000":53,"1601621":[],"160603":42,"161":[],"16117164":[],"16119":42,"1613":[],"16134":54,"16139":[10,11,12,14],"162":[],"1621":10,"1622":10,"16223":[],"1623":10,"16238":17,"1624":10,"1626":10,"1627":10,"16276":[],"1628":10,"1629":10,"1629615":[],"163":[],"1630":10,"16336287":[],"163952":[],"164":17,"1642085":[],"1643":[],"164499":54,"16471612":[],"164737205":[],"165":17,"1650":[],"1657":[],"1659027":[],"166":17,"16609":[],"166590":13,"16666667":[],"166667":[],"1668870":[],"167":17,"167088":[],"16717":65,"167428":[],"1675":[],"1676":[],"1679":[],"16796":[],"168":17,"1680":[],"1682":[],"1682549":54,"1683":[],"1684":[],"1685":[],"1686":[],"169":17,"1694":[],"16942":54,"16gb":[5,6,24],"17":[9,10,11,12,14,32,44,48,49,53,55,66,68],"170":[17,66],"170000":13,"17000e":54,"1704":65,"1706447136":[],"1706451":[],"1708":[],"171":[17,53],"17100":[],"171318":42,"17143257":[],"171997":[],"172":17,"1723013":[],"17231":[],"1723646":13,"17239":[],"1729":[],"172902":55,"1729378":[],"173":17,"173615":54,"173795":54,"174":[],"174677":42,"17488":[],"175":[],"1759141":[],"176":[],"17600":[],"176021":[],"1761548":[],"1763477":[],"176523":[],"176739":42,"177":[],"17717":[],"17789267":[],"178":[],"1782":17,"178297":54,"1783":17,"1784":17,"178760":42,"178919":[],"179":[],"179288":53,"179957":[],"18":[10,11,12,13,14,25,44,53,55,64,68],"180":64,"1800":[],"18000":[],"180090":[],"180346":42,"1803941":[],"18069":[],"18086":[],"18128":[41,54],"181324":13,"18134":[],"1824":[],"18250219":[],"1827":[],"18280":13,"183":[],"1831":[],"184":[],"18437":[],"1844405":[],"18446744073709551615":[],"18469":[],"1847341":[],"1849":[],"18490":[],"184941":53,"1850":[],"1851":[],"1852":[],"1853":[],"18533":[],"185378":[],"186":[],"1860":[],"18612":[],"186145":[],"186183":[],"18620":[],"187":[],"18724":[],"18729365":[],"187871":[],"188":[],"18801":[],"188091":[],"188411":42,"1884869":[],"18861":[],"18864":[],"1888":[],"189":[],"1895250":[],"189687":[],"18981525":[],"189834":54,"19":[9,14,53,55],"190":[],"19000":53,"190040e":13,"1902":[],"190694":[],"19084":[],"1909":[],"1910":53,"1911226":[],"191553":42,"19170":55,"192":[],"1922":65,"19242":[],"19245344":[],"1925334":54,"192994":[],"193":53,"19300":[],"19330":[],"19380":[],"194":17,"19428":[],"19459":[],"1947":[],"1949":[],"1949727":[],"195":17,"1952":[],"1957":[],"196":17,"1960":51,"1961":[],"1962":[],"1963":[],"1964":51,"1965":[],"1965798":[],"1966":[],"1967":51,"196963":[],"197":67,"1970":46,"1971":[],"197138":[],"1972":[],"1974":[],"1975":[],"1978":[],"198":[],"1980":[25,34,40,46],"198049":42,"1981":[],"1982":[],"1983":[],"1984":[],"1985":[],"198539":[],"19856":[],"1986":[],"19862":[],"1987":[],"1988":[],"1988100":[],"1988232":[],"199":[],"1990":[25,28,40,60],"1991":[],"199152":[],"1992":[],"199232":[],"1993":[],"1994":[],"1995":[],"1996":[],"1997":[],"1998":[],"1999":[],"199991":54,"19_000":[],"1_000":[],"1_000_000":[],"1_000_000_000":[],"1_000_001":[],"1d":50,"1e6":[],"1f":53,"1j":10,"1pm":9,"1s":[22,27,50],"1st":[],"1tb":6,"2":[4,6,8,9,10,11,12,13,14,16,17,21,24,26,27,28,29,36,46,47,50,51,58,60,61,64,65,66,67,72],"20":[10,11,12,13,14,24,30,34,35,36,41,42,48,49,50,53,54,55,64],"200":[24,34],"2000":[48,49,51,53,55,64],"20000":[],"200000":53,"20000e":[],"2000x":[],"2001":[],"2002":[],"2003":[],"200310":13,"2004":[],"200443":[],"2005":[39,46],"2006":17,"200613":[],"2006262":[],"2007":44,"2008":[26,48,49,55],"2009":[39,51],"20096":[],"200_000":54,"201":[],"2010":[32,33,39,46],"2011":[],"2012":26,"2013":39,"2014":17,"2015":[33,46],"20150":[],"2016":[33,39],"2017":[13,30,39,53],"20170824":[22,23],"2018":[23,48,49,51,55,60],"2018_1":[],"2018_11_":[],"2018_1_":[],"2018_2":[],"2018_2_":[],"2019":[41,54,74],"20199":54,"2019_12_":[],"2020":[32,65,70,74],"2021":[41,54,66],"2022":[19,38],"2023":[6,59,63],"2025":[48,49,55],"202553":42,"2028":[],"203":66,"2030":[],"203072":[],"2046726":[],"204786":[],"205":[],"20550":[],"206290":[],"20683989":[],"207":[17,64],"207099":[],"20718956":[],"20753":[],"2077":[],"207895":13,"2079543889":12,"208":[17,54,66],"2082":[],"208607":[],"2087190":[],"20873":[],"2088307":[],"208947":42,"209":17,"20900":53,"2092":53,"209706":[],"20995":53,"20_000":[54,55],"20_clean_data":[],"20_intermediate_fil":[],"20_matric":[],"20k":[],"20x":64,"21":[9,10,14,42,43,53,64,66],"2103721":[],"211":[],"2110":[],"211420":42,"21168":[],"211960":[],"21200":[],"2127654":[],"212813":42,"2129122":[],"213":17,"2130":[],"21319":[],"21335":[],"2134":[],"2135":[],"2138":[],"214":17,"2142":[],"214500":13,"21464":[],"214895":[],"2149":[],"215":17,"21513":[],"21519":[],"215196740e":50,"2153":[],"216":17,"2166463":[],"2168":[],"21680":[],"2168118":54,"2168870":[],"2169":[],"217":66,"2173":[],"217426":[],"2175":[],"217535":[],"217582":53,"217787":[],"217830":53,"21787":[],"217888":[],"217917":[],"218":[],"21840":53,"21878":[],"219":[],"2197":[],"22":[53,66],"220":38,"22000":[],"22000e":[],"220316":[],"2204":[],"2205":[],"22050":[],"2206":[],"2207":[],"2208":[],"2208582":[],"2209":[],"2210":[],"2215":[],"2216":[],"2218":[],"222":[],"2221":[],"222222":[],"222222222":34,"22251":[],"22299799":[],"2234691":[],"2239":[],"224":17,"224120":42,"224137":[],"2243":[],"2244":[],"22440":[],"2247":[],"2248":[],"2249046":[],"224e":[],"225":[17,51],"2250":[],"225207":[],"2254":[],"225516":42,"225842":54,"226":[17,53],"2270012":[],"2272":[],"22738":[],"2278":[],"228":17,"22852":[],"2286":[],"2289510":[],"22899":53,"229":[],"229394":53,"22_000":[],"22_reshaping_matric":[],"23":[9,43,53,54,64,66],"230":[53,66],"23000e":[],"230024":[],"23016":[],"230288":[],"2303":[],"230382379836":[],"231":[],"23132071":[],"231729":42,"232":[],"23221854":[],"232415":[],"23290":[],"2329974":[],"233":[],"23304":[],"23328900":[],"233670":53,"2338":[],"234":[],"235":[],"2350":[],"23500":[],"23514":[],"23522":[],"2352805381":[],"23585":[],"23589951":[],"236":[],"236313":[],"237":28,"2370438":[],"23709651":[],"23828426":[],"2383":[],"2389081209832":43,"2389710287":43,"239":17,"2391":[],"239183":53,"2394":[],"23980921730972":43,"23999":[],"23_500":[],"23_514":[],"23e":66,"24":[9,64,66],"240":17,"2400":[],"24000":[],"24081":[],"241":17,"2410903":54,"241528":54,"242":17,"242235":[],"24333":65,"243401":[],"243585":[],"24377704":[],"244025":[],"244097":42,"2445":[],"2446":65,"24465":53,"2447320":[],"2449727":[],"244e":[],"2451":[],"245298":[],"246":[],"246225":42,"24771":[],"247712":[],"247801":[],"248":51,"2481":65,"248211":[],"2489":[],"248968":[],"2490":[],"24900":[],"24924":65,"24934":[],"249436":[],"24gb":6,"25":[8,13,29,55,60,66,75],"250":[41,54,65],"250000":[],"250000000":[],"25024":42,"25063":42,"250_000":54,"250mb":[],"25143":[],"252":51,"2527":[],"252840":[],"253":[51,64],"25336":[],"253722":[],"25375799":[],"254":[],"254579":[],"254634":42,"2549970475168":[],"2549970476208":[],"255":[],"25526":[],"25552":[],"25556":[],"2556":[],"2559":[],"256":66,"256094530607":[],"25629":[],"257":[],"2571":[],"257223563":[],"257292":[],"25773":[],"2579":[],"258":66,"2581":[],"25810":[],"2594":[],"259942":[],"25e":66,"25pm":9,"25x":[64,68],"26":[9,28,53,66],"260":[],"260219":42,"260259":53,"26031226":[],"2607":[],"2614":[],"26154":[],"261540":42,"26158":[],"26171875":[],"2619":[],"262153":42,"262190":54,"26226":[],"26318":55,"264":[28,66],"26444":54,"265":53,"2652":[],"265455":42,"2656":[],"266306":[],"267":[],"267072":[],"267390":[],"2677":[],"26815":[],"2686":[],"26927862167358396":[],"2699000":[],"269954":[],"27":[53,66,68],"27000":66,"270117":[],"270231":[],"2702318":[],"2703978634":13,"271044":[],"27159":[],"2718bcdb1d57":67,"272":[],"27222":[],"2723":[],"2724":[],"2725":[],"2726":[],"2727":[],"273":[],"27321":[],"273263":[],"273300":[],"273338":42,"27351":[],"2740":[],"274142":53,"2747":53,"274795":[],"275":19,"275485":42,"2761":[],"27616":[],"27750":[],"277650":[],"278":[],"2785":[],"27857208":[],"279":[],"2791":[],"27960":[],"27_222":[],"27_750":[],"28":[9,51],"28020":[],"28036829":[],"28050":[],"281":[],"28142":[],"28144":[],"2822400":[],"28236":[],"282399":42,"282418":53,"282814":[],"2829":65,"283":[],"283013":42,"28305":[],"283121":53,"284634":[],"2856":[],"2857":[],"285877":[],"286":[],"28618":[],"28621":[],"287":51,"287508":[],"287650":42,"28779":54,"2878":[],"288":[],"28821":[],"28833":[],"28863":13,"28877":[],"289":19,"28927599297":[],"29":[9,28,64],"2900":53,"29000":[],"29117":[],"29176334":[],"29206475":[],"29260":[],"29289":[],"293":[],"293222":54,"293255":53,"2934":[],"29342":[],"29380":[],"294":[],"29400e":[],"294172":[],"29427":[],"294731":[],"294986":[],"295":[],"29520":[],"295346":[],"29617":[],"296561":[],"29663":[],"296685":42,"297":[],"2972":[],"297434":[],"297688":55,"29768835":[48,49,55],"297992":[],"298":[],"29800":[],"29801":[],"2980522362":[],"29866":54,"299":[],"29917":42,"29975305":[],"299_999":[],"29_000":[],"29ac2137":[],"2d":[],"2f":[53,54],"2gb":[17,29],"2nd":[],"2x":[6,64],"2x2":25,"2x3":[],"3":[2,4,6,8,9,10,11,12,13,14,16,17,19,21,24,26,27,28,29,33,36,46,47,50,51,64,65,66,67,68,72],"30":[9,13,19,41,54,63,64],"300":[5,34,51],"3000":[],"30000":13,"30000e":[],"3003":[],"30030776":[],"30050":55,"300856":[],"300_000":[],"300x":68,"3010":[],"301053":53,"301110":53,"301717":42,"302":[],"302160":53,"303":[],"30329":[],"30330":[],"3038":[],"303814":55,"304":[],"3051":[],"30511":[],"305186":42,"306":[],"3062":[],"306770":[],"3087":[],"30877":[],"3088":[],"309":67,"30_000":54,"30_analyze_data":[],"30_numpi":[],"30_result":[],"30gb":24,"30k":[],"31":[9,53,64,66],"310":[],"3103":[],"31058392e":47,"310941":[],"311":22,"3115000":17,"311619":[],"31185":[],"3119":65,"311_sr_data_dictionary_2018":[22,23],"311calls_2018_2_":22,"312":[],"31214":[],"31218":[],"312312":[],"31308814":[],"313094":42,"3135":[],"3137":[],"314":[],"314188":53,"3145":[],"3146":[],"31470":[],"315":[19,66],"315359":[],"315707":[],"315914":[],"316155":[],"316245":[],"31631":[],"3166":[],"3168":[],"317":[],"3172":[],"31780":[],"317877":[],"318386329":[],"318413":42,"318698":[],"319":53,"319004":[],"31913":[],"31953":[],"32":[6,43,53,66,67],"320":[],"32000":53,"32026":[],"3203":[],"32047":17,"321":[],"3218":[],"322":67,"3220":[],"3221":[],"32213":42,"323":[],"3236":[],"324":[],"3240":[],"325":[],"3250":65,"325793":42,"326":[],"326386":42,"32642":[],"327":[],"32711":[],"32767":[],"32768":[],"32781":[],"32794049":[],"328134":13,"3289":[],"32894":55,"32941068":[],"32_cleaning_editing_specific_loc":[],"32gb":[6,24],"33":[19,23],"33037":[],"331":9,"3314":[],"33174":53,"332":[],"332059":[],"333":[],"33300":[],"333008":42,"333333":[],"33333333":[],"333333333":34,"333443":[],"33373":[],"334":[],"33400e":[],"33432026":[],"334823":[],"335140":42,"3353":[],"3366":[],"33679":13,"337":67,"3370":[],"337639":42,"338":55,"33854":54,"338722":54,"33873":[],"3388":[],"339":[],"33_matrix_recap":[],"34":[8,12,16,17,19,23,66,67],"340":54,"3404":[],"341":67,"3412":[],"342":67,"34255":[],"343":67,"343356":42,"344":67,"3442359e":50,"34455":[],"344916":54,"34493":[48,49,55],"345":67,"34549":55,"34556596":[],"345793635":[48,49,55],"345794":55,"34605":[48,49,55],"346098":[],"347234":[],"3473":[],"34752":54,"348":[],"348570":42,"3488":[],"348982":[],"3491":[],"3492":[],"349276":[],"34928":[],"3496":[],"34974":[],"349993":55,"349993318":[48,49,55],"34_255":[],"34gb":28,"35":[19,53],"35000":[],"3502":[],"35030e":54,"350795":[],"350930":[],"35118":[],"3512":65,"352":[],"3530":[],"353049":42,"3543":[],"35455":42,"3558598166059":[],"356":19,"35613":[10,11,12,14],"35677":[],"3569":[],"357":68,"35700":[],"357396":[],"35814629":[],"3585":[],"359":9,"3590460e":[],"3594":[],"359408":[],"359548":[],"35972":[],"35973":[],"35_000":[],"35_modifying_subsets_of_vector":[],"36":53,"3600":[],"36000":[],"36001":[],"3603":[],"3604":65,"3605":[],"360918":[],"361":[],"36181":[],"36249":[],"36259":[],"362712":[],"362713":[],"3629":[],"363":[],"36376":[],"364":[],"3644":[],"36461":[],"365":23,"3651":[],"3652":[],"3653":[],"365406":[],"3656264991306195":55,"366":55,"36630483":[],"36634434":[],"3665938e":[],"3669605e":[],"367":66,"367843":[],"368":[],"368673331236263":[],"36909499":[],"36923808":[],"37":[],"37000":[],"370000e":13,"3705":[],"37065":[],"3707394":[],"371":[],"3719973852":[],"37247":[],"372707":[],"37306":[],"374":67,"37442":53,"3745401188473625":[],"3746007904":[],"374985":[],"375":67,"375059":42,"37525":[],"376":[28,67],"37609":[],"3768501e":[],"377":67,"3775":[],"378":67,"3781":[],"379802":42,"37_000":[],"38":53,"3800":[],"38000e":[],"38039":[],"38053":[],"3810":[],"38100429":[],"38152":[],"38175":42,"3819":[],"382803":42,"38317":42,"3836":[],"384":67,"384154":42,"3845":[],"3847":[],"3857":[],"3863":[],"3867":[],"387":[],"38746":[],"38768155":[],"387698":[],"388":[],"388234":42,"3887":[],"3892":[],"38957":[],"38961":[],"3897":[],"3898":65,"3899":[],"39":[8,17,19,31,52,53,55,66,67],"3911":[],"39200":[],"39203":[],"3920400":[],"39219733":[],"3923":[],"3926":[],"39399":[],"3940394":[],"3942971e":[],"394863":42,"3952":66,"39600":53,"396610":54,"3968":[],"3971":[],"39731834":[],"3975":42,"3977":[],"398":[],"3983607e":[],"39865":[],"39906":[],"3997":[],"39_200":[],"3_000":[],"3a29deea2d090d453bbd7546f1100890":[],"3d":[],"3f":55,"3fbadc183a38ae4572bc0a532c474cd5":17,"3min":64,"3prrdzz6":17,"3rd":9,"3x":26,"3x2":[],"3x3":[],"4":[2,9,10,11,12,13,14,17,21,24,26,27,28,29,33,36,46,47,50,51,63,64,65,66,67,72],"40":[13,25,28,41,48,49,54,55,68],"400":34,"4000":[],"40000":[13,53],"40097491":[],"401":[],"401101":42,"40143":[],"40204897":[],"4022":[],"40256":[],"4028235e":[],"4038":54,"4041630850":[],"40446":[],"405":[],"40559":[],"4063":[],"40644":[],"406461":[],"40696":[],"406983":42,"4071":[],"40714":55,"407460":[],"407675":42,"4078":[],"407816":[],"40832":[],"40849":[],"4087062":[],"4088":[],"408830":42,"40950":[],"40_000":54,"40_doc":[],"40k":[],"40pm":9,"40x":17,"41":53,"410":[],"41135":[],"4119":34,"4121":34,"4122":34,"4123":34,"4124":34,"4125":34,"4127":34,"41282":[],"4132":[],"414556":[],"41593359":[],"416":[],"41666667":[],"416860634":[],"417229":[],"41796586":[],"418":[],"419":28,"419282":[],"419547":42,"42":[12,13,35,47,50,52,53],"42000":66,"42041":65,"42105":42,"42116":[],"4218":[],"42250":[],"42296":54,"424427":[],"42477":[],"425024":42,"425041":42,"42520":[],"42536":[48,49,55],"42554529":[],"4258":[],"426":[],"42600":[],"4276":[],"428162":[],"42824":[],"4286633":[],"4289":[],"429":[],"42920828":[],"42980055":[],"42_000":66,"42_250":[],"42n":[],"43":[28,53],"430":[],"43036":[],"43044":[],"431":[],"431535":[],"4318":[],"4326":[],"4328532":[],"43304":[],"4331":[],"4338":[],"434981":[],"435193":[],"43530":[],"436100":[],"437":[],"43784":55,"439":19,"4390266800":[],"4390275632":[],"44":[53,67],"4413":13,"4414":13,"44200":[48,49,55],"4425":[],"44332399":[],"444":[],"4443":[],"444444":[],"444899":42,"44521":65,"445314":[],"44541":[],"44594":[],"4461":[],"446358":[],"44637":[],"4474":[],"447533":[],"44807":[],"4483":[],"448304":54,"448552":[],"44942116":[],"44995":[],"449971":42,"45":[9,13,34,48,49,53,55,64,67],"450":[],"45000":[],"45000e":[],"4504":[],"45057":[],"451":[],"45109":53,"452":[],"45232207":[],"4524":[],"45248":[],"453":[],"454":[],"4556":54,"45568":[],"456":19,"45692998571":[],"4574":[],"458":[19,66],"45816":65,"4583":54,"459":65,"45_000":[],"45e":66,"46":[53,67],"46000":[],"4602":54,"4603338":[],"46070":[],"4617":54,"462":[],"4622":65,"4626":54,"46264861963052545":[],"464":[],"4640":[],"46429364":[],"464609":[],"465":[],"465168":42,"46548":[],"46576":[],"466320":13,"46632017153389926":13,"466441":[],"467":[],"46716":[],"468":53,"468627":54,"468790":[],"46908":[],"4699":[],"47":[13,53,64],"47000":66,"47002851":[],"4709":[48,49,55],"472":[],"472031":42,"47212":[],"472459":[],"472677":[],"473":[],"4734":[],"47434573":[],"47485":[],"4751":54,"4756":54,"4756173843900709":[],"47573":[],"475937":[],"476442":42,"47698524":[],"477425":42,"4776":[],"4778":13,"47815":53,"479566":[],"47_000":66,"48":[],"480":[],"480744":[],"4811":54,"48137":54,"481981":42,"4821":[],"48272":[],"4830":[],"485":53,"485118":42,"48515621":[],"48543779276265":[],"4859":[],"486":[],"4863":17,"487364":[],"4876":[],"487635":[],"48767":[],"48801552":[],"48931243":[],"4894":[],"4896":65,"489984":42,"48e":66,"49":[53,68],"49000":[],"4913":[],"492":[],"49284":[48,49,55],"49298357":[],"4932000":[],"494184":42,"495":[],"4950":[],"49580":[],"49584":[],"495925":[],"49666":66,"496966":42,"4979":65,"49805":[],"499":[],"4996":[],"499628":[],"49982":42,"49992":[],"49995":65,"49996":65,"49997":65,"49998":65,"49999":65,"499998":54,"499e0f8d8a2531f815b06b72dcbc9adc":17,"4_000":[],"4e":66,"4f":54,"4gb":24,"4th":[],"5":[8,9,10,11,12,13,14,16,17,19,24,26,27,28,29,32,36,46,47,50,51,64,65,66,67,72],"50":[13,55,65,66],"500":[34,41,54],"5000":53,"50000":[13,65],"500000":42,"500000000":[],"50000e":[],"500_000":54,"501":[],"5010":[],"50126400":[],"50169":[],"502":66,"50229":55,"502458":[],"50309":[],"50375576":[],"5049":65,"505":[34,51],"505400":13,"507":67,"507081":[],"509091":[],"50_000":[],"50k":[],"51":53,"5100930":[],"5103338":[],"51051":[],"511881":[],"512":[],"5122":[],"512gb":6,"5138":[],"515":[],"5153":[],"51609419":[],"5169":65,"51700e":[],"5178569394014167":[],"518":51,"5180":[],"51841":[],"51865":[],"51945731":[],"52":[23,66],"520":[],"52000":[],"5201":[],"52022":[],"5205401359786243":[],"522":66,"522781":[],"52290":[],"52295":[],"523276":[],"52375":[],"52475":[],"52496":[],"525":[],"52535":[],"52547":42,"5255":[],"526":[],"526295":[],"52695041":[],"527":[],"5278":[],"528":[],"52852":[],"529":[],"52968":[],"529919":55,"52991925":[48,49,55],"52eca15982ab857959b3001545bb57fa":17,"53":13,"530":[],"5300":[],"531":[],"53164607":[],"5317":[],"532":66,"5321":[],"533":[],"53308":[],"534":[],"53444994":[],"534460":[],"53504":[],"53521":[],"535560":[],"5376067":[],"538":[],"5380":[],"538166":[],"53901":13,"5393":[],"54":53,"540":[],"5401":54,"541":53,"542":[],"5420":[],"5435":[],"54353377":[],"5442":[],"54435239":[],"54567":[],"54600":53,"5464":[],"547":[],"54705":[],"54788029":[],"54833997":[],"54841552":[],"5484221":[],"5491218":[],"549555":[],"5499":[],"55":[],"5500":53,"55000":66,"55015849":[],"5510032":[],"551103":[],"55235":[],"55372018":[],"555":[],"55529585":[],"5558":[],"555987":[],"556886":[],"5573":[],"55746652":[],"5577":[],"559":[],"5590":66,"55_000":66,"55e":66,"56":[53,66],"560":66,"5604":[],"5612":[],"56174":42,"563":66,"565618":[],"56669873391075":64,"56804":[],"569":[],"56960":[],"56aae5aa":17,"57":53,"570e":[],"57109971":[],"571846":[],"57211":[],"572746":[],"5748":[],"57482":[],"5749":[],"575":[],"575437":[],"57549359e":47,"5755":[],"5759325044404974":[],"576":[],"57713":[],"57760":13,"57771":[],"57826":[],"57843":[13,14],"57937":[],"57945":[],"57967373":[],"58":[],"58138":[48,49,55],"5816":[],"581676":[],"581939":[],"58308":[],"58333333":[],"584":[],"585":[],"58592":[],"586":[],"58611077":[],"5866":[],"587":[],"587626":[],"58797881":[],"588":[],"589":[],"5899":44,"59":53,"590":[],"590019":[],"59025":[],"590e":[],"591":[],"59154":[],"591919":[],"59193":[],"592":[],"592212":[],"59257365":[],"593":[],"594":[],"5945":[],"59470":54,"595":[],"59501":[],"595848":[],"59617785":[],"5962":[],"59641":42,"59694827":[],"597":[],"5975":[],"598":67,"5985209":[],"5986584841970366":[],"59909269":[],"59944":[],"59959455":[],"59998":[],"5_000":54,"5e":66,"5f":[],"5km":[],"5pm":9,"5x":[64,67],"6":[2,6,9,10,11,12,13,16,17,24,26,27,28,32,33,36,46,47,50,51,62,64,65,66,67,68,72],"60":[],"600":66,"60000":[53,66],"60000e":[],"60015":[],"60078767":[],"600x":67,"60184894":[],"60193508":[],"602":[],"6021":[],"602486":[],"602e":44,"60519528":[],"60593":[],"606":[],"6066":[],"6070":44,"6074546":[],"6078":[],"608":19,"60969":[],"60_000":66,"61":[],"610e":[],"613":64,"613503":[],"614":[],"61437":17,"61440":17,"61441":17,"61442":17,"61443":17,"61444":17,"61455":17,"61456":17,"61457":17,"61458":17,"61459":17,"61461":17,"61463":17,"61464":17,"61467":17,"61468":17,"615":[],"616":[],"61669":[],"617":[],"617397":[],"61759801":[],"618":52,"61831":[],"61882428":[],"62":[13,53,66],"62000":53,"620058":[],"620058054736359":[],"620248":[],"62038":[],"621416804":[48,49,55],"621417":55,"622":[],"62255074":[],"6227843":[],"6229":17,"623":54,"6230":17,"6231":17,"6232":17,"6236":17,"6237":17,"6238":17,"6239":17,"6241":17,"624340":[],"62513":[],"625494":[],"6258":17,"6259":17,"627":[],"6278":[],"62796":[],"62805":[],"62849767":[],"62e":66,"63":[],"630483":[],"63064283":[],"630699":[],"630e":[],"63175":[],"632":[],"632e":[],"6336":[],"63426611":[],"6343":[],"63480174":[],"6350":[],"6354":[],"6378137":[],"638":[],"63857":42,"6396":65,"63986":[],"63e":66,"64":[17,67,68,75],"64000":[],"641":[],"6424":[],"6427274":[],"6430":[],"6447":[],"6458":[],"646":13,"6469":[],"647581":[],"6494":[],"64992682":[],"64gb":29,"65":[],"65000":66,"6507":[],"65090e":[],"652498":[],"6533":[],"654":[],"655":[],"655485":[],"656":67,"65600025":[],"6563":[],"657":67,"65722656":[],"65780":[],"658":67,"659":[66,67],"65_000":66,"65b082a7179bbd179d42b1f248add400":17,"66":53,"660":67,"66036632":[],"6610":55,"66292":55,"66300":[],"664939":[],"666":[],"666666666666666":[],"66666667":66,"666667":[],"6669":[],"6682":65,"66899":[],"67":[53,66],"670":[],"6700":[],"6707":[],"670947":[],"67106161":[],"671392522":[],"67139801":[],"6730":65,"6740":65,"675":[],"6750":65,"67573864":[],"67609513":[],"6766":[],"6768833":[],"678558":[],"67866126":[],"68":64,"68165e":[],"6818":[],"682123":[],"68240119":[],"682723":[],"684":[],"68414135":[],"6846":66,"685":[],"6851":[],"68568":[],"686556736":[48,49,55],"686557":55,"688000":[],"688381":[],"68900e":[],"69":[17,53],"69000":[],"6909701":[],"69295594":[],"694007":[],"694416":[],"695":[],"69579177":[],"696132":[],"697454":[],"69790":[],"69808":[],"69831":54,"698539":[],"6989":[],"699144":[],"69948409":[],"6_700":[],"6f":[],"6pm":9,"7":[9,10,11,12,13,17,24,26,27,28,32,33,36,46,47,50,51,64,65,66,67,68,72],"70":17,"700":[],"7000":[],"70000":53,"70000e":[],"700872":[],"700_000":[],"700x":[],"701":[],"70134871e":47,"70149904":[],"7028":[],"703439":[],"7040":65,"70405126":[],"705":[],"70520":13,"70523691":[],"70552356":[],"70563":[],"706338":[],"706907":55,"7073":53,"708":[],"7080":[],"7088":[],"709":[],"70919":[],"70_000":[],"71":64,"710":[],"711000":[],"711411":54,"7124":65,"713":[],"714":[],"7143":[],"7148":[],"715":[],"716":[],"7160":66,"716502":[],"71660":[],"71703749":[],"719":66,"7198138":[],"71992":[],"72":[17,64],"720":59,"7200":[],"72000":[],"72000e":[],"720787":55,"721":[],"7212":[],"723":13,"72320727":[],"723646e":13,"7237005577332262213973186563042994240829374041602535252466099000494570602496":[],"7237659":[],"7252":[],"7256":[],"727037":[],"7271":[10,11,12,14],"727718":[],"72918353":[],"73":[],"7301":65,"731297":[],"73178":[],"7318":[],"7319939418114051":[],"732":[],"732326e":13,"73335":42,"734486":[],"73450":[],"734889":[],"73525":[],"73550":[],"73562217":[],"736":[],"736345":[],"73700e":[],"7372":[],"7386":[],"73892819281":43,"739":65,"739100":[],"739410":[],"739559":[],"74":66,"741":[],"742":[],"7435111":[],"74500":53,"74567022":[],"747":[],"7474784":[],"7487":[],"75":[13,53,55,64],"750":[],"75000":53,"750000":[],"750000000":[],"7502":[],"751":67,"75118362":[],"7514458":[],"751875":[],"75299":[],"75300":53,"7541526024":[],"7541526059":[],"7541531491":[],"7541648760":[],"7541675910":[],"7542991659":[],"7542991743":[],"7543731818":[],"7544165":[],"75485":[],"755":[],"75539786":[],"7557":[],"758":53,"759":[],"7593652":[],"75_000":[],"75e":66,"75k":[],"76":53,"760":[],"7603":[],"76068179442":[],"761":[],"762":[],"76227577":[],"7624":[],"763":[],"7634":[],"763450":[],"76379":[],"764":[],"765":[],"76580":54,"766":[],"7660":[],"76680":13,"767":[],"76728975":[],"768":[],"76908136":[],"769231":[],"76928":53,"77":[],"770":[],"77000":[],"77013":[],"77015697":[],"771252":[],"7715":44,"7725":[],"7727":[13,14],"7727330":[],"772b":17,"773":66,"775132":55,"775132075":[48,49,55],"77542e":54,"7767":[],"7774":[],"7777":[],"778286":[],"779":[],"779784":55,"77980":53,"77e":66,"78":[],"780":[],"78026":[],"780953":[],"781354":[],"78152768e":[47,50],"781869":[],"78218":[],"78277488":[],"78347282":[],"78350":[],"78435":[],"7844":[],"785":[],"78616":[],"786697":[],"78699":[],"78904":[],"789474":[],"7898":[],"79":[],"79000":[],"79033":53,"79035305":[],"791667":[],"792339":[],"79348432":[],"7949":[],"796":[],"796_095":[],"7974":[],"7981":65,"7_000":54,"7e":66,"7th":[],"8":[8,9,10,11,12,13,17,19,26,27,28,32,33,36,46,47,50,51,64,65,66,67,68,72],"80":[13,17,50,53],"800":[],"8000":[],"80000":66,"800000":55,"80000e":[],"801":[],"8016":[],"802":[],"80200":[],"8024":[],"8027":[],"8033":44,"8050":[],"807":[],"8078":[],"808089":[],"80842":42,"80_000":66,"80gb":26,"81":[],"812":[],"8123":[],"81257636":[],"813660":[],"8137":[],"81790":55,"81949992":[],"81965":[],"81969":42,"82":64,"820":[],"820238":[],"823":[],"827":[],"82867":[],"829665":[],"829715d":33,"83":[],"83000":[],"831":[],"8311":[],"8317254":[],"832":[],"832803":[],"8329":54,"833":[],"83333333":[],"83368":[],"834":[],"835":[],"835458":[],"8358062":[],"836":[],"836013":55,"83654764":[],"8369":[],"837000":[],"837287":[],"839":6,"84":[],"8400":[],"841371e":[],"841463":[],"8425333":[],"8427":[],"844":[],"84423828":[],"8447":[],"84488":[],"84555":[],"8468555":[],"847":66,"8471":13,"8485":[],"849643":55,"85":54,"852430":[],"85250":[],"85298":54,"853":[],"853030":[],"85316":[],"853640":[],"85440059":[],"85466838":[],"8547":[],"855":[10,11,12,14],"8552":66,"85541":[],"855942":[],"856412":[],"8577":[],"85780e":[],"858":19,"85821":[],"85868":[],"8594":[],"859424":[],"86":53,"86190":[],"86235":55,"86245":[],"86446":54,"864994":[],"8652":65,"8664":[],"8675":65,"8684":[],"869":[],"8696":65,"87":[],"870":[],"87000":[],"87040205":[],"8719":[],"8725":[],"873267":[],"874":[],"87429194":[],"875000":[],"87633":[],"8766506697893":[],"8766523976497":[],"87670":[],"8785":[],"87851439":[],"8786":19,"8787":[17,19],"878744":[],"8793":[],"88":28,"88000e":[],"8801":[],"8802":[],"8805":[],"8806":[],"8807":[],"881":[],"88137":[],"8821":[],"88254":[],"882895":[],"88298":[],"883":67,"88460":[],"8853":[],"885748":[],"8862":[],"88884669":[],"88967789e":47,"89":[],"890":[],"891":66,"89134143":[],"89185":[],"89347789e":50,"8941997":[],"89536":[],"897":[],"8973":42,"89783887":[],"899":6,"899191":[],"89970768":[],"89_000":[],"8_000":[],"8eec3fa0":[],"8gb":24,"8km":[],"9":[8,9,10,12,13,17,19,24,26,27,28,32,33,36,46,47,50,51,64,65,66,67,72],"90":[25,40,48,49,55],"9000":13,"90000":[],"90000e":54,"90005":[],"901":19,"90200":[],"9026":[],"903":[],"903249":[],"90580108":[],"90589732":[],"90602161":[],"907":[],"907990":[],"9087":[],"909":[],"909091":[],"909724":[],"90_000":[],"91":53,"910":[],"911":[],"912281":[],"912773":[],"91323":[],"913731":[],"9138":[],"91524":54,"91666667":[],"9174":[],"91807":[],"918279":[],"9192013418709424":[],"91957":[],"92":[],"920597":[],"92100e":54,"9223372029312625299":[],"9223372029312629956":[],"9223372029312635420":[],"9223372029312645660":[],"9223372029312645800":[],"9223372029312856274":[],"9223372029312882723":[],"9223372029312888302":[],"9223372029313258415":[],"9223372036854775807":[],"9223372036854775808":[],"923077":[],"9232":65,"9232726829228909":[],"9239":[],"9240934":[],"9243747":[],"92447914":[],"92576":[],"92680002":[],"928":[],"9283e987":[],"929":54,"92918":[],"929623340":[],"9297":[],"93":[19,67],"93135":[],"93143":[],"931782":[],"93225841":[],"933":[],"93325258":[],"933333":[],"933695":[],"9350":42,"9355":[],"938e":[],"939046":[],"9392":[],"94":[],"94022452":[],"941":[],"9413":[],"94300e":[],"944742":[],"945":[],"945562":[],"946":[],"947368":[],"948":66,"949":[],"94o6ttr":17,"95":64,"95000":[],"9502":[],"9507143064099162":[],"9509871630756775":[],"95173":[],"95197":[],"9537":[],"954196":54,"955":[],"95526696":[],"95583":[],"957":53,"95700e":[],"958":66,"95926878":[],"95949":[],"96":[],"960":[],"96024e4c":17,"96068":[],"961222":[],"96201":[],"96239991":[],"96246675":[],"96252916":[],"964432":[],"96448626157":[],"96472654":[],"96662":[],"96669":[],"967e":66,"968":[],"9682":66,"968220":55,"968408":[],"96cb":17,"96e":66,"97":[],"970221":[],"970514":55,"9717":[],"975":66,"976":[],"9767":[],"977128":[],"9776":[],"979":66,"9795978":[],"98":[28,43],"98000e":54,"98028362":[],"980299584":[48,49,55],"980300":55,"9807":[],"9808969":[],"981106":[],"981126":[],"982":[],"982775":55,"982775018":[48,49,55],"984111":[],"984130":[],"9856":[],"986111":[],"98881644218754":64,"989723798729874":[],"9897238":[],"98dc9420c2f021fb4e0bb3d80c72065d":17,"99":[47,50,51,64],"990":66,"9900":[],"9901":[],"990293":[],"990807":[],"992588":[],"99273975":[],"993":[],"993103":[],"994660":[],"9967":[],"99699f0c":[],"997":[],"997409":[],"99778":[],"998":[],"998140":[],"999":[13,30,40,53],"99930":[],"9996":[],"9999":[],"999997":68,"999998":68,"999999":68,"9999999":[13,14,25,30,40,53],"99999999":35,"999999e":13,"9_999_999":53,"9ab4fa814864c801e2cba6374dc6a7ac":17,"9b6041b75a79c3e71d6d7acd7239fd91":17,"9b67ae1a2bd7fb1817a63efa1994d7b4":17,"9cd2f2682352":67,"9th":[30,53],"\u00b5s":[67,68],"\u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f":11,"\u0443\u043a\u0440\u0430\u0457\u043d\u0430":11,"\u0444\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f":11,"\u76fc\u76fc":[],"abstract":68,"boolean":[8,12,34],"break":[5,8,9,26,34,64],"byte":[22,28,75],"carr\u00e9":[],"case":[5,8,10,11,13,17,22,25,27,28,29,30,31,32,33,34,39,40,42,46,47,49,50,51,52,53,58,60,61,64,67,68,69],"catch":67,"class":[1,2,4,5,6,17,24,26,27,30,40,45,47,50,53,57,58,61,63,64,67,70],"default":[8,13,14,19,22,34,36,37,38,39,47,50,55,65],"do":[2,3,4,6,7,8,9,10,11,12,13,14,19,21,22,23,24,25,26,27,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,58,59,60,61,64,65,68,70],"export":[23,42],"final":[5,6,9,11,17,19,27,28,39,41,42,44,54,58],"float":[4,8,10,14,16,17,28,47,50,67,68],"function":[4,5,7,8,14,17,21,27,28,29,34,35,39,41,43,44,46,47,48,49,50,51,52,54,55,60,61,64,67],"import":[2,4,5,6,7,8,10,11,12,13,14,15,17,19,22,23,24,25,28,30,32,33,34,35,36,38,39,41,42,43,44,46,47,49,50,51,52,53,54,55,60,63,65,66,67,68,70,73,75],"int":[5,8,17,28,67,68],"long":[2,5,6,8,14,24,26,29,33,39,41,46,51,54,60,64,67,75],"m\u00e9xico":11,"new":[4,5,6,8,12,13,17,21,22,23,26,27,28,29,30,33,34,35,36,37,38,39,41,42,47,48,49,50,51,52,53,54,55,58,59,60,61,63,64,67,68],"null":8,"public":26,"return":[5,8,10,11,12,13,14,17,19,22,25,27,28,29,31,34,37,40,42,43,47,50,55,64,67,69],"short":[2,10,11,17,22,28,35,63,64,75],"super":[5,6,42,52,67],"switch":[8,32,33,64],"throw":[5,17,24,32,33,35,39,44],"true":[5,8,10,11,13,14,17,25,27,28,34,35,36,39,40,41,42,47,50,51,53,54,55,61,66,67,68],"try":[2,5,6,8,10,11,12,13,17,19,22,23,24,25,26,28,29,30,31,32,33,34,35,36,38,39,42,44,47,48,49,50,51,53,55,58,60,61,64,65,75],"var":[9,12,17,47,50,52],"voil\u00e0":[],"voil\u00e1":[],"while":[2,5,6,7,8,10,11,13,14,17,22,24,26,27,28,32,33,35,39,40,44,47,48,49,50,52,55,58,60,61,63,64,67,75],A:[2,6,8,9,12,13,14,17,32,34,37,38,39,41,42,47,48,49,50,51,54,55,58,60,61,63,67,73],AND:[9,12,24,28,42,68],AS:26,And:[2,5,6,10,11,12,13,14,17,19,21,22,32,33,36,39,42,44,47,50,51,53,58,60,61,63,64,67,68,75],As:[2,5,11,12,13,14,17,22,23,25,27,28,29,30,31,32,33,34,36,37,38,39,40,41,44,46,47,48,49,50,51,52,53,54,55,58,60,61,63,64,67,68,73,75],At:[2,5,6,13,17,37,68],BE:[],BEING:42,BUT:[34,39,60,67],BUt:67,Be:[5,22,41,48,49,54,55],Being:[7,39],But:[2,4,5,6,10,12,13,14,17,21,22,23,24,28,30,32,33,34,36,37,38,39,40,42,44,46,47,48,49,50,51,53,55,58,60,61,63,64,67,68,75],By:[8,13,32,33,34,37,39,41,47,50,51,54,59,64,67],FOR:51,For:[5,8,10,11,12,13,14,17,21,22,23,25,27,28,29,30,32,33,34,36,39,40,41,43,44,46,47,48,49,50,51,52,53,54,55,58,60,61,63,64,67,68],IF:[],IN:25,IT:[],If:[2,5,6,8,9,10,11,12,19,22,23,24,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,44,46,47,48,49,50,51,52,53,54,55,58,59,60,61,64,67,68],In:[4,5,8,9,10,11,12,13,14,17,22,23,24,25,26,27,28,29,30,32,33,34,36,37,38,39,40,41,42,43,44,46,47,48,50,51,52,53,54,55,58,60,63,64,67,68,69,70,75],Is:[28,40,41,46,47,50,51,54,68],It:[2,6,12,13,17,19,21,23,24,28,29,30,32,33,34,36,39,40,41,42,43,44,46,53,54,59,60,64,65,67,69,70],Its:60,NO:[],NOT:[4,9,23,34,36,47,50,51],No:[9,17,58,61,63,66,72],Not:[13,14,39,67],ON:[],ONE:[],Of:[6,11,13],On:[32,33,58,64],One:[2,5,8,10,14,22,27,28,29,30,31,37,39,41,42,44,46,47,48,50,51,52,53,54,55,60,67],Ones:[],Or:[5,6,11,13,14,17,39,41,53,54,55],Such:[],THAT:[25,64],THE:[17,22,25,46],TO:[22,46,51],That:[2,4,5,12,13,17,19,21,22,24,27,30,32,33,34,36,40,46,50,51,53,60,63,64,65,67,68,75],The:[2,4,5,6,8,9,13,14,15,17,19,21,22,23,24,26,27,28,30,31,32,33,34,35,39,40,41,42,45,46,47,48,50,51,52,53,54,55,58,59,60,63,64,65,67,70,72],Then:[5,10,17,19,22,23,24,25,27,32,33,35,37,38,39,40,41,46,47,50,52,54,64,65,67,68],There:[2,5,10,11,14,19,22,23,24,27,28,30,32,33,46,48,49,51,53,55,58,60,61,63,67,68,75],These:[4,10,11,13,17,22,28,30,33,41,48,49,51,53,54,55,64],To:[5,8,11,13,14,17,23,24,26,27,28,30,32,33,34,35,36,37,38,39,40,41,43,46,47,48,49,50,51,52,53,54,55,58,64,65,67,69,70],WILL:25,WITH:[],Will:67,With:[2,6,27,28,34,40,47,48,49,50,55,60,63,67],_:[8,53],__:[],_________:[30,53],__dask_postcompute__:[],__exit__:17,__init__:27,__main__:31,__mul__:17,__name__:31,__nonzero__:[],__setitem__:[],__traceback__:67,_arith_method:17,_compile_for_arg:67,_construct_result:17,_core:[],_engin:[],_ensure_numer:10,_episodes_rmd:[],_evalu:17,_evaluate_standard:17,_event_pip:67,_frame:17,_gather:[],_generatorcontextmanag:17,_get_binary_oper:17,_growth:[48,49,55],_has_valid_setitem_index:[],_head:[],_is_broadcast:17,_is_master_process:67,_lib:[],_locationindex:[],_lsprof:67,_masked_arith_op:17,_matrix:[],_mean:40,_merg:39,_meta:17,_na_arithmetic_op:17,_name:17,_of:40,_rate:[48,49,55],_schedule_flush:67,_set_item_frame_valu:34,_setitem_with_index:[],_store_test_result:17,_sync_cluster_info:19,_thread:67,_total:[],_unbox_scalar:[],_unpack_zerodim_and_def:17,_validate_scalar:[],_valu:[48,49,55],_vector:[],_w_degre:[],_wait_for_tstate_lock:67,_x:[40,43],_y:43,a1:[],a52aba7de6d5:[],a9efa4ff5a9d6612f62c70f567177170:17,a_0:[],a_1:[],a_2:[],a_:[],a_boolean_vector:[],a_fast_funct:67,a_float_vector:[],a_fold:[],a_folder_with_stuff:[],a_medium_funct:67,a_slow_funct:67,a_string_vector:[],aa11_pm300m:[],aaa:8,ab:[],abandon:[],abcdefghiklmnopqrstuwx1:[],abcfghloprstuw:[],abidjan:[],abil:[2,5,6,41,42,46,52,54,58,64],abl:[2,5,6,8,17,23,25,27,32,33,34,39,40,41,46,47,50,51,54,59,60,61,63,64,68,75],abort:33,about:[1,5,6,7,10,12,13,14,21,22,24,25,26,27,28,29,30,32,33,34,36,37,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,67,68,69,70,73,75],abov:[2,5,10,12,13,17,19,25,28,30,33,34,38,39,40,41,42,44,45,47,48,49,50,51,53,54,55,61,64,67],absent:39,absolut:[5,6,17,22,25,39,50],abstractli:[],abu:[],abus:[],ac:[13,14,25,30,40,41,45,53,54],academ:[2,58],acceler:[],accelerationord:[],accent:11,accept:[8,11,17,28,29,39,67],access:[8,11,17,26,32,42,48,49,51,55,58,60,63,64,67,68,75],accessor:28,accid:[],accident:[10,68],acclaim:[],accommod:[],accomplish:[13,39,47,48,49,50,51,55],accord:39,accordingli:[],account:[19,26,33,40,47,50,51,58,60],account_kei:[],account_nam:26,accra:[],accru:[41,46,54],accumul:[17,30,53,67],accur:[13,27,30,39,40,44,53],accuraci:[24,47,50],accustom:[21,48,55],achiev:[2,35,46,67],acm:[],acquir:[2,67],across:[5,6,11,17,22,24,28,29,39,40,41,46,47,48,49,50,54,55,64,67,75],act:[2,25],action:[23,36,64],action_ind:17,activ:[2,5,24,32,33,37,38,63,64,67],actor:[],actual:[4,5,6,13,14,17,19,21,22,23,24,25,26,27,28,29,30,33,34,39,40,41,42,43,46,47,48,49,50,51,53,54,55,58,59,60,61,63,64,65,67,68,69,70,75],acut:75,acw00011604:[],ad:[15,26,28,32,33,35,36,39,49,51,55,58,67,68,70,75],adapt:[48,49,55],add:[6,8,23,27,28,30,32,33,34,36,39,43,44,46,52,53,58,60,67,68,75],add_categori:[],add_select:[],add_up_entri:[],addict:6,adding_tot:67,addit:[2,6,8,13,14,17,24,27,28,29,33,41,54,58,61,63,64,67,68],addition:28,addr:19,address:[17,22,23,32,33,39,40,51,68],adequ:2,adf:[],adj:66,adjust:[43,46,51,53],adjusted_incom:[],adlf:[],admin:19,administr:51,admit:[6,38],admittedli:[],adob:22,adopt:[],adult:13,advanc:[2,8,9,20,39,45,59,61,67,68,72],advantag:[13,14,22,23,29,40,48,49,51,55,60,68,73],advic:[2,3,42],advis:[41,54],advoc:[48,49,55],ae:[],aesthet:[],af:19,affect:[5,30,33,47,50,53],affili:17,afford:63,affort:63,afghanistan:[],afraid:[26,65],africa:[10,11,12,14,44,48,49,55],african:[],after:[2,5,7,8,11,12,17,19,23,24,30,33,35,39,41,46,47,48,49,50,51,53,54,55,68],after_tax:[],afterward:[],ag:[4,13,25,30,40,47,50,53,60],again:[17,24,25,26,28,31,32,34,35,36,38,42,47,50,51,52,58,64,75],against:[4,8,12,25,27,30,32,34,39,40,41,46,47,48,50,51,53,54,55],age_group:[],age_squar:60,agenc:[2,23,30,53],agent:17,agesquar:60,agg:17,aggdata:[],aggreg:[28,34,46],aggress:[],agnost:[],ago:[14,51,58],agre:[17,47,50],agricultur:[],ah:[],ahead:[13,17,27,29,30,48,49,53,55],ahv:28,ai:[],aic:[51,66],aid:39,aim:2,air:6,airlin:[],airport:28,aka:61,alabama:[],alameda:34,alaska:[],albania:44,albeit:[],albertson:[],aldi:[],alert:[],algebra:[27,64],algeria:44,algorithm:[13,47,50,61,64],ali:[],alia:8,align:[],align_method_seri:17,aliv:[],all:[2,3,5,6,8,10,11,12,13,14,17,19,22,23,24,25,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,44,46,47,48,49,50,51,52,53,54,55,58,59,60,63,64,67,68,69,70,73,75],all_piec:8,all_prescript:17,all_rows_w_even_a:65,all_year:[],alleg:[],alloc:[5,41,54],allow:[2,4,5,8,10,17,22,25,27,28,30,33,34,38,39,40,41,44,46,48,50,51,53,54,55,58,60,61,64,65,67,68],almost:[2,5,10,27,30,39,42,52,53,58,60,61,64,68,70],alon:[12,17],along:[2,24,33,37,38,67,70],alongsid:[],alpha:[],alphabet:[34,48,55],alpin:[],alreadi:[12,13,17,22,24,26,27,32,33,37,38,47,48,49,50,51,55,60,67,68],also:[2,4,5,6,8,10,11,12,13,14,15,17,19,22,23,24,25,27,28,30,32,33,34,35,36,37,38,39,40,41,42,44,46,47,48,49,50,51,52,53,54,55,58,60,61,63,64,65,67,68,69,70,75],alt:43,altair:[9,34,43,44,46,51],altair_data_serv:[],altair_figur:[],altair_sav:[],altern:[2,28,33],although:[41,54,60],altitud:[],altogeth:8,alwai:[2,5,6,10,11,12,14,17,21,22,23,26,32,33,36,39,42,44,46,58,61,64,65,67,70],alwg:[],alwi:[],alzheim:[],am:[3,9,33,34,61],amador:[],amaz:[5,13,19,32,33,58,60,68],amazingli:31,amazon:3,ambient:[],ambigu:[],amc:[],america:[10,11,12,14,44],american:[13,14,25,30,40,41,47,50,51,53,54],amlclust:26,amman:[],among:[29,60,61,64],amoung:25,amount:[2,5,30,35,39,41,49,53,54,60,67,68],amp:[10,11,12,14,44],ampersand:11,an:[2,4,5,8,10,11,12,13,14,17,19,21,22,24,25,26,27,28,30,31,32,33,34,36,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,61,63,65,67,68,70,73],an_integer_vector:[],anaconda3:[],anaconda:13,analog:[22,32,41,50,54,64,65],analogu:51,analys:[5,13,47,50,51,60],analysi:[1,5,10,17,24,25,30,32,33,34,37,38,40,44,46,47,48,49,50,51,53,55,58,59,60,61,67,70],analysis:60,analyst:[],analyt:[],analyz:[2,13,22,23,34,39,41,44,51,54,59,67],analyze_health:37,analyze_health_and_incom:[37,38],anchor:64,ancillari:[],anderson:63,andr:[],anesthesia:58,anew:[],angel:[],angl:[],angleunit:[],anglic:11,angola:44,ani:[4,5,6,8,10,11,14,17,19,22,24,25,26,27,28,30,32,33,34,39,40,41,43,45,46,47,48,49,50,51,53,54,55,58,59,60,61,64,67,68,73],anim:52,animals_in_my_zoo:52,ankara:[],annoi:[],annot:[],announc:33,annual:[],anomyli:[],anoth:[2,6,11,17,19,22,23,27,28,33,39,42,43,45,47,50,51,58,60,64,67,68],answer:[2,4,7,10,14,17,21,25,26,30,31,34,36,39,40,41,42,44,46,48,50,51,52,53,54,55,58,64,68],antarctica:[],anti:[28,29],anticip:27,antigua:[],anymor:[5,17],anyon:[2,4,13,25,30,32,33,40,50,53,58,60,70],anyth:[17,22,27,28,32,33,34,35,39,42,44,46,47,49,50,60,61,68],anytim:[],anywai:[11,28],anywher:63,aoa:3,ap:31,apach:[5,17,65],apex:[],api:[17,27,28,44,47,50,60,61,66],apolog:[41,54],app:61,appar:67,appeal:[],appear:[10,13,14,19,26,31,32,33,34,37,38,41,51,54,55],append:[8,17,21,28,52,64,65,67],append_42:[],appendectomi:58,appl:6,apple_selector:[],appli:[2,5,8,9,17,19,22,24,27,28,33,41,44,48,49,54,55,58,59,60,64,67,68],applic:[2,3,5,13,27,42,47,49,50,60],appreci:[41,54],approach:[2,27,32,46,58,61],appropri:[25,34,38,47,50,63],approv:[17,61],approxim:64,aquarium:[],aqyrgykooc:65,ar:[2,4,5,6,7,8,9,10,11,12,13,14,17,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,64,65,67,68,70,73,75],arab:44,arabia:44,arang:68,arb:[],arbitrari:[17,68],arbitrarili:[],arcgi:60,archeolog:[],archer:[],architectur:[64,75],archiv:58,arco:[17,26],arcos_:26,arcos_all_washpost_2006_2012:17,area:[28,48,49,55,60,63,64,69],area_impact:[],aren:[4,5,10,13,17,24,27,28,30,31,33,34,36,40,42,44,51,52,53,60,61,63,64,67],arg:[17,67],argentina:44,args2:17,argtyp:67,argu:[6,39,48,49,55],arguabl:39,argument:[8,11,14,17,27,28,34,35,39,40,51,61,64,67,69],aris:[],arithmet:28,arithmetic_op:17,arkansa:[],arm:31,armchair:[],armenia:44,around:[6,15,17,19,22,23,24,28,29,38,43,47,50,58,60,61,64,67,68,75],arr:[],arrai:[5,8,9,10,12,15,17,27,34,36,42,47,48,49,50,51,54,55,60,66,68],arrang:[],array_op:17,arraylik:17,arrest:51,arreste:34,arrests_2009:[],arrests_2018:[],arrests_collaps:[],arriv:[6,13,35,36,63,75],arrival_ord:[35,36],arrival_pr:[35,36],arrow:[38,52],arrwjcypco:65,art:2,articul:[],artifact:[],artist:54,as_:[],as_a_float:[],as_index:34,asarrai:66,ascend:55,ascii:22,ascii_uppercas:[35,65],ashgabat:[],asia:[],asian:[47,50,51],asid:[],asizeof:[],ask:[2,4,13,17,19,22,27,28,29,31,32,34,38,39,41,46,48,54,55,60,61,63,67,68,70,75],aspect:64,aspir:[46,48,49,55],assert:[25,30,34,39,40,41,46,48,50,51,53,54,55],assertionerror:34,assess:34,asset:60,assign:[2,4,17,21,25,26,30,34,39,40,41,45,46,48,50,51,52,53,54,55,64,67],assist:[2,61],asso:[],associ:[5,11,27,35,36,46,51,63,68],assum:[2,11,22,23,25,27,28,39,47,48,49,50,55,58,63,66,68],assume_miss:28,assumpt:[23,39,70],assur:65,asterick:[],asterisk:25,asterix:28,astound:[],astyp:[10,60],astype_nansaf:[],asynchron:[],asyncio:19,atg:[],atheist:[],atol:[],atom:[32,33],attach:[],attain:[25,30,53],attempt:[8,25,47,50,51,64],attend:[],attende:[35,36],attent:[40,51,63],attornei:[34,39],attribut:[27,28],aug:9,augment:[9,38],australia:[],austria:[],autauga:[],auth:[],authent:26,author:[17,28,58],auto:33,autocrat:44,autograd:[41,42,54],autom:5,automat:[5,8,22,35,48,51,55,65],autonomi:2,avail:[2,11,14,17,19,33,38,40,41,47,50,51,54,58,60,61,63,64],availbl:[],averag:[5,10,13,24,25,28,30,34,39,40,42,44,46,48,49,51,53,55,64,67],average_growth:[],avers:60,avg:[34,53,67],avg_c:[],avg_growth:[48,49,55],avg_incom:53,avg_numb:67,avg_number_up_to:67,avg_numbers_up_to:67,avoid:[2,5,6,33,35,36,68],aw:[13,19,54,58,60],awai:[5,10,24,32,39,63,67],await:19,awar:[3,4,6,13,14,17,22,34,41,46,51,54,58,64,67],award:[],awri:[],ax:[8,43],axesimag:[],axessubplot:[],axi:[24,39,41,43,48,49,54,55],axis_lin:[],axis_tick:[],az:26,azur:[5,19,26,72],azure_sa_connection_str:[],azure_sa_name_and_kei:[],azure_secret:[],azureml:[],azureml_c6bd17107f471892400d23146f291775:[],azuremlclust:[],azurevmclust:[],b4fc17c18d2b87711188593a28c0412d:17,b65c:17,b:[2,5,8,12,13,17,22,24,31,32,33,34,39,41,48,49,50,54,55,60,61,64,65,67,68,75],b_0:[],b_1:[],b_2:[],babi:51,bachelor:[2,25],back:[2,5,12,13,17,21,22,26,27,28,29,30,32,33,34,38,42,44,46,51,53,58,60,63,64,67,75],backbon:[],backend:[9,28,29,67],background:[30,47,50,53,60,73],backslash:11,backup:[],backward:[9,13,34,51],backwat:31,bad:[8,11,13,15,41,54,58,60,67],bad_county_year:[],bad_year:[],bag:28,bahrain:[48,49,55],bai:[],bake:[],balanc:[29,46],balanced_panel:[],baldwin:[],ball:34,baltimor:[],banana:[],bandwidth:2,bank:[2,46,75],bar:[8,9,29,41,54,69],barbara:[],barbour:[],barbuda:[],barcontain:54,bard:61,bare:[],barplot:[],barrier:64,barter:[],base:[3,6,11,12,17,22,31,33,35,36,38,39,43,44,51,60,61],base_famili:[],basegeogcr:[],baselin:[47,50],bash:[7,22,32],bash_profil:[],bashrc:[],basi:[2,59],basic:[5,9,11,17,19,20,29,32,33,37,38,46,47,50,51,60,61,63,64,67,68,72],bass:2,bat:13,batch:[],batteri:[],battl:39,baz:8,bazaar:15,bb:[],bbb:8,bbox:[],bcafrn3aap8:3,bcoil:19,bear:[6,27,52],bearer:68,beat:[17,60,64],beauti:64,beautiful_plot_from_notebook:[],becam:[47,61],becaus:[2,4,5,6,8,10,11,12,13,14,17,19,21,22,24,25,26,28,30,32,33,34,35,36,37,38,39,40,41,42,43,46,47,48,49,50,51,53,54,55,58,60,61,64,67,68,73,75],becom:[2,17,34,35,46,58,60,61,64,75],been:[2,5,6,13,17,21,22,24,25,31,33,36,38,39,40,41,45,46,47,48,49,50,54,55,60,61,63,64,67,68],befor:[2,4,6,9,11,12,13,22,25,26,27,28,30,32,33,34,36,39,40,41,42,45,46,47,48,50,51,53,54,55,58,60,61,64,65,67,70,75],beg:[],begin:[2,8,11,13,17,23,24,26,28,29,30,32,33,37,38,39,40,41,42,46,47,48,49,50,51,53,54,55,61,75],begrudingli:17,behalf:[],behav:67,behavior:[8,14,34,35,36,60],behind:[17,27,33,50,59,60],behold:[47,50],being:[2,6,8,10,11,12,13,17,22,23,24,26,29,30,32,33,34,40,41,43,44,47,50,51,52,53,54,60,63,64,67,68,70,75],belaru:[],belgium:[48,49,55],belgrad:[],belief:34,believ:[22,44],bell:51,below:[2,5,6,11,13,17,28,29,32,34,35,37,38,41,42,44,46,48,49,51,52,53,54,55,58,63,64,67,70,73],below_median:[],below_poverti:[],benchmark:[],bend:[],beneath:50,benefici:67,benefit:[5,30,53,58,60,64,67],benin:[],benito:[],bent:[],bera:66,berin:[],bernardino:[],besid:35,best:[2,3,4,6,17,24,26,32,34,41,43,44,47,50,54,59,60,61,63,64,65,73],bet:67,beta:27,betrai:[],better:[2,5,6,10,13,15,17,24,28,30,39,41,43,44,46,47,50,51,53,54,60,61,64,70,75],between:[2,5,6,13,15,17,19,22,24,25,28,29,30,33,34,40,41,44,46,48,49,50,51,52,53,54,55,60,63,64,67,68,75],betwen:[30,53],bewar:4,beyond:[13,50],bezo:[],bhutan:[],bia:[47,50],bias:[],bibb:[],bibl:[],bic:66,bidirect:2,big:[6,9,10,13,17,22,23,29,34,44,46,51,52,58,60,61,64,67,68,72,73],big_arrai:[],big_countri:[],bigger:[2,5,24,51],biggest:[17,39,60,64,67],bill:33,billion:67,bin:[41,54,69],binari:[9,22,33,68],bind:[],binding_rang:[],binwidth:[],biologist:[],biometr:[47,50,51],bird:[],birth:[32,33,47,50],birthweight:[47,50,51],birthyr:[],bissau:[],bit:[5,22,28,29,30,34,53,60,67,68,75],bite:52,bitei:52,bitstr:16,bivari:[],bizarr:60,black:[4,25,27,34,40,47,48,50,51,52,55,62],black_arrest:[],black_row:[],blank:[8,33],blaze:[67,68],blend:[],blkgrpce:[],blob:[13,14],blob_nam:[],blobclient:[],block:[17,22,24,33,37,42,52,60,67,68],blockwis:17,blog:17,blood:[],blosc:[],blount:[],blow:28,blr:[],blue:[31,37],bmatrix:42,board:23,bodega:[],bodi:[],bol:[],bold:36,bolivia:[],bolt:[],book:51,bool:[8,28,34],bool_vector:[],boot:[],bootcamp:63,border:[],bore:52,born:[47,50,51],borough:23,borrow:51,both:[2,5,11,12,13,14,17,22,24,27,28,30,31,32,33,35,39,40,41,42,44,46,47,50,51,53,54,58,60,64,67,68],bother:[],bottom:[5,6,8,24,29,37,38,44,47,51,55,63],boulder:[],bound:[],boundari:[51,58],bown:63,box:[27,37,67,69],boxplot:69,bpl:[],bpld:[],brace:[],bracket:[9,23],bradburi:58,brain:[],brainer:17,branch:[9,32,33,58],branch_nam:32,brasil:11,brazil:[10,11,12,14],bread:59,breakdown:[],breakpoint:[],breath:[],breviti:[],bridg:23,brief:[],briefli:22,bright:[],bring:[5,29,33,55,64],british:[],broad:[],broadcast:[9,17],broader:58,broadli:[11,27],broken:[26,64],brook:2,broswer:[],brought:[],brows:[41,54],browser:[22,28,29,32,33],browswer:32,brush:[],bsd:[],btw:[],bucharest:[],buck:[5,6],budapest:[],buddhist:[],budget:6,buffer:[],bug:[31,38],buggi:[19,38],bui:[3,5,75],build:[2,17,32,35,63,64,67,70],builder:[],built:[11,17,47,50,60,65,67,69],builtin:[8,67],bujumbura:[],bulgaria:[48,49,55],bulk:11,bullet:64,bunch:[33,64,68],bureau:[13,25,30,41,53,54],bureauid:[],buren:[],burn:6,busi:[17,39,61],busy_dai:[],butt:[],butter:59,button:[32,33,38,41,54],buyer_addl_co_info:17,buyer_address1:17,buyer_address2:17,buyer_bus_act:17,buyer_c:17,buyer_counti:17,buyer_dea_no:17,buyer_nam:17,buyer_st:17,buyer_zip:17,bwt:[47,50],bwt_oz:[47,50],bytearrai:[],bytearray_inst:[],bytes_inst:[],bz2:8,c1:[],c2:[],c5ctbfi4:17,c:[8,10,11,12,14,28,30,41,44,47,50,53,54,60,64,65,66,67,68],ca:[34,51],ca_arrests_2009:39,ca_arrests_2018:[],ca_felonies_2001_2010:[],ca_misdomeaners_2001_2010:[],ca_pop2009:[],ca_pop2017:[],cabl:[],cach:8,cache_d:8,calavera:[],calc_base_wt_in_gm:[17,29],calcualt:[],calcul:[10,13,17,24,25,26,27,29,34,39,40,41,46,48,51,54,55,75],california:[34,39,51],californian:34,call:[2,4,5,8,10,11,13,15,17,19,21,22,23,25,26,27,28,30,31,32,33,34,36,37,38,39,40,41,46,47,48,49,50,51,53,54,55,58,60,61,64,67,68,70,75],callabl:[8,17],callback_timeout:[],calul:44,came:[17,39],camera:[],campaign:58,campu:63,can:[2,4,5,6,7,8,10,11,12,13,14,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,58,59,60,61,63,64,65,67,68,69,70,75],can_swim:[],canada:[],cancel:[28,41,54],cancellederror:19,cancer:61,candid:17,cannib:[],cannot:[8,17,32,34,61,64,67],canon:[],cap:11,capabl:[60,61,64],cape:[],capit:[11,39,41,54],capita:[11,32,33,39,43,44,46,48,49,55],capitabetween:[],captur:[30,53],car:[],carbon:[],card:26,cardin:[],care:[4,5,10,22,28,39,42,46,47,48,49,50,55,64],career:[2,61],carefulli:[2,4,10,17,30,34,41,53,54,68],careless:[],carolina:[],carpentri:[],carri:[37,38,39],cart:[],cartesian:[],cartoon:[],carv:[],cash:[6,26],cast:10,casted_kei:[],casual:[],cat:[22,23,47,50],cat_nam:52,categor:[5,9,10,25,47,50,51,60,61,65],categori:[13,25,30,34,40,47,50,51,53,60,65],categoricaldtyp:[],cathedr:15,cathol:[],caught:[],caus:[4,8,10,13,14,17,19,24,25,33,34,39,46,50,51,67,68],causal:[39,46],cautiou:61,cavali:[47,50],caveat:12,cbook:[],cbpernum:[],cbserial:53,cd:[22,23],cdef:67,cdot:[],ce:[22,23],cea:[],cell:[4,12,17,25,26,29,33,34,42],cellphon:[],censu:[13,25,30,40,41,53,54],census:25,cent:19,center:33,center_most_c:[],centermost_c:[],centigrad:[],central:[17,58,60,64],centric:[],centroid:[],ceo:[],cerebellum:[],certain:[4,8,10,12,14,33,34,39,67],certainli:[2,27,46,58],certif:[2,30,53],certifi:3,chain:42,challeng:[2,17,24,30,52,53],chanc:[2,33],chang:[2,5,11,12,22,24,25,33,34,36,38,39,41,42,43,46,50,51,52,54,58,59,60,61,64,68,70],change_contrast:[],change_from_09_to_18_in_high_drug_arrest_counti:[],change_from_09_to_18_in_low_drug_arrest_counti:[],change_in_drug_2018_2009:[],change_in_violent_2018_2009:[],channel:[],chao:17,chapter:[9,51,63],charact:[8,11,24,25],character:51,characterist:[14,51],charg:13,charl:[],chart:[38,43,44,69],chatgpt:9,chdir:17,cheap:[],cheaper:6,cheat:[24,27,47,49],cheatsheet:[7,17,58],check:[10,13,17,22,24,25,26,29,30,32,33,34,39,40,41,42,43,44,46,47,48,50,51,52,53,54,55,60,61,64,67,68,69,75],checklist:[],checkout:32,chevel:[],chevroelt:[],chickasaw:[],chide:[],child:[47,50,51],childhood:[],children:[13,14,30,40,47,50,51,53],childrenki:[],chile:[],china:[],chines:[],chip:[6,64],chl:[],choic:[27,35,47,50,60,65],choos:[37,38,47,50,60],choropleth:[],chose:[],chosen:17,chpt:9,chrome:22,chunk:[5,8,17,24,29],chunksiz:[5,8,17],ci:[],ci_high:[],ci_low:[],ciat:[],circl:[12,60],circular:[],circumst:12,cite:[41,54],citi:[22,23,24,28],cities_reproject:[],cities_w_counti:[],citizen:[11,22],city_buff:[],city_nam:[],citypop:[],civil:39,civiliansk:[],claim:15,clara:[],clarifi:70,clariti:[],class_2:[],class_3:[],classif:[47,50],classifi:[47,50],classroom:[2,59,63],classwkr:[],classwkrd:[],clean:[2,9,13,14,41,46,51,54,59,60,72],cleanest:[41,54],cleanli:[10,11,13,59],cleanup:[],clear:[2,10,13,25,39,40,44,47,50,51,61,63,64,67,75],clearer:[],clearli:[4,13,44,61],clever:[],cleverli:28,cli:72,click:[22,26,28,29,32,33,37,38,41,54,70],client:[17,19,28,29],climat:24,climatedata:[],climatolog:24,clinic:61,clock:26,clone:[32,33],close:[6,11,17,19,23,24,26,27,38,39,41,42,54,64,75],closer:[4,64],closest:[],cloth:[],cloud:[4,5,6,9,28,29,34,46,51,58,60,61,64,72],cloudprovid:[],clumsi:13,clunki:[],cluster:[5,9,13,17,26,53,64,72],clutter:[],cmap:[],cmd:[],cmder:32,co2:[],co:58,coauthorship:2,code:[4,5,6,9,10,11,13,15,17,19,21,22,24,25,26,28,29,30,32,33,34,35,36,37,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,58,59,61,64,65,68,75],codebook:39,codec:8,coef:66,coef_:[47,50],coeffic:[27,44],coeffici:[27,41,46,47,50,51,54],coerc:[],coerce_dtyp:[],coercion:[],coffe:[],coher:[],cohort:[],coil:17,col1:34,col2:[],col:[],col_index:12,col_nam:[],cold:[],collabor:[32,33,58,59,60],collaps:[5,17,34,39],colleagu:[31,58,59,60],collect:[2,15,17,28,41,51,52,54,67,68],colleg:[2,25,30,53],college_degre:[25,66],colloqui:[],colombia:[],colon:22,color:[9,33,74],colorado:[],colour:[],column:[5,7,8,10,12,17,23,24,25,26,27,28,29,30,32,34,35,36,38,39,42,43,46,47,50,51,53,60,65,66],column_a:[],colusa:[],com:[3,11,12,13,14,16,17,32,41,43,44,53,54,59,67,74],combin:[5,8,9,24,25,27,28,33,36,46],combined_labeler_nam:17,come:[5,6,11,13,17,22,24,28,29,30,32,33,34,39,41,46,47,48,49,50,52,53,54,55,58,59,60,61,63,64,65,67,68,69,70,75],comedi:[],comer:17,comfort:[28,39,47,50,58,60,61],comm:[17,19],comma:[8,22,24,43],command:[4,5,6,9,17,19,20,21,30,31,32,33,34,37,38,40,46,53,58,59,60,68,72],command_lin:[],commandlin:[],commandnam:[],commandtolaunchyoureditor:32,commensur:2,comment:[4,8,25,32,34,39,46,51,58,60,70],commerc:[],commit:[2,32,33,34,39,58,70],common:[10,11,13,14,17,28,31,32,33,39,42,44,47,50,51,54,70],commonli:[13,22,30,41,53,54,58,67,70],commun:[2,10,13,14,23,25,28,29,30,39,41,43,45,51,53,54,58,60],compani:[5,6,17,19,23,29,32,47,50,58,61],compar:[17,24,30,31,33,34,38,41,42,46,51,53,54,64,65,67,68],comparison:[17,33,39,47,49,50],compartment:[],compat:[13,22,67],compel:2,compens:2,compet:75,competit:[],competitor:[],compil:[17,61,67,68],complain:[13,60],complaint:[22,23],complement:28,complet:[2,4,8,12,17,25,30,32,33,34,37,38,39,40,41,42,46,48,50,51,52,53,54,55,61,63,64,68],complex:[6,10,17,44,60,61],complic:[22,60,64],compliment:60,complimentari:[],compon:[2,6,47,50,64],compos:[],composit:46,compound:[48,49,55],comprehens:51,compress:[5,8,17,29,33,46,65],compromis:[4,60],comput:[2,3,4,9,10,13,22,24,26,29,32,33,42,47,50,58,59,60,61,65,67,68,72,75],computation:6,computerphil:16,con:60,concat:[8,65],concaten:[8,9,23,46,68],concept:[9,17,63,72],conceptu:[2,17],concern:[2,47,49,50],concert:5,concis:67,conclud:[39,43,44],conclus:[44,51,58,61],concord:[],concret:[],cond:66,conda:[0,17,19,28,37,38,41,54,59,64,65],condabin:[],condit:[3,12,64,67],conduct:[13,25,30,39,53],conf_int:[],confess:37,confid:[47,50,61],config:32,configur:9,confirm:[10,23,51],conflat:40,conflic:58,conflict:58,conflicted_fil:33,confound:[],confus:[36,64],confusingli:[36,64],congo:[],congrat:[],congratul:[22,30,33,41,47,50,53,54,61],connect:[2,8,17,19,24,26,28,29,32,45,60,74],connect_timeout:19,connection_str:[],connector:19,connot:13,consecut:8,consequ:[44,63],conserv:[],consid:[2,3,5,8,12,13,15,17,33,34,35,47,50,51,52,60,64,67,68],consider:[],consist:[2,13,27,39,47,50,60,64],consol:[32,37,38,73],consolid:2,constain:24,constant:[8,12,27,32,33,40,46,64],constantli:[],constitu:[],constitut:[34,47,50,61],constrain:[],constraint:[3,67],construct:[2,40,70],constructor:[],construt:[],consult:[],consum:[47,50],contact:[41,54],contain:[8,11,13,21,22,23,24,28,33,41,43,46,52,54],container_nam:[],contect:[],content:[22,23,30,31,33,38,53,68],content_as_text:[],context:[5,8,9,41,47,50,54,61,64,75],contextlib:17,contextu:[],contin:[],continu:[4,9,11,13,23,33,35,38,47,48,49,50,51,55],contour:[],contra:[],contract:[],contrast:[2,13,17,22,33,47,48,49,50,55],contribut:[2,32,39,58],contributor:[],contriv:[],control:[8,22,58,75],conveni:51,convent:5,converg:[48,49,51,55,73],convers:[8,49,58],convert:[5,8,10,11,24,25,27,35,40,47,50,63,67,68],convert_feet_and_inches_to_inch:[],convex:[],convex_hul:[],convolut:[],cool:[13,28,29,51],coolest:[],coordin:23,copi:[5,9,12,32,34,39,41,42,54,58,64,68,72],copilot:61,copy_on_writ:[39,53],copyright:[],cord:[],core:[6,10,17,19,28,29,32,34,60,64,67,75],corner:[47,50,61],cornflowerblu:[],corpor:[],corport:[],corr:44,correct:[10,13,27,33,34,39,40,42,49,52,55,61],corrected_arrest:[],correction_no:17,correctli:[39,61,66],correctly_signed_and_squar:[],correl:[33,39,43,44,46,47,50,51],correspond:[8,30,53],corrupt:[39,64],cost:[2,5,6,24,26,60,64],costa:[],cote:[],coton:[],could:[2,8,10,11,12,13,14,17,33,39,41,45,47,50,52,54,67,68,75],couldn:[10,25,64],count:[4,13,14,23,24,25,28,30,34,39,40,41,42,44,48,49,50,51,53,54,55],counter:22,counti:[17,26,29,34,39,51],countri:[10,11,12,13,14,24,32,41,43,44,46,48,49,54,55],country_centroid:[],countyfip:[],countyfp:[],countyicp:[],coup:[11,12],coupl:[2,5,26,30,39,45,53,58,63,67],cours:[6,11,13,17,27,30,41,44,47,50,51,53,54,59,61,63,70,73,75],coursera:63,coursework:63,covari:[27,66],cover:[2,5,11,19,28,63,73],coverag:67,coverg:[48,49,55],cow:9,cp:[],cpi99:[],cpu:[17,19,26,28,64],cpu_count:[17,64],cpython:67,cr:[],craft:[],cram:[],crash:[5,17,28],crazi:[33,60],creat:[4,5,17,19,21,23,25,26,27,28,29,30,32,35,36,37,39,41,43,44,47,48,49,50,51,52,53,54,55,58,59,60,61,63,64],creater:17,creation:33,creator:60,creatur:[],credenti:[2,19],credibl:2,credit:26,credit_a:54,credit_b:54,credit_cutoff_:54,credit_cutoff_d:54,crime:[34,51],crimin:39,criteria:[],critic:[6,12,32,39,61],crn:24,croatia:[],crop:[13,33],cross:[23,25,47,50,55],crosstab:25,crowd:[],crs_dep_tim:28,crselapsedtim:28,crucial:[47,50,58,63],crude:49,crunch:19,crush:[2,60],cruz:[],cry:28,cryptic:[],crystal:[],cs:2,csv:[5,8,10,11,12,14,17,22,23,24,26,28,32,34,38,39,43,44,47,50,51,65],ct:[],cub:[],cuba:[],cudf:17,culpa:[],cumberland:[],cumbersom:[],cumtim:67,cumul:[48,49,55],cup:[],curat:7,cure:39,curiou:17,curli:[],currenc:49,current:[8,10,22,23,25,30,33,37,38,40,48,49,53,55,60,61,64,68],cursor:37,curt:[],curv:49,custom:[60,62,74],cut:39,cutoff:[],cutoff_a:54,cutoff_b:54,cyber:[],cycl:[32,33],cyclecloud:[],cylind:[],cynthia:2,cyp:[],cypru:[],cython_avg_numbers_up_to:67,cython_w_overflow_avg_numbers_up_to:67,d010:[41,54],d3:[],d5a6d15d0b1463d80fbfbb777dc826f7:17,d6ab8c8f87e7:67,d7f6:17,d:[6,11,13,14,17,23,24,27,28,33,39,41,46,47,50,51,54,63,64,68,75],da:[],dai:[6,7,9,13,22,23,24,27,28,30,37,38,39,51,53,58,59,64,67,75],daili:[2,24,61],dakota:[],danger:39,dare:[],dark:[],darker:[],darn:[],dash:46,dashboard:[17,19,26,28,29],dashboard_link:19,dask:[5,7,9,26,64,72],dask_cloudprovid:[],dask_temp:[],dat:24,data:[1,2,4,7,8,9,12,17,19,21,22,23,26,27,32,33,35,36,38,40,42,43,44,45,46,48,49,51,55,58,59,63,64,65,66,67,68,69,72],data_in_all_year:[],data_on_own_comp:[],data_serv:[],data_transform:[],databas:[5,29],datacamp:[9,22,63],dataconversionwarn:50,datafram:[8,9,10,12,14,17,29,30,34,35,36,38,39,43,47,50,51,53,64,65,66,71,72],dataframe_typ:17,dataframegroupbi:[],dataframeiolay:17,dataframetreereduct:17,datanum:53,dataset:[4,5,6,9,10,11,12,13,14,17,19,24,25,26,28,29,30,34,35,39,41,42,43,44,45,46,47,48,49,50,51,53,54,55,58,59,60,63,64,65,67,75],datatyp:[5,14,28,67],date:[8,9,17,23,28,33,62,66],date_:[],date_pars:8,datetim:[8,28],datetime64:28,dateutil:8,datum:[],dayfirst:8,dbf:[],dbl:[],dcxo:55,dd:[8,17,26,28],ddd:8,ddf:[],de:67,dea:29,deactiv:[],dead:64,deadlin:[],deal:[3,5,6,10,14,25,39,58,60],dealer:39,dealership:[],dealt:24,debat:[],debt:[13,41,54],debug:[9,24,47,50,67],debugg:[9,62,74],debugging_in_vscod:[],dec:9,decad:[6,7,24,39,60],decemb:[],decept:[47,50],decid:[2,6,17,27,32,33,39,41,54,67,68],decim:[8,41,42,50,54],decis:[30,47,50,53],declar:[67,68],declin:[48,49,51,55],decompos:[],decompress:[5,8,17,22,24,65],decor:67,decreas:[25,39,41,51,54],dedic:67,deduc:67,deem:[],deep:[6,52,63],deeper:60,deepli:[2,40],def:[17,27,55,64,67],defens:[9,59],defer:[],defi:44,defin:[2,8,9,27,32,33,42,48,49,51,55,67],definit:[2,6,13,30,40,41,44,46,53,54,58,60,63,67,75],deg:[],degfield2:[],degfield2d:[],degfield:[],degfieldd:[],degre:[6,25,30,34,48,49,53,55,57,64],degredation_over_tim:[],del:5,delai:[17,28,64],delet:[5,17,22,23,28,33,58],deli:[],deliber:[4,14,34,46,51],delim_whitespac:8,delimit:[8,17,43],deliv:[19,68],deliver:[],deliveri:[],dell:6,delnort:[],demand:46,demean:46,demo:[],democraci:11,democrat:44,demograph:51,demonstr:[2,17,67],demystifi:75,denot:[8,14,30,40,53],densiti:69,dep:[9,66],depart:60,departure_timestamp:28,depdelai:28,depend:[2,8,10,17,41,44,46,49,54,60,61,64,73],depict:[],deploi:19,deploy:[],depot:[],deprec:8,depreci:[],depth:[],dequ:67,derefer:68,dereferenc:68,deriv:[27,39],descend:31,describ:[5,13,47,50,51,55],descript:22,descriptor:23,design:[2,5,9,17,24,31,44,50,58,59,60,61,63,64,67,68],designmatrix:66,desir:[12,46],desktop:[5,6,22,23,64,65],despit:[61,75],destin:[],detail:[8,13,17,19,26,27,28,29,32,33,44,70,73],detect:[8,13,34,43],determin:[2,4,25,30,34,39,40,41,46,48,49,50,51,53,54,55,68],determinist:50,detriment:61,deutschland:11,dev:[43,67,68],develo:32,develop:[2,4,17,27,28,32,44,46,48,49,51,55,58,60,61,63,64,67,74],deviat:[28,43,44],devicelogin:[],devot:2,df1:[28,39],df1_var:39,df1f62c87a9d21a7c2e1959a33e7735a:17,df2:[28,39,65],df2_correct:39,df2_var:39,df:[8,10,12,17,26,28,34,43,46,60,65,66,69],df_new:[],dhabi:[],di:17,diagnos:39,diagnost:[9,47,50],diagon:27,diagram:[],dialect:8,diamet:[],dict:[8,41,53,54,55],dict_kei:[],dictat:[64,67],dictionari:[4,11,15,25,30,34,39,40,41,46,48,50,51,52,53,54,55],dicuss:60,did:[2,12,17,21,26,28,29,31,33,34,36,38,39,42,44,46,47,50,52,58,61,65],didn:[2,4,9,10,13,14,21,26,32,33,36,39,47,50,58,60,61,68],diego:[],dif_in_dif:[],diff:33,diffcar:53,differ:[2,5,6,7,8,9,10,11,13,17,19,21,22,25,26,30,32,33,34,36,37,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,58,60,61,63,64,67,68,75],differenti:[2,22,43,47,50],diffey:53,diffhear:53,difficult:[27,39,41,44,54,58],difficulti:[],diffmob:53,diffphi:53,diffrem:53,diffsen:53,dig:[47,50],digit:31,digitalocean:19,dignost:47,digress:75,dimens:12,dimension:8,dinosaur:52,dinosaur_nam:52,diploma:[30,53],direct:[2,4,6,17,19,22,23,26,32,37,38,44],directli:[2,4,8,10,11,12,13,17,19,24,28,30,33,37,39,41,46,53,54,58,65,67,69,75],directori:[17,22,23,24,33,39],dirt:[],dirti:68,disabl:67,disable_max_row:[],disappear:5,disappoint:[],disast:[],disciplin:[39,50,64],disclosur:3,disconnect:[],discount:6,discov:[2,10,23,30,47,50,53,58,61],discret:[9,13,30,41,48,49,53,54,55,58],discuss:[2,5,6,11,12,13,17,22,28,32,34,35,40,43,44,48,49,52,55,58,60,63,64,65,68,70,73],diseas:39,disgust:[],disk:[8,23,28],dispatch:67,dispers:[],displac:[],displai:[38,43],disproportion:[],dissatisfi:2,dissert:2,dissolv:[],distanc:31,distance_col:[],distant:[],distibut:[],distinct:[2,11,17,22,40,52,64],distinguish:[],distort:[],distribut:[9,13,19,27,28,29,30,39,40,41,46,47,48,49,50,53,54,55,58,65,67,68,72],distutil:67,dive:[2,12,46,58,60,64],diverg:33,divers:[],divert:33,divid:[2,12,17,23,33,39,41,49,54],divis:[2,17,51],divvi:[],djibouti:[],dl:17,dmatric:[47,50,66],doc:[8,11,12,22,47,51,67],docker:[],docstr:8,doctest:8,doctor:[5,50],documen:13,document:[2,8,10,12,13,22,23,30,33,38,47,50,51,52,53,58,59,67,69],docx:22,doe:[4,5,6,7,10,14,17,22,24,25,28,29,30,33,34,35,38,39,40,41,42,43,44,46,47,48,49,50,51,53,54,55,58,60,64,67,68],doesn:[2,5,13,14,17,22,24,27,29,30,32,33,34,35,36,38,39,40,42,44,46,48,49,50,51,53,55,58,60,64,65,67,68,75],dog:[47,50],dog_nam:52,dogmat:[],doha:[],doi:[41,54],doj:[],dollar:[5,6,13,33,35,36,40,41,46,49,54],domain:[5,61],domest:49,domin:[60,67],dominican:[],don:[2,4,5,6,10,11,12,13,14,17,19,22,24,26,27,28,29,30,32,33,34,36,37,38,39,41,44,46,47,49,50,51,53,54,55,58,60,61,63,64,67,70,75],done:[3,5,13,17,22,23,24,28,30,32,33,39,44,45,46,48,49,50,51,53,55,58,67,68],dont:67,door:6,dorado:[],dos_str:17,dosage_unit:17,dot:38,dotfil:[],doubl:[6,12,22,27,63,64,67,68],double_nonvector:[],double_vector:[],doublequot:8,doubli:[47,50],doubt:[],down:[5,13,24,26,30,31,32,34,38,39,41,42,43,44,46,47,50,52,53,54,60,61,64,65,67],download:[9,17,22,24,26,28,29,31,33,37,38,39,43,44,46,53,59],download_blob:[],downsid:60,downstream:[],downward:[],dozen:58,dqcfywcfmx:65,draft:[9,61],drag:37,dramat:[],drastic:[],draw:[44,52],drawn:[],dread:58,drew:[],drift:[],drive:[5,6,17,41,54,75],driven:[41,54,60],driver:22,drobox:58,drone:[],drone_strik:[],drone_strikes_project:[],drop:[2,5,8,14,17,24,28,30,35,36,38,40,41,44,46,53,54],drop_dupl:28,drop_level:46,dropbox:[17,58,60],dropdown:[26,44],dropna:14,drug:[17,29,34,51,61],drug_arrest_rate_2009:39,drug_arrest_rate_2018:[],drug_cod:17,drug_nam:17,ds11:[],ds_store:[],dsk:[],dst:[],dt:17,dta:[13,14,25,30,40,53,60,65],dtype:[5,8,10,11,13,14,17,28,34,36,39,53,55,65,68],dtypearg:8,duct:[],due:[9,14,23,28,29,41,47,50,54,61,64],dug:[],duke:[2,6,26,58,59,61,73],dumb:[15,64],dummi:34,dump:[],dunk:[],duplic:[8,28,34,46,64],durat:6,duration_with_copi:[],duration_with_view:[],durbin:66,dure:[2,5,17,19,24,27,40,41,46,47,50,51,54,67],durham:[],dwell:[],dynam:[48,49,55,67,68],e8b1118eea72:[],e:[2,4,5,8,10,11,12,13,14,17,22,24,25,26,28,31,32,33,34,37,38,39,40,41,42,43,44,46,47,48,49,50,51,54,55,58,63,64,67,68,69,75],ea64fhre5:[],each:[2,4,5,8,11,13,17,22,23,24,25,26,27,28,29,30,32,33,34,36,37,39,40,41,43,44,46,47,48,49,50,51,52,53,54,55,58,63,64,65,67,68,75],earli:[2,51,60,61],earlier:58,earliest:24,earn:[25,30,40,41,48,49,53,54,55],earner:[41,46,54],earth:58,earthwork:[],eas:[9,47,50],easi:[5,13,17,21,22,28,30,33,34,46,47,50,53,58,60,61,64,67,68,70],easier:[6,7,11,17,19,22,26,30,32,44,48,49,51,53,55,58,60,67],easiest:[19,30,35,39,41,53,54,60],easili:[5,6,11,28,33,39,42,45,47,50,55,58,60,61,65],east:[],eastern:44,eastu:[],ec20074c:[],echo:[],econom:[13,30,48,49,53,55,60],econometr:60,econometrician:60,economi:[39,49],economist:[48,49,51,55,60],ecosystem:[],ecuador:[],ecur:[],edg:[],edgecolor:[],edit:[9,11,14,32,33,58,73],editor:[37,38,73],edmund:[],edt:9,edu:[41,54],educ:[2,25,57,60,61],education_level:53,educationdummi:60,educd:[],effect:[5,17,22,30,39,41,51,53,54,59,61],effici:[5,17,23,28,42,58,60,63,64,67],efficiency_data:[],effort:[2,4,39,41,54],eight:[],either:[2,5,6,8,10,13,21,23,24,25,27,28,29,30,32,35,51,53,64],el:[],elaps:[],elect:[],elector:58,electr:[],element:[8,68],element_blank:[],element_lin:[],elementwis:28,elemwis:17,elev:[],eleven:[],elid:67,elig:[],ell:[],ellipsoid:[],ellp:[],elon:[],els:[2,5,24,25,32,33,46,47,50,67],elsewher:[],elud:58,emac:[],email:[2,59],emb:[],embarass:[],embarassingli:64,embark:2,embed:[],embodi:[],embrac:[48,49,55],emerg:[22,61],emir:44,emiss:[],emoji:[],emp_rat:13,emphas:[5,17,36,51,70],emphasi:[47,50],empir:61,emploi:[13,14,30,40,53],employ:[13,14,30,53],employe:[30,53],empow:32,empstat:[13,14,30,40,53],empstatd:[],empti:[5,8,32,42],emul:[],en:[],enabl:8,enact:[41,54],encod:[8,13,22],encoding_error:8,encount:[2,8,14,31,34,50,64,67,73],encourag:[4,5,63],end:[2,6,8,11,12,15,17,21,22,23,24,28,31,32,38,39,42,46,52,54,59,62,64,67,68],endeavor:63,endless:14,endors:[],endpoint:[],enemi:[],energi:58,enforc:28,engag:[2,61,70],engin:[8,51,65,67,68],enhanc:[],enjoi:[6,51],enough:[5,6,17,24,28,40,41,42,54,58,61,68],enrich:63,enrol:2,ensembl:[],ensembleaccuraci:[],ensur:[2,4,8,17,24,25,27,30,32,33,34,38,39,40,41,46,47,48,50,51,53,54,55,67,70],entail:[2,61],enter:[17,22,24,37,38,50],enterpris:17,entir:[8,12,21,28,32,33,34,49,52,58,60,61,63,64,67,68],entireti:[],entiti:[33,46,48,49,55],entri:[5,11,12,13,14,25,34,36,46,48,49,51,55,68,75],enumer:[],env:17,environ:[19,37,59,60,72,74],epidem:29,epoch:[],epsg:[],equal:[12,30,46,51,53,54,60,67],equalearth:[],equat:[],equatori:44,equit:[],equival:[8,17,29],era:60,eras:5,eric:15,erika:[],eritrea:[],err:[10,61,66],erron:[],error:[4,5,8,10,13,17,19,25,26,27,28,30,31,33,34,39,40,41,42,46,48,50,51,53,54,55,59,61,66,67,72],error_bad_lin:8,error_rewrit:67,errorband:[],errstat:17,escap:[8,11,25],escapechar:8,esoter:[],especi:[2,5,6,8,27,34,42,46,47,50,54,59,61],esri:[],essai:61,essenc:44,essenti:[46,49,63,75],establish:[2,6,46,47,50],estim:[9,17,27,39,40,41,44,46,47,48,49,50,51,54,55,75],estout:[],etc:[2,4,6,8,10,11,17,22,24,25,28,33,35,36,37,38,41,47,50,54,60,61,65,67,68],ethernet:[],ethic:49,ethnic:[40,47,50,51],eubank:[],europ:[10,11,12,14,44],european:8,evalu:[4,8,28,39,41,42,44,46,51,54,61,68],evalut:[47,50],evang:[],even:[2,4,5,11,12,13,14,17,19,22,32,34,37,38,40,41,46,47,50,51,54,58,64,67,70,75],even_row:65,evenli:[23,41,48,49,54,55],event:2,eventu:[17,28,39],ever:[10,13,22,27,35,42,47,50,60,64,67,68],everi:[2,7,13,23,24,30,33,34,39,41,42,46,47,50,53,54,58,64,67,68],everyon:[2,17,24,25,33,35,40,41,54,64],everyth:[5,6,10,11,13,22,24,30,32,33,34,46,51,53,60,61,63,64,67,68,70,75],everywher:19,evid:[10,30,32,39,41,47,50,51,52,53,54],evidenc:2,evil:[],evolut:[],evolutionari:[],evolv:[43,61,64],ewcskolhuv:65,ex10_demeaned_corr:46,ex10_gini_policy_d:[41,54],ex10_merged_successfulli:39,ex10_num_high_drug_arrest:51,ex10_svr_linear_scor:50,ex10_wage_gap:40,ex11_black_drug_shar:34,ex11_diff_in_diff:51,ex11_gini_policy_:[41,54],ex11_grade12_incom:[30,53],ex11_proportion:[],ex11_share_:[],ex11_share_female_w_degre:25,ex11_share_male_w_degre:25,ex11_white_drug_shar:34,ex12_college_incom:[30,53],ex12_college_income_pct:[30,53],ex12_compar:25,ex12_diff_in_diff_weight:51,ex12_policy_recommend:[41,54],ex12_proportion:34,ex12_recommend:[],ex14_high_school_dropout:[30,53],ex15_4_years_of_colleg:[30,53],ex15_:53,ex15_grade_10:[30,53],ex15_grade_11:[30,53],ex15_grade_12:[30,53],ex15_grade_9:[30,53],ex15_gradu:[30,53],ex16_num_ob:39,ex17_drug_chang:39,ex18_violent_chang:39,ex21_diffindiff:39,ex22_diffindiff:[],ex23_diffindiff_proportion:39,ex24_diffindiff_proportion:39,ex2_avg:[],ex2_avg_incom:40,ex2_birth_weight_low:51,ex2_mean:[48,55],ex2_median:[48,55],ex2_num_ob:[30,53],ex2_num_row:46,ex3_avg:[],ex3_highest_gdp_percap:[48,55],ex3_lowest_gdp_percap:[48,55],ex3_num_column:50,ex3_num_var:[30,53],ex3_share_making_9999999:40,ex3_share_making_zero:40,ex3_smoking_coeffici:51,ex4_gini:[41,54],ex4_lessthan20_000:[48,55],ex4_num_row:[34,46],ex4_share_below_poverti:[41,54],ex4_smoking_coeffici:51,ex5_age_old:25,ex5_age_young:[4,25],ex5_avg_incom:40,ex5_collapsed_var:34,ex5_num_countri:46,ex5_switzerland:[48,55],ex6_compare_white_black:51,ex6_compare_white_black_tstat:51,ex6_gini_loop:[48,55],ex6_gini_policy_a:[41,54],ex6_gini_policy_b:[41,54],ex6_gini_which_reduced_mor:[41,54],ex6_merge_typ:39,ex6_model_smok:50,ex6_relationship:46,ex6_validate_keyword:39,ex7_alameda_1980_share_violent_arrestees_black:34,ex7_avg_ag:25,ex7_first_predict:50,ex7_gini_policy_c:[41,54],ex7_gini_vector:[48,55],ex7_predict:51,ex7_relationship:46,ex7_validate_keyword:[],ex8_avg_ag:25,ex8_avg_income_:[],ex8_avg_income_black:40,ex8_avg_income_whit:40,ex8_countries_in_panel:46,ex8_gini_2025:[48,55],ex8_racial_differ:40,ex8_revenue_rais:[41,54],ex8_scor:50,ex8_smoking_coeffici:51,ex8_updated_num_ob:[30,53],ex9_avg_income_:[],ex9_avg_income_black:40,ex9_avg_income_whit:40,ex9_num_colleg:25,ex9_svr_scor:50,ex9_transf:[41,54],ex9_updated_num_ob:[30,53],ex:[8,9],exact:[4,11,17,22,41,46,54,63,68],exactli:[13,17,19,25,27,28,29,32,34,39,43,47,50,51,67,68],exagger:58,exam:2,examin:[24,25,31,34,39,40,44],exampl:[2,5,6,8,10,11,12,13,14,17,21,22,23,25,27,28,31,33,34,35,36,39,40,41,42,43,44,46,47,50,51,54,58,65,68,69,70,75],example_csv:[],example_data:[11,12,14,41,43,44,54],exc:[17,19],exc_info:[],exceed:[],exceedingli:[],excel:[23,48,49,55,63,75],except:[8,10,13,17,19,22,23,33,34,42,52,67,70],exception:[],excercis:24,exchang:[49,70],excit:73,exclud:[40,44],exclus:[25,40],excruci:17,exec:67,execut:[4,17,19,28,29,31,34,36,37,38,46,51,52,59,64,67,68,75],exercis:[4,6,9,11,13,14,26,27,32,33,45,47,59,61,70,72],exercise_:4,exercise_clean:[],exercise_datafram:[30,53],exercise_groupbi:34,exercise_merg:39,exercise_miss:[25,40],exercise_numpy_vector:[41,54],exercise_numpy_viewcopi:[],exercise_reshap:46,exercise_seri:[48,55],exercise_sklearn:[4,50],exercise_statsmodel:51,exhaust:64,exhibit:14,exist:[2,5,8,25,30,32,33,42,51,53,58,60,61,64],exit:2,expand:[6,24,51,60],expect:[1,4,6,8,11,17,26,27,28,30,31,35,36,39,41,44,46,50,53,54,58,64],expenditur:[],expens:[2,6,26,51,75],experi:[5,17,32,37,38,51,59,60,63,64],experienc:[12,39],experiment1:[41,54],experiment:[],expert:[],expertis:61,expir:[],explain:[4,27,32,47,50,60,61,63],explan:[],explicit:[28,34,47,50,70],explicitli:[8,26,40,68],explod:[24,33],explor:[13,17,32,33,37,38,39,41,44,48,50,54,55],exploratori:69,explos:[],expon:[],exported_statist:[],expos:[47,50,51],exposit:[],exposur:63,express:[2,8,11,17,34,64],ext_modul:67,extend:12,extens:[2,8,17,41,54,61],extensionarrai:17,extent:[],extern:6,extra:[5,8,17,26,27,47,50,60],extract:[17,28,41,54],extrapol:[48,49,55],extrem:[2,10,30,40,41,53,54,60,61,64],ey:[30,34,47,50,53],eyebal:[],f11741173297:17,f3bb5298:[],f485e25f94f5664c192e73df6d42002d:17,f623161a15eb:17,f:[10,13,17,34,53,54,55,66,67],f_alloth:[],f_drugoff:[],f_drugoff_tot:[],f_sexoff:[],f_total:[],face:[2,33,47,50],facebook:5,facet:[],facet_wrap:[],facetim:2,facil:23,facilit:[17,58],fact:[2,5,10,13,17,22,25,27,34,39,41,44,46,47,50,54,61,65,67,68,75],facto:[],factor:[5,47,50,60,65,68],factori:[],fail:[2,5,14,17,19,24,33,39,67],failur:10,fair:[],fake:35,fall:[9,33,38,39,41,54,59],fallaci:[],fallback:17,fallen:39,fals:[8,10,11,14,16,17,25,28,29,34,42,50,51,61,66],false_valu:8,famili:51,familiar:[2,11,13,22,28,29,31,37,44,60,63],famou:[],famunit:[],fan:[34,46],fanci:[5,27,63],fancier:[],fang:70,far:[5,17,28,31,39,40,48,49,55,60,64,67,73],farenheit:64,farm:[],farthest:[],fast:[6,8,15,24,28,42,60,64,65,67],faster:[5,6,8,17,26,28,35,42,48,49,55,60,64,65,67,68,75],fastest:15,fastparquet:[51,65],fate:[],fault:17,favor:60,favorit:[22,58],fda:61,fdrspgywqk:65,fear:[],feasibl:[],featuer:[],featur:[2,6,8,17,30,33,34,38,47,50,53,58,60,64,67],februari:22,feder:[],fee:19,feed:[],feedback:4,feel:[2,6,13,24,28,30,34,37,39,41,51,53,54,58,60,61],feet:[],fell:[],fellow:[2,58],feloni:[34,39],felony_arrest:[],femal:[13,25,66],fend:59,feng:70,few:[2,5,6,11,13,17,22,23,24,28,33,34,37,38,39,41,42,46,47,48,49,50,52,54,55,58,60,64,67],fewer:[4,25,30,34,39,40,41,46,47,48,50,51,53,54,55,65],fewest:[41,54],fiber:[],fido:52,field:[2,8,10,13,59,60,61],fifo_timeout:[],fifteen:[],fifti:51,fig:[],figsiz:[],figur:[13,17,24,25,28,30,31,34,38,39,43,44,47,50,51,52,53,58,60,61,64,65,67,68],file:[4,5,8,10,17,19,24,25,26,28,29,30,31,32,33,34,37,39,40,41,43,46,48,50,51,53,54,55,58,59,60,65,67,70],filenam:[22,28,38,67],filepath:8,filepath_or_buff:8,filepathorbuff:8,files_in_fold:[],filesystem:22,fill:[13,59,75],fill_valu:[],fillna:14,filter:[17,24,25,28,38,65],filterwarn:[],fin:[],final_data:[],final_max:28,financ:58,financi:2,find:[2,5,6,11,13,14,15,17,22,24,25,26,28,29,30,32,33,35,39,41,42,46,47,48,49,50,51,52,53,54,55,58,59,60,61,67,68,70],finder:32,fine:[13,22,24,27,33,39,41,54],finicki:67,finiki:67,finish:[2,5,6,23,24,29,30,34,53,64],finland:[],fiona:[],fire:[],firewal:[17,28,29],firm:2,firmli:[],first:[2,5,8,10,11,13,14,17,19,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,47,50,51,52,53,54,55,59,60,61,63,64,65,67,68,75],first_jupyter_notebook:[37,38],first_matrix:42,first_seri:[],first_subset:[],fish:[],fishi:[],fit:[2,12,17,24,27,44,46,47,50,51,60,61,63,66,73],fit_intercept:50,fitbit:[],five:[13,29,30,53],fiveyeardata:[],fix:[5,8,10,13,14,23,24,26,31,34,38,39,46,58,64],flag:[14,23,24,33,61],flag_dict:[],flash:6,flat:[],flatten:[],flavor:[],flexibl:[44,60,68],flight:28,flip:[53,59,63],flipper:[],float16:[],float32:5,float64:[5,8,10,13,17,28,55],float_precis:8,flood:[41,54],floor:[],florida:[],flow:[32,47,50,63,73,75],fluctuat:[],fluffi:52,fly:[8,10],fmri:[],fn:28,fo:44,focu:[1,5,13,17,24,25,30,41,47,50,53,54,60,61,64,68],focus:[2,59,64],foggiest:10,fold:[],folder:[5,12,17,23,28,32,33,37],foldernam:22,folk:[17,19],follow:[2,3,4,5,8,11,12,14,17,19,21,23,25,26,27,28,30,32,33,34,35,36,37,38,39,40,41,42,48,49,50,51,52,53,54,55,63,67,68],fond:6,font:[3,22],foo:[8,10],food:[],fool:6,foot:[],footag:[],footbal:[],footprint:[5,24],forbid:[],forc:[8,13,14,30,33,43,53,61,64],ford:[],foreach:64,foreign:60,forest:[],forev:[],forg:[28,65],forget:[],forgiv:58,forgot:[],forgotten:27,fork:28,form:[6,24,28,31,41,43,44,45,46,48,49,54,55,58,64],formal:[17,24,30,51,53,64],format:[4,5,8,9,11,13,17,22,23,24,28,30,33,34,42,43,46,48,51,53,55,58,59,60,65,72],former:10,formul:35,formula:[27,40,44,47,48,49,50,51,55,66],forth:[5,48,49,55,60,64,75],forti:[],fortran:[],fortun:[5,13],forum:[],forward:[8,33,47,51,61],foster:[41,54],found:[8,10,11,13,14,17,19,24,28,30,31,33,39,40,47,50,51,53,59,60,65],foundat:[44,51,61,65],founder:17,four:[5,27,28,29,34,41,50,54,64,75],fourth:42,fox:[],fpeehrfgka:65,frac:[40,41,48,49,54,55,64],fraction:55,fragil:[17,28],fragment:[47,50],frame:[17,34,63],framework:[51,67],franc:[],franca:[],francisco:[],freakonom:[],free:[19,26,33,37,39,60,64,67],freedom:2,frequenc:[14,64,75],frequent:[48,49,55],frequntli:55,fresno:[],fret:[],fri:9,fridai:[22,23],friend:[3,10,13,33,34,60],friendli:[58,60],from:[2,4,5,6,8,9,10,11,12,13,15,17,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,61,63,64,65,67,68,70,72,75],from_arrai:28,from_connection_str:[],from_delai:28,from_epsg:[],from_panda:28,front:[17,33,37,61,64],frontend:67,frontier:2,frozen:[],frozenset:[],fruit:[],frustrat:[2,6,61],frustratingli:68,fs:17,fsspec:8,ftlobltjaa:65,ftotinc:[],ftp:8,full:[2,11,17,22,24,26,27,28,32,33,38,43,47,50,59,60,64,66,67,68],fulli:[8,13,17,22,33,39,50,52,64,67,73],fulton:[],fun:[13,17,24,26,45],func:[8,17],funcation:46,funcnam:17,fundament:[33,60,64],further:[16,17,69],fut:19,futur:[6,17,40,41,43,46,47,48,49,50,54,55,60,64,67,75],futurewarn:[],fyi:[17,64],g1150:[],g1674:[],g1762:[],g730:[],g873:[],g:[2,4,5,8,10,11,13,17,22,26,28,31,33,34,38,39,41,43,49,54,58,63,64,67,69],gabon:44,gain:[41,54,64,68],galaxi:31,galleri:43,gallon:[],game:[6,17],gang:39,gap:[25,40,48,49,55,59],gapmind:[],gapminder_2007:[],garfield:[],gather:[15,17],gave:[13,17,67],gawegktkxi:65,gb:[5,6,24,29],gc:8,gcp:19,gdal:[],gdf:[],gdp:[10,11,32,33,43,44,46,48,49,55],gdp_and_co2:32,gdp_growth_2014_2018:[],gdp_md_est:[],gdp_per_cap:[],gdp_per_capita_2008:[],gdp_per_capita_2018:[],gdp_rank:55,gdppcap08:[10,11,12,14,44],gdppercap:[48,49,55],gdppercap_2025:55,gen:17,gender:[13,25,60,66],gener:[4,5,10,12,13,17,19,24,25,27,30,34,35,38,39,41,42,43,44,46,47,48,49,50,51,52,53,54,55,60,61,64,67,69,75],generaliz:60,genom:[],genuin:[2,28],geo:[],geocod:[],geodatafram:[],geodes:[],geodet:[],geograph:[],geographi:[],geojson:[],geolyt:[],geom:[],geom_boxplot:[],geom_histogram:[],geom_lin:[],geom_point:[],geom_smooth:[],geom_text:[],geometr:58,geometri:[],geopackag:[],geopanda:[],geopandasl:[],geopi:[],georgia:[],geoseri:[],geospati:60,germani:[10,11,12,14],gerrymand:58,gestat:[47,50,51],get:[4,5,6,8,9,10,11,12,14,19,21,22,23,24,25,26,27,28,29,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,54,55,57,60,61,63,64,65,67,68,69,73,75],get_chunk:8,get_item:[],get_loc:[],get_path:[],get_predict:[],get_reg_fit:[],getitem:17,getpid:67,ggplot2:[],ggplot:7,ggsave:[],ggtheme:[],ggtitl:[],gh:17,ghcnd:24,ghcnd_daili:24,ghcnd_daily_30gb:24,gi:59,giant:[28,47,50],gib:17,gif:[],gig:[],gigabyt:75,gil:64,gini:46,gini_vector:55,gini_w_loop:55,girl:[],gisjoin:[],git:[7,9,59,72],gitattribut:33,github:[9,13,14,37,39,51,53,59,61,63,67,72,74],githubusercont:[11,12,14,32,41,43,44,54],give:[2,5,6,12,13,17,22,23,25,28,29,30,33,34,35,38,39,41,43,44,46,47,49,50,51,53,54,59,60,64,67],given:[2,5,6,8,11,22,24,26,27,33,34,39,41,42,47,49,50,51,52,54,55,60,61,64,66,67,68],glad:61,glenn:[],glimps:60,glob:28,global:[11,12,24,32,48,49,55],global_climate_data:[],globaltemp:[],globe:[],gmail:[],go:[2,5,10,11,13,22,24,26,27,29,30,32,33,34,36,38,39,41,42,44,46,47,49,50,51,52,53,54,58,60,61,63,64,67],goal:[2,5,9,19,24,27,29,34,39,45,47,50,60,63,64,70],gobblygook:22,god:[],goe:[46,61],goeken:[41,54],gold:[],gone:59,gonna:[5,6,10,17,26,29],good:[2,4,5,6,7,13,15,17,24,27,28,29,30,32,34,39,40,41,42,43,46,47,50,51,53,54,58,60,61,62,63,67,68,70,73],googl:[5,7,13,19,23,34,61],gorgeou:[],got:[10,17,52],gotcha:[9,50],gotten:[13,25,26,52],gov:[],govern:[2,17,30,51,53],govt:[],gpd:[],gpdvega:[],gpu:[6,17],gq:[],grab:37,grade:[2,4,25,30,34,39,40,41,46,48,50,51,53,54,55],gradeatt:[],gradeattd:[],grader:46,gradescop:[41,54],graduat:[2,30,53,61],grai:[],grammer:[],grand:[],granular:5,graph:[5,28,44,48,49,55,58],graphic:[22,60,64],graphnic:[],graphviz:17,grasp:13,grayson:[],great:[2,5,6,7,11,12,17,19,23,24,33,34,38,40,44,45,58,60,70],greater:[2,34,39,40,46,51],greatest:60,greec:[],greedi:[],green:[5,31,38,58],greenland:[],greenwich:[],grei:[],greyscal:[],grid:[],grl:[],grocer:[],gross:49,ground:[63,67],group:[2,5,9,14,17,22,25,26,28,29,32,39,48,50,51,55,58,65],group_emploi:[],groupbi:[9,17,28,46,72],grow:[17,48,49,55],growth:[48,49,55],gruel:2,grumpi:[],grunt:13,gs:8,gsn:24,gt:[8,17,54,67],guarante:67,guard:[],guayama:[],guess:[17,26,34,43,47,50,51,61],gui:[22,52],guid:[17,47,50,58,67],guidanc:[6,25,30,39,40,41,48,50,53,54,55,63],guidelin:[41,42,54],guilti:39,guinea:44,gutter:[],gynecolog:51,gz:[8,17,24],gzip:8,h:28,h_8_rwsn5hvg9mhp0txgc_s9v6191b:17,ha:[2,5,6,8,10,11,12,13,14,17,19,21,22,23,24,25,27,28,29,30,32,33,34,36,37,38,39,40,41,43,46,47,48,49,50,51,53,54,55,58,60,61,63,64,65,67,68,69,70,75],habit:[],hachi:[],hack:[30,53,64],had:[5,11,12,13,17,22,23,26,39,40,41,47,48,49,50,51,54,55,60,61,64,68],hadlei:46,hadn:[17,39],hadoop:[5,17,60,65],half:[47,75],hand:[2,13,17,26,29,30,33,34,37,47,50,53],handi:[],handl:[8,9,17,19,28,34,58,60,67],handler:8,hang:[],hangov:[37,38],hanson:[],happen:[2,5,10,14,17,22,24,31,33,34,36,39,44,47,50,52,58,61,64,68,75],happi:60,happier:[],harbor:[],hard:[2,5,6,17,25,28,32,33,34,36,41,46,47,50,54,58,60,61,64,75],harddriv:6,harder:[2,6,63],hardwar:[64,67],harmon:[41,54],harvard:2,has_black_row:[],has_fur:[],has_white_row:[],hash:[28,33],hashtabl:[],hashtable_class_help:[],hasn:[],hate:[34,60],have:[2,4,6,8,10,11,12,13,14,15,17,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,53,54,55,58,59,60,61,63,64,65,67,70,75],haven:[11,13,17,22,37,38,39,47,50,64],hbar:69,hcn:24,hconcat:[],hcovani:[],hcovpriv:[],hcovpub:[],hdf5:[5,33,65],hdf:[],hdr:[],he:[15,67],head:[11,13,23,26,28,29,30,33,39,41,42,44,53,54,55,65],headach:[9,39,64],header:8,health:[47,50,51],healthcar:[47,50],healthi:3,healthier:47,hear:[2,40],heard:[5,17,64],heart:[7,63],heed:[],hei:[],height:[47,50,60],heights_in_cm:[],heinou:46,held:[],hello:5,helloworld:[],help:[2,5,6,8,9,12,13,17,19,24,25,28,30,31,33,39,40,44,46,47,50,52,53,60,61,63,65,67,75],helper:33,helpfulli:33,helsinki:[],helvetica:[],hemispher:[],her:[2,36],here:[2,6,7,9,10,11,12,13,19,22,24,26,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,46,47,48,49,50,51,52,53,54,55,58,59,60,61,64,65,67,68,69,70,73,75],herself:[],hesist:58,hesit:46,heterogen:[47,50,60],hetzner:19,hexagon:69,hexbin:69,hhmm:28,hhtype:53,hhwt:53,hi:[15,36,37],hidden:38,hide:[28,29],hierarch:46,hierarchi:[],high:[2,8,13,17,24,30,35,39,40,41,42,48,49,51,53,54,55,60],high_drug_2009:[],higher:[10,17,39,44,46,75],highest:[30,44,48,49,53,55],highlevelgraph:17,highli:[5,39,61],highlight:[37,38],highwai:23,hinscaid:[],hinscar:[],hinsemp:[],hinsih:[],hinspur:[],hinstri:[],hinsva:[],hint:[22,23,25,27,28,30,33,34,43,46,48,49,50,51,53,55],hire:[41,54],hispan:[25,34,40,47,50],hispand:[],hist:[41,54,69],histogram:[41,54,69],histor:24,histori:[1,17,33,39,47,50],histplot:[],hit:[37,38,50,68],hmaojwgsth:65,hmmm:40,hnave:64,hoc:58,hold:[21,48,49,52,55,68],hole:[],home:[17,22,24,26,63],homepag:[],homework:[51,58],homogen:[],honda:[],honestli:[6,7,10,19,30,53,67,75],honiara:[],honor:61,hood:[11,17,50],hop:6,hope:[6,39,47,50,57,58,61,63],hopefulli:[38,47,50],horizon:2,horizont:24,hors:64,horsepow:[],hospit:51,host:[8,33,39,58],hostcomputeraddress:[],hot:64,hotlin:22,hour:[5,17,19,24,26,28,63,75],hours_timedelta:28,hous:[],household:[41,54],hover:[],how:[6,7,8,9,10,11,12,13,14,17,21,22,23,24,25,26,28,29,30,31,32,33,34,35,36,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,58,59,60,61,62,64,67,68,73],howev:[2,4,11,17,27,28,29,33,34,36,40,41,43,44,46,51,54,58,60,61,63,64,65,67,75],href:[],html:[8,12,17,38,42,67],http:[3,8,11,12,13,14,16,17,19,32,41,43,44,53,54,67,74],huge:[5,17,19,28,30,34,42,44,53,60,64,67,68,75],hugo:63,huh:67,hull:[],human:[47,50,75],humboldt:[],hundr:[2,5,25,58,60,64,67],hurt:[39,42],hygein:22,hyperbol:[47,50],hyperparamet:9,hyperthread:64,hypothes:51,hypothesi:[48,49,55],hypothet:[25,51],i7:[6,64],i9:[6,64],i:[2,3,4,6,7,8,9,10,11,12,13,15,22,24,25,26,27,28,29,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,53,54,55,60,61,63,64,65,66,67,68,70,73],iam:[],ian:[],iceberg:9,iceland:[],icon:[37,70],id:[24,26,59],id_var:[],idea:[17,21,30,31,33,39,48,49,51,53,55,58,63,64,67],ideal:[],idenfi:34,ident:[8,14],identifi:[12,22,30,31,33,34,39,40,44,46,47,50,51,53,59],idl:[],iffi:64,ignor:[8,14,17,33,40,47,50,64],igraph:[],ihgi:[],illeg:39,illinoi:[],illus:61,illustr:[11,14,33,34,35,48,49,52,55,61,67,70],iloc:[12,55],imag:[9,22,38,64],imageri:[],imagin:[10,33,39,48,49,55,60],imessag:6,immedi:[10,17,28,29,30,33,37,39,53],immut:[21,52],impact:[30,32,33,39,42,47,50,51,53],imperfect:39,imperi:[],implement:[17,27,28,29,46,47,50,51,64,67],impli:[13,27,30,32,33,39,48,49,53,55],implic:[],implicit:28,implicitli:[10,28,39,47,50],importantli:[],impos:[41,44,54],imposs:[],imprecis:[],impress:[43,60],improv:[2,6,8,9,26,38,41,54,58,64,70,72,75],imread:[],imshow:[],inabl:10,inaccur:[],inadequ:[47,50,61],inadvert:[],inari:[],inattent:[],inbuilt:[39,60],incap:5,incarcer:[],incbus00:[],incearn:[],inch:6,incid:23,incinvst:[],inclin:[],includ:[4,5,8,9,13,17,22,23,24,25,27,28,29,30,34,39,40,41,44,47,48,50,51,53,54,55,59,60,63],inclus:46,incom:[2,10,13,14,17,25,30,40,46,47,50,53,60,63],income_2017:[],income_2018:[],income_2019:[],income_column:[],income_threshold:[],income_vector:[41,54],incompat:17,incomplet:[],inconsist:40,incorpor:[],incorrect:28,incorrectli:17,incoth:[],increas:[8,25,26,28,39,41,44,51,54,68],increasingli:[14,73],incred:[2,5,60],increment:[],incretir:[],incss:[],incsupp:[],inctot:[13,14,25,30,40,53],incwag:[],incwelfr:[],ind:8,inde:[2,4,10,13,22,33,36,44,47,50,51,58,60,61,67,68,69,75],indefinit:39,indent:[],indeped:64,independ:[2,17,32,33,52,64],index:[8,9,12,21,28,33,34,46,48,49,50,53,55,64],index_col:8,index_right:[],indexengin:[],indexopsmixin:17,india:[],indian:[],indic:[2,8,9,10,12,13,14,25,32,34,35,39,43,44,46,47,51,72],individu:[5,23,28,40,41,45,46,50,51,54,64,70,73],induc:[],industri:[2,14],ineffici:[2,5],ineqpi:[41,54],inequ:[25,40,46,48,49,55],inescap:[],inevit:[2,60,61],inf:[],infant:[32,33,47,50,51],infer:[8,17,28,30,39,53,67],infer_datetime_format:8,inferior:[],infinit:[42,64],inflat:46,influenc:[8,49,51],info:[17,19,33,67],inform:[8,19,22,28,30,33,40,44,46,47,50,51,53,65,67],infrastructur:[17,28],infuri:[],ing:[],ingest:[28,67],ingredient_nam:17,inher:[],inherit:[],init:32,initi:[2,17,27,58,60,67],initial_data:[],initial_node_count:26,injo:[],injur:[],inner:39,innermost:75,innov:[48,49,55],input:[26,47,50,67],input_list:[],inroad:17,ins:[],insan:[17,67],inscrut:64,insecur:[],insert:[10,17,34],insid:[6,8,17,22,37,64,75],insight:74,insignific:31,inspect:[],inspir:[],instal:[4,6,9,17,19,22,32,33,37,38,41,51,54,59,64,65,72,73,74],instanc:[8,11,19,34],instant:[],instanti:[8,47,50],instantli:[],instead:[2,4,5,7,8,10,11,12,13,14,17,21,22,23,24,26,27,28,29,30,32,33,36,39,40,41,43,46,48,49,53,54,55,58,63,64,67,68],institut:2,instruct:[4,17,63,67],instructor:58,instrument:[],insul:[],insult:[],insur:[42,47,50],int16:[],int32:[5,8],int64:[5,8,10,13,14,17,28,36,39,53,55,65,67],int_vector:[],intact:[],integ:[8,28,47,50,67,68],integr:[4,6,17,33,58,60,61,63,67,70],intel:[6,64],intellectu:2,intellig:[],intend:[2,41,54],intens:6,intent:[],inter:[17,70],interact:[19,22,33,44,45,50,51,63,68],intercept:[50,66],interchang:64,interest:[2,17,30,41,44,49,51,52,53,54,60],interestingli:[],interf:32,interfac:[22,27,33,38,47,50,58],intermedi:[4,63,75],intern:[6,8,41,54,58,63,67],internation:[],internet:19,internship:2,interpol:[],interpret:[8,10,11,22,23,25,30,34,38,39,40,44,47,48,49,50,51,53,55,68],interrog:[],interrupt:[4,34,46,51],intersect:23,interv:[47,50],interven:[5,8],intervent:[41,47,50,54],interview:[17,40,51],intial:[],intimid:[],intricaci:[],intrins:59,intro:[9,36,67,74],introduc:[5,14,17,39,60,63],introduct:[9,58,63],introductori:61,intuit:[17,60],inv:66,invalid:[],invent:[48,49,55,60,65],inventori:[],invers:40,invert:10,invest:[5,41,51,54,64,67],investig:13,invis:33,invit:[4,34,46,51],invok:[],involv:2,inyo:[],io:8,iostream:67,ip:[17,61],ipum:[9,30,41,53,54],ipycytoscap:17,ipykernel_13964:[],ipykernel_14379:[],ipykernel_16753:[],ipykernel_24588:[],ipykernel_26205:[],ipykernel_30350:[],ipykernel_40833:[],ipykernel_41268:[],ipykernel_51318:[],ipykernel_59349:[],ipykernel_64429:[],ipykernel_84190:12,ipykernel_88045:[],ipynb:[4,25,30,34,37,39,40,41,46,48,50,51,53,54,55],ipynb_checkpoint:33,ipython:[4,35,37,38,67,73],ireland:[48,49,55],iron:61,ironpython:67,irreplac:[],irrit:[],is_al:67,is_categorical_dtyp:[],is_cmp:17,is_materi:17,is_object_dtyp:17,is_set:67,is_this_even:67,isclos:4,ish:28,isin:[13,28,30,53],isinst:67,island:[],isn:[2,5,13,14,24,28,30,33,34,39,41,45,47,50,53,54,58,60,64,67,70],isnul:14,isnumer:[10,11],iso8601:8,iso_a3:[],isol:2,israel:[],issu:[4,8,9,10,11,14,17,19,22,30,31,33,36,50,51,53,58,59,60,63,73],issue_typ:67,itali:[],item:[8,21,46],item_from_zerodim:17,iter:[4,5,8,17,43,65],iter_row_group:65,iteritem:[],its:[5,10,12,13,17,22,23,26,30,31,33,39,42,44,47,50,53,60,61,64,70],itself:[14,17,19,21,22,29,30,33,44,49,52,53,58,64,65,67],iv:[11,12,44],ivoir:[],jacqu:[],jail:39,januari:[],japan:[],japanes:[],jarqu:66,java:[17,67],javascript:[],jaw:[],jb:66,ject:[],jeff:[],jellyfish:[],jerk:13,jetbrain:74,jill:[35,36],jit:67,jkliajolzz:65,jncmxhqtdb:65,joaquin:[],job:[2,5,6,13,17,19,30,33,44,51,53,60,61,64,70],jobqueu:19,joe:[],johnson:[],join:[23,28,35,55,65],jor:[],jordan:[],jose:[41,54],journal:[47,50,51],jpn:[],jpython:67,json:33,juli:6,julia:[37,38,64,68],julio:[],jumbl:[],jump:[2,13,48,49,55,58,60,64,67],june:63,junior:2,jupyt:[0,4,9,20,26,28,29,32,42,43,59,67,70,72,73,74],jupyter_exercise_materi:38,jupyter_lab:37,jupyterlab:[],juri:[],just:[2,5,6,10,11,12,13,14,17,19,22,23,24,25,26,27,30,31,32,33,34,35,36,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,60,64,67,68,70,75],just_another_fil:[],just_high_earn:[],just_the_letter_a:22,just_this_column:8,justic:[],jvp:9,k:[35,65],kaggl:[],kaiser:51,kandiyohi:[],kansa:[],karlrupp:64,kazakhstan:[],kb:[],kd:[],kde:69,keep:[2,5,8,17,24,28,29,33,35,39,46,58,60,64,67,68,75],keep_date_col:8,keep_default_na:8,keeper:[],kei:[4,8,10,11,13,17,23,25,30,34,39,40,41,46,48,50,51,53,54,55],kept:[],kern:[],kernel:[24,32,38,47,50],key1:39,key2:39,keybind:74,keyboard:62,keyerror:[],keymap:74,keypair:[],keystrok:[],keyword:[11,13,14,28,34,39,51,55],khassokhel:[],kid:[60,61],kill:[24,47,50],killedwork:[],kilomet:[],kind:[2,5,10,12,17,25,28,30,31,39,40,41,47,51,53,54,58,61,67,68,69,70],kinda:[12,58,64,67,68],kindli:33,king:[],kinshasa:[],kitt:[],kjb17:[],km:[],kn:[],kna:[],knew:[17,39],knife:[],know:[2,4,5,6,7,10,11,12,14,17,19,21,22,24,27,32,33,34,35,36,38,39,40,41,46,47,50,54,58,59,60,61,63,64,67,68,73],knowledg:[2,30,51,53,61,63],known:67,koala:17,kosovo:[],kubernet:[],kumar:[35,36],kurtosi:66,kuwait:44,kw:67,kwarg:17,kyle:58,kyrgyz:[],kyrgyzstan:[],l:[],la:33,lab:[2,32,38,51,67],lab_black:[],label:[8,12,23,32,40,44,48,49,55,64],labforc:[],labor:[13,14],lack:14,lackawanna:[],lag:75,lai:68,laid:[61,68],lake:[],lamb:[],lambda:[8,17,46],lamp:[],land:[],landmark:23,languag:[14,17,22,51,58,61,64,67,68],lao:[],laptop:[6,17,64],larg:[5,6,8,12,13,17,23,29,30,47,48,49,50,51,53,55,58,59,60,61,64,75],large_sal:[],larger:[3,24,25,28,34,39,51,58,64,65],largest:[5,17,46],lassen:[],lassi:[],last:[4,6,10,13,17,19,23,25,26,28,29,30,33,34,36,39,40,41,42,45,46,47,48,50,51,53,54,55,60,61,63,64,67,68,70],lastli:[],lat:[],lat_t:[],late:[17,32],latenc:75,later:[4,5,6,10,17,25,26,28,29,37,40,44,58,61,75],latest:[13,67],latex:[42,58],latin:[],latino:40,latitud:23,latter:8,latvia:[],launch:61,lava:[],law:39,layer10:17,layer11:17,layer12:17,layer13:17,layer14:17,layer1:17,layer2:17,layer3:17,layer4:17,layer5:17,layer6:17,layer7:17,layer8:17,layer9:17,layer:[17,43,60,68],layer_typ:17,layout:[],lazi:28,ldhoqvnkzp:65,lead:[2,21,35,42,60,64],leadership:2,leak:[],leakag:61,learn:[2,4,5,6,7,9,10,11,12,13,14,24,26,27,30,33,44,49,53,59,60,62,63,67,69,72],learner:[],least:[2,3,4,5,6,13,17,25,28,41,44,51,54,55,61,66],leav:[5,10,22,25,32,58],lectur:[61,63],left:[9,12,17,22,33,36,37,38,39,41,54,55,58,59,64],left_index:28,left_onli:39,legaci:8,legal:51,legend:[],legibl:43,leland:[],len:[28,34,53,55,68],length:[8,13,36,51,53],lengthunit:[],lenovo:6,leon:[],lesotho:[],less:[4,13,17,22,23,25,26,39,40,41,47,48,49,50,51,54,55,58,64,66,67,68],less_than_20_000:55,less_than_colleg:[],lessen:39,lesson:[5,10,17,37,40,41,43,54,63,64],lest:[47,50],let:[5,10,11,12,13,19,22,23,24,25,27,30,32,33,34,35,36,37,38,39,40,42,44,46,47,48,49,50,51,52,53,55,59,61,63,64,67,68],letter:[2,11,22,24,47,50,51],level:[5,17,22,30,32,33,34,39,40,41,44,46,50,51,53,54,59,60,68],leverag:64,levitt:[],lh:[],li:[31,61],lib:[8,10,17,19,34,66,67],liber:[2,11,44],liberia:[],liberti:[],librari:[4,7,8,14,17,28,43,47,49,50,60,63,64,65,67,68],librarian:[],libya:44,licens:[],lie:10,life:[6,7,13,30,31,39,53,61],lifeexp:[],lifestyl:2,lifetim:[],light:[2,3,22,60],like:[2,4,5,6,7,8,10,11,13,14,17,19,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,61,63,64,67,68,70,73,75],likelihood:[30,51,53,58,66],limit:[2,5,13,24,60],linalg:66,linchpin:[],line2d:[],line:[5,6,8,9,17,19,20,24,29,31,32,33,34,37,38,41,44,48,49,51,52,54,55,58,59,64,67,68,70,72],linear:[9,44,46,47,50,64],linear_model:[47,50],linearregress:[47,50],lineno:67,lineprof:67,linetermin:8,lingo:[],lingua:[],linguist:25,link:[6,19,24,28,29,34,39,46,47,49],linspac:[],linter:[],linu:15,linux:6,list:[4,5,6,7,8,11,12,14,15,17,21,22,23,30,31,34,35,38,41,48,51,52,53,54,55,63,64,67,68],list_size_in_gb:[],lite:[],liter:[11,25,47,50,67],literaci:[],lithuania:[],littl:[2,6,11,13,17,19,22,24,26,27,30,31,33,35,37,38,39,41,44,47,50,51,52,53,54,58,60,63,64,67,68,75],live:[2,13,28,29,32,33,47,50,51,61,68],live_comm:19,lizard:52,ljubljana:[],ll:[1,5,6,10,11,13,14,17,21,22,23,24,25,26,27,28,29,30,32,33,34,36,37,38,39,40,41,43,44,45,46,47,48,49,50,51,53,54,55,58,60,61,63,64,65,67,75],llama:61,lm:60,lo:[],load:[5,9,10,13,17,19,24,26,28,38,40,41,43,44,46,47,49,50,51,54,60,65],load_dataset:[],load_ext:67,loadtxt:[41,54],loan:[],loc:[10,12,13,14,28,35,39,53,55,60,65],local:[8,17,19,24,32,44,49],local_work:[],localclust:17,localhost:8,locat:[8,11,22,23,24,31,34,41,54,68,75],lock:67,loess:[],log:[46,58,66],log_gdp_per_cap:[],log_popul:[],log_under5_mortality_r:[],logarithm:[],logic:[10,12,17,31,60,63,64],login:[],logist:[],logisticregress:[47,50],logo:[],lome:[],lon:[],lon_0:[],lone:2,longer:[5,8,24,25,33,41,42,54,61,64,68,75],longitud:23,look:[2,4,10,11,13,14,17,19,22,23,24,25,26,28,30,32,33,34,35,36,37,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,60,61,63,64,65,67,68,70],lookup:[15,68],loop:[5,28,30,43,46,48,49,51,53,55,61,64,67],loose_restrict:[],lose:21,loss:2,lost:[22,64],lot:[2,5,6,10,11,12,13,15,17,22,26,30,32,39,40,41,44,46,53,54,58,60,61,63,64,65,67,68,69,73],love:[17,33,37,47,50,60,67],low:[17,24,35,39,41,44,51,54,68],low_memori:8,lower:[8,11,22,41,47,50,51,54],lower_salari:[],lowercas:11,lowess:[],lowest:[41,48,49,54,55],lp:74,ls:[22,23,33],ls_output:[],lt:[8,17,54,67],luck:67,lucy92:[],lui:[],lumin:[],lunch:[],luxembourg:[],lvalu:17,lw:[],lwczoqlani:65,lx:[],lz4:[],m1:6,m2:[6,75],m8:17,m:[6,10,13,17,26,28,33,39,46,47,50,51,58,61,64,65],m_total:[],mac:[6,22,24,32,64],macbook:6,macedonia:[48,49,55],machin:[5,6,9,13,14,17,26,27,64,67,68],maco:[],made:[2,10,12,17,24,25,26,27,32,33,39,40,41,42,47,49,50,51,54,58,60,67,68],madera:[],madrid:[],mage:[47,50],magic:[4,10,22,35,58,67],magnitud:[],mai:[2,4,5,8,10,11,12,13,14,17,19,23,24,25,28,29,30,32,33,34,37,38,39,40,42,45,46,47,48,49,50,51,52,53,55,58,60,61,63,64,65,67,68,70],mail:[],main:[5,6,10,14,22,32,33,44,58,60],major:[2,30,40,53,64],make:[2,4,5,6,7,8,10,11,12,13,17,19,22,23,24,26,27,28,29,30,33,34,35,37,38,39,40,41,42,43,44,45,46,47,49,50,51,52,53,54,55,58,60,63,64,65,67,68,69,70,75],maker:64,male:[13,25,51,60,66],malform:8,malibu:[],man:[],manag:[5,6,8,9,10,17,19,30,32,33,37,38,46,53,58,59,61,64,75],manageri:2,manama:[],mandatori:63,mangle_dupe_col:8,mani:[2,4,5,6,8,10,11,13,14,15,17,23,24,28,29,30,31,33,34,35,37,39,41,44,46,47,48,49,50,51,53,54,55,58,61,64,65,75],manifest:[32,64],manipul:[5,9,11,12,17,24,29,31,34,46,52,59,60,63],manner:[5,22,28,32,39,58],manual:[5,26,33],map:[8,15,17,46],mapclassifi:[],margin:51,marijuana:39,marin:[],marion:[],mariposa:[],mark:33,mark_area:[],mark_bar:[],mark_errorband:[],mark_geoshap:[],mark_lin:[],mark_point:[],mark_text:[],markdown:[25,30,39,42,53],marker:8,market:[],marketplac:[],marst:[],maryland:[],mask:[17,44],mass:[],massiv:[6,17,41,54,64,67,68],master:[2,6,11,12,13,14,32,33,41,43,44,53,54,59,63],match:[2,11,35,39,51,60],mateo:[],materi:[61,63,64],matern:[],math:[59,64],mathemat:[48,49,55,61,75],matlab:60,matplotlib:[4,34,38,41,46,51,54,69],matplotlibdeprecationwarn:[],matric:[9,42,60,68],matrix:[9,27,47,50,64,66],matter:[5,6,22,27,39,44,60,64],matthew:[41,54],matur:67,max:[13,17,24,28,40,55],max_candid:17,max_row:38,max_ship:17,maxim:[5,48,49,55],maximium:[17,28],maximum:[10,13,17,28,48,49,55],mayb:[6,13,33,39,44,51],mb:34,mcwilqynyx:65,md:[22,23,32,33],md_hh_inc:[],me:[1,2,6,22,25,28,29,33,59,61,63,64,67],mea:[],mean:[2,4,5,6,7,8,10,11,13,17,22,24,27,28,30,32,33,34,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,58,60,61,63,64,65,67,68,75],mean_delai:28,mean_delay_r:28,meaning:[14,39,43],meaningfulli:2,meaningless:39,meant:[10,13,22,58],measur:[11,17,24,25,30,44,46,53,67],mechan:[32,47,50,58],media:[22,32],median:[10,28,34,48,49,55],mediat:[],medic:[3,5,47,50],medicin:[39,47],meerkat:52,meet:[2,12,24,61,63],megan:[41,54],melt:46,member:26,memor:7,memori:[8,17,24,28,29,42,55,60,64,65,68],memory_map:8,men:[13,25,60],mendocino:[],mental:[],mention:[2,11,38,51,61,67],mentor:2,mentorship:2,menu:[26,38,41,44,54],merc:[],mercat:[],merg:[9,23,28,32,34,35,51,58,59,63,70,72],merged_2009:[],merged_2018:[],merged_thinned_2009:[],merged_thinned_2018:[],meridian:[],merit:[],mess:[39,70],messag:[5,28,33,64,67],messi:[13,59],met:[],meta:17,metadata:17,meter:[],method:[8,10,12,14,17,21,25,27,28,29,30,39,41,43,46,47,50,53,54,64,66,67,69],metr:[],metric:[41,47,50,54],metro:[],mexican:[47,50,51],mexico:[10,11,12,14],mht:[47,50],mi:11,miami:[],michael:[30,53],michigan:[],microsoft:[5,22],mid:[2,6,26,27,37,47,50,51,58,59,60,61,64,73],middl:[10,15,44,63],middle_numb:[],midnight:28,mids_coursera:[],mids_data:[13,14,32,53],mids_data_prep:17,midst:[],midster:[],migcounty1:53,might:[2,5,10,23,24,25,26,28,30,33,34,39,41,43,44,46,48,49,51,52,53,54,55,58,60,64,67,68,69,75],migmet131:53,migplac1:[],migrat:[],migrate1:[],migrate1d:[],mijmeoh9lt4:16,mile:31,mileag:[],miles_per_gallon:[],milisecond:42,milit:[],million:[7,31,39,47,50,53,64,67],millionair:[13,41,54],millisecond:[],mimetyp:38,min:[13,40,55],minc:[],mind:[2,6,27,40,47,50,60,64],mine:64,miner:[],mini:[],miniconda3:[8,10,17,19,34,66,67],miniconda:[9,73],minim:[17,51,67],minimum:[6,13,48,49,55],miniscul:[],minneapoli:[41,54],minnesota:[],minor:[],minut:[9,17,26,28,51,58,62,75],minutes_timedelta:28,mir:[],mirror:[],misc:17,misdomean:[],misdomeaner_arrest:[],miser:24,mislead:22,mismatch:[19,28],misperc:[],miss:[8,9,10,13,17,28,30,39,53,63,72],mississippi:[],mistak:[4,24,39,58],mix:[8,47,50,51,60],mixed_timezon:8,mixtur:8,mkd:[],ml:17,mm:8,mme_conversion_factor:[17,29],mn:[41,54],mod:[],modal:[41,54],mode:[3,39,53,67],model:[4,6,9,44,51,60,61,63,66,72],model_predict:[],model_select:[47,50],moder:24,modern:[6,58,60,64,75],modif:[12,32],modifi:[10,11,12,30,33,42,47,50,52,53,60,68,69],modoc:[],modul:67,modular:[],momement:44,moment:[19,24,33,34,40,41,46,54,58],mon:[],mondai:[],monei:[5,41,54],moni:[],monitor:[5,24,64],monkei:[],mono:[],monterei:[],month:[19,22,24,28,39,63,64,75],monthli:[],monti:[],moor:64,moral:[],more:[2,3,4,6,7,8,9,10,11,12,13,14,15,19,22,26,27,28,30,31,32,33,34,37,38,39,40,41,42,44,45,46,48,49,51,53,54,55,58,59,60,61,63,67,68,69,70,72,75],moreov:[6,13,14,17,24,30,33,35,39,44,47,50,53,58,60,61,64,67,68],morn:67,morphin:[17,29],morphine_equivalent_g:17,mortal:[32,33],mortamt1:[],mortamt2:[],mortem:[],mortgag2:[],mortgag:[],moscow:[],moss:[30,53],most:[2,3,4,5,6,10,11,13,14,17,19,22,24,25,28,29,31,32,33,34,37,39,40,41,42,44,46,47,48,49,50,51,54,55,57,60,61,63,64,67,68,73,75],mostli:[2,17,47,51,60,64],mother:[47,50,51],motherboard:64,motiv:[],mount:[],mous:[22,32,70],mouseov:44,mousepad:[],move:[2,5,17,19,22,23,28,30,32,33,36,37,38,46,47,50,51,53,59,60,61,67,68,75],movement:64,mozambiqu:[10,11,14],mpg:[],mpregwt:[47,50,51],mrace:[47,50,51],mri:[],mri_neck_vertical_slic:[],ms:[2,28,64,67,68],msg:[17,19,67],mtcar:[],much:[2,5,6,8,13,17,22,24,26,27,30,32,33,35,39,40,41,44,46,47,49,50,53,54,58,60,64,67,70,75],muck:6,mul:17,multi:[8,17,38,46],multiindex:[8,9],multipl:[2,5,8,19,23,27,28,34,38,39,46,58,60,61,68],multipli:[17,27,41,54,68],multipoint:[],multipolygon:[],multiprocess:64,municipio:[],muscl:[],musk:[],must:[2,8,14,34,40,41,44,50,54,61,67,68,75],mutabl:[41,52,54],mutat:[47,50,52],mutual:[25,40],mv:22,mwe:[],mxyzrovfiv:65,my:[3,6,10,17,19,22,24,26,28,29,31,32,33,34,42,46,52,55,58,61,63,64,67],my_:[],my_analysi:67,my_arrai:[12,68],my_big_loop:67,my_chart:43,my_copi:[],my_data:8,my_data_science_project:[],my_doubl:67,my_fil:8,my_file1:[],my_file2:[],my_file3:[],my_first_altair_figur:[],my_geojson:[],my_list:[4,12],my_matrix2:[],my_matrix:[],my_method:27,my_model:[27,47,50],my_new_branch:32,my_numb:[],my_object:[],my_predict:[47,50],my_properti:[],my_shapefil:[],my_slic:42,my_str:31,my_subset:[],my_vector:42,my_view:[],mybag:28,mydata:60,mydata_menonli:60,mydatafil:60,myfil:60,myfunc:28,mylinearmodel:27,mylist:[],mynsgrulewithasg:[],myopic:68,myrenamedvari:60,myself:[],myvari:60,n1:8,n:[5,8,10,11,12,13,14,17,28,30,41,48,49,53,54,55,64,67],n_job:64,n_worker:[],na:[8,10],na_filt:8,na_logical_op:[],na_valu:[8,10],nagiv:22,nah:6,name:[2,4,7,8,10,11,13,14,17,19,22,23,24,25,26,27,28,30,31,32,33,34,35,36,37,38,39,40,41,43,44,46,48,49,50,51,52,53,54,55,57,58,60,63,64,70],name_left:[],name_right:[],nameerror:[],nameofcommand:[],namibia:[],nan:[8,10,14,25,39,40,66],nanni:17,nano:[23,32,33],nanop:10,napa:[],narrow:[30,53],nasa:[],nassau:[],nate:[],nation:[2,41,54],nativ:[11,67],natur:[2,13,14,39,44,46,48,49,52,55,60,64],naturalbreak:[],naturalearth_c:[],naturalearth_lowr:[],navig:[9,13,31,32,33,37],nb_black:[],ncall:67,nce8:[17,19],nce8nsg:[],nce8rg:[],nce8sa:[],nce8vn:[],nce8w:[],nd:9,ndarrai:17,ndc_no:17,ndframe:[],ndigit:[],nearby_c:[],nearest:[],nearli:[2,6,7,13,22,39,47,50,51,58,67],neat:31,neatli:2,nec:[],necess:[],necessari:[8,11,28,55,63,68],necessarili:[44,73],neck:[],need:[2,5,6,10,11,12,13,17,22,23,25,26,27,28,29,30,32,33,34,35,37,38,39,40,41,42,43,48,50,51,52,53,54,55,58,60,61,63,64,68,75],nefari:[],neg:[46,49,67],negat:10,negoti:[],negro:[],neighbor:[],neighborhood:51,neither:[],ner:[],nerv:[],nervou:33,ness:[],nest:[],net:[6,64,67],netflix:[],netherland:[],network:[6,17,24,28,29,60,64],neural:64,neurosci:[41,54],neutral:[],nevada:[],never:[2,4,5,6,13,17,21,30,37,39,42,53,58,61,67,68],nevermind:60,nevertheless:[47,50],nevi:[],new_branch_nam:32,new_branch_to_merge_lat:33,new_data:39,new_dd_object:17,new_method:17,new_salari:[],newborn:51,newcom:63,newer:68,newli:21,next:[8,11,12,13,17,33,34,38,39,70],nhgi:[],nhgis_county_popul:39,niamei:[],nice:[5,9,17,33,35,38,47,50,60,61,64,67],nicer:[],nick:[4,9,11,22,28,31,59,65,66],nick_plays_with_coil:19,nickeubank:[11,12,13,14,32,33,41,43,44,53,54,59],nifti:[47,50],niger:[],nigeria:[],nih:[],nineti:31,no_def:[],no_default:8,no_longer_an_int_vector:[],noaa:24,nobel:[30,53],nobodi:[],node:[17,26],nois:[22,27],nolan:51,non:[8,14,17,22,25,28,33,37,38,40,41,44,46,47,51,54,58,60],non_cancel:28,non_zero:[],none:[5,8,11,14,17,21,23,67],nonlinear:[],nonrobust:66,nonvector:[],nopython:67,nor:[],noreturn:[],norm:61,normal:[12,13,14,22,24,25,27,33,38,39,40,41,48,49,54,55,64,67,75],nort:[],north:22,northern:[],norwai:[44,48,49,55],nosql:[],notabl:[],notat:[48,49,55],note:[2,4,5,6,7,8,9,10,11,12,13,17,22,24,25,26,27,28,29,30,31,32,34,35,37,38,39,40,41,43,44,46,47,49,50,51,52,53,54,58,59,60,61,64,65,66,67,70],notebook:[4,9,17,19,24,25,26,28,29,30,32,34,37,39,40,41,42,46,48,50,51,53,54,55,59,67,70,73],noth:[5,8,19,21,22,29,33,67,70],notic:[6,28,34,39,41,54,58],notif:58,notion:10,notnul:14,notori:[47,50],nov:[9,66],novemb:[],novic:[],now:[4,5,6,10,11,12,13,14,17,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,60,63,64,67,68],now_a_matrix:[],now_a_vector:[],nowher:[],np:[4,8,10,12,14,17,25,34,36,39,40,41,42,53,54,55,64,66,68],npartit:17,npr:[13,35,64,65],npy:[],nrow:[5,8],nrzmunykzo:65,ns:[17,28,67],nsg:[],nuanc:42,num:[],num_counti:[],num_hh_under_30k:54,num_hh_under_40k:54,num_racial_group:[],num_run:[],num_year:[],number:[2,4,5,8,9,10,11,12,13,14,17,19,21,22,23,24,25,26,27,28,30,32,33,34,35,36,39,40,41,43,46,47,49,50,51,52,53,54,60,61,64,65,67,68,70,72,75],numbers2:[],numbers3:[],numer:[4,5,8,13,14,25,30,53,60,65,72],numeric_onli:[],numpi:[4,7,9,10,13,14,17,27,28,34,35,36,39,41,46,47,48,49,50,51,53,54,55,59,60,64,65,66,67,68,71,72],numprec:53,numpy_tot:[],numpy_vector:[],numpysupport:67,nuniqu:[],nurseri:53,nut:[],ny:[],nyc311_calls_2018:23,nyc311_column_nam:[22,23],nyc:28,nyc_311calls_2018:[22,23],nycflight:28,o:[8,17],oakland:51,ob273:[],ob:[],obispo:[],obj:[],object:[5,8,9,10,11,14,17,26,27,28,34,35,42,46,53,54,64,65,67,72,73,75],object_numb:68,objectid:[],obreangvda:65,obscen:[],obscur:64,observ:[5,11,13,14,17,24,30,34,35,39,40,41,44,46,47,48,49,50,51,53,54,55,60,66],obstetr:51,obviat:[5,28,29],obviou:[5,39,44,51],obvious:[2,10,11,30,39,41,46,48,49,53,54,55,67,68,75],occ:[],occas:[],occasion:[19,25,38],occassion:17,occup:3,occupi:67,occur:[8,10,13,14,17,19,33,46,47,50,51,61,67],occurr:[11,13,31],oceania:[],oct:9,octob:65,odd:[12,14,51,62,67],odditi:13,oddli:5,off:[5,11,13,19,32,33,58,60,67],offend:28,offens:34,offer:[2,5,6,7,14,17,39,48,49,55,58,60,64,67,69],offic:[34,39,60],offici:[11,13,28],offset:[8,28],offshor:[],often:[2,5,11,13,14,17,19,23,24,28,29,30,32,33,34,35,36,39,43,44,46,47,50,51,53,58,59,60,63,64,67,75],ogr:[],oh:[6,9,32,36],ohio:2,oil:44,oiv3k3sfwiviup5:17,ok:[10,12,13,17,21,22,28,29,30,32,35,36,38,40,42,46,47,50,53,58,64,67,68],okai:[],ol:[44,60,66],old:[10,13,30,33,35,36,37,38,40,51,53,67],older:[6,60],older_gap:[],older_t:[],olsresult:60,oman:44,omit:[],ommiss:51,omni_normtest:66,omnibu:66,on_bad_lin:8,onc:[5,8,11,12,13,14,17,22,23,24,25,26,27,28,31,32,33,34,37,38,39,40,43,44,48,51,52,55,63,64,67,68,75],one:[2,5,6,8,10,11,14,15,17,22,23,24,25,26,27,28,29,30,31,32,33,34,35,37,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,60,61,63,64,67,68,70,75],one_to_one_hund_mil_list:[],one_to_one_hund_mil_vector:[],ones:[8,47,50,60],oneself:[],onli:[2,4,5,6,8,9,10,11,12,13,14,17,22,23,24,25,26,28,29,30,32,33,34,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,53,54,55,58,60,61,63,64,65,67,68,69,70,72,75],onlin:[8,9,42,60,63],onlinearrestdata1980:[],onshor:[],onto:[8,64],ontop:[],oop:10,oopsi:9,op:17,op_str:17,opac:[],opaqu:17,open:[5,6,8,17,19,22,23,24,26,28,29,30,32,33,37,38,42,47,50,52,53,58,60,63,64,68],openjustic:[],oper:[5,10,12,17,22,27,28,29,32,35,36,43,46,48,49,55,58,64,65,67,68,72,75],operand:[],opiat:[],opinion:[],opioid:[9,26,29],opportun:[2,4,39,64],oppos:[],opposit:40,opsmixin:17,opt:[8,10,17,19,34,66],optim:[17,24,63,72],option:[5,8,9,10,14,22,26,27,28,32,33,36,38,39,41,43,54,58,62,67],option_context:[],optum:[47,50],or_:[],orang:[],orbit:31,order:[5,6,8,25,32,34,35,36,37,38,41,43,48,49,54,55,58,67],order_form_no:17,ordinari:[8,44],oregon:[],org:[3,8,12,41,54,67],organ:[2,4,30,33,34,35,36,37,39,51,53,58,60,61,63,68],organiz:[],orgin:[],orient:27,origin:[5,8,12,17,21,27,28,32,34,36,39,40,42,44,51],os:[8,17,64],oserror:19,osgeo:[],osx:5,other:[4,8,10,11,12,15,17,22,23,24,25,26,27,29,30,32,33,34,36,37,39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,60,64,67,75],otherus:32,otherwis:[4,5,8,10,42,62],otter:[],our:[2,4,10,11,13,14,17,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,38,39,40,41,42,44,46,47,48,49,50,51,52,53,54,55,58,61,64,67,70,73],our_data:[],our_matrix:[],ourselv:49,out:[2,4,5,6,11,13,17,19,22,23,24,25,26,28,30,31,32,33,34,35,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,57,58,60,61,62,63,64,65,67,68,69,75],outcom:[39,46,64],outer:39,outfil:[],outlier:44,outlin:27,outperform:[],output:[5,8,17,23,27,38,42,47,50,61,67,70],outreach:2,outsid:[51,60],outward:[],over:[5,6,8,11,13,24,25,28,29,30,32,34,36,39,41,42,43,44,46,48,49,51,53,54,55,60,61,63,64,65,67,68,70,75],overal:[13,44,51],overcom:[39,61],overdos:[],overflow:[5,67,68],overhead:[8,64],overlai:44,overlap:[43,73],overli:61,overlook:5,overnight:67,overreli:61,overrid:[8,67],overspend:[],overview:[11,13],overwhelm:[5,22,38,60],overwhelmingli:[],overwrit:4,overwritten:8,own:[2,9,11,17,19,23,24,26,32,33,39,41,47,50,54,58,59,61,63,64,67,72,73],owner:33,ownershp:[],ownershpd:[],oz:[47,50],p9:[],p:[64,66],paca:[41,54],pace:2,pacif:[],pack:[],packag:[4,7,8,9,10,13,17,27,31,34,37,38,41,44,47,50,51,54,58,59,60,63,64,66,67],page:[27,33,37,58,59,60,64,67],pai:[26,30,39,41,53,54,58,67],paid:[2,17,24,26],pain:[28,46,58],painfulli:60,pair:[8,11,13,26,32,34,37,63,64],pais:[],pakistan:[],palikir:[],panama:[],panda:[4,5,7,8,9,10,11,14,17,24,25,27,28,29,30,34,35,36,38,39,40,43,44,46,47,49,50,51,53,55,59,60,65,66,67,68,71,72],pandoc:[],pane:37,panel:[28,29,38,46],panic:17,paper:[2,22,47,50,58],papua:[],paraguai:[48,49,55],parallel:[5,6,9,17,26,28,29,60,72],paralleliz:[5,28,64],paramet:[8,47,50,51,64],parametr:[],paren:[],parent:51,parenthes:25,parenthesi:[],pariti:49,park:23,parlanc:12,parquet:[9,51,72],parquetfil:65,pars:[8,10],parse_d:[8,28],parser:8,parserwarn:8,part:[2,5,12,13,17,24,26,38,41,47,50,54,58,61,63,64,67,72],parti:35,partial:[4,8],partial_by_ord:17,particip:[2,13,48,49,55],particular:[8,13,17,27,28,32,39,41,51,54,58,60,64,68],particularli:[2,51],partit:28,partner:[32,43,44],pass:[5,8,11,12,13,14,17,23,27,28,31,34,39,41,44,50,51,54,64,67],passion:2,passiv:61,password:8,past:[2,10,17,34,39,46,51,63,64],patch:33,patch_messag:67,path:[2,8,22,32,59],pathlik:8,patient:[5,24,39,47,50],patsi:[4,9,47,50,66],pattern:[11,22,64],paus:67,paygrad:33,payment:6,payrol:[],pbrgopujxj:65,pc:5,pcap:[],pct:[],pct_change_from_09_to_18_in_high_drug_arrest_counti:[],pct_change_from_09_to_18_in_low_drug_arrest_counti:[],pct_change_in_violent_2018_2009:[],pct_dif_in_dif:[],pct_drug:[],pd:[4,8,10,11,12,13,14,17,25,28,30,32,34,35,36,38,39,43,44,48,49,51,53,55,65,66],pdb:[],pdf:[22,23,28,33,42],pdfkit:[],pdqapaihlv:65,peak:67,pedant:70,peep:52,peer:32,pen:[],penal:39,penalti:[39,75],penc:[],pend:[],pennsylvania:2,peopl:[2,4,5,11,13,14,17,24,25,30,32,34,35,39,40,41,42,44,47,48,49,50,51,53,54,55,58,60,63,64,65,70],peoria:[],pep8:[],per:[8,11,17,19,23,26,32,33,34,39,43,44,46,48,49,55,67,68],percal:67,percent:[48,49,55],percentag:[25,30,39,40,46,47,48,49,50,53,55],perfect:[13,48,49,55,70],perfectli:[24,39,61],perform:[5,6,8,9,17,28,29,47,50,51,58,60,61,64,68,72,75],perhap:[2,6,19,44],period:[5,7,11,14,24,33,46,48,49,51,55],perman:33,permiss:[41,54],pernici:[],pernum:[],persist:54,person:[2,6,13,17,19,25,26,30,32,33,34,35,36,41,45,46,49,53,54,60,63],perspect:[2,6,17,21,68],pertain:10,perwt:40,petzold:[],pevofcioxp:65,pf:65,pharmaceut:29,phenomena:49,phenomenon:[10,39,61],phew:[],philosophi:[],phone:6,photo:[],photograph:[],photon:[],photoshop:[],physic:[5,17,64,75],pi:[],pic:9,pick:[2,6,13,23,24,25,38,41,43,47,50,51,54],pickl:60,pictori:[],pictur:[22,46,47,50],pie:69,piec:[2,5,7,8,17,34,45,46,64],pile:[],pill:[17,29],pinto:[],pip:[4,37,41,54,59,64],pipe:[],pipelin:67,pit:[],pitfal:[],pivot:[2,44,46],pivot_t:46,pixel:[],pk_drone_strikes_2007_2013:[],pkl:60,place:[2,8,10,17,21,22,28,30,34,39,41,42,47,50,52,53,54,61,64,67,68,70,75],placehold:28,placer:[],plai:[6,17,24,26,28,29,33,47,50,52,58,61,67],plain:[22,38,70],plaintext:[9,22,32,33],plan:[5,6,9,17,26,28,35,46,58,59,61,67],plane:23,planet:[31,58],planetari:[],plant:[],plate:[],platform:[5,17,19,22],platter:75,plausibl:[],pleas:[3,4,8,17,22,24,25,26,30,32,34,39,40,41,42,46,48,49,50,51,53,54,55,59,60,63,67],plenti:42,plot:[9,17,20,24,32,34,38,39,41,46,48,49,51,54,55,72],plotnin:[7,37],plotninewarn:[],plotter:69,plt:[41,54],plu:[27,32],plug:64,pluma:[],plural:[],pluse:25,plymouth:[],pm2:[],pm:9,png:[],podgorica:[],point:[4,5,8,13,14,16,17,21,24,32,33,34,37,38,39,42,43,44,46,47,48,49,50,55,64,67,68],pointer:33,points_from_xi:[],poke:[],polar:52,pole:[],poli:58,polic:[39,51],polici:[2,10,41,54],policy_:54,policy_a:54,policy_b:54,policy_c:54,policy_d:54,polit:[2,44,49,58,60],politi:[11,12,14,44],polityiv:[10,11,12,14,44],poll:[],pollut:[],polyfit:[],polygon:[],polynomi:44,pomelo:9,pool:[],poor:[6,48,49,55],poorer:[47,48,49,55],poorest:[48,49,55],poorli:[47,50,59,60],pop2009:[],pop2017:[],pop:[21,28,29,38,52],pop_dens:[],pop_est:[],pope:[],popoul:[],popul:[13,30,39,40,41,48,49,51,53,54,55],popular:[17,40,60],port:[6,8],portabl:65,portal:[],portfolio:[2,45],portion:[13,17,28,34,75],posit:[2,8,39,41,46,54,61,63],posix:67,possess:39,possibl:[2,5,8,12,28,58,60,64],post:[17,26,29,30,39,46,51,53,75],postcomput:[],poster:[],postgradu:[30,53],potenti:[2,17,25,30,32,53,60,61],pov:[],poverti:[41,54],power:[5,6,28,49,52,60],powershel:[],pp:[9,51],ppp:49,pr:[32,33,70],practic:[4,5,10,17,22,27,29,32,39,42,59,60,61,64,70],practicaldatasci:[11,12,14,41,43,44,54],practicaldatascience_book:[],practicalds2020arco:26,practicalds2020rg:26,practicalds2020sa:26,practition:[],pragu:[],pratic:[],pre:[51,60,63],preced:[39,42],preciption:24,precis:[5,8,12,17,19,75],preclud:61,predic:[],predict:[27,42,47,50,51,52,55,64,67,75],predictor:[],predominantli:[],prefer:[6,13,38,41,46,54,73],prefix:[8,22,47,50,51],pregnanc:51,prejudic:[],prematur:[47,50,51],premium:53,prep:[47,50],prepar:[2,27,63],preprocess:5,prerequisit:17,prescript:[],presenc:34,present:[9,32,33,38,47,48,55,59,62,64,67],preserv:[8,65],presid:[41,54],press:22,pressur:5,prestigi:[],presum:60,pretend:[51,58,67,75],pretti:[5,13,17,19,28,30,31,32,33,40,46,53,54,60,61,64],prettier:[],preval:[],prevent:[5,17,34,47,50,61],preview:22,previou:[11,12,13,14,39,46,49,51,58],previous:[5,8,22,25,39,40,51,64],price:6,primaci:[],primari:[32,33,64,68],primarili:[5,32,61],prime:[3,61],primem:[],primit:31,princeton:2,princip:[],principl:[9,17,22,61,64],print:[11,17,19,22,23,30,37,42,43,44,46,47,48,49,50,52,53,54,55,65,67],printout:[47,50],prior:[4,60],priorit:[47,50],prioriti:2,pristina:[],privaci:[],privat:19,priviledg:[],prize:[30,35,36,53],prj:[],prng:[],pro:[6,24,60],prob:66,probabl:[5,6,10,11,13,17,22,23,24,26,28,30,32,33,34,36,40,41,43,47,48,49,50,51,53,54,55,64,67,75],probalbi:[48,55],problem:[2,4,5,10,14,17,19,21,22,23,24,25,30,31,33,34,35,39,40,41,42,47,50,51,53,54,58,60,61,63,64,65,67,75],problemat:[11,25,40,58,61],proceed:[],process:[2,5,8,17,23,24,28,29,44,60,67,68,70,75],processed_for_stud:[],processor:[5,6,64,68,75],produc:[8,39,44,49],product:[44,49,67],product_nam:17,profession:[2,3,45,61],professor:[2,61],profici:[],profil:[],profit:[],profound:64,progam:22,progess:[],program:[5,6,9,22,27,30,33,53,57,58,59,60,61,63,64,67,68,72,73],programm:[5,15,22,60,68,75],programmat:[48,49,55],programming4d:[],progress:26,prohibit:61,proj:[],projcr:[],project:[2,9,17,24,29,32,47,50,58,59,60,61,67,70],promis:58,promot:2,prompt:[4,32,34,46,51],prone:[8,11,28,61,67],proof:6,propag:45,proper:11,properli:[5,23,40,44,47,50],properti:[27,39,41,42,48,49,54,55],propog:[],propon:39,proport:[13,34,40,41,49,54,64],proportion:[34,39],propos:[39,41,54],proposit:[],prosector:[],prosecutor:[],protect:[17,33],protocl:[],protocol:[19,28,29],prototyp:29,proud:27,prove:61,provid:[2,4,5,8,11,13,14,17,19,24,26,27,30,32,33,34,35,38,39,46,47,48,50,51,53,55,60,61,63,67,70],proxi:[39,47,50],proxim:[],prun:67,pseudo:[],publish:[2,13,29,60],puerto:[],pull:[5,13,22,28,33,35,40,70],pun:27,punchlin:64,punctuat:[],purchas:[6,49],pure:67,purpos:[11,41,54,60,64],pursu:2,push:[5,32,33],put:[4,6,7,10,12,17,22,24,26,27,30,32,33,45,48,49,50,53,55,58,64,67,68,75],pwd:22,pxi:[],py39:19,py:[8,10,12,17,19,31,32,34,37,66,67,68,70],pyarrow:[9,65],pyc:[],pydata:[8,12,67],pygeo:[],pympler:[],pyobjecthasht:[],pypdf2:[],pyplot:[41,54],pyproj:[],pyspark:64,pysupport:67,python3:[8,10,17,19,34,66,67],python:[4,5,8,9,11,14,17,19,21,23,24,25,26,27,28,29,30,31,32,37,38,40,42,46,48,49,51,52,53,55,58,59,64,65,67,70,72,73,74],python_tot:[],pythondebug:[],pythondontwritebytecod:[],pythoninspect:[],pythonpath:[],pyx:67,pzri1ifsty0:16,q:22,qatar:44,qflag10:[],qflag11:[],qflag12:[],qflag13:[],qflag14:[],qflag15:[],qflag16:[],qflag17:[],qflag18:[],qflag19:[],qflag1:[],qflag20:[],qflag2:[],qgi:[],qnan:8,qth:[],quad:[],qualiti:[41,54,60],quantifi:[],quantil:[],quantit:61,quantiti:[17,26,30,34,39,41,53,54],quantum:58,quarterli:[],queri:[5,9,35,60],question:[2,4,5,7,13,14,22,25,26,27,30,34,39,40,41,46,48,50,51,53,54,55,58,64,70],questionnair:1,queue:33,quick:[10,13,34,51,67,69],quicker:22,quickest:[],quickli:[5,17,23,25,29,32,38,39,47,50,60,69],quickstart:[],quintil:[],quip:[],quirk:[13,37,67],quirki:60,quit:[22,27,40,47,50,51,52,60,64,65,68],quo:[],quot:[7,8],quota:33,quotat:[],quote_:8,quote_al:8,quote_minim:8,quote_non:8,quote_nonnumer:8,quotechar:8,qwfdeasrum:65,r1:2,r:[7,8,9,27,33,36,37,38,47,50,52,64,65,66,67,68],race:[19,25,40,47,50,51,64],race_recod:[47,50],racial:[25,40,47,50,51],racist:[],radar:[],radic:44,radiu:[],rage:64,rai:[],rais:[2,8,10,17,19,34,41,54,59,61,67],raise_on_meta_error:17,ram:[5,6,17,24,42,60,64,65,75],ramp:23,ran:[5,17,21,28,31,47,50,51,52,67,68],rand:[],randint:[35,42,65],random:[13,30,35,41,42,50,53,54,64,65],random_integ:42,random_st:[47,50],randomli:[47,48,50,55],randomuser123:[],rang:[2,8,11,13,35,41,43,49,51,54,55,59,64,65,67,68],rangeindex:[],rank:[2,41,48,49,54,55],rank_doubl:[],rapid:[4,17],rapidli:61,rare:[2,12,70],raster:[],rasterio:[],rate:[13,32,33,48,49,51,55,75],rather:[8,11,17,22,24,38,39,42,43,44,49,55,58,60,61,67,68,73],ratio:[41,49,54],raw:[5,11,12,13,14,22,23,24,33,34,37,41,43,44,46,47,50,53,54],raw_wdi_data_csv:[],raymond:15,raza:[],rb:[],rdata:60,rdd:17,re:[3,4,5,6,11,12,13,14,17,19,21,22,23,24,26,28,29,30,31,32,33,34,35,36,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,60,61,63,64,65,67,68,70,73,75],re_center_and_re_scal:[],reach:[2,67,68],read:[2,5,8,9,10,11,12,13,14,16,17,22,24,26,28,29,30,32,33,34,38,41,42,43,45,46,47,48,49,50,51,53,54,55,60,61,63,64,65,67,68,69,70,72,73],read_csv:[5,8,10,11,12,14,17,26,28,32,43,44],read_excel:[],read_fil:[],read_fwf:8,read_hdf:[],read_json:28,read_orc:28,read_parquet:[28,65],read_pickl:60,read_sql:[],read_stata:[13,14,30,53],read_tabl:[],readabl:60,reader:[2,8,22,44,45,47,50,55,63],readi:[],readili:27,readm:[22,23,24,32,33],real:[2,5,10,11,13,17,25,29,30,35,41,44,46,47,48,49,50,53,54,55,59,61,64,68,70],realist:64,realiti:[33,44,64],realiz:[10,64,67],realli:[2,3,5,6,10,24,28,29,30,32,34,38,39,42,44,47,49,50,51,53,58,60,61,63,64,67,68],realm:[],reappear:[],reason:[2,4,5,6,10,17,24,28,30,33,35,39,40,42,47,49,50,51,52,53,58,60,61,63,64,65,67,75],reassign:[4,5],rebas:33,rebecca:[],recal:[10,12,17,22,23,27,40,47,50],recap:9,recapitul:[47,50],recast:10,receiv:[2,32,35,41,47,50,54],recent:[10,11,13,17,19,25,33,34,39,41,47,50,54,61,64,67,75],recip:[17,28],recod:[50,51,58,60],recogn:[2,8,10,33,47,50,68],recognit:[],recombin:[5,17,64],recommend:[2,3,7,13,27,28,33,39,41,47,50,54,60,63,67],reconnect:19,reconstruct:33,record:[5,10,14,24,25],recours:6,recov:[33,47,50,51,58],recoveri:[],recreat:[25,39],recruit:[],recurs:[21,42,52],red:[5,58,61],redirect:[],redistribut:[41,54],reduc:[17,41,51,54,64,68],reduct:[28,51],redund:[],ref:[8,33],refactor:[],refer:[8,17,21,22,30,32,34,40,41,51,52,53,54,64,67,68,75],referenc:[52,67],refin:61,reflect:[33,64,70],refresh:[5,12,32],refund:[],refus:14,reg:[],reg_chart:[],regardless:[8,37,38],regex:[8,9,11],region:[10,11,12,14,44],regist:[9,75],registri:[],regplot:[],regress:[9,44,47,50,60,66],regressor:51,regular:[4,8,11,17,22,29,32,35,42,63,64,67],regularli:[2,25,61,67],regulatori:39,reinsert:[],reinvent:17,reject:[48,55],rel:[6,22,26,30,41,53,54,60,64],relat:[6,34,39,46,50,51,61,64],relatedli:[],relationship:[2,30,34,44,46,51,53],relatively_democrat:[],relativlei:[],releas:[39,60,67],relev:[47,50,58,64],reli:[46,48,49,55,67],reliabl:[42,68],reliant:[],religion:[],reload:65,remain:39,remaind:[8,12],remak:[],remakr:[],remark:[6,61],rememb:[2,5,7,10,22,24,25,26,27,28,29,30,32,34,39,40,41,42,44,45,46,48,49,50,51,53,54,55,58,64,65,67,68],remind:[17,27,34,46],remiss:67,remot:[19,32,41,54,74],remov:[5,10,11,21,23,33,41,54],renam:[22,60],render:[33,42],rent:5,reorgan:[],repack:[],repeat:[28,39,47,50,68],repeatedli:2,repetit:[],repit:34,replac:[8,10,12,14,25,40,60],replai:33,replic:[47,50],repo:[17,33,47,50,51,63],report:[9,13,14,17,22,23,29,33,39,40,51,58,61,67],reporter_addl_co_info:17,reporter_address1:17,reporter_address2:17,reporter_bus_act:17,reporter_c:17,reporter_counti:17,reporter_dea_no:17,reporter_famili:17,reporter_nam:17,reporter_st:17,reporter_zip:17,repositori:[32,33,39,41,54,58],repositorii:58,repr:17,repres:[8,10,13,14,22,30,34,41,44,53,54,63],represent:[10,14],reproduc:67,reproject:[],republ:[],reput:60,request:[2,17,33,41,54,70],requir:[2,4,5,7,13,17,22,27,28,33,34,42,46,51,58,60,61,63,64,68],requisit:63,rerais:67,rerun:[],res_nam:17,res_valu:17,rescal:[],research:[3,40,44,51,58,60,61,63,64],reset:[35,36,42],reset_index:36,reshap:[9,24,51,72],resid:13,residenti:[47,50],residu:66,resolut:23,resolv:[39,50,58,59,67],resourc:[2,5,7,9,16,24,26,41,44,54,58,60,63,64],resource_group:[],respect:[22,28,50],respmod:[],respond:[2,13,25,40,61,70],respons:[29,39,67,70],respresent:28,rest:70,restart:[],restaur:22,restrict:39,result:[2,4,5,8,11,13,17,19,21,22,24,25,27,30,31,34,35,36,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,60,61,63,64,66,67,68,75],resum:[],retail:6,retain:[],retir:40,retri:[],retriev:[],retrospect:[],revenu:[41,54],revers:33,revert:67,review:[2,4,9,22,26,29,33,34,42,43,44,46,51,58,61],revis:39,revised_company_nam:17,revisit:[],revok:[],rewind:33,rg:65,rgeo:[],rhistori:33,rica:[],rich:[44,48,49,55],richer:46,richest:[46,48,49,54,55],rico:[],rid:40,ridden:59,right:[4,5,12,13,17,19,28,30,32,33,34,35,37,38,39,40,41,42,44,48,49,53,54,55,58,64],right_index:28,right_onli:39,rightli:58,rightmost:[],rigor:3,rise:[17,30,49,53,55],risen:[],risk:[51,60,61,64],river:[],riversid:[],rm:[9,33],rmdir:[],road:[23,47,50,61],robust:[46,67],rock:[],rodent:22,role:[61,70],roll:[],rome:[],ronald:[41,54],room:[61,70],root:[19,33],roper:[],ror_:[],rough:9,roughli:[17,28,31,64],round:[8,50],round_trip:8,rout:6,routin:58,row:[5,8,12,13,14,17,24,25,28,30,34,35,38,39,42,43,46,47,53,60,65],row_group_offset:65,row_index:12,rows_to_get:[],rprof:67,rsa:[],rstudio:32,rsync:[],rtf:[],rtol:[],rubric:[],rude:[],rudin:2,ruggl:[41,54],ruin:[],rule:[5,28,42,60,61,67],run:[2,4,5,6,10,12,13,14,17,19,21,22,25,26,27,28,29,30,31,32,33,34,35,37,39,40,41,42,46,47,48,50,51,52,53,54,55,60,61,64,67,68,73],run_simul:64,run_test:[],runtim:[],russia:[10,11,12,14],russian:[],rvalu:17,rwanda:[],s3:[8,19],s8f2_ks15h315z5thvtnhz8r0000gp:12,s:[2,4,5,6,8,9,10,11,12,13,14,15,19,21,22,23,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,44,45,46,47,48,49,50,51,52,53,54,55,58,60,63,65,67,69,70,73],s_total:[],sacramento:[],sacrosanct:[],sadli:[6,13],safari:22,safe:[28,32,42,64],safegraph:[],safeguard:[],safer:[],safeti:6,sai:[2,5,6,8,10,11,12,13,22,24,26,33,34,41,42,46,47,50,51,54,58,60,61,64,67,68,75],said:[2,6,10,13,17,32,48,49,50,55,60,61,67],salarai:53,salari:[2,40,41,53,54],salaries_in_thousand:[],sale:39,same:[2,5,6,8,11,12,13,14,17,19,21,22,24,25,27,28,29,30,32,33,34,36,37,38,39,41,42,43,44,46,47,50,51,53,54,58,61,63,64,65,67,68,75],sampl:[13,17,25,28,30,39,40,41,46,47,48,49,50,51,53,54,55,65,66],san:[],sanaa:[],sanction:[],sane:44,saniti:[10,39],sanitize_datafram:[],santa:[],santiago:[],sarah:[41,54],sarajevo:[],sata:75,satelit:[],satellit:[],saturdai:[],saudi:44,savabl:[],save:[5,9,21,22,23,24,25,26,29,30,32,37,38,53,65,67],saw:[11,31,38,47,50,64],scala:17,scalabl:[],scalar:[8,27,28],scale:[17,43,75],scale_s:[],scale_size_continu:[],scale_x_continu:[],scale_x_log10:[],scale_x_revers:[],scale_x_sqrt:[],scale_y_continu:[],scaler:[],scaleunit:[],scan:[],scandinavia:[],scanner:[],scarc:[],scatter:[39,43,44,69],scatterplot:[],scene:[17,27,33,50,60],schedul:[17,19,67],schema:[],scheme:[8,37],schltype:[],school:[2,13,30,40,53,61],schouweil:[41,54],sci:[58,68],scienc:[1,4,5,7,13,27,32,47,48,49,50,55,58,59,63,64,67,72,75],scientif:[3,60,64],scientist:[2,5,6,7,13,14,17,30,42,44,45,47,50,51,53,58,60,61,64,67,68],scikit:[7,9,17,27,67,72],scikitlearn:72,scipi:[],sckikit:9,scope:[2,60],score:[11,12,14,27,41,44,46,47,50,54],scp:[],scratch:27,screen:[22,23,32],screw:[],script:[31,67],scroll:34,se:17,seaborn:[4,38],seamlessli:[],search:[30,53,61],searchabl:[],second:[2,10,12,19,22,23,32,34,35,36,39,42,52,63,64,65,67,68,75],second_column:34,second_matrix:42,second_seri:[],second_subset:[],secondari:[],secondhand:3,secret:[9,68],section:[9,22,28,42,51,62,64,67,72],secur:[34,35,61,64],security_group:[],see:[4,6,8,9,10,11,12,13,14,17,19,22,24,26,27,28,29,30,31,32,33,34,36,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,58,59,60,61,63,64,67,68,69],seed:[13,35,42,50],seek:[13,46],seem:[2,4,10,11,17,21,29,30,40,41,44,48,49,50,51,53,54,55,60,63,64,70],seen:[17,34,48,49,55,67,70],segment:23,segrat:47,segreg:50,select:[5,24,28,32,33,37,38,39,40,41,42,44,45,47,48,50,51,54,55],selection_interv:[],selection_singl:[],selector:[],selectornam:[],self:[17,27,34,67],sell:39,semest:[],semiolog:[],send:[2,5,19,37,38,67],send_recv_from_rpc:19,sens:[2,4,8,13,17,22,24,28,29,30,38,39,43,47,48,49,50,53,55,60,61,68],sensibl:34,sensit:6,sensor:14,sent:29,sentec:[],sentenc:31,sentinel:[13,14,30,40,53],sep:[8,9,17],separ:[8,12,22,24,33,41,42,43,44,45,46,54,58,64],seper:[64,67],sequenc:[8,17,33,64],sequenti:64,seri:[4,6,8,9,10,11,14,17,24,28,33,35,36,40,43,48,49,55,58,68,71,72],serial:[53,64],series_dtyp:17,series_w_numeric_index:[],seriou:[3,6,60,68],serious:[5,13,17,47,50,70],serv:[],server:[32,33,64],servic:[17,19,33,51,58,60,61,63],session:[17,19,22,28,32,37,38,48,55,64],set:[2,4,5,6,8,9,11,12,13,14,15,17,19,22,23,25,26,27,28,29,30,32,33,34,35,37,38,39,40,41,46,47,48,50,51,52,53,54,55,58,59,60,61,62,63,64,67,72,73,75],set_cr:[],set_geometri:[],set_index:28,set_opt:[39,53],setitem:[],settingwithcopywarn:12,settl:[],setup:[5,9,17,19,26,32,37,38,59,67,72,73],seven:17,sever:[28,29,33,34,39,46,51,61,67,75],sex:[13,25],sexist:[],sf:[],sfvmhgqeyn:65,sh:[],shadow:[],shape:[6,28,51,53,61,66],shapefil:[],share:[13,22,25,33,34,36,41,42,46,48,49,54,55,58],share_:[],share_f_drugoff:[],share_feloni:[],share_viol:[],sharpli:[],shasta:[],she:2,sheepskin:[30,53],shelf:60,shell:22,shelv:[],shift:[37,38],shifted_and_scaled_back:[],shine:60,ship:29,shipment:[17,26,29],shipper:29,shockingli:61,shoot:[9,68],shope:64,shortcom:64,shortcut:[22,62],shorten:31,shorter:68,shortest:[],shorthand:13,shortli:63,shot:[48,55],should:[2,4,5,6,8,10,13,14,17,22,24,25,26,27,28,29,30,31,32,33,34,37,38,39,40,41,44,46,47,50,51,53,54,60,61,63,65,67,68,75],should_rejoin:[],shouldn:[26,33,34,43,58],shove:17,show:[2,5,13,23,28,29,30,32,33,36,39,42,46,53,63,64,67,75],shown:[13,61,64],shp:[],shuffl:28,shut:26,shx:[],shy:[],si:[],side:[9,12,19,33,36,37,38,48,49,51,55,61,68],sidebar:37,sidewai:[],sierra:[],sight:22,sigma:27,sign:[9,12,32],signal:[30,47,50,53],signatur:8,signific:[8,41,47,50,51,54,61,64],significantli:34,silent:67,silicon:64,silli:11,silver:64,sim:64,similar:[17,22,32,34,39,41,45,46,50,54,61,67],similarli:[5,13,22,44,52,67],simpl:[2,6,22,26,32,39,43,44,47,48,49,55,60,64,68,70],simpler:[46,60],simplest:27,simpli:[39,41,48,49,52,54,55],simplic:22,simpliest:64,simplif:44,simplifi:40,simplist:[],simul:[42,58,60,64],simulan:[],simulate_weath:64,simultan:[2,58,64],sinc:[2,4,5,6,11,13,14,17,22,23,24,28,29,30,32,33,34,39,40,41,42,46,47,50,51,53,54,60,64,68],singapor:[48,49,55],singl:[5,6,8,9,12,13,17,22,23,24,28,29,33,34,38,41,43,46,47,50,51,54,64,75],single_fil:[],singular:[],siskiy:[],sit:64,site:[8,10,17,19,27,34,46,58,59,61,63,66,67],situat:[5,10,14,29,33,39,48,49,52,55,64,68],six:[27,29,67],sixteen:[],size:[5,6,11,17,24,28,29,35,39,42,64,65,68],sjoin:[],sjoin_nearest:[],skeptic:[47,50],sketch:52,skew:[41,54,66],skill:[6,24,27,30,39,43,46,53,60,61,63],skim:9,skinni:[],skinny_matrix:[],skip:[8,9,13,27,33,37],skip_blank_lin:8,skipfoot:8,skipinitialspac:8,skipna:[],skiprow:[5,8],sklearn:[4,27,47,50],skopj:[],skull:[],slam:[],slb:[],sleep:67,sleight:[],slice:[12,28,42],slider:[],slightli:[2,13,17,29,41,47,50,54,60,62],slip:[],slipperi:[],slog:58,slope:44,slot:[34,75],slow:[5,15,23,24,28,60,64,65,67,68,75],slower:[17,28,67,68,75],slowest:17,slowli:[26,68],slurm:[],slwt:[],sm:66,small:[2,4,5,6,7,10,11,12,14,17,22,23,24,26,28,30,31,33,38,39,40,41,44,48,49,52,53,54,55,58,64,65],smaller:[5,17,25,26,28,50,51,64],smallest:[],smallworld:[11,12,14],smart:[15,17,68],smarter:68,smf:[44,51,66],smoke:[47,50,61],smoker:51,smoking_and_bw:[47,50],smooth:[6,19],smoothest:[],sn:[],snake:[],snap:[48,55],snapshot:49,sneak:[],sniffer:8,snippet:60,snowflak:64,so:[4,6,7,8,10,11,12,13,14,17,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,53,54,55,58,63,64,65,67,68,70,73],sobek:[41,54],social:[30,34,35,40,51,53,60],social_security_numb:[34,35],socioeconom:51,socket:67,softwar:[4,7,9,17,32,58,60,65],soil:[],solano:[],sold:[],solder:6,sole:[60,64],solid:6,solomon:[],solut:[4,25,28,30,34,39,40,41,46,48,50,51,53,54,55,64,67,68],solv:[2,28,33,58,60,61],som:[],some:[5,6,8,10,11,13,14,17,19,22,23,24,26,27,30,32,33,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,60,61,63,64,65,67,68,70,73,75],somebodi:[],somedai:17,somehow:[],someon:[2,13,14,22,30,33,40,48,49,53,55,60,70],someth:[2,4,5,6,10,13,17,21,22,24,27,28,30,33,37,39,43,44,45,46,47,48,49,50,53,55,58,60,61,64,67,68,70,75],sometim:[5,10,12,14,15,17,21,24,25,28,30,33,35,39,42,46,47,50,53,60,64,68],somewhat:[41,54],somewher:[22,27,28,37,64],song:[],sonoma:[],soon:[17,28,38,61,63,67,73],sooner:5,sophi:64,sophia:[41,54],sophist:[47,50,60,61,64],sorri:[24,26,33,38,58,61,67],sort:[5,13,22,24,28,29,35,36,38,48,52,55,58,60],sort_index:[],sort_valu:[36,55],sortabl:[],sorted_incom:[],sot:67,sound:13,sourc:[10,17,31,41,47,50,54,58,59,64,67],source_data:[],south:[48,49,55],sp:[],space:[5,8,17,22,24,33,37,46,52,75],spaghetti:[],spare:[],spark:[5,60],spatial:60,spawn:[],speak:[6,27,47,50],speakeng:[],spear:[],spec:[],specfic:[],special:[11,13,14,25,26,28,30,47,50,53,60,64],specialist:[],specialti:[],specif:[2,5,7,8,11,14,17,21,24,26,28,30,32,33,37,43,47,50,53,58,60,63,65,70],specifi:[4,5,8,10,12,22,26,28,35,36,39,47,50,51,64,66],speed:[8,9,29,51,60,64,75],speedup:[64,67,68],spell:11,spenc:[30,53],spend:[2,13,61,63,67,75],spender:[],spent:[24,47,49,63,67],sphere:[],spin:[29,64,75],spinal:[],spine:[],spiral:31,spirit:[48,49,55],split:[1,9,39,40,51],splurg:6,sport:[],spot:[],spread:[],spreadsheet:[22,60],spuriou:51,sq:[],sql:5,sqrt:[],squar:[9,23,27,44,47,50,51,60,64,66],squared_valu:[],squeez:8,squiggl:[],squish:[],ssd:[6,75],ssh:74,sslerror:34,sso:3,st:[],stabl:[8,12,42,67],stack:46,stackoverflow:74,staff:2,stage:2,stagger:61,stai:[13,25,33,39,51,61,67],stake:2,stakehold:[],stall:64,stand:[17,22,23,40,61],standand:[],standard:[4,6,8,17,25,27,28,30,39,40,41,43,44,46,48,50,53,54,55,59,60,61,65,66,68,69],standard_d11_v2:[],standard_ds11_v2:26,standard_ds4_v2:26,stanford:2,stanislau:[],stapl:61,stare:[],stargaz:[],start:[2,4,5,8,11,13,15,17,22,23,24,25,26,27,30,31,32,33,34,35,36,39,40,41,42,43,46,47,48,49,50,51,53,54,55,60,61,62,63,64,67,68,70,75],startegi:32,starter:[13,37],starting_temp:64,startup:[],stat:[51,60,66],stat_smooth:[],stata:[30,53],statalist:60,state:[2,6,13,17,23,25,29,30,33,34,39,40,41,47,50,53,54],statefip:[],statefp:[],statehold:[],stateicp:[],statement:[17,34,38,42],station:24,statist:[9,13,27,30,44,47,50,51,53,55,59,60,61,66],statistician:[27,47,50,51,60],statsmodel:[4,9,27,44,46,47,50,66,68,72],stattool:66,statu:[13,14,17,23,28,29,30,33,51,53],std:[13,28,43,55,66,67,68],std_delai:28,std_delay_r:28,std_dev:64,stdin:[],steal:[],steeper:[],step:[2,13,17,22,33,38,47,50,58,60,64,67,68],steppingston:[],steven:[41,54],stick:[],sticker:[],sticki:51,still:[5,7,13,24,31,32,33,36,37,38,39,41,42,44,46,51,54,60,61,62,63,64,65,67],stimul:2,stipend:2,stock:[],stockholm:6,stolen:60,stop:[13,21,64,67,75],stopiter:17,storag:[6,8,19,33,72],storage_opt:[8,26],storageopt:8,store:[4,5,22,25,27,28,30,33,34,39,40,41,46,48,50,51,53,54,55,65,75],stori:[25,44,45,75],str:[8,10,28,46,67],straight:[44,46,47],straightforward:[5,50],straightfoward:67,strand:[],strang:[],stranger:[],strata:[],strategi:[7,9,22,32,46,60,64,72,75],stream:[5,19],street:[22,23],strength:[17,60,65],stress:6,stretch:[],strict:[8,44],strictli:55,strike:29,string:[4,5,8,9,10,24,25,28,31,35,39,40,41,47,48,50,51,52,54,55,60,65,67,68,72],stringio:8,strip:11,stripei:52,strive:[48,49,55],stroke:[],strokedash:[],strong:[60,61,63],strongest:60,strongli:[2,6,63],strorag:65,structur:[1,2,8,12,17,21,22,23,36,39,42,46],struggl:[2,24,33,47,49],stuck:[30,33,53,61],student:[2,11,13,24,26,27,37,41,54,58,59,61,73],student_ag:[],studi:[2,17,30,34,44,47,48,49,50,51,53,55,57,58,61],studio:[],stuff:[5,10,33,47,50,51,61,68],stumbl:6,stunt:61,style:[27,73],su:[],sub:[11,17,28,34,40,42,53,64,72],subject:[46,47,50,59,63],submit:[4,25,30,32,34,39,40,41,46,48,50,51,53,54,55,58,70],subnet:[],subplot:[],subpopul:51,subsamp:53,subsampl:[41,54],subscrib:[],subscript:26,subsect:9,subsequ:[25,34,42,51],subset:[5,8,9,12,13,14,17,25,26,29,30,31,35,40,42,46,48,49,51,53,55,60,65],substant:[2,49],substanti:[2,5,28,30,34,53,61,64,75],substitut:[6,11,25],substr:11,subtitl:61,subtl:[39,47,50,64],subtract:46,succe:[2,30,53],succeed:[],success:[2,13,30,39,53],successfulli:[39,61],suce:63,suck:58,suddenli:58,suffic:40,suffici:[2,41,54],suffix:[22,30,37,38,53,67],suggest:[2,11,13,17,22,25,28,30,32,33,38,42,47,50,53,61,64,67,70],suit:[4,64],suitabl:8,sum:[17,24,28,34,48,49,51,54,55],sum_:[41,48,49,54,55],sum_i:40,summar:[13,32,44,59],summari:[44,51,55,66],summary_fram:[],summary_stat:55,summat:[48,49,55,68],summer:[2,44,63],sun:31,sundai:[],superiv:[],supermarket:[],superpow:[],supervis:[47,50,61],supervisor:[],suppli:[],support:[8,11,17,19,27,28,47,50,51,60,65,67,73],suppos:[11,12,13,14,17,22,28,33,35,39,40,41,42,46,47,50,54,58,64,68],suppress:17,suprisingli:[],sur:[],sure:[4,6,12,17,19,23,24,29,30,32,33,34,37,38,39,40,42,43,44,45,46,47,50,51,52,53,58,60,61,63,64,68,70],surfac:[],surinam:[],surpris:[51,52,64,69],surprisingli:[6,47,50],survei:[10,13,14,25,30,40,41,53,54,74],suspect:2,suspici:[],sutter:[],suzi:9,svg:[],svm:[47,50],svr:[47,50],swcarpentri:[],swe:1,swim:46,swith:32,switzerland:[48,49,55],sy:[28,64],syllabu:9,symbol:[22,42],symmetr:[],sync:19,synchron:[],syndrom:[3,6],synopsi:[],syntact:[],syntax:[5,7,11,17,27,31,38,42,46,47,50,51,58,60,67],syntaxerror:[],system76:6,system:[4,5,17,22,26,28,29,32,34,38,39,46,47,50,51,58,64,75],systemat:[48,49,50,55],sytem:[],t0:[],t1:[],t:[2,4,5,6,7,8,9,10,11,12,13,14,19,21,22,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,58,60,63,64,65,66,67,70,75],ta:[4,34,41,46,51,54,70],tab:[5,17,24,26,28,29,32,37,43,70],tabl:[8,17,25,30,38,41,46,53,54,75],tabul:25,tabular:[9,17,22,59,60,65],tack:67,tada:13,tag:34,taggint:[],tail:[13,23,28,30,40,41,53,54],tailnum:28,tailor:[26,63],tajikistan:[],take:[2,5,10,13,14,17,22,23,24,26,27,28,29,32,33,34,36,39,40,41,42,45,46,47,48,49,50,51,54,55,60,61,63,64,67,70,75],takeawai:[],taken:[28,41,54,60,61,63],talk:[2,3,13,17,24,25,33,37,39,41,54,60,61,64,65,67,68],taller:[],tallest:[],tallinn:[],tank:2,taoqccnkhh:65,tape:[],tar:24,target:[],task:[2,5,11,13,19,23,27,28,29,48,49,51,55,60,61,64],tast:[],taught:[13,59],tax:[6,41,54],tax_:54,tax_c:54,tax_cutoff_:54,tax_cutoff_c:54,tax_cutoff_d:54,tax_d:54,taxi:23,tb:[6,17,67],tcp:[17,19],tcpclient:19,teach:[2,7,17,38,61,63,67],team:[2,17,32,33,58,70],teammat:33,tech:58,technic:[2,58],techniqu:12,technolog:[2,6,48,49,55,60,67],tediou:[],teeth:[],teh:52,tehama:[],telescop:[],tell:[5,10,11,13,22,23,25,28,29,30,32,33,34,39,43,44,45,50,52,53,64,67,68],temp:[24,64],temp_at_t:64,temperatur:[24,64],templat:52,template_row:[],temporarili:[],tempt:[],temptat:61,ten:[30,44,53,60,67],tenant:[],tend:[2,27,30,39,42,46,47,50,51,53,60],tendenc:[2,64],tennesse:[],tenni:[],tensor:[],tent:59,term:[17,22,24,27,30,39,40,50,53,60,62,64,66,70,75],termin:[32,64,68,74],terminolog:[47,50],terribl:[2,33],terrif:64,territori:39,test:[4,27,31,39,42,47,48,49,50,51,55,61,65],test_fil:[],test_siz:[47,50],tex:[],texa:[],text:[5,22,26,32,33,34,37,38,44,58,60,70],text_fil:[],textfil:32,textfileread:8,textpars:8,textual:60,th:[],tha:[],thailand:[],than:[2,4,5,6,7,8,10,11,12,13,14,15,17,19,22,24,25,26,27,28,30,31,32,33,34,35,38,39,40,41,43,44,46,47,48,49,50,51,53,54,55,58,60,61,63,64,65,66,67,68,75],thank:[],thankfulli:[12,24,36,47,50,67],thanksgiv:9,the_list:[],the_name_of_your_commit:33,thei:[2,4,5,6,7,8,10,11,13,14,17,21,22,23,24,27,28,30,31,33,34,35,36,37,38,39,40,42,43,44,46,47,50,51,52,53,58,59,60,61,63,64,67,68,75],them:[2,5,6,8,11,12,13,17,19,22,23,25,26,27,28,30,31,32,33,34,36,37,39,40,41,42,43,46,47,50,51,53,54,58,60,61,63,64,67,68],theme:3,theme_class:[],themselv:[28,44,59,64,67],theoret:[],theori:[34,39,47,50,51,68],therapist:3,therefor:[2,44],thi:[2,3,4,5,6,7,8,10,11,12,13,14,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,62,63,64,65,67,68,70,73],thin:[5,17,29,46,68],thing:[2,5,6,7,10,11,13,14,15,17,21,22,24,25,29,31,32,33,34,36,39,44,45,46,47,50,51,52,58,60,63,64,67,68,75],think:[4,5,6,10,17,22,23,27,28,30,31,33,34,39,40,41,44,46,47,48,49,50,51,52,53,54,55,57,58,61,63,64,65,67,68,73],third:[2,4,25,30,34,35,39,40,41,42,46,48,50,51,53,54,55,68],third_column:34,thirti:[],this_file_is_invis:[],this_is_gonna_be_a_problem:33,this_obj:66,those:[2,5,11,12,13,14,17,22,25,26,27,28,29,30,31,32,33,34,39,40,41,43,46,47,50,51,53,54,58,60,61,63,64,68,75],though:[4,5,6,11,12,13,17,22,26,30,32,33,39,43,47,50,51,52,53,58,60,64],thought:[2,10,35,39,43],thousand:[5,8,24,64],thread:[17,28,29,67],three:[4,6,8,13,21,24,25,28,30,31,38,39,40,41,46,48,50,51,52,53,54,55,60,64],threshold:[],throttl:[],through:[9,11,17,19,22,24,26,27,33,37,38,41,44,47,50,52,54,59,60,61,63,70],throughout:[27,54],thu:[13,33,34,42,52,60,64,68],thumb:28,thur:9,thursdai:[9,22,23],thursdays_and_fridai:23,thursdays_and_fridays_w_columnnam:23,ti:26,tick:75,ticket:[],tidi:46,tier:[],tiger:52,tight:[],tightli:17,till:[22,28,32,58,64],time:[2,4,5,6,8,11,13,17,19,22,24,25,29,30,31,32,33,34,35,36,37,39,40,41,43,44,46,47,48,49,50,51,52,53,54,55,58,60,61,63,64,66,67,68,70,73,75],time_nonvector:[],time_vector:[],timedelta:28,timeit:[35,67,68],timeout:19,timeouterror:19,timer:26,timeunit:[],timezon:8,tini:75,tip:[24,64],tire:[],tissu:[],titanium:[],titl:[32,33,43],tj:12,tjk:[],tl:19,tmax:[],to_cr:[],to_csv:8,to_datafram:28,to_datetim:[8,17],to_excel:[],to_fil:[],to_hdf:[],to_numer:28,to_parquet:[28,65],to_sql:[],to_stata:[],to_timedelta:28,to_wkt:[],todai:[14,24,25,26,27,29,39,40,47,49,50,58,64,65],togeth:[8,17,23,28,36,43,55,58],toi:[10,11,27,30,53,65],told:[13,32],toler:17,tomorrow:64,ton:[5,51,60],tone:[],too:[2,5,6,8,11,13,14,17,26,30,33,34,36,41,46,47,50,51,53,54,58,59,60,65,67],took:[13,24,64,67,70,75],tool:[4,5,7,8,9,10,11,12,13,17,19,22,23,30,32,33,38,40,44,46,51,53,58,59,60,61,63,64,67,68,73,74],toolbox:61,toolkit:[],tooltip:[],top:[2,9,10,17,23,24,25,26,33,34,37,38,41,46,48,49,54,55,60,61,67,68],top_few_lines_of_temp:[],topic:[4,9,58,61],topograph:[],topolog:58,tornado:19,torvald:15,total:[2,4,13,14,17,24,25,28,29,30,31,34,39,40,41,46,48,50,53,54,55,63,64,67],total_bil:[],total_incom:[],total_popul:51,total_population_2009:[],total_population_2018:[],total_tim:[],totalkil:[],tottim:67,touch:[],toward:[47,50],tower:[],town:[],tp:67,tpksmslrei:35,trace:[],traceback:[9,10,17,19,34,67,72],track:[17,21,31,33,34,35,58,60],tracker:58,tractabl:[],tractc:[],traction:46,trade:[39,51,67],tradeoff:[5,9],trader:[],trail:[],train:[6,63,64],train_siz:[47,50],train_test_split:[47,50],trajectori:39,transaction_cod:17,transaction_d:17,transaction_id:17,transcrib:[],transcript:[],transfer:[6,17,41,54,65,75],transfers_:54,transform:[34,44,63],transform_dens:[],transform_divis:17,transform_loess:44,transform_quantil:[],transform_regress:[],transist:64,transistor:64,transit:2,translat:13,transpar:[],transpos:66,transvers:[],trap:42,travel:[],travers:[],treat:[8,11,14,22,25,30,34,38,39,40,47,51,53,58,67],treatment:[39,47,50],tree:33,tremend:[44,63],trend:[24,44],tri:[4,10,17,22,33,47,50,51,67],trial:61,trick:[13,31,75],tricki:[17,21,28,29,37,52,67],trickier:50,trickiest:28,trigger:29,trillian:4,triniti:[],trip:8,tripl:[],trivial:[11,28,33,34,46],trope:[],troubl:[9,17,23,42,51,68],troubleshoot:67,true_valu:8,trueli:42,truli:[],truncat:[],trust:[2,55],trusti:[],trustworthi:[],truth:60,truthfulli:33,tsv:[17,22,26],tue:[9,66],tuesdai:[9,65],tular:[],tune:67,tuolumn:[],tupl:[46,52],turn:[5,6,11,13,24,28,29,30,31,38,39,45,47,50,51,52,53,61,63,64],tutori:[17,28,37,42,52,58,59,63,72],tuturi:64,tuv:[],tuvalu:[],tweak:[7,60],tweet:[],twelv:[],twenti:[],twice:[28,64],twitter:[],two:[2,5,6,8,10,11,12,13,14,21,22,24,25,27,28,29,31,32,34,36,38,39,42,43,44,45,46,47,50,51,58,60,63,64,65,67,68,75],two_ton:[],twofold:68,txt:[22,23,24,41,43,54],ty:[],tylenol:39,typ:17,type:[2,4,5,8,12,13,15,17,22,23,25,28,29,30,31,32,34,37,38,39,43,46,47,50,51,53,61,64,65,66,68],typeerror:[10,17],typic:[],typingerror:67,typo:39,u21:[],u32:[],u4:[],u7:[],u:[41,54],udf:17,ufunc:[],ufunctypeerror:[],ugh:[],ugli:[],uglier:[],uh:[13,36,53],uint16:[],uint32:[],uint64:[],uint:[],ukrain:[10,11,12,14],ultra:6,umn:[41,54],un:2,unabl:17,unalt:8,unary_union:[],unavail:14,unawar:[2,39],unbeknownst:[],uncaught:[],uncertain:[],unchang:[],unchart:31,uncheck:[],unclear:[],uncomfort:61,uncommon:[14,33,64],uncompress:[5,65],undefin:[],undemocrat:44,under:[5,11,13,17,25,26,30,31,33,39,40,41,48,53,54,55,60,61],underestim:[40,41,54],underflow:[],undergradu:[2,30,53],underlai:22,underli:[17,42,47,50,58,59,64],underpin:[],underscor:7,understand:[2,5,6,7,9,13,17,27,32,33,34,40,42,44,47,49,50,60,61,63,64,68,70,72],understood:[51,63],undesir:[],undisput:13,undo:58,unemploi:[13,14,30,53],unemploy:13,unemployment_percentag:[],unequ:[48,49,55],unexpect:[],unfashion:31,unfinish:[],unfold:[],unfortun:[22,58,68],unicod:[16,22],unifi:67,uniform:[41,54],uniformli:[],unimagin:75,unimport:[],unintend:[],unintenti:[],union:17,uniqu:[8,10,13,14,23,33,34,39,46,58,61,64],unit:[13,17,25,28,30,34,40,41,44,46,47,50,51,53,54,64],uniti:[],univers:[2,19,22],unix:[],unknow:[47,50],unknown:[2,47,50,51],unlabel:[],unless:[4,6,17,28,42],unlik:[4,13,14,17,23,25,28,41,46,47,50,54,60,61,65,67,68],unlimit:33,unnam:[],unnecessari:[],unneed:5,unnot:[],unpack:64,unpack_zerodim_and_def:17,unpars:8,unpredict:[],unproduct:[],unread:[],unreason:[],unregard:31,unsign:[],unstack:46,unsubscrib:[],unsuccess:[],unsupport:[8,67],unsupportederror:67,unsur:[39,47],unsurprig:[],unsurprisingli:11,until:[17,22,23,24,28,29,34,39,47,49,59,68],unto:64,unusu:60,unwant:[],unwittingli:[],unzip:[22,24,26,28,29,46],up:[2,5,6,8,9,10,11,12,13,17,19,21,22,24,26,27,28,29,30,32,33,34,37,39,41,42,44,45,46,47,48,49,50,52,53,54,55,59,60,61,63,64,67,68,70,72,73,75],upcom:[13,41,54],updat:[17,23,26,32,33,34,41,44,46,54,70],upfront:5,upgrad:[],uphil:58,upload:[4,25,26,30,39,40,41,42,48,50,53,54,55],upon:[4,8],upper:[8,11],uppercas:[],upsid:[],uptak:60,urban:2,url:[4,8,13,25,30,32,34,41,46,51,53,54],urllib:8,us:[2,3,5,6,7,8,9,10,11,12,13,14,19,21,22,23,24,25,26,27,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,60,64,66,69,70,73,75],us_acs_2017_10pct_sampl:[13,14,25,30,40,53],us_americancommunitysurvei:[13,14,53],us_household_incom:[41,54],usa:[28,41,54],usag:[8,24,74],usbempwyah:65,usc00050848:24,usd:26,use_inf_as_na:[],use_numexpr:17,usecol:[5,8,17],useless:46,user:[6,8,10,17,19,22,26,27,28,32,33,39,44,47,50,58,60,61,64,65,66,67,68],user_guid:[8,12],usernam:8,userwarn:[],usg:[],usr:[],usual:[4,5,10,12,17,19,22,24,40,51,58,67,68,70],utc:8,utf:8,util:[5,11,14,17,39],utm:[],utterli:31,uzbekistan:[],v0_8:[],v100:[],v11:[41,54],v1:[],v2:[5,17],v5:[],v:[3,9,16,42,72],vacat:[],vagu:[],valid:[4,8,9,47,50,66],valu:[4,6,8,10,12,13,14,15,17,22,24,25,27,28,30,34,36,39,41,42,43,44,46,47,48,49,50,51,52,53,54,55,58,60,64,67,68],valuabl:[2,5,27],value1:[],value31:[],value_column:[],value_count:[10,11,13,28,30,39,40,53],valueerror:[10,17,34],valuewarn:66,van:[],vanessa:70,vanilla:67,vaniti:[],vanuatu:[],var212:[],vari:[25,34,40],variabl:[4,5,9,10,11,13,17,21,25,28,30,32,33,34,38,39,40,41,42,43,44,46,47,48,50,51,53,54,55,58,59,60,66,67,68,70,72],varianc:27,variat:[41,44,46,51,54],variou:[17,47,50],vast:[],vault:[],vconcat:[],ve:[2,3,10,11,12,13,14,17,22,24,25,26,27,28,30,31,32,33,35,37,38,40,44,45,46,47,48,49,50,51,52,53,55,59,61,64,65,67,75],vect1:[],vect2:[],vector1:[],vector2:[],vector:[9,12,15,27,41,47,48,49,50,51,54,55,60,64,67,71,75],vector_size_in_gb:[],vega:[],vega_dataset:[],vehicl:23,ven:[],venezuela:[],ventura:[],verbatim:[],verbos:8,veri:[2,4,5,6,10,11,12,13,14,17,23,24,27,30,32,33,34,39,40,41,44,46,47,48,49,50,52,53,54,55,58,60,61,64,67,68],verif:[],verifi:61,verison:[],versa:25,versatil:29,version:[10,13,17,24,29,32,33,38,39,41,47,48,49,54,55,58,60,68],version_modul:19,versionad:8,versionchang:8,versionmismatchwarn:19,versitil:28,versu:[2,12],vertic:24,vessel:[],vetdisab:53,vfgzshnckl:65,via:[5,8,28,29,33,41,54],viabl:[],vice:25,video:[9,17,33,38,58,62,73],vientian:[],vietnam:[],view:[9,12,19,28,30,53,66,72],viewer:[],vim:32,violat:[22,61],violenc:[39,51],violent:[34,51],violent_arrest_rate_2009:39,violent_arrest_rate_2018:[],violent_tot:[],violin:[],virginia:[],virtu:[],virtual:[5,17],viru:[28,29],visibl:[32,33,37,41,54],vision:[],visit:67,visual:[9,28,33,41,48,49,54,55,63],vm:[26,72],vm_size:26,vmax:[],vmin:[],vnet:[],voila:[11,12,17],volum:[],volumetr:[],volunt:2,vote:[],voter:[],vs:[9,24,32,59],vscode:[],vulner:61,vut:[],w:[10,11,12,14],wa:[7,8,10,12,13,14,17,19,21,22,26,28,30,33,34,36,37,38,39,40,41,44,47,50,51,53,54,55,60,63,65,67,68],wage:[30,40,41,53,54,66],wai:[2,5,6,8,11,13,14,15,17,19,22,23,24,25,27,28,29,30,31,32,33,34,35,37,38,39,41,42,44,46,47,49,50,53,54,58,60,61,63,64,65,67,68,75],wait:[2,17,32,42,47,50,64,75],wait_for:19,walk:[],wall:[28,64],walmart:[],wanna:[],want:[2,4,5,6,8,10,11,12,13,14,21,22,23,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,51,52,53,54,58,60,61,63,65,67,68,69,70,75],war:39,warehous:[],warm:13,warn:[8,17,19,34,35,50,61,66],warn_bad_lin:8,warren:[],was_busi:[],washington:[26,29],wasn:[10,47,50,60],wast:[],watch:[3,9,16,17,24,26,31,38,58,62],watchlist:[],water:[],watson:66,wave:[],wavelength:[],wc:23,wdi:[38,44,45],wdi_data:[],wdi_melt:[],wdi_plot:[],wdi_reshap:[],wdi_small_tidy_2015:32,we:[1,2,4,5,8,10,11,12,13,14,15,17,21,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,58,59,61,63,64,65,67,68,73,75],weak:[2,60],wealth:[40,41,46,48,49,54,55],wealthi:[],wealthier:46,weather:[24,39,64],weather_at_t_plus_on:64,weather_at_time_t:64,weather_data:24,weather_std_dev:64,web:[51,60,61],webpag:32,webscrap:60,websit:[35,45,51,61,63],wed:[],wednesdai:9,weed:[],week:[2,23,24,26,29,34,39,58,63,69],week_2:[],week_3:[],weigh:6,weight:[40,47,49,50],weight_i:40,weight_in_lb:[],weird:[10,24,32,52],weirdli:[],welcom:[9,27,41,54],welfar:[],well:[2,4,5,6,10,12,13,17,19,24,28,32,33,34,37,38,39,40,43,44,46,47,50,51,54,59,61,63,64,67],wen:22,went:[35,36,39],were:[2,5,6,10,14,17,22,23,25,28,29,30,31,33,34,36,37,38,39,40,41,42,44,47,49,50,51,52,53,54,60,61,64,66,68,70,75],weren:[28,60],western:31,wg:[],wgs84:[],what:[1,2,4,5,6,7,8,9,10,11,13,14,19,21,22,24,25,26,27,29,30,31,32,33,34,35,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,60,61,63,65,67,68,70,72,73],whatev:[12,21,22,33,37,39,47,50,68],wheel:17,when:[2,4,5,6,7,8,9,10,11,12,13,14,17,19,21,22,23,24,26,27,28,29,30,31,32,33,34,35,37,38,39,40,41,42,43,44,46,47,48,49,50,51,53,54,55,57,58,59,60,61,63,64,65,67,68,69,70,75],whenev:[13,47,50,61,68],where:[2,3,5,8,10,11,12,17,22,27,28,29,30,31,32,33,34,36,37,39,41,42,46,47,48,49,50,51,52,53,54,55,58,59,60,64,67,68,75],wherea:[],whether:[2,5,8,13,15,25,27,30,34,39,41,44,46,47,50,51,52,53,54,61,64,67],which:[2,4,5,8,10,11,12,13,14,17,19,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,39,40,41,44,46,47,48,49,50,51,52,53,54,55,60,61,63,64,65,67,68,70,75],whistl:51,white:[25,34,40,47,50,51,52],white_nonhisp:[],white_nonhisp_weight:[],white_row:[],whitegrid:[],whitespac:[8,11],who:[2,4,6,13,17,19,24,25,30,31,32,33,34,35,36,39,40,41,44,47,50,51,53,54,58,60,61,63],whoever:5,whole:[4,5,13,17,22],whom:[30,40,53],whose:[2,12,24,25,30,31,47,50,53],why:[1,4,5,9,10,12,13,14,22,25,30,31,33,34,36,38,39,40,41,42,50,52,53,54,57,61,67,68,73],wickham:46,wide:[2,13,46,51,58],widget:[26,61],width:[8,24],wikipedia:64,wild:[],wildcard:[22,28],wildli:[],wildlif:[],wilkinson:[],willing:2,wilson:64,wind:[],window:[5,6,22,24,32,37,64],winner:[],wire:14,wisdom:70,wise:[8,28],wish:[2,5,25],with_traceback:67,withheld:[],within:[2,30,40,43,49,53,64,67],without:[2,4,5,8,9,10,13,14,22,25,27,30,31,32,33,34,35,39,40,41,42,46,47,48,50,51,53,54,55,58,60,67],wizard:19,wkt:[],wl:51,wm:9,wo_zxjlh:17,wolframalpha:[],woman:[],women:[13,25],won:[2,4,5,7,10,11,12,17,19,21,26,28,29,30,32,33,34,39,41,42,46,50,51,53,54,64,67,68],wonder:59,wonderfulli:[],woo:26,woofer:52,word:[17,22,25,26,27,30,31,32,34,38,39,40,41,46,48,49,50,52,53,54,55,58,67,75],word_count:31,wordpress:[],work:[3,5,6,7,9,10,11,12,13,14,15,17,22,23,24,25,26,27,29,30,32,33,34,37,39,40,41,43,44,45,46,47,50,51,53,54,58,59,60,61,63,64,65,67,68,70,72,73,75],workabl:6,workaround:28,worker:[17,19,22,26,28,29],workflow:[9,29,32,33,75],workhors:11,workload:17,workplac:[],workspac:26,world:[2,10,11,12,13,14,17,30,32,39,41,43,44,46,47,48,49,50,53,54,55,58,60,61,64],world_development_ind:32,worldwid:[],worri:[6,19,26,28,29,32,39,47,49,50,57,60,64,68,75],wors:[19,39,47,50],worst:[54,61],worth:[5,19,41,51,54,67],would:[2,4,5,6,8,10,11,12,13,14,17,21,22,27,28,29,30,31,32,33,39,40,41,44,46,47,48,49,50,51,52,53,54,55,60,61,63,64,67,68,70,75],wouldn:[2,6,17,22,39,40,61,64,67,68],wow:17,wrangl:[1,13,17,46,47,50],wrap:42,wrapper:[],wrestl:24,wrinkl:[],writ:[],write:[2,4,8,9,12,17,19,24,25,27,28,29,32,33,34,41,42,43,44,46,48,49,50,51,52,54,55,58,60,61,64,67,70,72],writer:[2,27,70],written:[4,7,11,17,22,27,34,42,46,48,49,51,55,60,61,63,67,68],wrong:[6,13,34,35,39,44,47,50,52,60],wrote:[19,22,31,32,33,43,58,68],wsl:6,wt:[],wtwfzmrkrj:65,www:[3,16,17,32,74],x0:8,x1:8,x27:17,x:[4,5,8,10,12,14,17,21,23,27,28,39,41,42,43,46,47,48,49,50,52,54,55,60,65,66,67,68],x_0:[],x_i:40,x_test:[27,47,50],x_train:[47,50],xarrai:[],xbool:[],xi:60,xint:[],xkcd:[],xl:[],xlab:[],xlabel:[],xlsx:[22,23],xmax:[],xmin:[],xrav:17,xseq:[],xvar:[],xvqunbqdek:65,xxd:22,xxxx:[],xxxxxx:[],xxxxxxxx:[],xz:8,y102szmlszq:[],y103szmlszq:[],y2:[],y:[3,5,17,21,22,23,27,28,39,42,43,47,48,49,50,52,55,60,66,67],y_0:[],y_copi:[],y_i:[41,48,49,54,55],y_test:[47,50],y_train:[47,50],yai:[33,47,50],yamhil:[],yamoussoukro:[],yarr:[],ye:[13,35,38,42,46,47,50,51,61,67,68],yeah:[36,64],year:[2,6,13,17,22,23,24,25,26,28,29,30,33,34,39,40,41,43,46,48,49,51,53,54,55,57,60,61,63,64,70],yelirstlgv:65,yellow:[5,31],yem:[],yemen:[],yera:[],yerushalmi:51,yet:[2,17,28,32,39,47,50,59,60,64,67,75],yield:[2,17,53],yint:[],ykurkgkf5hu:3,ylab:[],ylabel:[],yolo:[],york:[22,28],you:[3,4,5,6,7,8,9,10,11,12,13,14,19,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,64,65,68,69,70,73,75],young:[13,17,30,53],younger:[],younger_gap:[],younger_t:[],youngest:4,youngman:60,your:[2,4,5,9,10,11,12,17,19,22,24,25,26,31,33,35,36,37,39,40,41,42,44,46,48,49,51,52,54,55,57,58,60,61,64,65,67,68,70,72,75],your_arrai:[41,54],your_test_her:[],yourself:[2,17,22,24,26,31,41,47,49,51,54,58,60,61,64,67],yourusernam:[],youth:[],youtub:[3,16],yrav:17,yrimmig:[],yrnatur:[],yuba:[],yup:[10,51,53,67],yvar:[],z:52,zaf:[],zagreb:[],zaira:[35,36],zambia:[],zebra:52,zero:[12,34,40,64],zero_and_two:[],zero_to_on:[],zimbabw:[],zip:[8,22,23,29,37,38,46,47,50],zipcod:47,zogcwfrwhz:65,zone:[],zoo:52,zoom:28,zsh:32,zshrc:[],ztvpeyodwm:65,zxewnrbp:17},titles:["<no title>","<no title>","So You\u2019re Thinking About a PhD","Accessibility Tech for Data Science","Guidelines for Using the Gradescope Autograder","Big Data Strategies","Advice on Buying Computers for Data Science Students","Cheat Sheets","<no title>","Class Schedule","Cleaning Data Types","Fixing Data Value Problems","Editing Specific Locations","Identifying Data Problems","Missing Data","Data Structures","How computers think about numbers and text","Distributed Computing with dask","Distributed Machine Learning with dask-ml","Starting a Cloud Dask Cluster","Exercises","Return Values and Object Mutations","Welcome to the Command Line Basics Exercises!","Advanced Command Line Exercises","Big Data Exercises","Cleaning Data Exercises","Time to Scale!","Coding Your Own Linear Regression Model","Dask DataFrames","Importing ARCOS Data with Dask","Estimating Labor Market Returns to Education","Practicing with the VS Code Debugger","Git and Github, Part 1","Git and Github, Part 2","Groupby and Arrest Data","Index alignment","Index Alignment Exercises, Discussion","Jupyter Lab Exercises","VS Code Exercises","Merging Data to Understand the Relationship between Drug Legalization and Violent Crime","Missing Values Exercises","Measuring Income Inequality","Numpy Exercises","Plotting Exercises, Part 1","Plotting Exercises, Part 2","Build Your Own Chart","Reshaping Exercises","Machine Learning with Scikit-Learn","Measuring Income Equality with the Gini Coefficient","Measuring Income Equality with the Gini Coefficient","Machine Learning with Scikit-Learn","Maternal Smoking and Birth Weight","Variables v Objects Exercises","Estimating Labor Market Returns to Education","Measuring Income Inequality","Measuring Income Equality with the Gini Coefficient","Code-Drawing Template","Welcome to Practical Data Science I!","Git and Github","Hello!","Data Science Languages: Why So Many?","chatGPT and You","More on VS Code","Welcome non-Duke MIDS Students!","Parallel Computing","Parquet","<no title>","Solving Performance Issues","Speed in Python","Plotting with Pandas","Reviewing Code on Github","Solutions","Course Topics and Materials","VS Code for Data Science","<no title>","What is Big Data?"],titleterms:{"0":[32,41,54],"1":[5,22,23,25,30,31,32,34,35,37,39,40,41,42,43,44,48,49,52,53,54,55,68],"10":[22,25,30,34,39,40,41,42,44,53,54],"11":[22,25,30,34,39,40,41,42,44,53,54],"12":[25,30,34,39,41,42,44,53,54],"13":[25,30,39,42,44,53],"14":[30,39,42,53],"15":[30,39,53],"16":[30,39,53],"17":39,"18":39,"19":39,"2":[5,22,23,25,30,31,32,33,34,35,37,39,40,41,42,43,44,48,49,52,53,54,55,68],"20":39,"2018":39,"2020":[],"21":39,"22":[39,61],"23":39,"24":[],"3":[5,22,23,25,30,31,32,34,35,37,39,40,41,42,43,44,48,49,52,53,54,55],"4":[5,22,23,25,30,31,32,34,35,37,39,40,41,42,43,44,48,49,52,53,54,55],"5":[22,23,25,30,31,33,34,35,37,39,40,41,42,43,44,48,49,52,53,54,55],"6":[22,25,30,31,34,35,37,39,40,41,42,43,44,48,49,52,53,54,55],"7":[22,25,30,31,34,35,37,39,40,41,42,43,44,48,49,52,53,54,55],"8":[22,25,30,34,35,39,40,41,42,43,44,48,49,53,54,55],"9":[22,25,30,34,35,39,40,41,42,44,48,49,53,54,55],"boolean":[],"catch":61,"class":[9,59],"default":32,"do":[5,15,17,28,63,67,75],"final":[],"float":[],"function":[11,68],"import":[29,61,64],"long":61,"new":32,"public":[],"return":[21,30,53],A:[19,33,68],AND:[],AT:[],Be:[],By:[],IN:[],IS:[],If:[17,63],In:[2,49,61],Is:[2,58,61],It:[58,61],No:[],Not:2,OF:[],Of:[],On:68,One:[],THE:[],That:61,The:[11,36,49,61,68],There:17,To:2,With:38,about:[2,16,17],absolut:[24,47,49],access:[3,5],account:[],accuraci:[],activ:61,actual:[],ad:[],add:[],adjust:[],advanc:23,advantag:67,advic:6,aesthet:[],after:61,against:38,aggreg:[],ahead:[],aid:3,aka:3,align:[35,36],all:61,alloc:[],altair:[],altairn:38,altern:[],amdahl:64,an:[6,37,64],analysi:39,analyz:[],answer:[],ar:63,arang:[],arco:29,arrai:[],arrest:[34,39],asid:[],ask:6,assign:12,assumpt:34,attribut:[],authent:[],author:[],autograd:[4,25,30,34,39,40,46,48,50,51,53,55],avoid:3,aw:[],awai:[30,35,44,53],awar:[],azcopi:[],azur:[],azureml:[],back:[],backward:[],bad:[],base:42,basic:[3,22],beauti:[],befor:[17,63],below:[],benefit:[],between:39,big:[5,24,75],bigger:[],bin:[],birth:51,bodi:3,both:[],bracket:[],bring:[],broadcast:[],bug:[],bui:6,build:45,cach:[28,75],calcul:[49,61],can:17,capita:[],care:3,carefulli:[],categor:[],caus:[],caution:[],cautionari:[],censu:[],chain:12,challeng:13,chang:32,channel:[],chart:45,chatgpt:61,cheat:7,cheatsheet:[],check:[5,23],choic:43,choos:[],chunk:65,citat:[41,54],clean:[10,11,23,25],cli:[],close:[],cloud:19,cloudprovid:[],cluster:[19,28,29],code:[27,31,38,56,60,62,67,70,73],coeffici:[48,49,55],coil:19,collabor:[],collect:[],color:[],column:[],combin:23,come:36,command:[22,23],comment:59,common:[],commun:[],compar:[39,47,50],complet:[],complex:[],complic:61,compon:[],composit:34,comput:[5,6,16,17,19,28,64],conclus:[],conda:[],confid:[],conflict:33,confus:[],congratul:32,connect:[],consider:[2,60],construct:[],contain:[],content:[],context:[],contrast:[],conveni:[],convert:28,coordin:[],copi:52,cost:19,cours:72,cow:[],cr:[],creat:33,crime:39,crsdeptim:28,cryptographi:[],csv:[],current:6,curricular:2,cython:67,danger:61,dask:[17,18,19,28,29],dask_cloudprovid:19,data:[3,5,6,10,11,13,14,15,24,25,28,29,30,34,39,41,47,50,53,54,57,60,61,73,75],datafram:28,datasauru:43,dataset:[],datatyp:[],deal:[33,75],debug:[],debugg:31,dec:[],deepcopi:52,defens:[],defin:[],definit:28,degre:2,deliber:10,democraci:44,demonstr:[],departur:28,describ:[],descript:[],design:[],detail:[48,49],develop:43,diagnost:39,dictat:3,didn:17,differ:[15,39],digress:[],dimens:[],dimension:[],directori:[],disabl:3,discuss:36,disk:5,distribut:[5,17,18,64],diva:[],divers:[],divis:61,doe:[61,75],doesn:28,don:[42,68],done:[],dot:[],down:[],draw:56,drawback:[],drug:39,duke:63,duplic:[],e:[],each:60,eas:68,easi:[],econom:43,ecosystem:[],edit:[12,23],editor:32,educ:[6,30,53],effect:[],effici:[],elect:[],els:17,emerg:[],encod:[],end:[],engin:61,entri:[],environ:[],environment:[],equal:[48,49,55],ergonom:3,error:[],estim:[30,53],etc:19,evalu:[17,47,50],even:61,exampl:[60,64,67],execis:[42,43],exercis:[5,17,20,22,23,24,25,30,31,34,35,36,37,38,39,40,41,42,43,44,46,48,49,50,51,52,53,54,55,58,63],exist:15,experi:2,experiment:3,explor:22,extens:[],ey:3,facet:[],faculti:2,falsifi:[],fanci:[],fast:68,faster:[],featur:[],few:[],figur:[],file:[22,23,38],find:10,fit:[5,75],fix:11,flag:[],flux:[],fold:[],folder:22,forc:36,form:[],format:[47,50],from:60,fun:[],futur:61,g:[],galleri:[],gdp:[],gener:11,geocod:[],geograph:[],geojson:[],geometr:[],geometri:[],geopanda:[],get:[2,13,17,30,53,58],ggplot2:[],gi:[],gini:[41,48,49,54,55],git:[32,33,58],github:[32,33,58,70],gitignor:33,go:[6,68],good:[],googl:[],got:[],gotcha:[],govern:[],gpu:64,grade:[],gradescop:[4,25,30,34,39,40,46,48,50,51,53,55],grammar:[],grammer:[],graph:17,graphic:[],groceri:[],group:34,groupbi:34,guidelin:4,happen:28,have:[5,68],hazard:[],headach:[],hear:17,hello:59,help:58,here:17,hierarchi:[],high:19,histogram:[],histori:[],homework:[],hour:9,how:[2,5,16,63,75],hub:58,i:[5,17,57,58,75],iceberg:[],identifi:13,illustr:[],iloc:[],imag:[],immut:[],implicit:[],imposs:[],inclus:[],incom:[41,48,49,54,55],index:[35,36,41,54],indic:[],inequ:[41,54],inform:[],instal:28,integ:[],interact:38,interfac:37,intermedi:28,interpret:[],interv:[],intro:[],introspect:13,invis:[],io:19,ipynb:38,isn:61,issu:67,joblib:64,join:[],julia:[60,67],jupyt:[33,37,38],just:[28,61],kei:[3,6],kernel:37,keyboard:3,keyword:[],know:[13,28,30,53],lab:37,label:[],labor:[30,53],languag:60,larg:[],law:64,layer:[],lazi:17,learn:[17,18,34,47,50,58,61,64],leav:61,legal:39,length:[],let:[17,28,29],lf:[33,58],librari:[],life:[],like:[],limit:[4,25,28,30,34,39,40,41,46,48,50,51,53,54,55,64,67],line:[22,23],linear:[27,51],link:9,list:[],littl:[],llm:61,load:29,loc:[],locat:12,loess:[],logic:[],logist:51,look:[],loop:68,lot:[],machin:[18,47,50],magic:17,main:75,make:32,manag:[],mani:60,manipul:28,map:[],mark:[],markdown:[],market:[30,53],match:[],materi:72,matern:51,math:[],matplotlib:[],matric:[],matrix:[],matter:75,me:17,measur:[41,48,49,54,55],medicin:50,member:2,memori:[5,75],merg:[33,39],merit:15,method:[11,13],mice:3,mid:63,minim:5,miss:[14,40],mix:[],ml:18,model:[27,47,50],modifi:[],moment:[],monei:6,monitor:3,more:[5,17,24,25,47,50,62,64],mouseov:[],move:[],mozambiqu:12,much:[],multi:64,multipl:37,mutabl:[],mutat:21,my:5,my_arrai:42,name:[],nano:[],narrow:[],nativ:[],navig:22,nd:[],nearest:[],need:[24,47,49,67],network:[],never:63,next:2,nick:[],non:[10,63],norm:[],notat:[],note:[19,33,42,68],notebook:[33,38],numba:67,number:16,numer:10,numpi:[12,42,63],object:[21,52,68],observ:10,obviat:61,odd:[],offic:9,ok:[61,75],onli:[],onlin:[],oper:6,opioid:[],optim:67,option:[],order:[],organ:22,other:[2,3,13,14,28,63,68],our:12,outlin:[],output:[],overflow:[],overview:[],own:[27,28,29,45],packag:19,pai:5,panda:[12,13,63,69],paral:64,parallel:[64,67],parquet:[28,65],part:[32,33,43,44],particularli:61,pass:[],path:[],pattern:[],pb:19,penalti:5,peopl:68,per:[],perform:[19,67],persist:28,phd:2,pick:[5,60],pipe:[],place:[],plot:[43,44,69],plotnin:[],point:[],pointer:[],poll:[],posit:[24,47,49],practic:[2,24,25,31,47,50,57],pre:39,precis:[],preliminari:[],primarili:[],principl:[],print:[],problem:[3,11,13,36,68],problemat:10,process:64,profil:67,program:[2,3],project:[],promot:[],pull:32,py:38,pypi:67,pyspark:17,python:[12,60,63,68],queri:[],question:[6,59],quick:[],quickli:[],quirk:[],quota:[],r:[51,60],racial:34,radic:15,random:[],raster:[],rate:39,re:2,read:[],real:28,realli:17,recap:[],recurs:[],refer:[],regress:[27,51],regular:[],rel:15,relationship:39,relev:[],relianc:61,remind:[],rent:[],replac:11,replic:37,repo:32,repres:[],request:32,requir:[],research:2,reshap:46,resolv:33,resourc:[],result:[23,28],review:[10,11,12,14,32,70],revis:32,right:2,row:36,rstudio:37,rule:68,run:38,s:[17,28,29,61,64,68,75],sai:17,satellit:[],save:6,scalar:[],scale:26,schedul:[9,28,59],scienc:[3,6,57,60,61,73],scikit:[47,50],seaborn:[],secret:[],see:5,seen:63,select:[],seri:[],set:[],setup:23,shape:[],shapefil:[],share:28,sheet:7,shipment:[],should:58,simpl:[],simultan:[],singl:[],slurm:19,small:[],smoke:51,so:[2,5,15,60,61,75],softwar:[19,61],solut:[24,47,49,71],solv:67,some:[2,28,29],sourc:[],spark:17,spatial:[],spec:6,specif:[4,6,12],speech:3,speed:[67,68],spend:[],split:[47,50],spyder:37,squar:[],ssh:[],stabil:67,start:[19,28,29],stata:60,state:[],statement:[],statsmodel:51,step:5,still:68,storag:[],store:6,str:11,strategi:5,string:11,structur:[15,34],strutur:[],student:[6,63],studi:[],stuff:75,style:[],submiss:[4,25,30,34,39,40,41,46,48,50,51,53,54,55],subscript:[],subset:[],suggest:6,summar:[],summari:[13,47,50],supervis:[],syllabu:59,symmetri:[],syntax:[],system:6,t:[17,28,42,61,68],tab:[],tabl:[],tabular:[],take:[3,30,35,44,53],talon:3,task:17,taught:63,tech:3,tell:17,templat:56,termin:38,terminolog:[],test:34,text:[3,16],them:[],theme:[],theoret:64,theori:[],thi:[17,61,75],thing:28,think:[2,16],thread:64,three:[],through:2,tidi:[],till:5,time:[9,26,28],timestamp:28,titl:[],togeth:[],tool:14,topic:[63,72],track:3,tradeoff:68,train:[2,47,50],transcrib:[],transform:[],transpos:[],trick:[],trim:5,trust:42,tupl:21,tutori:[],two:[],type:[3,10,67],um:17,understand:39,unsur:2,up:[23,36],upgrad:6,upload:[],us:[4,17,28,61,63,65,67,68],user:[],v:52,valid:39,valu:[11,21,40],value_count:14,variabl:52,ve:63,vector:68,version:19,versu:[17,51,52,58,64],view:[23,42],violent:39,virtual:[],vision:3,visual:17,vm:[],vocabulari:[17,64],vocat:2,vs:[31,38,62,73],wait:[],want:[17,24,25,47,50,64],warn:12,wdi:[],we:[],wealth:44,week:[],weight:51,welcom:[22,57,63],what:[15,17,28,58,64,75],when:36,where:61,which:[],why:[15,17,58,60,64,75],wildcard:[],window:38,wish:[],without:[],work:[2,28,38,42],workflow:[47,50],workhors:[],workspac:[],would:[],wrap:[],write:68,you:[2,17,61,63,67],your:[3,6,13,23,27,28,29,30,32,34,38,43,45,47,50,53],yourself:6,zoom:[]}}) \ No newline at end of file diff --git a/docs/html/solutions.html b/docs/html/solutions.html index 6288d512..4078f65a 100644 --- a/docs/html/solutions.html +++ b/docs/html/solutions.html @@ -1 +1 @@ - Solutions — Practical Data Science Skip to content
\ No newline at end of file + Solutions — Practical Data Science Skip to content
\ No newline at end of file diff --git a/docs/html/solutions.ipynb b/docs/html/solutions.ipynb index 60068ff8..a0a62d2d 100644 --- a/docs/html/solutions.ipynb +++ b/docs/html/solutions.ipynb @@ -13,7 +13,7 @@ "source": [ "- [Numpy Vector Solutions](exercises/Solutions_numpy_vectors.ipynb)\n", "- [Pandas Series](exercises/Solutions_series.ipynb)\n", - "- [Pandas DataFrames](exercises/Solutions_dataframe.ipynb)\n" + "- [Pandas DataFrames](exercises/Solutions_dataframes.ipynb)\n" ] } ], diff --git a/source/solutions.ipynb b/source/solutions.ipynb index 60068ff8..a0a62d2d 100644 --- a/source/solutions.ipynb +++ b/source/solutions.ipynb @@ -13,7 +13,7 @@ "source": [ "- [Numpy Vector Solutions](exercises/Solutions_numpy_vectors.ipynb)\n", "- [Pandas Series](exercises/Solutions_series.ipynb)\n", - "- [Pandas DataFrames](exercises/Solutions_dataframe.ipynb)\n" + "- [Pandas DataFrames](exercises/Solutions_dataframes.ipynb)\n" ] } ],