From d4adfc59b689a8b5f87807e6771d3131b83fe546 Mon Sep 17 00:00:00 2001 From: mzettersten Date: Tue, 21 Jan 2025 09:49:24 -0800 Subject: [PATCH] Update documentation --- _sources/notebooks/psychopy_intro.ipynb | 17 +++++------ notebooks/psychopy_intro.html | 40 ++++++++++--------------- searchindex.js | 2 +- 3 files changed, 24 insertions(+), 35 deletions(-) diff --git a/_sources/notebooks/psychopy_intro.ipynb b/_sources/notebooks/psychopy_intro.ipynb index 152fae3..3179215 100644 --- a/_sources/notebooks/psychopy_intro.ipynb +++ b/_sources/notebooks/psychopy_intro.ipynb @@ -66,7 +66,7 @@ " * flip the window to show what was just drawn\n", "* pause for 2 seconds using psychopy's [`core`](https://psychopy.org/api/core.html) functions for controlling timing\n", "\n", - "** Drawing and Flipping Visual Stimuli **\n", + "**Drawing and Flipping Visual Stimuli**\n", "\n", "When you first use `.draw()` to draw a stimulus to the window, it is not displayed right away. Instead, psychopy allows us to draw as many visual stimuli to a particular display as we like, but does not update what is shown to participants until we use `win.flip()` to flip or refresh the window. This might seem overly complicated at first, but it turns out to be a really useful feature because it gives us a lot of precise control over when exactly a particular visual stimulus is shown (basically, drawing is \"slow\", flipping is quick and can be timed to other things).\n", "\n", @@ -125,7 +125,6 @@ "## Collect a Keyboard Response\n", "\n", "Next, let's collect a keyboard response from participants. We want participants to press the key \"b\" if they see a blue circle, and \"o\" if they see an orange circle.\n", - "\n", " ````{tip}\n", " The key functions to accept keyboard input are event.getKeys() and event.waitKeys(). Look at how these functions are defined at the [psychopy API web page](https://psychopy.org/api/event.html) or by typing `help(function name)`, e.g., `help(event.getKeys)` after importing `event`\n", " ```{note}\n", @@ -290,11 +289,11 @@ "Below each circle, we want to show the following instruction:\n", "\"Press b if the circle is blue and o if the circle is orange.\"\n", "\n", - "We can ccomplish this using the [visual.TextStim()](https://psychopy.org/api/visual/textstim.html#psychopy.visual.TextStim) class in psychopy.\n", + "We can accomplish this using the [visual.TextStim()](https://psychopy.org/api/visual/textstim.html#psychopy.visual.TextStim) class in psychopy.\n", "\n", - "```{tip}\n", + " ```{tip}\n", " Notice in the code below that we can draw multiple stimuli to the screen. In fact, we can draw as many as we like! This is really useful for creating layered/ more complex visual displays. Just bear in mind that items are drawn in order (so sometimes an item can obscure another item!).\n", - "```\n" + " ```\n" ] }, { @@ -364,9 +363,9 @@ "source": [ "## Explore on your own!\n", "\n", - "```{tip}\n", + " ```{tip}\n", " Each time you make a change, re-run your code to see if it worked! The more changes you make before testing, the more chances there are for an error to slip in, and then it can get harder to figure out why something isn't working. Running your code frequently after small changes is a good way to get comfortable editing code as you start to get familiar with the concepts and syntax.\n", - "```\n", + " ```\n", "\n", "1. Change the color(s) of the circles.\n", "\n", @@ -383,9 +382,9 @@ "\n", "6. The repository includes some Pokemon images. Can you figure out how to display them?\n", "\n", - "```{tip}\n", + " ```{tip}\n", " Check out the [`visual.ImageStim()`](https://psychopy.org/api/visual/imagestim.html#psychopy.visual.ImageStim) class\n", - "```\n" + " ```\n" ] } ], diff --git a/notebooks/psychopy_intro.html b/notebooks/psychopy_intro.html index 23a5a43..43f41da 100644 --- a/notebooks/psychopy_intro.html +++ b/notebooks/psychopy_intro.html @@ -451,7 +451,7 @@

Intro#<
  • pause for 2 seconds using psychopy’s core functions for controlling timing

  • -

    ** Drawing and Flipping Visual Stimuli **

    +

    Drawing and Flipping Visual Stimuli

    When you first use .draw() to draw a stimulus to the window, it is not displayed right away. Instead, psychopy allows us to draw as many visual stimuli to a particular display as we like, but does not update what is shown to participants until we use win.flip() to flip or refresh the window. This might seem overly complicated at first, but it turns out to be a really useful feature because it gives us a lot of precise control over when exactly a particular visual stimulus is shown (basically, drawing is “slow”, flipping is quick and can be timed to other things).

    One way to visualize this is to imagine that the window has two layers, a front and a back. The front is what the participants see. When we use .draw() to draw a stimulus, we “paint” that stimulus to the back of the window, so it is not visible to participants. Then once we’ve drawn to our heart’s content, we flip the window over so the back is visible to participants.

    @@ -495,15 +495,8 @@

    Show an orange circle after the blue circle

    Collect a Keyboard Response#

    -

    Next, let’s collect a keyboard response from participants. We want participants to press the key “b” if they see a blue circle, and “o” if they see an orange circle.

    -
    ````{tip}
    -The key functions to accept keyboard input are event.getKeys() and event.waitKeys(). Look at how these functions are defined at the [psychopy API web page](https://psychopy.org/api/event.html) or by typing `help(function name)`, e.g., `help(event.getKeys)` after importing `event`
    -```{note}
    -getKeys checks if a certain key has been entered since the last call to getKeys, e.g., if an 's' was pressed, `event.getKeys(['s'])` will become True. event.waitKeys() waits until a certain key (or any key) was pressed. 
    -```
    -````
    -
    -
    +

    Next, let’s collect a keyboard response from participants. We want participants to press the key “b” if they see a blue circle, and “o” if they see an orange circle. +{tip}     The key functions to accept keyboard input are event.getKeys() and event.waitKeys(). Look at how these functions are defined at the [psychopy API web page](https://psychopy.org/api/event.html) or by typing `help(function name)`, e.g., `help(event.getKeys)` after importing `event`     ```{note}     getKeys checks if a certain key has been entered since the last call to getKeys, e.g., if an 's' was pressed, `event.getKeys(['s'])` will become True. event.waitKeys() waits until a certain key (or any key) was pressed.      ```    

    Below, we use event.waitKeys() to pause everything until a participant presses either ‘b’ or ‘o’. WE’ll use this code to replace the core.wait(2) line after each of our stimuli are shown. Then

    @@ -628,13 +621,12 @@

    Add an instructionvisual.TextStim() class in psychopy.

    -
    -

    Tip

    -
    Notice in the code below that we can draw multiple stimuli to the screen. In fact, we can draw as many as we like! This is really useful for creating layered/ more complex visual displays. Just bear in mind that items are drawn in order (so sometimes an item can obscure another item!).
    +

    We can accomplish this using the visual.TextStim() class in psychopy.

    +
    ```{tip}
    +Notice in the code below that we can draw multiple stimuli to the screen. In fact, we can draw as many as we like! This is really useful for creating layered/ more complex visual displays. Just bear in mind that items are drawn in order (so sometimes an item can obscure another item!).
    +```
     
    -
    #create the instruction text
    @@ -689,12 +681,11 @@ 

    Add an instruction

    Explore on your own!#

    -
    -

    Tip

    -
    Each time you make a change, re-run your code to see if it worked! The more changes you make before testing, the more chances there are for an error to slip in, and then it can get harder to figure out why something isn't working. Running your code frequently after small changes is a good way to get comfortable editing code as you start to get familiar with the concepts and syntax.
    +
    ```{tip}
    +Each time you make a change, re-run your code to see if it worked! The more changes you make before testing, the more chances there are for an error to slip in, and then it can get harder to figure out why something isn't working. Running your code frequently after small changes is a good way to get comfortable editing code as you start to get familiar with the concepts and syntax.
    +```
     
    -
    1. Change the color(s) of the circles.

    2. Change the size of the circles.

    3. @@ -706,15 +697,14 @@

      Explore on your own!

      If they respond correctly (e.g., “b” for blue), present text reading: “That was correct!”

    4. If they respond incorrectly (e.g., “o” for blue), present text reading: “Sorry, that was incorrect!”

    5. -
        -
      1. The repository includes some Pokemon images. Can you figure out how to display them?

      2. -
      +
        +
      1. The repository includes some Pokemon images. Can you figure out how to display them?

        +
      2. +
      diff --git a/searchindex.js b/searchindex.js index e16fac6..47da804 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"": [[37, "id1"]], "2.1": [[20, "id1"], [55, "id1"]], "2.2": [[20, "id2"], [55, "id2"]], "2.3": [[20, "id3"], [55, "id3"]], "2.4": [[20, "id4"], [55, "id4"]], "3.1": [[20, "id5"], [55, "id5"]], "3.2": [[20, "id6"], [55, "id6"]], "\nExercises": [[54, "exercises"]], "\nExercises": [[54, "id2"]], "\nExercises": [[54, "id1"]], "A bit more about printing": [[63, "a-bit-more-about-printing"]], "A closer look at the Rocket class": [[45, "a-closer-look-at-the-rocket-class"]], "A common error": [[51, "a-common-error"]], "A common looping error": [[52, "a-common-looping-error"]], "A couple trial-generation activities": [[44, null]], "A detour into runtime considerations": [[56, "a-detour-into-runtime-considerations"]], "A different way of showing a text box": [[29, "a-different-way-of-showing-a-text-box"]], "A function for grabbing screenshots": [[29, "a-function-for-grabbing-screenshots"]], "A function for writing a string (trial info) to a file.": [[29, "a-function-for-writing-a-string-trial-info-to-a-file"]], "A generic function for collecting responses": [[29, "a-generic-function-for-collecting-responses"]], "A joke": [[28, "a-joke"]], "A list of all consonants": [[53, "a-list-of-all-consonants"]], "A module of functions": [[45, "a-module-of-functions"]], "A number of ways to import modules and classes": [[45, "a-number-of-ways-to-import-modules-and-classes"]], "A quick check-in": [[45, "a-quick-check-in"]], "A second example": [[51, "a-second-example"]], "A simple method": [[45, "a-simple-method"]], "A single moving circle": [[45, "a-single-moving-circle"]], "A while loop": [[63, "a-while-loop"]], "Accepting a sequence of arbitrary length": [[54, "accepting-a-sequence-of-arbitrary-length"]], "Accepting an arbitrary number of arguments": [[54, "accepting-an-arbitrary-number-of-arguments"]], "Accepting an arbitrary number of keyword arguments": [[54, "accepting-an-arbitrary-number-of-keyword-arguments"]], "Accepting parameters for the __init__() method": [[45, "accepting-parameters-for-the-init-method"]], "Accepting parameters in a method": [[45, "accepting-parameters-in-a-method"]], "Access comments via the submission\u2019s ID": [[28, "access-comments-via-the-submission-s-id"]], "Access comments via the submission\u2019s URL": [[28, "access-comments-via-the-submission-s-url"]], "Accessing a dictionary": [[46, "accessing-a-dictionary"]], "Accessing a particular row, column, or cell": [[34, "accessing-a-particular-row-column-or-cell"]], "Accessing all elements in a list": [[52, "accessing-all-elements-in-a-list"]], "Accessing comments": [[28, "accessing-comments"]], "Accessing multiple list elements using slices": [[52, "accessing-multiple-list-elements-using-slices"]], "Accessing one item in a list": [[52, "accessing-one-item-in-a-list"]], "Accessing the last items in a list": [[52, "accessing-the-last-items-in-a-list"]], "Accessing top posts": [[28, "accessing-top-posts"]], "Accessing upvotes": [[28, "accessing-upvotes"]], "Accessing user info of hottest post": [[28, "accessing-user-info-of-hottest-post"]], "Add an instruction": [[62, "add-an-instruction"]], "Adding R to Jupyter Notebook": [[58, "adding-r-to-jupyter-notebook"], [59, "adding-r-to-jupyter-notebook"]], "Adding a new method": [[45, "adding-a-new-method"]], "Adding items to a list": [[52, "adding-items-to-a-list"]], "Adding new key-value pairs": [[46, "adding-new-key-value-pairs"]], "Advanced tip": [[29, null]], "Advantages of using functions": [[51, "advantages-of-using-functions"]], "Again with additional commentary": [[28, "again-with-additional-commentary"]], "Amazon Mechanical Turk": [[27, null]], "An important note about nesting": [[46, null]], "Animating a series of images": [[26, "animating-a-series-of-images"]], "Antonyms and entailments": [[56, "antonyms-and-entailments"]], "Append the output to a file (i.e., add to the end of the file)": [[31, "append-the-output-to-a-file-i-e-add-to-the-end-of-the-file"]], "Appending items to the end of a list": [[52, "appending-items-to-the-end-of-a-list"]], "Applying something to multiple columns": [[41, "applying-something-to-multiple-columns"]], "Arithmetic and floating point notation": [[30, "arithmetic-and-floating-point-notation"]], "At home": [[67, "at-home"], [67, "id2"], [67, "id4"], [67, "id6"], [67, "id8"], [67, "id10"], [67, "id12"], [67, "id14"], [67, "id16"], [67, "id18"], [67, "id20"], [67, "id22"]], "Authenticating PRAW to access Reddit": [[28, "authenticating-praw-to-access-reddit"]], "Basic Examples": [[51, "basic-examples"]], "Basic Linux commands": [[31, null]], "Basic Pandas Operations": [[34, null]], "Basic dictionary operations": [[46, "basic-dictionary-operations"]], "Batch file renaming": [[64, "batch-file-renaming"]], "Become a more proficient computer user": [[31, "become-a-more-proficient-computer-user"]], "Billboard 100": [[68, "billboard-100"]], "Bonus": [[7, "bonus"]], "Bonus problem - US vs. UK English": [[5, "bonus-problem-us-vs-uk-english"]], "Bonus: Actor + positionType": [[23, "bonus-actor-positiontype"]], "Borders": [[26, "borders"]], "COGS 219: Programming for Behavioral Sciences": [[1, null]], "Challenge": [[40, null], [52, null], [53, null]], "Challenge!": [[9, null], [29, null]], "Change where a repository pushes to": [[70, "change-where-a-repository-pushes-to"]], "Changing case": [[75, "changing-case"]], "Changing data in a data-frame": [[34, "changing-data-in-a-data-frame"]], "Changing properties of stimuli": [[62, "changing-properties-of-stimuli"]], "Check out a particular commit": [[70, "check-out-a-particular-commit"]], "Check your solutions": [[19, "check-your-solutions"]], "Checking if an item is in a list": [[50, "checking-if-an-item-is-in-a-list"]], "Classes": [[45, null]], "Collect a Keyboard Response": [[62, "collect-a-keyboard-response"]], "Collocations": [[56, "collocations"]], "Combinations and permutations": [[74, "combinations-and-permutations"]], "Combinatorial explosions": [[74, "combinatorial-explosions"]], "Combine (concatenate) two or more files and write the output to another file": [[31, "combine-concatenate-two-or-more-files-and-write-the-output-to-another-file"]], "Combine all files with the word \u2018data\u2019 in the filename and which end on txt.": [[31, "combine-all-files-with-the-word-data-in-the-filename-and-which-end-on-txt"]], "Combine two files and print the results to the screen": [[31, "combine-two-files-and-print-the-results-to-the-screen"]], "Combining data-types": [[75, "combining-data-types"]], "Combining strings (concatenation)": [[75, "combining-strings-concatenation"]], "Combining two images": [[26, "combining-two-images"]], "Commenting your code": [[75, "commenting-your-code"]], "Common List Operations": [[52, "common-list-operations"]], "Concatenate files while getting rid of the first line": [[31, "concatenate-files-while-getting-rid-of-the-first-line"]], "Conclusion: The Power of Classes in Python": [[45, "conclusion-the-power-of-classes-in-python"]], "Concordances": [[56, "concordances"]], "Conditionals": [[65, "conditionals"]], "Configure a few Psychopy settings": [[58, "configure-a-few-psychopy-settings"], [59, "configure-a-few-psychopy-settings"]], "Contents": [[54, "contents"], [73, "contents"]], "Control over proportions": [[74, "control-over-proportions"]], "Convert from polar to rectangular coordinates": [[29, "convert-from-polar-to-rectangular-coordinates"]], "Converting all the elements of the list to a certain type": [[52, "converting-all-the-elements-of-the-list-to-a-certain-type"]], "Converting images from one format to another": [[26, "converting-images-from-one-format-to-another"]], "Copy a file": [[30, "copy-a-file"]], "Copy/move/delete files": [[31, "copy-move-delete-files"]], "Count words/lines/characters in a file": [[31, "count-words-lines-characters-in-a-file"]], "Create a Virtual Environment": [[58, "create-a-virtual-environment"]], "Create a new directory": [[30, "create-a-new-directory"]], "Create a shortcut to Visual Studio code": [[58, "create-a-shortcut-to-visual-studio-code"], [59, "create-a-shortcut-to-visual-studio-code"]], "Create an output file": [[23, "create-an-output-file"], [23, "id1"]], "Create and iterate through a list of dictionaries": [[37, "create-and-iterate-through-a-list-of-dictionaries"]], "Creating lists dynamically": [[52, "creating-lists-dynamically"]], "Cropping": [[26, "cropping"]], "Cutting up a montage of images": [[26, "cutting-up-a-montage-of-images"]], "Debugging practice": [[35, null], [36, null]], "Default argument values": [[54, "default-argument-values"]], "Defining a dictionary": [[46, "defining-a-dictionary"]], "Delete tags": [[70, "delete-tags"]], "Deleting a local tag": [[70, "deleting-a-local-tag"]], "Deleting a remote tag": [[70, "deleting-a-remote-tag"]], "Deleting multiple tags at once": [[70, "deleting-multiple-tags-at-once"]], "Demo of accessing most frequent nouns used in a subreddit\u2019s posts": [[28, "demo-of-accessing-most-frequent-nouns-used-in-a-subreddit-s-posts"]], "Detached HEAD?": [[70, "detached-head"]], "Detect sequences": [[30, "detect-sequences"]], "Dictionaries": [[46, null], [66, "dictionaries"]], "Dictionaries in a dictionary": [[46, "dictionaries-in-a-dictionary"]], "Dictionary Comprehension": [[53, "dictionary-comprehension"]], "Dictionary refresher": [[53, "dictionary-refresher"]], "Dispersion plots": [[56, "dispersion-plots"]], "Display a file": [[31, "display-a-file"]], "Do the same and write the output to a new file": [[31, "do-the-same-and-write-the-output-to-a-new-file"]], "Doing more with each item": [[52, "doing-more-with-each-item"]], "Download CMDer": [[59, "download-cmder"], [59, "id1"]], "Easier way to get a bunch of runtime variables": [[29, "easier-way-to-get-a-bunch-of-runtime-variables"]], "Effect of spatial grouping?": [[23, "effect-of-spatial-grouping"]], "Enumerating a list": [[52, "enumerating-a-list"]], "Equality": [[50, "equality"]], "Example": [[50, "example"]], "Example of using a class in a Psychopy experiment": [[45, "example-of-using-a-class-in-a-psychopy-experiment"]], "Example of using the newspaper package": [[68, "example-of-using-the-newspaper-package"]], "Exercise 0 - Test assignment": [[2, null]], "Exercise 1": [[40, "exercise-1"], [44, "exercise-1"]], "Exercise 1 - Make a square and play with it": [[3, null]], "Exercise 1 parts": [[3, "exercise-1-parts"]], "Exercise 10 - Dragging images to obtain a similarity space": [[25, null]], "Exercise 10 - Natural Language Processing with NLTK": [[5, null]], "Exercise 11 - Practice with object oriented programming": [[7, null]], "Exercise 2": [[40, "exercise-2"], [44, "exercise-2"]], "Exercise 2 parts": [[8, "exercise-2-parts"]], "Exercise 2: The stroop effect": [[8, null]], "Exercise 3 parts": [[9, "exercise-3-parts"]], "Exercise 3: Extending the Stroop effect": [[9, null]], "Exercise 3: Trial generation 1": [[10, null]], "Exercise 4: Modularizing your code + speech recognition!": [[11, null]], "Exercise 5 - Categorizing Facial Expressions": [[23, null]], "Exercise 5 - How well do you know everyone\u2019s names?": [[12, null]], "Exercise 5 - Interactive experiments": [[13, null]], "Exercise 5: A perceptual grouping task": [[14, null]], "Exercise 5b: A more interesting face categorization study": [[23, "exercise-5b-a-more-interesting-face-categorization-study"]], "Exercise 6 - Exploring the Stroop adjustment data": [[15, null]], "Exercise 6 - Exploring the tilt adjustment data": [[16, null]], "Exercise 7 - Exploring the General Social Survey": [[17, null], [18, null]], "Exercise 7a - The Monty Hall Problem": [[19, null]], "Exercise 7b - The Birthday Paradox": [[19, "exercise-7b-the-birthday-paradox"]], "Exercise 8 - More practice with the GSS": [[20, null]], "Exercise 8 - Practice with regular expressions": [[21, null]], "Exercise 9 - Face Morph": [[24, null]], "Exercise 9 - Practice with regular expressions": [[22, null]], "Exercises": [[53, "exercises"]], "Exerting control over chance": [[74, "exerting-control-over-chance"]], "Explore on your own!": [[62, "explore-on-your-own"]], "Extending each block": [[10, "extending-each-block"]], "Extra credit (3 extra pts on Exercise 5)": [[44, "extra-credit-3-extra-pts-on-exercise-5"]], "Extra credit! (1pt)": [[12, null], [12, null]], "Face Mask Example": [[26, "face-mask-example"]], "Fast-forward": [[70, "fast-forward"]], "Favorite Colors": [[54, "favorite-colors"]], "Favorite Movie": [[54, "favorite-movie"]], "Figure out what\u2019s been changed and which files are being staged": [[70, "figure-out-what-s-been-changed-and-which-files-are-being-staged"]], "Find all of the numbers from 1-1000 that are divisible by 9": [[53, "find-all-of-the-numbers-from-1-1000-that-are-divisible-by-9"]], "Finding an element in a list": [[52, "finding-an-element-in-a-list"]], "Finding something in lists and strings": [[30, "finding-something-in-lists-and-strings"]], "Finding the length of a list": [[52, "finding-the-length-of-a-list"]], "Floating-Point numbers (floats)": [[75, "floating-point-numbers-floats"]], "Frequency Distributions": [[56, "frequency-distributions"]], "Games": [[54, "games"]], "General Syntax": [[51, "general-syntax"]], "General terminology": [[45, "general-terminology"]], "Generate 100 random integers in the range 1-10 using one line of code": [[53, "generate-100-random-integers-in-the-range-1-10-using-one-line-of-code"]], "Generate 100 random numbers in the range 0-1 using one line of code": [[53, "generate-100-random-numbers-in-the-range-0-1-using-one-line-of-code"]], "Generating a simple trial list.": [[10, "generating-a-simple-trial-list"]], "Get a particular column from a file": [[31, "get-a-particular-column-from-a-file"]], "Get current temperature in Madison": [[68, "get-current-temperature-in-madison"], [69, "get-current-temperature-in-madison"]], "Get heading names in a Wikipedia article": [[68, "get-heading-names-in-a-wikipedia-article"]], "Get help on a command": [[31, "get-help-on-a-command"]], "Get help on a module": [[30, "get-help-on-a-module"]], "Get mouse position at point of button press.": [[29, "get-mouse-position-at-point-of-button-press"]], "Get temperatures for Lake Mendota": [[69, "get-temperatures-for-lake-mendota"]], "Get the URL of remote branch": [[70, "get-the-url-of-remote-branch"]], "Getting a string\u2019s length and checking if it contains something": [[75, "getting-a-string-s-length-and-checking-if-it-contains-something"]], "Getting group-level variables": [[41, "getting-group-level-variables"]], "Getting help": [[30, "getting-help"]], "Google form": [[29, "google-form"]], "Google this!": [[39, null]], "Grabbing (globbing) all the files in a directory": [[49, "grabbing-globbing-all-the-files-in-a-directory"]], "Greater than": [[50, "greater-than"]], "Greater than or equal to": [[50, "greater-than-or-equal-to"]], "How do I have people respond with a mouse?": [[29, "how-do-i-have-people-respond-with-a-mouse"]], "How do I keep doing something while waiting for a response?": [[29, "how-do-i-keep-doing-something-while-waiting-for-a-response"]], "How many people does it take for the probability to reach 50%?": [[19, "how-many-people-does-it-take-for-the-probability-to-reach-50"]], "How to embed a Qualtrics survey in MTurk and give Qualtrics access to worker id and hit id info": [[27, "how-to-embed-a-qualtrics-survey-in-mturk-and-give-qualtrics-access-to-worker-id-and-hit-id-info"]], "How to flatten a list": [[30, "how-to-flatten-a-list"]], "How to get Qualtrics to generate a completion code": [[27, "how-to-get-qualtrics-to-generate-a-completion-code"]], "How to get Qualtrics to parse variables passed in from MTurk": [[27, "how-to-get-qualtrics-to-parse-variables-passed-in-from-mturk"]], "How to open a file for writing?": [[38, "how-to-open-a-file-for-writing"]], "How to prevent a Turker from participating in a HIT related to one they\u2019ve done before": [[27, "how-to-prevent-a-turker-from-participating-in-a-hit-related-to-one-they-ve-done-before"]], "How to write to a file?": [[38, "how-to-write-to-a-file"]], "If Statements": [[50, null]], "ImageMagick Documentation": [[26, "imagemagick-documentation"]], "ImageMagick basics": [[26, null]], "ImageMagick options": [[26, "imagemagick-options"]], "Importing a custom function and Testing a function that\u2019s in a separate file": [[29, "importing-a-custom-function-and-testing-a-function-that-s-in-a-separate-file"]], "Importing a trial list": [[29, "importing-a-trial-list"]], "In class": [[67, "in-class"], [67, "id3"], [67, "id5"], [67, "id7"], [67, "id9"], [67, "id11"], [67, "id13"], [67, "id15"], [67, "id17"], [67, "id19"], [67, "id21"], [67, "id23"]], "In class:": [[67, "id1"]], "Indivisibility": [[74, "indivisibility"]], "Indivisibility and combinatorial explosions": [[74, "indivisibility-and-combinatorial-explosions"]], "Inequality": [[50, "inequality"]], "Inheritance": [[45, "inheritance"]], "Inserting items into a list": [[52, "inserting-items-into-a-list"]], "Inside and outside the loop": [[52, "inside-and-outside-the-loop"]], "Install Homebrew and PortAudio": [[58, "install-homebrew-and-portaudio"]], "Install R & RStudio Desktop": [[58, "install-r-rstudio-desktop"]], "Install R and RStudio Desktop": [[59, "install-r-and-rstudio-desktop"]], "Install Visual Studio Code": [[58, "install-visual-studio-code"], [59, "install-visual-studio-code"]], "Install a few R packages": [[58, "install-a-few-r-packages"], [59, "install-a-few-r-packages"]], "Install git": [[58, "install-git"], [59, "install-git"]], "Install the Anaconda Distribution of Python": [[58, "install-the-anaconda-distribution-of-python"], [59, "install-the-anaconda-distribution-of-python"]], "Install the necessary Python packages": [[58, "install-the-necessary-python-packages"], [59, "install-the-necessary-python-packages"]], "Installation and setup for Windows": [[58, null], [59, null]], "Installing PRAW": [[28, "installing-praw"]], "Integers": [[75, "integers"]], "Integers in Python 3": [[75, "integers-in-python-3"]], "Intel CPU Instructions": [[58, "intel-cpu-instructions"]], "Intro": [[62, "intro"]], "Intro to NLTK": [[56, null]], "Intro to PsychoPy": [[62, null]], "Introducing Functions": [[51, null]], "Introduction": [[71, "introduction"]], "Introduction to PRAW": [[28, "introduction-to-praw"]], "Iterate through rows and access values in that row": [[34, "iterate-through-rows-and-access-values-in-that-row"]], "Joining a list to make a string": [[52, "joining-a-list-to-make-a-string"]], "Keyword arguments": [[54, "keyword-arguments"]], "Leaving things to chance": [[74, "leaving-things-to-chance"]], "Lemmatization": [[56, "lemmatization"]], "Less than": [[50, "less-than"]], "Less than or equal to": [[50, "less-than-or-equal-to"]], "Let us know that Psychopy installed correctly": [[58, "let-us-know-that-psychopy-installed-correctly"], [59, "let-us-know-that-psychopy-installed-correctly"]], "Let\u2019s warm up them neurons": [[42, null]], "List comprehension": [[53, null]], "List the available branches": [[70, "list-the-available-branches"]], "List/string manipulation exercises": [[40, null]], "Listing files, changing directories, and making new directories": [[31, "listing-files-changing-directories-and-making-new-directories"]], "Lists": [[65, "lists"]], "Lists - the basics": [[52, null]], "Lists and Looping": [[52, "lists-and-looping"]], "Lists and for loops": [[63, "lists-and-for-loops"]], "Lists in a dictionary": [[46, "lists-in-a-dictionary"]], "Lists, list comprehension, and randomization": [[66, "lists-list-comprehension-and-randomization"]], "Loading in data from a CSV file": [[34, "loading-in-data-from-a-csv-file"]], "Logical Tests": [[50, "logical-tests"]], "Looking at solutions": [[70, "looking-at-solutions"]], "Looking up the class of an animal \u2013 quick case study": [[56, "looking-up-the-class-of-an-animal-quick-case-study"]], "Looping through a dictionary in order by keys": [[46, "looping-through-a-dictionary-in-order-by-keys"]], "Looping through a dictionary in order by values": [[46, "looping-through-a-dictionary-in-order-by-values"]], "Looping through all key-value pairs": [[46, "looping-through-all-key-value-pairs"]], "Looping through all keys in a dictionary": [[46, "looping-through-all-keys-in-a-dictionary"]], "Looping through all values in a dictionary": [[46, "looping-through-all-values-in-a-dictionary"]], "Lots of examples and pre-written code out there!": [[68, "lots-of-examples-and-pre-written-code-out-there"]], "MTurk and Qualtrics": [[27, "mturk-and-qualtrics"]], "Mac CPU Instructions": [[58, "mac-cpu-instructions"]], "Make sure the branch is up to date:": [[70, "make-sure-the-branch-is-up-to-date"]], "Making an image montage": [[26, "making-an-image-montage"]], "Making multiple objects from a class": [[45, "making-multiple-objects-from-a-class"]], "Masking portions of an image": [[26, "masking-portions-of-an-image"]], "Merge the main branch into your branch:": [[70, "merge-the-main-branch-into-your-branch"]], "Merging": [[41, "merging"], [70, "merging"]], "Mixing positional and keyword arguments": [[54, "mixing-positional-and-keyword-arguments"]], "Modifying elements in a list": [[52, "modifying-elements-in-a-list"]], "Modifying keys in a dictionary": [[46, "modifying-keys-in-a-dictionary"]], "Modifying values in a dictionary": [[46, "modifying-values-in-a-dictionary"]], "Modularize generateTrials": [[23, "modularize-generatetrials"]], "Modularize the generateTrials code": [[23, "modularize-the-generatetrials-code"]], "Modules and classes": [[45, "modules-and-classes"]], "More Functions": [[54, null]], "More Later": [[51, "more-later"]], "More circles!": [[45, "more-circles"]], "More practice with the GSS": [[55, null]], "More than one passing test": [[50, "more-than-one-passing-test"]], "More weather": [[68, "more-weather"]], "Mutables, Immutables, and Object References": [[43, null]], "N-grams and their frequencies": [[56, "n-grams-and-their-frequencies"]], "NameError": [[75, "nameerror"]], "Naming and defining a list": [[52, "naming-and-defining-a-list"]], "Navigating a command line efficiently": [[31, "navigating-a-command-line-efficiently"]], "Nesting data structures within dictionaries": [[46, "nesting-data-structures-within-dictionaries"]], "No class! Happy Thanksgiving! \ud83e\udd83": [[67, "no-class-happy-thanksgiving"]], "Notes on importing libraries and functions": [[30, "notes-on-importing-libraries-and-functions"]], "Now it\u2019s your turn": [[68, "now-it-s-your-turn"]], "Now test it by running this code:": [[40, "now-test-it-by-running-this-code"]], "Now turn it into a function": [[40, "now-turn-it-into-a-function"]], "Numbers": [[75, "numbers"]], "Option 1 - Visual Recognition Memory and Verbal Lures": [[60, "option-1-visual-recognition-memory-and-verbal-lures"]], "Option 1: Experiment": [[61, "option-1-experiment"]], "Option 2: Data analysis": [[61, "option-2-data-analysis"]], "Option 2: Reinforcement learning and meaningfulness": [[60, "option-2-reinforcement-learning-and-meaningfulness"]], "Other ways of iterating through dictionaries": [[46, "other-ways-of-iterating-through-dictionaries"]], "Output file details": [[60, "output-file-details"], [60, "id1"]], "Output first names only": [[40, "output-first-names-only"]], "Output last names only": [[40, "output-last-names-only"]], "Overlaying images": [[26, "overlaying-images"]], "PRAW": [[28, null]], "Papers describing MTurk methods, demographics, pitfalls, etc.": [[27, "papers-describing-mturk-methods-demographics-pitfalls-etc"]], "Part 1": [[2, "part-1"], [6, null], [12, "part-1"], [13, "part-1"], [15, "part-1"], [16, "part-1"]], "Part 1.": [[9, "part-1"], [11, "part-1"]], "Part 1: Education, political view, and climate change": [[20, "part-1-education-political-view-and-climate-change"], [55, "part-1-education-political-view-and-climate-change"]], "Part 1: Human evolution vs. elephant evolution": [[17, "part-1-human-evolution-vs-elephant-evolution"], [18, "part-1-human-evolution-vs-elephant-evolution"]], "Part 1: Make it red!": [[7, "part-1-make-it-red"]], "Part 1: Who likes which adjectives?": [[5, "part-1-who-likes-which-adjectives"]], "Part 1: Word matching": [[21, "part-1-word-matching"], [22, "part-1-word-matching"]], "Part 2": [[2, "part-2"], [6, "part-2"], [9, "part-2"], [11, "part-2"], [12, "part-2"], [13, "part-2"], [15, "part-2"], [16, "part-2"]], "Part 2: Basic science knowledge, politics, education, and endorsement of human evolution?": [[17, "part-2-basic-science-knowledge-politics-education-and-endorsement-of-human-evolution"], [18, "part-2-basic-science-knowledge-politics-education-and-endorsement-of-human-evolution"]], "Part 2: Increasing robustness": [[5, "part-2-increasing-robustness"]], "Part 2: Make them stop": [[7, "part-2-make-them-stop"]], "Part 2: Match lmno words": [[21, "part-2-match-lmno-words"], [22, "part-2-match-lmno-words"]], "Part 2: Science knowledge and its correlates": [[20, "part-2-science-knowledge-and-its-correlates"], [55, "part-2-science-knowledge-and-its-correlates"]], "Part 3": [[6, "part-3"], [9, "part-3"], [11, "part-3"], [12, "part-3"], [13, "part-3"], [15, "part-3"], [16, "part-3"], [20, "part-3"], [55, "part-3"]], "Part 3 - Comparing verb lemmas": [[5, "part-3-comparing-verb-lemmas"]], "Part 3 - Fix weird spacing": [[22, "part-3-fix-weird-spacing"]], "Part 3 Make it drop!": [[7, "part-3-make-it-drop"]], "Part 3: Hyphenated Words": [[21, "part-3-hyphenated-words"]], "Part 3: Sexual frequency": [[18, "part-3-sexual-frequency"]], "Part 3: Work and Happiness": [[17, "part-3-work-and-happiness"]], "Part 4": [[9, "part-4"], [11, "part-4"], [12, "part-4"], [13, "part-4"], [15, "part-4"], [16, "part-4"]], "Part 4: Email validation": [[21, "part-4-email-validation"]], "Part 4: Make it drop\u2026. more naturally": [[7, "part-4-make-it-drop-more-naturally"]], "Part 4: Match phone numbers": [[22, "part-4-match-phone-numbers"]], "Part 4: Tax priorities": [[17, "part-4-tax-priorities"], [18, "part-4-tax-priorities"]], "Part 5": [[11, "part-5"], [16, "part-5"]], "Part 5 - Bonus - Fix weird spacing": [[21, "part-5-bonus-fix-weird-spacing"]], "Part 5 - Graphing!": [[15, "part-5-graphing"]], "Part 5: Astrology: beliefs, hobbies, and personalities": [[17, "part-5-astrology-beliefs-hobbies-and-personalities"], [18, "part-5-astrology-beliefs-hobbies-and-personalities"]], "Part 5: Email validation": [[22, "part-5-email-validation"]], "Part 6 - extra credit": [[16, "part-6-extra-credit"]], "Part 6: Redacting text": [[22, "part-6-redacting-text"]], "Part a. (3 pts)": [[5, "part-a-3-pts"]], "Part b. (3 pts)": [[5, "part-b-3-pts"]], "Phones": [[54, "phones"]], "Playing around with dictionaries": [[37, null]], "Pop up an error box": [[29, "pop-up-an-error-box"]], "Popping items from a list": [[52, "popping-items-from-a-list"]], "Popping up a box to get user input e.g., to specify a condition name or subject code at runtime": [[29, "popping-up-a-box-to-get-user-input-e-g-to-specify-a-condition-name-or-subject-code-at-runtime"]], "Popping up a web-based survey from within your python script": [[29, "popping-up-a-web-based-survey-from-within-your-python-script"]], "Positional Arguments": [[54, "positional-arguments"]], "Practice 1": [[36, "practice-1"]], "Practice 2": [[36, "practice-2"]], "Practice with operations on dictionary values": [[37, "practice-with-operations-on-dictionary-values"]], "Practice writing to files": [[38, "practice-writing-to-files"]], "Preloading files": [[49, null]], "Preloading image and audio files": [[29, "preloading-image-and-audio-files"]], "Preloading images into memory": [[49, "preloading-images-into-memory"]], "Primer on conditionals (if statements)": [[63, "primer-on-conditionals-if-statements"]], "Primer on writing files": [[38, null]], "Prior to first class": [[67, "prior-to-first-class"]], "Project 1": [[60, null]], "Project instructions": [[61, null]], "Project submission info": [[67, "project-submission-info"]], "Projects in Python": [[71, "projects-in-python"]], "Prompt for the subject code": [[23, "prompt-for-the-subject-code"]], "Psychopy reference": [[29, null]], "Push the updated feature branch back to Github": [[70, "push-the-updated-feature-branch-back-to-github"]], "Python Basics": [[71, "python-basics"]], "Python basics": [[30, null]], "Python essentials to get you started": [[63, null]], "Python mini tutorials and tips": [[30, "python-mini-tutorials-and-tips"]], "Qualtrics forms": [[29, "qualtrics-forms"]], "Question": [[51, null]], "Quick references": [[30, "quick-references"]], "Randomizing": [[10, "randomizing"]], "Randomizing within blocks": [[10, "randomizing-within-blocks"]], "Reference, mutability, and copying": [[30, "reference-mutability-and-copying"]], "Refining the Rocket class": [[45, "refining-the-rocket-class"]], "Regular expressions": [[64, null]], "Removing Items from a List": [[52, "removing-items-from-a-list"]], "Removing items by position": [[52, "removing-items-by-position"]], "Removing items by value": [[52, "removing-items-by-value"]], "Removing key-value pairs": [[46, "removing-key-value-pairs"]], "Removing stop words": [[56, "removing-stop-words"]], "Rename files": [[31, "rename-files"]], "Repetition": [[10, "repetition"]], "Resizing images": [[26, "resizing-images"]], "Return a list of words longer than 3 letters.": [[53, "return-a-list-of-words-longer-than-3-letters"]], "Returning a Value": [[51, "returning-a-value"]], "Reversing a list": [[52, "reversing-a-list"]], "Reversing a list using slices": [[52, "reversing-a-list-using-slices"]], "Review of fundamentals A": [[65, null]], "Review of fundamentals B": [[66, null]], "Review: Object-Oriented terminology": [[45, "review-object-oriented-terminology"]], "Rewind": [[70, "rewind"]], "Run yourself on the task!": [[23, "run-yourself-on-the-task"]], "Running a linear model on each grouping factor": [[41, "running-a-linear-model-on-each-grouping-factor"]], "Saving state of a variable and reloading it": [[29, "saving-state-of-a-variable-and-reloading-it"]], "Search and replace": [[64, "search-and-replace"]], "See the git log": [[70, "see-the-git-log"]], "Send an output of one command to another command": [[31, "send-an-output-of-one-command-to-another-command"]], "Setting the random seed": [[74, "setting-the-random-seed"]], "Setting up our programming environment": [[71, "setting-up-our-programming-environment"]], "Shaving": [[26, "shaving"]], "Show an orange circle after the blue circle": [[62, "show-an-orange-circle-after-the-blue-circle"]], "Show text until mouse click": [[29, "show-text-until-mouse-click"]], "Shuffle a list slice in place": [[30, "shuffle-a-list-slice-in-place"]], "Simple classes": [[30, "simple-classes"]], "Simple if statements": [[50, "simple-if-statements"]], "Simple operations": [[65, "simple-operations"]], "Simple scraping with BeautifulSoup!": [[69, null]], "Single and double quotes": [[75, "single-and-double-quotes"]], "Some helper functions for grabbing runtime variables with a GUI box": [[29, "some-helper-functions-for-grabbing-runtime-variables-with-a-gui-box"]], "Some ins and outs of trial generation": [[74, null]], "Some miscellanous tips": [[31, "some-miscellanous-tips"]], "Some simple generator functions": [[30, "some-simple-generator-functions"]], "Sorting a List": [[52, "sorting-a-list"]], "Sorting a numerical list": [[52, "sorting-a-numerical-list"]], "Sorting by values: the compact and efficient solution": [[46, "sorting-by-values-the-compact-and-efficient-solution"]], "Sorting by values: the verbose and inefficient solution": [[46, "sorting-by-values-the-verbose-and-inefficient-solution"]], "Splitting a string to make a list": [[52, "splitting-a-string-to-make-a-list"]], "Sports Teams": [[54, "sports-teams"]], "Staircasing": [[29, "staircasing"]], "Step 1: Accept an assignment": [[70, "step-1-accept-an-assignment"]], "Step 2: Do the assignment": [[70, "step-2-do-the-assignment"]], "Step 3: Submit each part of the assignment": [[70, "step-3-submit-each-part-of-the-assignment"]], "Stimulus details": [[60, "stimulus-details"]], "Storing a single class in a module": [[45, "storing-a-single-class-in-a-module"]], "Storing data frames in a CSV file": [[34, "storing-data-frames-in-a-csv-file"]], "Storing multiple classes in a module": [[45, "storing-multiple-classes-in-a-module"]], "Strings": [[75, "strings"]], "Stripping whitespace": [[75, "stripping-whitespace"]], "Study phase details": [[60, "study-phase-details"]], "Submitting assignments": [[70, null]], "Switch to a particular branch": [[70, "switch-to-a-particular-branch"]], "Syllabus": [[71, null]], "TODO": [[0, null]], "Test PsychoPy": [[58, "test-psychopy"], [59, "test-psychopy"]], "Test phase details": [[60, "test-phase-details"]], "Test the Anaconda Python install": [[58, "test-the-anaconda-python-install"], [59, "test-the-anaconda-python-install"]], "Testing": [[73, null]], "Testing whether an item is in a list": [[52, "testing-whether-an-item-is-in-a-list"]], "The SpaceShuttle class": [[45, "the-spaceshuttle-class"]], "The __init__() method": [[45, "the-init-method"]], "The idea": [[53, "the-idea"]], "The if-elif\u2026else chain": [[50, "the-if-elif-else-chain"]], "The syntax": [[53, "the-syntax"]], "Things to keep in mind": [[60, "things-to-keep-in-mind"]], "Tips": [[70, "tips"]], "To find out the location of the source files that are being loaded when you import a library:": [[30, "to-find-out-the-location-of-the-source-files-that-are-being-loaded-when-you-import-a-library"]], "To find out the version of the library you\u2019ve imported:": [[30, "to-find-out-the-version-of-the-library-you-ve-imported"]], "Trimming borders": [[26, "trimming-borders"]], "True and False values": [[50, "true-and-false-values"]], "TurkGate (a real solution)": [[27, "turkgate-a-real-solution"]], "TurkGate Manager (an extension of TurkGate)": [[27, "turkgate-manager-an-extension-of-turkgate"]], "Tying up some loose ends": [[41, null]], "Undo a push": [[70, "undo-a-push"]], "Use Exceptions": [[30, "use-exceptions"]], "Use a mouse for responding": [[23, "use-a-mouse-for-responding"]], "Use as a filter": [[64, "use-as-a-filter"]], "Use cat and tail together:": [[31, "use-cat-and-tail-together"]], "Use in place of conditionals": [[64, "use-in-place-of-conditionals"]], "Use sets": [[30, "use-sets"]], "Use tab completion": [[31, "use-tab-completion"]], "Using NLTK to extract info from comments": [[28, "using-nltk-to-extract-info-from-comments"]], "Using a dictionary as a look-up table": [[37, "using-a-dictionary-as-a-look-up-table"]], "Using a webcam in psychopy": [[29, "using-a-webcam-in-psychopy"]], "Using dictionaries in experiment design: some examples": [[47, null]], "Using for-loops to present trial lists": [[62, "using-for-loops-to-present-trial-lists"]], "Using list comprehension": [[30, "using-list-comprehension"]], "Variable naming rules": [[75, "variable-naming-rules"]], "Variable types and assignments": [[63, "variable-types-and-assignments"]], "Variables": [[75, "variables"]], "Variables, Strings, and Numbers": [[75, null]], "Various tutorials and software for online experiments": [[27, "various-tutorials-and-software-for-online-experiments"]], "Viewing solutions": [[76, null]], "Wait for click on a picture": [[29, "wait-for-click-on-a-picture"]], "Webscraping with Beautiful Soup": [[68, null]], "Week 1 (Sept 7): Getting oriented": [[67, "week-1-sept-7-getting-oriented"]], "Week 10 (Nov 9th)": [[67, "week-10-nov-9th"]], "Week 11 (Nov 16th)": [[67, "week-11-nov-16th"]], "Week 12 (Nov 23rd)": [[67, "week-12-nov-23rd"]], "Week 13 (Nov 30th)": [[67, "week-13-nov-30th"]], "Week 14 (Dec 7th)": [[67, "week-14-dec-7th"]], "Week 2 (Sept 14): Programming basics": [[67, "week-2-sept-14-programming-basics"]], "Week 3 (Sept 21)": [[67, "week-3-sept-21"]], "Week 4 (Sept 28)": [[67, "week-4-sept-28"]], "Week 5 (Oct 5)": [[67, "week-5-oct-5"]], "Week 6 (Oct 12)": [[67, "week-6-oct-12"]], "Week 7 (Oct 19)": [[67, "week-7-oct-19"]], "Week 8 (Oct 26th)": [[67, "week-8-oct-26th"]], "Week 9 (Nov 2nd)": [[67, "week-9-nov-2nd"]], "Week by week schedule": [[67, null]], "What are functions?": [[51, "what-are-functions"]], "What are they?": [[46, "what-are-they"]], "What happens in this program?": [[50, "what-happens-in-this-program"]], "What is an if statement?": [[50, "what-is-an-if-statement"]], "What is the probability that in a room of n people, at least two share a birthday?": [[19, "what-is-the-probability-that-in-a-room-of-n-people-at-least-two-share-a-birthday"]], "What makes a good comment?": [[75, "what-makes-a-good-comment"]], "What\u2019s a list?": [[52, "what-s-a-list"]], "What\u2019s the difference between a list and a dictionary?": [[46, "what-s-the-difference-between-a-list-and-a-dictionary"]], "What\u2019s with all the repetition?": [[52, null]], "When should you write comments?": [[75, "when-should-you-write-comments"]], "Whitespace": [[50, "whitespace"], [75, "whitespace"]], "Why classes?": [[45, "why-classes"]], "Why do we use Pandas?": [[34, "why-do-we-use-pandas"]], "With Qualtrics (a workaround rather than a solution)": [[27, "with-qualtrics-a-workaround-rather-than-a-solution"]], "WordNet": [[56, "wordnet"]], "Working with PRAW": [[28, "working-with-praw"]], "World Languages": [[54, "world-languages"]], "Writing to a file, safely": [[30, "writing-to-a-file-safely"]], "Zen of Python": [[75, "zen-of-python"]], "from module_name import *": [[45, "from-module-name-import"]], "if-elif\u2026else chains": [[50, "if-elif-else-chains"]], "if-else statements": [[50, "if-else-statements"]], "import module_name": [[45, "import-module-name"]], "import module_name as local_module_name": [[45, "import-module-name-as-local-module-name"]], "sorted() vs. sort()": [[52, "sorted-vs-sort"]]}, "docnames": ["TODO", "index", "notebooks/Exercise0-test", "notebooks/Exercise1-square", "notebooks/Exercise10-FiniteState", "notebooks/Exercise10-nltk", "notebooks/Exercise11-FiniteState", "notebooks/Exercise11-oop_circles", "notebooks/Exercise2-stroop", "notebooks/Exercise3-extended-stroop", "notebooks/Exercise3-trials", "notebooks/Exercise4-more_modularized_stroop", "notebooks/Exercise5-face-search", "notebooks/Exercise5-interactive", "notebooks/Exercise6-grouping", "notebooks/Exercise6-stroop_analysis", "notebooks/Exercise6-tilt_analysis", "notebooks/Exercise7-gss-wrangling", "notebooks/Exercise7-gss-wrangling_2022", "notebooks/Exercise7-simulations", "notebooks/Exercise8-more-gss-wrangling", "notebooks/Exercise8-regexps", "notebooks/Exercise9-regexps", "notebooks/ExerciseX-categorizingExpressions", "notebooks/ExerciseX-faceMorph", "notebooks/ExerciseX-imageDrag", "notebooks/ImageMagick", "notebooks/MTurk_reference", "notebooks/PRAW_demo", "notebooks/Psychopy_reference", "notebooks/Python_reference", "notebooks/Shell_reference", "notebooks/Tips", "notebooks/Untitled", "notebooks/activity_basic_pandas_operations", "notebooks/activity_debugging", "notebooks/activity_debugging_experiments", "notebooks/activity_dictionaries", "notebooks/activity_file_writing", "notebooks/activity_google_this", "notebooks/activity_list_manip_vowels_1", "notebooks/activity_merge_sac", "notebooks/activity_print_pyramids", "notebooks/activity_reference_vs_value", "notebooks/activity_trial_generation", "notebooks/classes", "notebooks/dictionaries", "notebooks/dictionaries_exp_design_examples", "notebooks/fibonacci", "notebooks/globbing_files", "notebooks/if_statements", "notebooks/introducing_functions", "notebooks/list_basics", "notebooks/list_comprehension", "notebooks/more_functions", "notebooks/more_gss_practice", "notebooks/nltk_demo", "notebooks/palindromes_fibonacci", "notebooks/programming_environment_osx", "notebooks/programming_environment_windows", "notebooks/project_1", "notebooks/project_2023", "notebooks/psychopy_intro", "notebooks/python_basics", "notebooks/regexp", "notebooks/review_of_fundamentals_a", "notebooks/review_of_fundamentals_b", "notebooks/schedule", "notebooks/scraping", "notebooks/simple_scraping", "notebooks/submitting_assignments", "notebooks/syllabus", "notebooks/test_r_kernel", "notebooks/testing", "notebooks/trial_generation", "notebooks/var_string_num", "notebooks/viewing_solutions"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1}, "filenames": ["TODO.md", "index.md", "notebooks/Exercise0-test.ipynb", "notebooks/Exercise1-square.ipynb", "notebooks/Exercise10-FiniteState.ipynb", "notebooks/Exercise10-nltk.ipynb", "notebooks/Exercise11-FiniteState.ipynb", "notebooks/Exercise11-oop_circles.ipynb", "notebooks/Exercise2-stroop.ipynb", "notebooks/Exercise3-extended-stroop.ipynb", "notebooks/Exercise3-trials.ipynb", "notebooks/Exercise4-more_modularized_stroop.ipynb", "notebooks/Exercise5-face-search.ipynb", "notebooks/Exercise5-interactive.ipynb", "notebooks/Exercise6-grouping.ipynb", "notebooks/Exercise6-stroop_analysis.ipynb", "notebooks/Exercise6-tilt_analysis.ipynb", "notebooks/Exercise7-gss-wrangling.ipynb", "notebooks/Exercise7-gss-wrangling_2022.ipynb", "notebooks/Exercise7-simulations.ipynb", "notebooks/Exercise8-more-gss-wrangling.ipynb", "notebooks/Exercise8-regexps.ipynb", "notebooks/Exercise9-regexps.ipynb", "notebooks/ExerciseX-categorizingExpressions.ipynb", "notebooks/ExerciseX-faceMorph.ipynb", "notebooks/ExerciseX-imageDrag.ipynb", "notebooks/ImageMagick.ipynb", "notebooks/MTurk_reference.ipynb", "notebooks/PRAW_demo.ipynb", "notebooks/Psychopy_reference.ipynb", "notebooks/Python_reference.ipynb", "notebooks/Shell_reference.ipynb", "notebooks/Tips.ipynb", "notebooks/Untitled.ipynb", "notebooks/activity_basic_pandas_operations.ipynb", "notebooks/activity_debugging.ipynb", "notebooks/activity_debugging_experiments.ipynb", "notebooks/activity_dictionaries.ipynb", "notebooks/activity_file_writing.ipynb", "notebooks/activity_google_this.ipynb", "notebooks/activity_list_manip_vowels_1.ipynb", "notebooks/activity_merge_sac.ipynb", "notebooks/activity_print_pyramids.ipynb", "notebooks/activity_reference_vs_value.ipynb", "notebooks/activity_trial_generation.ipynb", "notebooks/classes.ipynb", "notebooks/dictionaries.ipynb", "notebooks/dictionaries_exp_design_examples.ipynb", "notebooks/fibonacci.ipynb", "notebooks/globbing_files.ipynb", "notebooks/if_statements.ipynb", "notebooks/introducing_functions.ipynb", "notebooks/list_basics.ipynb", "notebooks/list_comprehension.ipynb", "notebooks/more_functions.ipynb", "notebooks/more_gss_practice.ipynb", "notebooks/nltk_demo.ipynb", "notebooks/palindromes_fibonacci.ipynb", "notebooks/programming_environment_osx.ipynb", "notebooks/programming_environment_windows.ipynb", "notebooks/project_1.ipynb", "notebooks/project_2023.ipynb", "notebooks/psychopy_intro.ipynb", "notebooks/python_basics.ipynb", "notebooks/regexp.ipynb", "notebooks/review_of_fundamentals_a.ipynb", "notebooks/review_of_fundamentals_b.ipynb", "notebooks/schedule.ipynb", "notebooks/scraping.ipynb", "notebooks/simple_scraping.ipynb", "notebooks/submitting_assignments.ipynb", "notebooks/syllabus.ipynb", "notebooks/test_r_kernel.ipynb", "notebooks/testing.ipynb", "notebooks/trial_generation.ipynb", "notebooks/var_string_num.ipynb", "notebooks/viewing_solutions.ipynb"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 26, 27, 30, 31, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 49, 50, 51, 53, 54, 56, 58, 59, 60, 62, 63, 64, 65, 67, 69, 74], "0": [6, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 29, 30, 34, 35, 36, 37, 41, 42, 45, 46, 47, 48, 49, 50, 51, 52, 54, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 68, 69, 70, 74, 75], "00": [28, 64, 68], "000": 28, "000000": [13, 41, 49], "0000000": 41, "000000014": 41, "001": 24, "001m": [23, 36], "001ma_90_60": 49, "001me_90_60": 49, "001mf_90_60": 49, "001mn_90_60": 49, "001mt_90_60": 49, "001mu_90_60": 49, "001mw_90_60": 49, "001w": [23, 36], "001wa_90_60": 49, "001we_90_60": 49, "001wf_90_60": 49, "001wn_90_60": 49, "001wt_90_60": 49, "001wu_90_60": 49, "001ww_90_60": 49, "002m": [23, 36], "002ma_90_60": 49, "002me_90_60": 49, "002mf_90_60": 49, "002mn_90_60": 49, "002mt_90_60": 49, "002mu_90_60": 49, "002mw_90_60": 49, "002w": [23, 36], "002wa_90_60": 49, "002we_90_60": 49, "002wf_90_60": 49, "002wn_90_60": 49, "002wt_90_60": 49, "002wu_90_60": 49, "002ww_90_60": 49, "003m": [23, 36], "003ma_90_60": 49, "003me_90_60": 49, "003mf_90_60": 49, "003mn_90_60": 49, "003mt_90_60": 49, "003mu_90_60": 49, "003mw_90_60": 49, "003w": [23, 36], "003wa_90_60": 49, "003we_90_60": 49, "003wf_90_60": 49, "003wn_90_60": 49, "003wt_90_60": 49, "003wu_90_60": 49, "003ww_90_60": 49, "004m": [23, 36], "004ma_90_60": 49, "004me_90_60": 49, "004mf_90_60": 49, "004mn_90_60": 49, "004mt_90_60": 49, "004mu_90_60": 49, "004mw_90_60": 49, "004w": [23, 36], "004wa_90_60": 49, "004we_90_60": 49, "004wf_90_60": 49, "004wn_90_60": 49, "004wt_90_60": 49, "004wu_90_60": 49, "004ww_90_60": 49, "005m": [23, 36], "005ma_90_60": 49, "005me_90_60": 49, "005mf_90_60": 49, "005mn_90_60": 49, "005mt_90_60": 49, "005mu_90_60": 49, "005mw_90_60": 49, "005w": [23, 36], "005wa_90_60": 49, "005we_90_60": 49, "005wf_90_60": 49, "005wn_90_60": [23, 49], "005wt_90_60": 49, "005wu_90_60": 49, "005ww_90_60": 49, "0061": 41, "0063": 41, "00742": 41, "008": 45, "01": [28, 41, 56, 68], "01234567": 30, "0123456789": 30, "0123456789abcdefabcdef": 30, "0123456789abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstu": 30, "014625": 74, "017": 7, "017778114": 41, "02": [28, 41, 45, 56], "02011537966836": 41, "020141585198305667": 53, "021458484681543433": 53, "02152156913266834": 53, "024070833648734302": 53, "02469514": 41, "025425": 74, "026": 41, "02i": 56, "03": [41, 52, 56], "04": [28, 49, 56], "04215517442110839": 53, "04583147": 41, "05": [13, 28, 45, 56], "05762": 41, "05965910": 41, "05971806742805463": 53, "06": [41, 56, 58, 59], "06042517": 41, "06066853": 41, "06400825379612352": 53, "069778e": 41, "07": [0, 28], "075294e": 41, "07959125": 41, "08": [28, 56], "08272697951195707": 53, "0836676411": 41, "08813079460739": 41, "09": [13, 28, 56], "09108953": 41, "09302098": 41, "09391538": 41, "09507483": 41, "09556573": 41, "09599371": 41, "0th": 52, "0x": 30, "0x115550740": 30, "0x7f98320b2990": 49, "0x7f98320e8ed0": 49, "0x7f98326681b0": 49, "0x7f9832681600": 49, "0x7fa95e0d1ac0": 45, "0x7fa95e0d1d00": 45, "0x7fa95e213550": 45, "0x7fa95e213640": 45, "0x7fa95e213cd0": 45, "0x7fb1a6fdb8e0": 68, "0x7fd6e32ca600": 13, "0x7fd6e4c42890": 13, "0x7fd6e4c43450": 13, "0x7fd6e4c48d00": 13, "0x7fedd3b03b20": 45, "0x7fedd45e8610": 45, "0x7fedd45e8820": 45, "0x7fedd45e8bb0": 45, "0x7fedd45e8d60": 45, "0x7fedd45e8e50": 45, "0x7fedd45e8eb0": 45, "0x7fedd45e8f10": 45, "1": [8, 14, 19, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 37, 38, 41, 42, 45, 46, 47, 48, 50, 51, 52, 54, 56, 57, 62, 63, 64, 65, 66, 68, 69, 74, 75], "10": [3, 6, 12, 13, 16, 23, 26, 27, 28, 29, 30, 31, 34, 35, 37, 41, 45, 48, 49, 52, 54, 56, 57, 63, 64, 65, 66, 68, 74, 75], "100": [3, 6, 9, 14, 15, 17, 23, 25, 34, 36, 45, 46, 48, 56, 57, 60, 62, 65, 66, 74], "1000": [8, 19, 28, 46, 48, 49, 56, 57, 60, 68], "1001": 53, "1007": 41, "101": [25, 74], "1010": 15, "101010": 65, "1018": 15, "102": [18, 74], "102334155": 57, "1024": [6, 23], "103": 74, "104": [25, 74], "10413643": 41, "105": 74, "106": [25, 74], "10610209857723": 57, "107": 64, "108": 53, "1081168": 64, "10946": 57, "10994432111406482": 53, "10min": 24, "10x40": 26, "11": [12, 13, 16, 28, 30, 34, 35, 37, 41, 45, 46, 52, 53, 54, 56, 57, 60, 68, 74], "1100000": 28, "1100087778366101931": 57, "11134": 41, "112": 49, "11235": 41, "113": [49, 56], "1134": 41, "1134903170": 57, "11393": 41, "1142": 28, "11488": 41, "116": 49, "116492449": 41, "11660": 41, "117": 53, "1175698": 41, "117669030460994": 57, "118": 49, "118562449": 41, "119": 30, "11943933212685554": 53, "119960": 56, "11abdominal13245": 41, "12": [13, 18, 26, 28, 34, 42, 46, 51, 52, 54, 56, 57, 58, 59, 60, 65, 66, 68, 74, 75], "120": [24, 35, 46, 67], "1202": 56, "120932449": 41, "121": 22, "12133007": 41, "121393": 57, "12158601": 41, "121742449": 41, "121892449": 41, "12200160415121876738": 57, "1225": 74, "123": [22, 42, 56], "12324": 40, "1234": [22, 42], "12345": [42, 48, 57], "123582449": 41, "12364895": 41, "124492449": 41, "125": [6, 26, 53], "1253756": 50, "12586269025": 57, "126": 53, "127": 25, "12849": 41, "128x156": 26, "12902643273947778": 53, "13": [9, 13, 28, 30, 34, 41, 52, 53, 54, 56, 57, 58, 59, 65, 66, 68, 74], "1304969544928657": 57, "13055664": 41, "131162449": 41, "13194126": 41, "132452449": 41, "13335": 41, "133352449": 41, "13404406": 41, "1346269": 57, "135": [53, 74], "135301852344706746049": 57, "13668671": 41, "1368": 56, "1378301": 41, "138162449": 41, "139": 30, "139583862445": 57, "14": [13, 28, 52, 54, 56, 57, 66, 68, 74, 75], "142": 41, "142747125": 29, "1439": 64, "144": [51, 53, 57], "14472334024676221": 57, "14481538": 41, "14568881": 41, "1466": 56, "147": 30, "14780": 41, "148": 28, "14930352": 57, "14_1": 30, "15": [3, 5, 8, 14, 28, 30, 41, 45, 52, 54, 56, 57, 63, 66, 68, 74, 75], "150": [25, 30, 45], "152": [25, 30], "153": 53, "154": 25, "15413427": 41, "1548008755920": 57, "155": 30, "15735455": 41, "15740140": 41, "1597": 57, "15th": 29, "16": [16, 25, 28, 29, 30, 35, 41, 52, 53, 54, 56, 57, 58, 59, 68, 74], "160": 30, "160500643816367088": 57, "161": 25, "16189504": 41, "162": [25, 53], "163": 25, "164": 25, "165": [25, 30], "16537552": 41, "165580141": 57, "16625455": 41, "16818305080458973": 53, "16915944": 41, "1695": 56, "16x9": 68, "17": [7, 30, 52, 54, 56, 57, 66, 68, 74], "171": 53, "17167680177565": 57, "17366154": 41, "17468811": 41, "17711": 57, "1776": 28, "1779979416004714189": 57, "1780": 56, "18": [28, 34, 41, 45, 52, 53, 54, 56, 57, 68, 74], "180": [8, 11, 29, 30, 45, 53, 60], "18019374": 41, "18221730799001423": 53, "18327203": 41, "1836311903": 57, "18390559": 41, "18416923": 41, "1844": 56, "18462919695296454": 53, "1846768": 49, "18501623151708046": 53, "18596573": 41, "1865": 56, "189": 53, "19": [28, 30, 46, 52, 54, 56, 57, 66, 68, 74], "190": 23, "190392490709135": 57, "19101005848787056": 53, "19282098": 41, "192975": 64, "19382785739789887": 53, "1947": 56, "1952": 41, "195237": 41, "195249": 41, "196418": 57, "1969": 35, "1971": 41, "19740274219868223167": 57, "198": 53, "1991": 75, "1993": [17, 18], "1997": 35, "1abdomin": 41, "1and": 42, "1carousel": 41, "1cloth": 41, "1coland": 41, "1countri": 41, "1displeasur": 41, "1e75bebcb0a1": 65, "1fenc": 41, "1grain": 41, "1hepat": 41, "1lackei": 41, "1m": [5, 41], "1maleman": 41, "1misdirect": 41, "1pamper": 41, "1reed": 41, "1reek": 41, "1rg_sf55xnpotv7ad4esuxupso1x5c_svkbcl2b6hrzo": 29, "1seer": 41, "1select": 41, "1st": 12, "1stroganoff": 41, "1twice": 41, "2": [10, 14, 19, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 37, 38, 41, 42, 43, 45, 46, 47, 48, 51, 52, 53, 54, 56, 57, 58, 59, 62, 63, 64, 65, 66, 68, 71, 74, 75], "20": [5, 6, 8, 11, 13, 14, 22, 25, 26, 27, 28, 29, 30, 34, 36, 41, 44, 45, 54, 56, 57, 60, 66, 68, 74, 75], "200": [8, 29, 36, 49], "2000": [13, 62], "2001": 22, "2007": 41, "200767": 41, "200775": 41, "2008": 22, "200x200": 26, "2010": 60, "2011": 54, "2012": 27, "2016": [17, 18], "2018": [17, 18, 28, 35], "2020": 28, "2021": [0, 28], "2022": [13, 28, 49, 58, 59, 68], "2022cmc": 68, "2023": [35, 58, 59], "20365011074": 57, "2051381": 13, "206": 25, "2065": 56, "207": 53, "20785": 74, "21": [30, 34, 41, 54, 56, 57, 65, 66, 68, 74], "2111485077978050": 57, "212": 25, "21316820": 41, "216": 53, "21713421888585216": 53, "2178309": 57, "218922995834555169026": 57, "21select": 41, "22": [28, 34, 49, 54, 56, 57, 66, 68, 74], "2203": 56, "221130121224": 68, "22343": 49, "224492449": 41, "22474494": 41, "225": 53, "225851433717": 57, "22m": 41, "22mjoin": 41, "23": [28, 30, 34, 46, 54, 56, 57, 68, 74], "23051491860196693": 53, "233": [25, 57], "234": 53, "23416728348467685": 57, "24": [13, 28, 34, 41, 54, 56, 57, 60, 66, 68, 74], "24157817": 57, "243": 53, "246": 41, "24911453527274008": 53, "2494282549500233": 53, "25": [9, 14, 15, 23, 25, 28, 29, 30, 36, 41, 53, 54, 56, 57, 63, 67, 68, 74], "2504730781961": 57, "252": [15, 53], "256": 30, "2562505737878181": 53, "2584": 57, "259695496911122585": 57, "26": [28, 34, 54, 56, 57, 58, 59, 66, 68, 74], "260": 41, "2601": 41, "261": 53, "2620811349727985": 53, "267914296": 57, "27": [7, 28, 30, 34, 53, 56, 57, 68, 74], "270": 53, "2702132": 41, "273": 25, "27777890035288": 57, "279": 53, "28": [28, 34, 56, 57, 58, 59, 66, 68, 74], "280": 35, "2808559139810669": 53, "28231526": 41, "28606095549529886": 53, "28642355806137865": 53, "28657": 57, "288": 53, "2880067194370816120": 57, "29": [28, 30, 34, 56, 57, 66, 68, 74], "290": 56, "292": 25, "29247664808391993": 53, "295": 15, "29538622585966035": 53, "297": 53, "2971215073": 57, "297786e": 41, "2coin": 41, "2geek": 41, "2maleman": 41, "2pallet": 41, "2precognition328153091": 41, "2rep": 41, "2setosa": 41, "2settlement": 41, "2twirl": 41, "3": [14, 19, 23, 24, 26, 27, 28, 29, 30, 34, 35, 37, 38, 41, 45, 46, 48, 50, 51, 52, 54, 56, 57, 58, 59, 60, 63, 64, 65, 66, 68, 71, 74], "30": [13, 24, 25, 26, 28, 29, 30, 34, 37, 41, 45, 49, 51, 56, 57, 65, 66, 68, 74], "300": [29, 45], "30000000000000004": 75, "30038285887800653": 53, "302": 56, "305": 56, "306": 53, "308061521170129": 57, "309": 25, "3092707780928309": 53, "30935395037559643": 53, "31": [28, 30, 56, 57, 68, 74], "3140663367395595": 53, "315": 53, "317811": 57, "31940434634990099905": 57, "31958": 41, "31grain": 41, "32": [13, 28, 49, 57, 68, 74], "320": 25, "321": 56, "322": 25, "32336": 41, "323362449": 41, "324": 53, "326": [41, 56], "327106133738682": 53, "328": 15, "32951280099": 57, "33": [28, 30, 56, 57, 64, 68, 74], "330212449": 41, "332": 41, "333": 53, "333333": [41, 50], "336953091": 41, "34": [41, 56, 57, 68, 74], "340": 25, "3409970942647851": 53, "341": 25, "3416454622906707": 57, "342": 53, "34215": 41, "345": 35, "3470620533997659": 53, "35": [28, 30, 46, 56, 57, 68, 74], "350": [45, 74], "351": 53, "3524578": 57, "354224848179261915075": 57, "356": 25, "3578": 56, "36": [53, 57, 68], "360": [3, 6, 26, 29, 45, 53], "3608": 56, "360853": 64, "3646504416742017": 53, "365435296162": 57, "366": 28, "3661259": 41, "369": 53, "37": [26, 28, 30, 57, 68], "375": 28, "37551795560730317": 53, "377": 57, "3776": 28, "378": 53, "3787042302780732": 53, "37889062373143906": 57, "38": [9, 28, 56, 57, 68], "382": 25, "38213270217320083": 53, "387": 53, "389": 25, "39": [28, 30, 56, 57, 68], "39088169": 57, "391413091": 41, "393": 25, "3949092": 41, "396": 53, "397": 56, "398": 25, "3d": [13, 35, 45, 48, 52, 65, 74, 75], "3maleman": 41, "3x2": 26, "3x4": 26, "4": [10, 14, 24, 25, 26, 27, 28, 29, 30, 34, 35, 37, 38, 41, 43, 44, 45, 46, 48, 51, 52, 53, 54, 56, 57, 60, 63, 64, 65, 66, 68, 72, 74, 75], "40": [8, 14, 23, 24, 26, 28, 36, 41, 54, 56, 57, 68, 74], "400": [3, 13, 29, 56, 58, 59, 74], "40000": 74, "40055368628571353": 53, "401": [13, 56], "403": 13, "404": 56, "4046464903695117": 53, "405": [13, 53], "4052739537881": 57, "406057": 64, "407": 56, "40752310": 41, "408": 56, "409": 56, "40k": 28, "41": [30, 56, 57, 68, 74], "4137": 56, "414": 53, "414213614": 41, "415": 25, "4155887710": 41, "4181": 57, "4183978821491037": 53, "419": 56, "41924": 41, "41cloth": 41, "42": [46, 57, 68, 74], "420196140727489673": 57, "422": 56, "423": 53, "425": 35, "42612": 41, "426122449": 41, "427": 56, "4281": 41, "4284401": 41, "43": [28, 29, 30, 41, 57, 68], "430": 56, "43034575083494186": 53, "432": 53, "4331": 56, "433494437": 57, "435": [28, 56], "43814880372786": 41, "44": [16, 28, 41, 56, 57, 68, 74], "441": 53, "4453": 41, "4457223247921731": 53, "44625834": 41, "447": 41, "448519": 64, "44945570212853": 57, "4499530587930166": 53, "45": [3, 28, 30, 40, 45, 49, 52, 53, 56, 57, 68, 74], "450": [53, 74], "451": [25, 41], "452": 45, "454": 56, "456": 22, "459": 53, "45972": 41, "46": [28, 57, 68], "460195014": 41, "46036": 28, "461": 56, "462": 41, "4620": 41, "46368": 57, "46570984": 41, "4660046610375530309": 57, "466737": 64, "46676645": 41, "468": [53, 56], "469": 25, "46941871510638766": 53, "47": [28, 30, 57, 68], "4706569800421482": 53, "47287553685169526": 53, "473": [25, 35], "474": 56, "4768441": 41, "477": 53, "4771413": 41, "47727": 13, "48": [28, 49, 57, 68], "4807285946005715": 53, "4807526976": 57, "481": 56, "48142566108152396": 53, "483": 64, "48316": 64, "486": 53, "4860061514293683": 53, "487": 41, "48pm": 13, "49": [28, 30, 53, 57, 68, 74], "491": 28, "4928298184606388": 53, "49346465042560794": 53, "4947": 56, "495": 53, "4966399": 41, "497": 25, "4972399": 41, "4981308": 41, "498454011879264": 57, "4999322": 41, "4maleman": 41, "4setosa": 41, "4th": 14, "5": [3, 6, 7, 8, 9, 10, 24, 25, 26, 27, 28, 30, 34, 35, 36, 37, 41, 42, 43, 45, 46, 48, 50, 51, 52, 53, 54, 55, 56, 57, 60, 63, 64, 65, 66, 68, 74, 75], "50": [3, 9, 14, 15, 17, 23, 26, 27, 28, 29, 38, 41, 57, 60, 67, 68, 74], "500": [3, 6, 8, 56], "500000": 41, "50000004": 41, "5000531": 41, "5039434184534949": 53, "504": 53, "5047000": 41, "5053210": 41, "5065216772296162": 53, "507": 25, "508511120928683": 53, "51": [27, 30, 41, 57, 68, 74], "510": 56, "513": 53, "513372814": 41, "514229": 57, "51604": 41, "51680708854858323072": 57, "51852": 41, "51986": 41, "51hepatitis12174": 41, "52": [28, 45, 57, 63, 64, 68], "522": 53, "525": [56, 74], "52500": 41, "525002449": 41, "526": 56, "5276979": 41, "529150823418107": 53, "5292615": 41, "529493091": 41, "53": [26, 28, 30, 57, 63, 68], "5307149": 41, "530994214": 41, "531": 53, "5312734": 41, "53316291173": 57, "53938": 28, "539793": 64, "54": [28, 45, 53, 57, 64, 68], "540": 53, "54229260": 41, "5424727": 41, "5428517": 41, "54321": [48, 57], "543721900350119": 53, "5460446706976356": 53, "547553091": 41, "549": 53, "55": [28, 30, 41, 57, 68], "552": 41, "5522": 41, "5527939700884757": 57, "5532446112724092": 53, "5543594": 41, "555": [15, 63], "5554000": 41, "5554545": 41, "5565196": 41, "557": 28, "558": 53, "5584948725350998": 53, "56": [28, 56, 57, 68], "5619624214446906": 53, "56354": 41, "567": 53, "5689675362205405": 53, "5692797": 41, "57": [28, 30, 57, 68], "5702887": 57, "5717294": 41, "572": 56, "574": 56, "576": 53, "57735033": 41, "578": 41, "58": [57, 68], "581": 25, "5818259": 41, "584": 25, "585": 53, "586190e": 41, "5878434": 41, "5882": 41, "58836": 41, "5885": 41, "59": [30, 57, 64, 68], "590044255895823": 53, "59049": 65, "591286729879": 57, "594": 53, "5942899905691458": 53, "59fb6d0341c1": 54, "5a": 23, "5b9cab591576": 65, "5maleman1241": 41, "5th": 14, "6": [8, 9, 12, 13, 14, 18, 20, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 41, 43, 45, 46, 48, 51, 52, 53, 54, 56, 57, 60, 63, 64, 65, 66, 68, 74, 75], "60": [23, 24, 28, 29, 34, 36, 57, 68, 74], "600": [8, 13, 14, 16, 27, 29, 36, 62], "6011007": 41, "60187": 41, "603": 53, "6054594": 41, "60hz": [7, 29], "61": [34, 41, 57, 68], "610": 57, "611": 25, "612": 53, "61305790721611591": 57, "614927e": 41, "618033988749895": [48, 57], "61862": 41, "6190": 56, "61carousel": 41, "62": [34, 45, 57, 68, 74], "62015": 41, "621": 53, "62453847": 41, "6255357": 41, "626": 56, "628": 25, "628263091": 41, "6284547762752576": 53, "629": 25, "63": [34, 41, 53, 57, 68], "630": 53, "6305409085670466": 53, "631": 25, "632": 56, "63245986": 57, "6346413": 41, "639": 53, "64": [26, 53, 57, 58, 59, 68], "640": [25, 41], "644": 25, "647": 56, "648": 53, "6496231": 41, "65": [34, 41, 56, 57, 68], "6557470319842": 57, "657": 53, "66": [57, 68], "6602528067033887": 53, "666": 53, "67": [29, 57, 68], "6716154": 41, "675": 53, "6756821234417167": 53, "6765": 57, "679891637638612258": 57, "68": [30, 54, 57, 68], "683": 25, "684": 53, "6895201817754012": 53, "69": [57, 68], "693": 53, "694": 41, "6942438596309538": 53, "6949404766488418": 53, "697": 56, "6ebc972579c733621124e40360812777aeeeeb6f": 70, "6maleman1540": 41, "7": [12, 13, 14, 16, 20, 24, 25, 27, 30, 31, 34, 35, 37, 41, 45, 47, 48, 52, 53, 54, 55, 57, 63, 64, 65, 66, 68, 74], "70": [6, 34, 41, 54, 57, 68], "700": [23, 24], "7011hairpin": 41, "7011learn": 41, "7011make": 41, "7011payrol": 41, "7011scaffold": 41, "7011swept": 41, "7012affection": 41, "7012congruiti": 41, "7012corset": 41, "7012deterg": 41, "7012disenfranchise11471": 41, "7012droplet": 41, "7012hurri": 41, "7012irat": 41, "7012marsh": 41, "7012methodologi": 41, "7012particip": 41, "7012salamand": 41, "7012sweater": 41, "7012tram": 41, "701408733": 57, "702": 53, "707106814": 41, "70710682": 41, "71": [28, 34, 54, 57, 68], "711": 53, "715": 15, "7154901703159035": 53, "72": [34, 53, 57, 68], "720": 53, "723992449": 41, "725293091": 41, "72723460248141": 57, "729": 53, "7295071929030806": 53, "729702449": 41, "73": [34, 41, 57, 68], "73296": 41, "7360639644822417": 53, "738": 53, "74": [30, 57, 68], "743": 41, "7440921522929225": 53, "747": [25, 53], "75": [9, 34, 57, 68], "75025": 57, "753": 25, "754": 9, "7540113804746346429": 57, "7552020412113069": 53, "756": 53, "7579094907353902": 53, "76": [57, 68], "764": 56, "765": 53, "766": 15, "7674232704225379": 53, "768": 6, "77": [28, 34, 45, 57, 68], "7704": 41, "7721790": 41, "772289e": 41, "774": 53, "7778742049": 57, "778": 25, "78": [25, 57, 68], "782": 13, "783": [13, 53], "784": 13, "785": 13, "7860818145964547": 53, "7890": 22, "79": [57, 68], "792": 53, "7931705529833472": 53, "794": 15, "7966723379c3": 75, "8": [7, 8, 12, 13, 14, 16, 24, 25, 29, 30, 31, 34, 35, 37, 41, 42, 45, 46, 47, 48, 50, 52, 53, 54, 56, 57, 58, 59, 60, 63, 64, 65, 66, 68, 69, 74, 75], "80": [8, 28, 29, 34, 57, 64, 68], "800": [8, 13, 14, 24, 27, 29, 36], "801": [41, 53], "806515533049393": 57, "8068608676121372": 53, "8080": 28, "81": [30, 34, 53, 57, 68], "810": 53, "8167974146530707": 53, "8179411": 41, "818": 56, "819": 53, "81981": 41, "82": [34, 48, 57, 68], "828": 53, "82828100": 41, "83": [30, 57, 68], "832040": 57, "8320922310309975": 53, "83621143489848422977": 57, "837": 53, "84": [34, 45, 57, 68, 75], "840": 28, "8425333779": 41, "846": 53, "8467812662036726": 53, "84887474": 41, "85": [57, 68], "850": 25, "8530": 41, "854": 56, "855": 53, "8577178933096079": 53, "85812": 41, "86": [57, 68], "860": 56, "86267571272": 57, "864": 53, "87": [56, 57, 68], "8717538": 41, "873": 53, "875373367977733": 53, "88": [57, 64, 68], "8812859168335222": 53, "882": 53, "8859": [21, 22, 64], "89": [45, 57, 64, 68], "891": 53, "8944394323791464": 57, "898": 9, "8za63ytaqvoq": 28, "9": [7, 12, 13, 25, 28, 30, 34, 35, 36, 42, 43, 45, 46, 48, 52, 54, 56, 57, 63, 64, 65, 66, 68, 74], "90": [6, 26, 29, 34, 53, 57, 68], "900": [25, 53], "900342216": 29, "9011206": 41, "902": 9, "9088649425014437": 53, "909": 53, "91": [26, 41, 56, 57, 68], "9164624229550201": 53, "917": 56, "918": 53, "92": [45, 57, 64, 68], "9208766": 41, "9218257425065518": 53, "921947091892469": 53, "9227465": 57, "9240934820": 41, "927": 53, "9284894090060116": 53, "93": [34, 41, 45, 57, 68], "932": 41, "9355777522907279": 53, "936": 53, "9362": 41, "9364": 41, "938": 41, "94": [34, 57, 68], "945": 53, "95": [30, 57, 68], "9538062": 41, "954": 53, "956722026041": 57, "9584641317010492": 53, "96": [57, 68], "960": 41, "9628654": 41, "963": 53, "97": [34, 57, 68], "972": 53, "9745": 41, "9757460282563791": 53, "98": [30, 34, 57, 68], "981": 53, "9811": 41, "9866580852216292": 53, "987": 57, "99": [34, 53, 57, 64, 68], "990": 53, "990918595214355": 53, "99194853094755497": 57, "9926090090647068": 53, "9939998d2a01": 54, "99573860": 41, "99710267083853": 41, "999": [53, 64], "9991187183058816": 53, "9pm": [67, 70], "A": [10, 15, 20, 21, 22, 26, 27, 30, 31, 34, 41, 43, 46, 49, 50, 58, 59, 61, 64, 67, 68, 70, 75], "AND": [27, 56], "AT": 68, "And": [1, 5, 6, 29, 30, 42, 43, 45, 52, 56, 58, 59, 68], "As": [12, 14, 17, 18, 26, 29, 31, 45, 46, 50, 52, 57, 60, 61, 63, 68, 74, 75], "At": [4, 10, 23, 29, 30, 45, 46, 52, 56, 58, 59, 68], "Be": [17, 18, 31, 45, 50, 58, 59, 68, 70, 75], "But": [18, 25, 27, 28, 30, 41, 45, 46, 50, 51, 52, 54, 59, 63, 64, 68, 74, 75], "By": [37, 45, 50, 53, 56, 60, 70, 74], "For": [3, 4, 6, 9, 10, 11, 12, 13, 14, 16, 17, 18, 20, 26, 27, 28, 29, 30, 31, 34, 35, 37, 40, 41, 44, 45, 46, 49, 51, 52, 53, 55, 56, 57, 60, 62, 63, 64, 67, 68, 70, 74, 75], "IN": 64, "If": [6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 26, 27, 28, 29, 30, 31, 34, 36, 38, 40, 42, 43, 44, 45, 46, 49, 51, 52, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 74, 75], "In": [1, 7, 8, 9, 10, 11, 14, 22, 23, 24, 26, 27, 28, 29, 30, 34, 35, 37, 40, 41, 43, 45, 46, 50, 51, 52, 53, 54, 60, 62, 63, 65, 66, 68, 70, 74, 75], "Into": 68, "It": [5, 6, 10, 15, 16, 21, 22, 23, 26, 27, 28, 29, 30, 34, 36, 41, 45, 49, 50, 51, 52, 54, 56, 57, 58, 59, 64, 65, 68, 70, 74, 75], "Its": 7, "NOT": [0, 26, 59], "No": [3, 13, 19, 46, 52, 75], "Not": [11, 28, 29, 45, 52, 64, 70, 74], "OR": [11, 64], "Of": [23, 50, 68, 75], "On": [12, 13, 27, 30, 45, 51, 58, 59, 63, 68], "One": [20, 22, 25, 28, 29, 30, 31, 45, 46, 49, 51, 52, 55, 62, 64, 68, 74], "Or": [26, 28, 29, 30, 34, 45, 52, 70, 74], "TO": [27, 64], "That": [27, 29, 30, 37, 50, 52, 54, 56, 60, 62, 63, 64, 68, 74], "Thats": 68, "The": [1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 36, 38, 40, 41, 43, 44, 46, 47, 49, 51, 52, 54, 56, 58, 59, 60, 62, 63, 64, 65, 67, 68, 70, 73, 74, 75], "Then": [3, 6, 8, 16, 26, 27, 28, 29, 34, 37, 40, 45, 46, 54, 58, 59, 62, 63, 64, 67, 70, 74, 75], "There": [5, 6, 7, 10, 20, 21, 22, 25, 26, 28, 29, 30, 31, 45, 46, 50, 51, 52, 54, 55, 58, 59, 60, 64, 67, 68, 75], "These": [7, 12, 27, 28, 31, 35, 45, 46, 50, 51, 52, 54, 56, 60, 64, 73], "To": [3, 6, 8, 10, 15, 18, 21, 22, 23, 25, 26, 27, 28, 29, 31, 37, 41, 45, 46, 51, 52, 56, 58, 59, 60, 62, 63, 64, 66, 68, 70, 73, 75], "Will": [18, 67], "With": [26, 28, 45, 46, 49, 51, 52, 68, 74], "_": [6, 26, 30, 44, 45, 54, 56, 63, 64, 70], "_90_60": [23, 36], "__": 45, "___": 2, "__builtin__": 30, "__call__": 30, "__dict__": 30, "__doc__": 9, "__file__": 30, "__import__": 30, "__index__": 74, "__init__": [6, 30], "__main__": [12, 13, 29, 45], "__metaclass__": 30, "__name__": [12, 13, 29], "__version__": [30, 58, 59], "__weakref__": 30, "_a": 30, "_data": 29, "_left": 26, "_recurse_all_hypernym": 56, "_sre": 30, "_templatemetaclass": 30, "_trial": 9, "a1": 31, "a964f1e96d9b": 54, "a_deep_thought": 37, "a_fruit": 43, "a_list": [43, 51, 52, 53, 63], "a_num": 43, "a_z": 27, "aa": [34, 68], "aaaaaaaaaa": 65, "aaron": [51, 52], "ab": [45, 64], "abandon": 28, "abbei": 68, "abbrevi": [58, 59], "abc": [30, 64], "abcdefg": 52, "abcdefghijklmnopqrstuvwxyz": 30, "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz": [27, 30], "abcdefu": 68, "abcracadabra": 30, "abdelghani": 64, "aberr": 64, "abi": 64, "abil": [10, 28, 39, 45], "abl": [4, 11, 14, 22, 26, 29, 38, 42, 45, 46, 51, 52, 54, 58, 59, 60, 65, 66, 70, 75], "abort": [11, 28], "about": [5, 6, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 26, 28, 29, 38, 41, 42, 43, 44, 45, 50, 51, 52, 54, 55, 56, 58, 60, 61, 64, 65, 67, 68, 70, 74, 75], "abov": [3, 5, 6, 10, 14, 16, 23, 24, 26, 27, 28, 29, 30, 31, 37, 45, 46, 50, 52, 53, 56, 58, 59, 60, 62, 63, 65, 67, 68, 70, 74], "abracadabra": [30, 40], "abraham": 68, "absent": 30, "absente": 28, "absolut": [13, 16, 45], "absolute_error": [13, 16], "absurdum": 28, "abyssi": 64, "ac": [21, 22], "ac50e1f5290d": 65, "acart3r": 15, "acc": 28, "acceler": [7, 45], "accept": [2, 3, 5, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 27, 28, 29, 30, 44, 51, 52, 56, 62, 67, 73, 75], "access": [9, 11, 17, 18, 23, 29, 37, 38, 45, 49, 59, 63, 64, 67, 70], "accident": [45, 46, 50, 52], "accommod": [22, 38], "accompli": 64, "accomplish": [16, 37, 45], "accord": [7, 28, 45], "accordingli": 27, "accordion": 49, "accordion_1": 60, "accordion_2": 60, "account": [21, 22, 28, 67, 70], "accur": [16, 45], "accuraci": [6, 8, 10, 15, 23, 29, 60], "achiev": 45, "aci": 64, "acini": 64, "acknowledg": 56, "acquir": [14, 56], "across": [0, 17, 18, 22, 41, 45, 60, 74], "act": 54, "action": [5, 28, 37, 41, 45, 46, 50, 51, 52, 75], "activ": [6, 17, 18, 28, 34, 36, 37, 39, 57, 58, 59, 67, 71], "activity_debug": 35, "activity_debugging_experi": 49, "actor": 36, "actorstoshow": 23, "actual": [11, 13, 14, 18, 26, 27, 28, 29, 42, 45, 46, 50, 51, 52, 61, 64, 67, 68, 70, 75], "ad": [7, 11, 26, 27, 28, 29, 30, 53, 54, 56, 61, 63, 70, 75], "ada": 75, "adam": [27, 34], "adapt": [14, 20, 45, 55], "add": [2, 3, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 23, 26, 27, 28, 29, 34, 38, 41, 45, 46, 50, 51, 52, 53, 54, 58, 59, 63, 64, 67, 70, 75], "add_newlin": 29, "add_stat": 6, "add_transit": 6, "adder": 54, "addfield": 29, "addit": [5, 7, 15, 16, 29, 30, 41, 45, 46, 51, 53, 58, 59, 63, 66, 67, 70, 75], "addition": [45, 70], "addrespons": 29, "address": [21, 22, 45, 54], "addtext": [29, 58, 59], "adel": 54, "adher": 67, "adi": 64, "adist": 25, "adjec": 5, "adject": [0, 56], "adjust": [13, 24], "adjusting_stim": 13, "adlai": 64, "adopt": 45, "adriana": [51, 54], "advanc": [0, 6, 45, 68], "advantag": [15, 19, 29, 37, 45, 46, 54], "adventur": 71, "adverb": 56, "advic": 67, "advis": [11, 45], "ae": [53, 70], "aeiou": [21, 22, 75], "af": 53, "affair": 22, "affect": [24, 28, 45, 70], "affili": [17, 18, 28], "afghani": 64, "afghanistanasia195228": 41, "afghanistanasia195730": 41, "afghanistanasia196231": 41, "afghanistanasia196734": 41, "afghanistanasia197236": 41, "afghanistanasia197738": 41, "afi": 64, "afraid": 45, "africa": 41, "african": 41, "after": [3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 27, 28, 29, 30, 31, 34, 45, 50, 51, 52, 56, 58, 59, 60, 64, 70, 75], "afterward": 56, "ag": [5, 17, 18, 34, 41, 47, 54, 68], "again": [3, 6, 11, 13, 15, 21, 22, 27, 45, 46, 51, 56, 58, 59, 74, 75], "against": [5, 45, 56, 73], "agassi": 64, "agenc": 64, "aggregated_data": 15, "agnelli": 64, "ago": [22, 28], "agouti": 64, "ah": 68, "ahead": [10, 27, 59, 67], "aim": [16, 50, 56], "ain": [56, 68], "air": [28, 46, 69], "air_temp": 69, "airbag": 45, "airplan": 49, "airport": 28, "ajami": 64, "aka": 31, "alarm": [13, 60, 68], "alcohol": 28, "alert": [60, 67], "alexand": 52, "alexei": 64, "alfa": 35, "algeria": 41, "algorithm": [11, 29, 42, 67], "ali": 64, "alia": [31, 58], "alibi": 64, "alic": 56, "alice_clean": 56, "alice_raw": 56, "alice_token": 56, "align": [23, 26], "alito": 28, "all": [5, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 34, 35, 38, 41, 42, 43, 45, 48, 50, 51, 54, 56, 58, 59, 60, 63, 64, 65, 66, 67, 68, 70, 74, 75], "all_com": 28, "all_comments_noun": 28, "all_comments_po": 28, "all_comments_token": 28, "all_dat": 31, "all_hot_submiss": 28, "all_hot_submissions_noun": 28, "all_hot_submissions_po": 28, "all_hot_submissions_token": 28, "all_hypernym": 56, "all_pic": 49, "all_subreddits_user_post": 28, "all_trial": 74, "alldat": 31, "alldata": 31, "allig": [49, 56], "allow": [5, 6, 9, 10, 11, 23, 25, 27, 28, 29, 30, 31, 35, 37, 38, 40, 41, 45, 46, 49, 50, 51, 52, 54, 58, 59, 62, 64, 70, 74, 75], "allowgui": [24, 25, 45], "allyson": 40, "alma": 54, "alma_mat": 54, "almost": [28, 45, 54, 65, 75], "along": [7, 11, 15, 22, 24, 26, 27, 28, 36, 45, 51, 67, 69], "alongsid": [17, 18, 27], "alpha": [25, 26, 46], "alphabet": [46, 51, 52], "alphanumer": [21, 22, 64], "alreadi": [5, 9, 12, 13, 18, 20, 22, 25, 27, 28, 31, 36, 37, 38, 41, 43, 45, 46, 49, 51, 52, 56, 59, 63, 67, 70, 74, 75], "also": [9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 22, 23, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 41, 45, 46, 50, 51, 52, 53, 54, 56, 58, 59, 60, 63, 64, 65, 67, 68, 70, 74, 75], "alt": 31, "alter": 45, "altern": [14, 17, 18, 25, 30, 37, 40, 75], "although": [27, 46, 52, 60, 63, 74, 75], "altitud": 45, "alumni": 64, "alveoli": 64, "alwai": [14, 17, 18, 29, 30, 34, 45, 46, 50, 52, 54, 75], "am": [28, 50, 56, 67, 70], "amalfi": 64, "amanda": 40, "amax": 25, "ambani": 64, "amber": 68, "ambigu": [30, 75], "amend": 28, "america": 28, "american": [22, 41, 64], "americanize3": 41, "ami": 64, "amico": 68, "amnesia": 28, "among": [28, 64], "amount": [30, 45, 75], "amphibi": 56, "amphibian": 56, "an": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 24, 25, 28, 30, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 49, 51, 53, 58, 59, 60, 61, 63, 64, 67, 68, 74, 75], "anaconda": 29, "anaconda3": [13, 30], "analys": [14, 17, 18, 58, 59, 67], "analysi": [0, 5, 13, 14, 16, 17, 28, 34, 67], "analyticsvidhya": 0, "analyz": [17, 18, 61, 67], "anc": [21, 22, 64], "anchor": 49, "ancient": 64, "andi": 40, "andrea": 52, "andrei": 64, "andrew": 40, "anecdot": 28, "anel": 40, "ang": 24, "angl": [13, 16, 29, 45], "angle_moving_degre": 45, "anglelist": 29, "angri": [23, 24, 36], "ani": [3, 7, 9, 11, 13, 14, 16, 18, 19, 20, 21, 22, 24, 27, 28, 29, 30, 31, 41, 42, 44, 45, 46, 50, 51, 52, 54, 56, 58, 59, 60, 61, 62, 64, 67, 68, 70, 74, 75], "anim": [44, 45, 46, 60, 63, 65], "animateit": 26, "ann": 56, "annot": 25, "anonym": 3, "anoth": [9, 13, 17, 18, 19, 24, 27, 28, 30, 37, 42, 43, 45, 46, 47, 50, 52, 54, 56, 58, 62, 63, 64, 67, 68, 70, 75], "another_fruit": 43, "another_num": 63, "answer": [12, 15, 16, 17, 18, 19, 27, 28, 39, 41, 56, 61, 63, 64, 67, 68, 74, 75], "ant": 49, "anterograd": 28, "anterograde_amnesia": 28, "anti": [28, 64], "anticip": 75, "antiretrovir": 64, "antoni": 64, "anxieti": 28, "anymor": [16, 51, 62], "anynum": 64, "anyon": [46, 54], "anyth": [7, 14, 17, 27, 29, 44, 45, 46, 52, 61, 64, 73, 74], "anytim": [37, 60], "anywai": [28, 75], "anywher": [52, 75], "apart": [26, 44, 45, 68], "api": [3, 27, 28, 29, 62, 64, 67, 68], "app": [28, 71], "appear": [3, 4, 6, 8, 23, 25, 30, 54, 56, 58, 59, 68, 75], "append": [8, 12, 23, 26, 28, 29, 35, 36, 38, 43, 45, 46, 48, 57, 65, 66, 74], "appl": [30, 43, 49, 50, 52, 58], "appleappl": 43, "appli": [26, 28, 29, 45, 52, 53, 54, 75], "applic": [27, 28, 45, 56, 58, 59, 71], "appopri": 75, "appreci": [17, 18], "approach": [45, 47, 49, 52, 56, 57, 64, 68, 75], "appropri": [7, 9, 11, 12, 13, 23, 26, 27, 30, 45, 50, 64, 67, 68, 70], "approprit": 15, "approv": 28, "approx": 8, "approxim": 19, "april": 41, "apropo": 31, "ar": [1, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 34, 35, 36, 37, 38, 39, 41, 43, 44, 45, 47, 49, 50, 52, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 74, 75], "arabi": 64, "arabia": 41, "arang": 6, "arbitrari": [14, 21, 22, 29, 38, 44, 45, 50, 60, 74, 75], "arbitrarili": 74, "arc": 67, "arc3": 25, "area": 50, "aren": [17, 18, 56, 75], "arg": [25, 30], "arg_1": 54, "arg_2": 54, "arg_3": 54, "arguabl": 45, "argument": [8, 9, 10, 11, 14, 17, 18, 21, 22, 26, 28, 29, 30, 31, 34, 37, 41, 42, 44, 45, 46, 51, 52, 56, 57], "arguments_new_class": 45, "arguments_parent_class": 45, "argumnt": 49, "ari": 64, "arithmet": 63, "arizona": 28, "arm": 49, "armani": 64, "armi": 28, "around": [4, 6, 7, 26, 27, 28, 29, 31, 43, 45, 49, 52, 58, 64, 68], "arrai": [13, 25, 29, 30, 45, 52, 63], "arrang": [16, 29, 41, 56], "arrow": [3, 14, 31, 37, 49, 52, 75], "arrowprop": 25, "arrowstyl": 25, "art": 1, "artemi": 28, "arthropod": 56, "arthur": 68, "artichok": 49, "articl": [13, 28, 30], "artifici": [4, 6], "artist": 68, "arundhati": 64, "asahi": 64, "asci": 64, "ascii": 64, "ascii_lett": 30, "ascii_lowercas": 30, "ascii_uppercas": 30, "ascrib": 60, "asd": 75, "ashkenazi": 64, "ashlei": 68, "ashtrai": 49, "asign": 2, "ask": [3, 5, 12, 14, 17, 18, 20, 22, 28, 38, 39, 45, 51, 56, 58, 59, 61, 63, 67, 70], "asker": 17, "asparagu": 49, "aspect": [1, 36, 45], "assembl": 56, "assert": [29, 40], "assertionerror": 40, "assign": [3, 7, 9, 15, 16, 21, 22, 27, 28, 29, 30, 38, 43, 45, 46, 47, 54, 56, 60, 65, 67, 74], "assignmentid": 27, "assignmentidfromparamstr": 27, "assignmentit": 27, "assisi": 64, "associ": [17, 18, 27, 45, 46, 60, 68, 70], "assum": [28, 29, 46, 47, 50, 56], "assur": [19, 46], "asterisk": [54, 75], "astrolgi": [17, 18], "astronom": 68, "astrosci": [17, 18], "atla": 40, "atmospheric_pressur": 56, "atof": 30, "atoi": 30, "atol": 30, "attach": [37, 45, 50, 70], "attack": 28, "attain": 39, "attemp": 52, "attempt": [13, 30, 45, 70], "attent": [45, 60, 64, 67], "attr": 68, "attribut": [7, 28, 29, 30, 45, 54], "attributeerror": [45, 54], "au": 28, "audi": 64, "audienc": 67, "audio": 49, "audiolib": [29, 58, 59], "aug": 28, "aulaqi": 64, "aunt": [56, 68], "aurora": 41, "austen": [5, 56], "australian": 52, "author": [5, 28, 68], "autodraw": 25, "automat": [11, 12, 28, 30, 42, 45, 56, 59, 68], "automaton": [4, 6], "avaialbl": 36, "avail": [5, 26, 28, 29, 36, 45, 46, 49, 60], "averag": [16, 17, 18, 29, 37, 41, 44, 53], "averaged_perceptron_tagg": 67, "avi": 64, "avocado": 43, "avoid": [7, 11, 15, 28, 37, 68, 73, 75], "awai": [13, 28, 45, 54, 56, 62, 68], "awar": [45, 75], "awk": 31, "awkward": 23, "ax": 49, "axessubplot": 56, "axi": [16, 67], "b": [7, 8, 9, 10, 13, 14, 17, 18, 21, 27, 30, 31, 34, 44, 50, 51, 52, 53, 54, 56, 62, 64, 65, 67, 68, 75], "b035952ec3f1": 75, "b61b6ba6a6b7": 36, "b_list": 43, "babi": 68, "back": [11, 22, 27, 28, 30, 31, 44, 45, 52, 54, 56, 58, 59, 60, 62, 75], "backbon": 45, "background": [11, 14, 26, 27, 58, 59], "backrefer": 64, "backslash": 74, "backstreet": 64, "backward": [35, 42], "bad": [14, 28, 68, 74, 75], "badli": 63, "badsbjcode_131": 64, "badsubjcode_133": 64, "badsubjcode_135": 64, "badubjcode_134": 64, "baggi": 41, "bai": 28, "balanc": 30, "ball": [30, 56], "ballot": 28, "bam": 68, "ban": 41, "banana": 52, "bananan": 52, "bangladesh": 41, "bank": 41, "bankaccount": 30, "bankruptci": [22, 64], "baptist": 64, "bar": [13, 15, 16, 17, 18], "bare": 54, "bart": 68, "bartlett": 64, "base": [5, 14, 17, 18, 23, 27, 28, 30, 34, 37, 45, 52, 56, 64, 65, 70, 71], "basebal": 60, "basement": 28, "basenam": [29, 49], "bash": [31, 59], "bash_histori": 31, "bash_profil": 58, "bashrc": 31, "basi": 45, "basic": [1, 5, 6, 10, 23, 27, 28, 29, 45, 49, 58, 59, 62, 63, 64, 68, 73, 75], "basic_load_fil": 49, "basubjcode_132": 64, "bat": 60, "batch": [27, 49, 52], "bathroom": 28, "batshit": 64, "bbox": 25, "bc": 64, "bc4d9312a8bc": 25, "bd": 53, "bdsubjcode_130": 64, "beagl": 52, "bear": [60, 62], "bear4": 60, "bearabl": 37, "beat": 75, "beau": 56, "beauti": [16, 45, 56, 61, 71, 75], "beautifulsoup": 68, "becam": [22, 28], "becaus": [5, 6, 7, 10, 11, 14, 15, 16, 17, 18, 19, 21, 22, 28, 29, 30, 35, 40, 43, 44, 45, 46, 49, 50, 51, 52, 54, 56, 58, 59, 62, 63, 68, 70, 74, 75], "becker": 40, "becki": 34, "becom": [3, 23, 28, 29, 30, 38, 45, 46, 52, 62, 63, 64, 73, 74], "been": [3, 9, 13, 17, 18, 22, 26, 28, 30, 41, 43, 45, 46, 56, 62, 75], "beep": 29, "beer": 64, "befor": [8, 9, 10, 11, 19, 21, 22, 23, 28, 30, 42, 44, 45, 46, 51, 54, 56, 58, 59, 61, 62, 63, 64, 67, 70, 75], "before1": 27, "beg": 56, "begin": [4, 5, 6, 10, 12, 13, 16, 17, 18, 21, 22, 23, 29, 30, 37, 45, 51, 52, 58, 59, 60, 63, 64, 67, 68, 70, 75], "beginn": [0, 45], "behav": [45, 75], "behavio": 46, "behavior": [27, 37, 45, 46, 51], "behind": [19, 28, 45, 58, 59, 67, 75], "being": [6, 8, 12, 15, 16, 17, 18, 23, 24, 34, 45, 51, 52, 56, 61, 63, 74, 75], "belief": [20, 55], "believ": [13, 17, 18, 28], "bell": [49, 68], "belong": 45, "below": [3, 6, 9, 13, 14, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 37, 40, 45, 46, 49, 50, 53, 56, 58, 59, 60, 62, 64, 65, 67, 70], "benefit": 54, "benjamin": 52, "bennet": 56, "berkelei": 54, "bern": 68, "berni": 22, "bernic": [51, 52], "best": [15, 27, 29, 31, 67, 70, 73], "bestest": 64, "better": [5, 11, 14, 15, 17, 18, 26, 29, 30, 37, 39, 45, 51, 52, 56, 64, 68, 75], "between": [5, 11, 13, 14, 15, 16, 17, 18, 20, 25, 27, 28, 29, 31, 41, 43, 45, 50, 52, 54, 55, 56, 60, 63, 64, 65, 67, 68, 70, 74], "beyond": [21, 22, 54, 56], "bf": 53, "bgr": 29, "bhpxy52f": 28, "bias": 16, "bibl": 56, "bicycl": 45, "biden": 28, "big": [18, 25, 28, 67, 68, 70], "bigger": 16, "bigram": [5, 56], "bigram_freq": 56, "bill": 68, "billi": [51, 54], "billion": 68, "bin": [31, 56], "binglei": 56, "bioscienc": 64, "bioterrorist": 64, "bird": [28, 45, 56], "bit": [3, 6, 11, 17, 18, 27, 28, 29, 30, 35, 39, 40, 42, 43, 46, 50, 52, 56, 58, 59, 62, 70, 75], "bittersweet": 64, "bittorr": 64, "black": [3, 6, 8, 14, 23, 24, 25, 26, 28, 29, 35, 36, 45, 49, 62, 68], "blackmail": 56, "blackout": 28, "blah": 75, "blak": 36, "blake": 56, "blank": [3, 54], "blast": 28, "blastocyst": 64, "blatant": 64, "bleep": [12, 36], "blew": 28, "block": [11, 12, 13, 15, 16, 27, 43, 45, 50, 52, 60, 63, 67], "block_num": 13, "blog": [0, 68, 71], "bloomington": 64, "blown": 14, "blue": [3, 6, 8, 9, 14, 26, 36, 54], "blue_circl": 62, "blueprint": 45, "blurrypicturesofdog": 28, "bmw": 35, "board": 56, "boat": 45, "bob": 68, "bodi": [28, 40, 45, 46, 51], "boi": 68, "bold": 68, "bolivia": 41, "bone": 54, "bonito": 68, "bonu": [14, 15, 17, 18, 20, 22, 55], "boo": 12, "book": [0, 5, 45, 54, 56, 64], "bool": [29, 63, 65], "boolean": [26, 43, 63], "boot": [68, 71], "border": 52, "bordercolor": 26, "bore": [18, 45], "bori": 68, "born": [22, 39, 67], "boss": 28, "bot": 28, "both": [10, 14, 15, 16, 26, 27, 28, 29, 30, 43, 45, 49, 52, 53, 56, 60, 63, 64, 67, 70, 75], "bother": [52, 74], "botswana": 41, "bottl": 64, "bottom": [7, 12, 13, 23, 25, 26, 27, 31, 58, 66], "bounc": [7, 30], "bouncingbal": 30, "bound": 45, "boundari": 21, "bourgh": 56, "bouvier": 68, "box": [4, 6, 9, 11, 12, 13, 14, 23, 27, 28, 47, 58, 59, 64], "boxdlg": [58, 59], "boxstyl": 25, "boyfriend": 68, "br": 27, "brace": [46, 63], "bracket": [46, 52], "brag": 28, "brain": [28, 43], "branch": [27, 67], "branchnam": 70, "brand": [35, 54], "bread": [34, 56], "break": [6, 12, 13, 17, 24, 28, 29, 60, 67, 68, 70, 73, 74, 75], "breed": [46, 52], "breviti": 49, "brew": 58, "brian": 54, "bride": 54, "brief": [3, 45, 52, 67], "briefli": 27, "bright": 68, "brightest": 64, "bring": [17, 45, 56, 70], "british": [5, 64], "broader": 56, "broadwai": 68, "broken": [15, 36, 60], "broom": [41, 58, 59, 67], "brown": [21, 22, 53, 56], "brows": 70, "browser": [27, 58, 59], "bruno": 68, "bryant": 56, "bs4": [68, 69], "btk": 64, "buffer": [3, 29, 31, 62], "bug": [51, 68, 73], "bui": 68, "build": [1, 7, 8, 14, 27, 45, 52, 56, 63, 71], "built": [10, 12, 13, 17, 18, 29, 30, 64], "builtin_function_or_method": 63, "bulgaria": 41, "bulk": [64, 68], "bullet": [51, 68], "bulletpoint": 68, "bunch": [14, 17, 18, 26, 27, 31, 37, 45, 54, 64, 70, 75], "bundl": 56, "bureau": 28, "bureaucraci": 64, "burgess": 56, "burundi": 41, "busi": 28, "busterbrown": 56, "but_a_jap": 28, "butait": 64, "butaprost": 64, "butter": [34, 56], "buttom": 29, "button": [6, 24, 25, 27, 28, 52, 64, 74], "buzz": [12, 36], "bypass": 31, "byte": 30, "c": [9, 10, 14, 17, 18, 30, 34, 44, 51, 52, 53, 54, 58, 59, 60, 64, 66, 68], "c_across": [17, 18], "c_fill": 68, "cach": 26, "caesar": [5, 56], "cag": 64, "cake": 60, "calcul": [11, 16, 19, 25, 28, 45, 56], "calculaterectangularcoordin": 25, "caleb": [37, 40], "calibr": 29, "california": 68, "call": [3, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 23, 25, 26, 27, 28, 29, 30, 31, 34, 35, 38, 45, 46, 48, 49, 51, 52, 54, 55, 56, 58, 59, 60, 62, 63, 65, 67, 68, 70, 74, 75], "calld": 16, "caller": 54, "came": [28, 56], "camelcas": 45, "camera": 29, "camp": [17, 18], "campaign": 28, "campesino": 64, "can": [4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 70, 71, 73, 74, 75], "canal": 35, "cancel": 29, "candidaci": 64, "cannabi": 28, "cannot": [21, 22, 28, 43, 45, 75], "capabl": [11, 23, 45, 67, 68], "capac": 45, "capit": [5, 30, 45, 46, 52, 70, 75], "captur": [29, 64], "capturefromcam": 29, "capword": 30, "car": [19, 35, 45, 64], "card": 28, "cardiorespiratori": 64, "care": [23, 27, 29, 30, 31, 41, 45, 46, 50, 54, 63, 75], "career": [28, 45], "carefulli": [45, 67], "carl": 68, "carmen": 28, "carol": 52, "carolin": [51, 54], "carolina": 68, "carpentri": 30, "carri": [42, 50, 52, 56], "carrol": 56, "carter": 40, "carvedilol": 64, "case": [4, 7, 17, 21, 22, 24, 27, 30, 31, 34, 37, 41, 44, 45, 49, 50, 51, 52, 54, 63, 64, 66, 67, 70, 74], "case_when": 0, "cat": [23, 35, 37, 38, 44, 52, 56, 63, 64, 65, 74], "catch": [30, 67, 70, 74, 75], "categor": [36, 64], "categori": [4, 17, 18, 23, 36, 56, 60], "caterpillar": 56, "catherin": 56, "catheter": 64, "cattl": 52, "caus": [7, 13, 28, 31, 70, 75], "cavalri": 56, "caveat": [27, 30, 31], "cc": 64, "cc001": 25, "cc002": 25, "cc003": 25, "cc004": 25, "cc005": 25, "cc006": 25, "cc007": 25, "cc008": 25, "cc009": 25, "cc010": 25, "ccctcctttttcc": 66, "ccess": 27, "ccomplish": 62, "cd": [31, 49, 53], "cde": 30, "cdef": 30, "cdmer": 59, "ce": 53, "cei": 64, "cell": [13, 35, 43, 45, 48, 52, 63, 65, 74, 75], "cellar": 30, "cement": [13, 17, 18, 45], "center": [3, 26, 28, 30], "central": [4, 6, 41, 70], "centuri": 64, "certain": [3, 17, 18, 26, 27, 39, 42, 45, 50, 62, 63, 64, 74], "certainli": [30, 75], "cf": [23, 53], "chain": 51, "chair": 66, "challeng": [35, 37, 42, 67], "chanc": [7, 44, 45, 58, 59, 60, 62], "chang": [2, 3, 4, 5, 6, 7, 14, 16, 17, 18, 21, 22, 26, 27, 29, 30, 40, 43, 45, 46, 50, 51, 52, 64, 67, 73], "change_spe": 45, "changeabl": 14, "channel": [26, 58, 59, 60], "chao": 28, "chapter": 56, "char": [30, 68], "charact": [15, 17, 18, 21, 22, 25, 27, 30, 37, 38, 52, 64, 68, 75], "character": [45, 64], "characterist": [17, 18, 45], "charli": 34, "chart": 68, "cheat": [27, 68], "check": [0, 3, 4, 5, 7, 12, 13, 17, 18, 21, 22, 23, 28, 29, 30, 34, 35, 41, 43, 44, 47, 49, 53, 58, 59, 62, 63, 64, 67, 68, 74], "check_unused_arg": 30, "checker": 35, "checkmousepress": 6, "checkout": [67, 70], "checktim": 62, "chen": 40, "cherri": 40, "chess": 54, "chesterton": 56, "chet": 68, "chevrolet": 35, "chew": 56, "child": [18, 45], "children": [18, 56], "chile": 41, "china": 41, "chines": 25, "chirpi": 68, "chloe": 46, "chloramphenicol": 64, "chocol": 50, "choic": [8, 14, 19, 23, 30, 36, 37, 44, 45, 66, 74], "choos": [0, 16, 17, 18, 20, 28, 29, 37, 45, 55, 56, 58, 59, 66], "chordat": 56, "chosen": [23, 30, 36, 74], "chr": 41, "chrisdh79": 28, "christma": 68, "chunk": [3, 15, 16, 75], "church": 28, "cie": 64, "circl": [6, 7, 14, 25, 29, 68], "circular": 30, "circularlist": 30, "citi": [54, 68], "civil": [28, 41], "claim": 56, "clang": [58, 59], "clarifi": 46, "clariti": [45, 46], "clash": 28, "class": [1, 3, 4, 6, 7, 12, 13, 17, 21, 23, 26, 27, 28, 34, 40, 44, 46, 49, 52, 54, 58, 59, 62, 63, 68, 70, 71, 75], "classifi": 56, "classlist": 34, "classnam": 45, "classroom": [67, 70], "claus": [50, 51, 75], "clean": [1, 34, 45, 46, 54, 56, 70, 75], "cleaner": [12, 45, 51], "cleanli": 50, "clear": [30, 45, 46, 52, 75], "clearer": [45, 75], "clearest": [15, 17, 18], "clearev": 29, "clearli": [15, 16, 17, 18, 46, 54], "click": [4, 6, 7, 12, 16, 23, 24, 25, 27, 28, 31, 45, 52, 58, 59, 64], "click_i": 12, "click_x": 12, "clicked_imag": 12, "clickreset": 6, "client_id": 28, "client_secret": 28, "clipboard": [31, 41], "clippath": 26, "clmtcau": [20, 55], "clock": [13, 24, 29], "clockwis": 3, "clone": [2, 3, 36, 49, 60, 62, 67, 70], "close": [3, 8, 11, 14, 28, 29, 30, 38, 39, 45, 58, 59, 62, 68, 74], "clutter": 45, "cmder": 31, "cnn": [28, 68], "co": [29, 45], "coalesc": 0, "cockroach": 46, "code": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 28, 30, 34, 35, 36, 37, 38, 39, 42, 43, 45, 46, 49, 50, 51, 52, 54, 60, 61, 62, 63, 64, 65, 67, 69, 70, 73, 74], "code1": 27, "code_data": 9, "codebas": [8, 45, 68], "codebook": [17, 18], "coder": 26, "codi": [51, 52], "coeffici": [41, 64], "coerc": 56, "cog": 64, "cognit": 1, "cogniz": 63, "col": [9, 12, 13], "col_nam": [29, 34], "cold": 68, "collabor": 45, "collect": [9, 11, 13, 23, 27, 30, 46, 52, 54, 56, 61, 75], "colleg": 17, "colli": 52, "collin": 56, "colloc": [0, 5], "collocation_list": 56, "colnam": 29, "colon": 51, "colonel": 56, "color": [3, 4, 6, 8, 9, 11, 13, 14, 23, 24, 25, 26, 28, 29, 30, 35, 36, 37, 45, 49, 58, 59, 62, 64], "color_tri": 62, "colorado": 28, "colorlett": 6, "colorsnshapes888": 28, "colorspac": 26, "colou": 64, "colour": [28, 64], "column": [0, 6, 9, 11, 12, 13, 14, 15, 16, 23, 24, 25, 26, 29, 30, 37, 56, 60], "com": [0, 11, 21, 22, 28, 29, 30, 40, 52, 64, 68, 69], "combin": [6, 16, 17, 18, 23, 41, 46, 49, 50, 54, 56, 63, 70], "come": [9, 10, 12, 13, 15, 17, 18, 25, 26, 29, 38, 39, 41, 43, 44, 45, 46, 51, 52, 57, 60, 63, 67, 73, 75], "comfort": [11, 45, 52, 62], "comma": [9, 12, 13, 15, 23, 52], "command": [11, 15, 26, 28, 29, 46, 52, 58, 59, 63, 67, 70], "comment": [9, 45, 67, 70], "comment_karma": 28, "commit": [3, 15, 16, 67], "common": [5, 12, 16, 22, 29, 30, 34, 35, 37, 45, 46, 54, 56, 63, 64, 68, 75], "commonli": [45, 54], "commun": [22, 27, 75], "compact": [23, 30, 50, 53, 62, 70, 74], "compactli": 67, "compani": [22, 28, 54, 56], "compar": [0, 10, 11, 23, 29, 41, 45, 56, 65], "comparison": [15, 50], "compartment": 64, "compel": [17, 18], "compet": [52, 64], "compil": [27, 58, 59, 64, 67], "complement": 64, "complet": [2, 3, 7, 9, 10, 17, 18, 21, 30, 38, 40, 43, 45, 52, 53, 67, 70, 75], "complex": [26, 27, 30, 43, 45, 46, 51, 56, 62, 64, 69, 73, 75], "complic": [31, 45, 46, 62, 64, 70, 73, 75], "compliment": 51, "compon": [17, 18, 45], "compos": [26, 28, 30, 70, 75], "composit": [26, 56], "compound": [17, 18, 20, 22, 55], "comprehens": [29, 37, 44, 45, 64, 67], "compress": 26, "comput": [1, 5, 8, 11, 15, 16, 30, 35, 38, 40, 45, 56, 57, 60, 63, 64, 67, 69, 70, 75], "computation": 29, "compute_accuraci": 12, "compute_factori": 35, "con": 30, "concaten": [14, 15, 16, 63], "concentr": 28, "concept": [45, 46, 52, 54, 62], "conceptu": [29, 30], "concern": [28, 64], "concierg": 64, "concis": 45, "conclud": 45, "concord": 0, "conda": [58, 59], "condit": [9, 10, 11, 13, 15, 16, 23, 27, 28, 30, 34, 37, 47, 50, 52, 60, 74], "condrift": [17, 18], "conduct": 1, "confid": [1, 45, 51], "configur": [26, 27, 71], "confirm": [27, 56], "conflict": [45, 58, 59, 70], "conform": [22, 64], "confus": [11, 30, 45, 49, 53, 67, 75], "confusingli": 17, "congo": 41, "congratul": 45, "congruenc": [9, 15], "congruent": [9, 11, 15, 52, 74], "connect": [11, 46], "connectionstyl": 25, "consci": [20, 55], "conscienc": 64, "conscienti": 64, "consecut": [21, 22], "consequ": 60, "conserv": [17, 18, 28], "consid": [30, 45, 46, 50, 52, 54, 56, 74, 75], "consider": 67, "consist": [7, 30, 39, 45, 46, 60, 68, 75], "consol": [11, 13, 29, 36], "conson": 37, "conspiraci": 64, "constant": [7, 27], "constitu": 64, "constitut": 28, "construct": [30, 63], "constructor": 45, "consult": [17, 18], "consum": 56, "conta": 9, "contact": [26, 28], "contain": [5, 7, 9, 10, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 26, 27, 29, 30, 31, 34, 35, 37, 40, 41, 43, 45, 46, 51, 52, 53, 56, 60, 61, 64, 67, 70], "contempl": 56, "content": [24, 27, 28, 29, 30, 31, 43, 46, 51, 62, 68], "context": [1, 11, 45, 46, 52, 56, 63], "conting": [62, 64], "continu": [3, 6, 7, 12, 15, 16, 17, 18, 30, 31, 45, 51, 59, 74], "continuum": 24, "continuumcod": 24, "contract": 56, "contrast": 29, "control": [12, 13, 20, 27, 28, 30, 60, 62, 70], "convei": 67, "conveni": 52, "convent": [45, 46, 52, 63, 70, 75], "convention": 9, "converg": 29, "convers": [17, 18, 30, 41, 52, 75], "convert": [14, 22, 30, 34, 37, 45, 63, 75], "convert_field": 30, "convert_gend": 41, "convert_score_to_grad": 34, "cook": 68, "cooki": 50, "cool": [30, 52], "cooper": 16, "coord": [12, 25, 29], "coordin": [6, 12, 45], "coordinatetool": 29, "coording": 45, "copi": [3, 7, 26, 27, 46, 49, 58, 59, 62], "copydict": 29, "copyfil": 30, "copyright": [56, 58, 59], "cor": [16, 41], "core": [3, 6, 8, 11, 13, 14, 23, 24, 25, 29, 34, 36, 45, 51, 62], "cork": 46, "corner": [7, 58, 59, 64], "cornerston": 45, "coronaviru": 28, "corpor": [22, 64], "corpora": [5, 56], "corpu": [5, 22, 56, 64], "correct": [5, 6, 8, 11, 12, 13, 14, 15, 17, 18, 19, 22, 23, 27, 29, 36, 45, 46, 60, 62, 67, 70], "correct_respons": 47, "correctfeedback": [23, 29, 36], "correctli": [5, 8, 11, 12, 13, 23, 36, 40, 45, 51, 60, 62, 65, 66, 73], "correctrespons": 47, "correl": [16, 17, 18], "correspond": [9, 12, 14, 17, 18, 23, 29, 37, 40, 45, 46, 50, 51, 64], "corrupt": 38, "corvett": 35, "cosmic": 68, "cosplay": 28, "cost": 15, "cote": 41, "cotton": 28, "could": [26, 29, 41, 44, 45, 46, 47, 50, 52, 54, 56, 58, 59, 61, 63, 64, 75], "couldn": [11, 56], "count": [0, 27, 30, 40, 52, 53, 56, 63, 74, 75], "count_over9": [21, 22, 64], "count_vowels_in_str": 40, "counter": [19, 30, 38, 64], "counterbalanc": [47, 60], "counterclockwis": 3, "counterterror": 64, "counterterrorist": 64, "counti": 28, "countri": [20, 41, 54, 55, 68], "countrycontinentyearlifeexppopgdppercap": 41, "countryestim": 41, "countryyearlifeexp": 41, "coupl": [27, 43, 45, 67, 69, 75], "cours": [1, 7, 12, 17, 29, 30, 40, 41, 46, 50, 58, 59, 60, 67, 68, 75], "court": 28, "cousin": 68, "cover": [1, 24, 30, 45, 46, 58, 66, 75], "covid": 28, "cow": [44, 74], "cp": 31, "crack": 56, "craft": [17, 18, 45], "crappyfilenam": 31, "crash": [11, 14, 22, 30, 45, 67], "cream": 50, "creat": [3, 6, 8, 9, 10, 11, 14, 15, 16, 17, 18, 20, 26, 27, 28, 31, 34, 35, 41, 44, 45, 46, 47, 49, 51, 54, 55, 56, 60, 62, 64, 67, 68, 70, 74, 75], "created_utc": 28, "creation": [34, 45], "creativ": 68, "credit": [5, 17, 18, 58, 59], "creep": 73, "crew": 45, "cri": 56, "crisp": 50, "criteria": 49, "critic": [17, 18, 45, 46], "critter": 28, "crocodil": 56, "crocodilian_reptil": 56, "crosbi": 40, "cross": [8, 23, 64, 68, 74], "crucial": 45, "csv": [9, 12, 13, 15, 16, 20, 23, 24, 25, 29, 31, 38, 40, 41, 55, 60, 61], "ctrl": [29, 31, 59], "cue": [5, 74], "cumbersom": [30, 62, 63], "cur_angl": 45, "cur_angle_to_devi": 45, "cur_circl": 45, "cur_color": 11, "cur_fil": 49, "cur_imag": 52, "cur_num": 63, "cur_orient": 11, "cur_stim": 8, "cur_submiss": 28, "cur_subreddit": 28, "cur_synset": 56, "cur_trial": [11, 29, 75], "cur_trial_typ": 11, "cur_vowel": 35, "cur_word": [11, 37], "curangl": 29, "curaspect": 36, "curcol": 25, "curcu": 74, "curextens": 29, "curfil": 29, "curiou": [13, 50, 74], "curit": 36, "curlett": 6, "curli": [46, 63], "curobj": 25, "curpic": 25, "curpositiontyp": 23, "currenc": 64, "current": [4, 6, 7, 11, 12, 13, 23, 26, 29, 30, 31, 45, 46, 49, 50, 51, 52, 60, 62, 70, 74], "current_ag": 51, "current_block_num": 12, "current_color": 62, "current_nam": 51, "current_numb": 51, "current_st": 6, "currentcondit": 68, "curresp": 66, "currow": 25, "cursor": [29, 31], "cursubj": 74, "curtarget": 74, "curtrial": [23, 24, 29, 36, 60, 75], "curv": [17, 18], "curword": 64, "custom": [41, 45, 67], "cut": 31, "cv": 29, "cycl": [8, 31, 62], "cygwin": 31, "cyru": 68, "czech": 41, "d": [12, 13, 14, 18, 26, 27, 28, 29, 30, 31, 34, 41, 44, 45, 46, 51, 53, 54, 56, 64, 66, 68, 70], "dai": [28, 29, 56, 68, 75], "dali": 30, "dalia": 52, "damn": 68, "danc": 56, "daniel": 34, "darci": 56, "dare": 56, "darker": 28, "darlow": 27, "darwin": [58, 59], "dash": [21, 22], "dat": [15, 16, 23, 30], "data": [0, 1, 5, 6, 9, 11, 12, 13, 14, 17, 18, 20, 21, 22, 23, 25, 27, 28, 29, 30, 37, 38, 39, 41, 45, 49, 52, 54, 55, 56, 63, 64, 67, 68, 71], "data_fil": 29, "data_for_bonu": 5, "data_format_test": 23, "databas": [27, 46], "datafil": 30, "datafram": [11, 15, 16, 17, 18, 24, 34, 67], "dataset": [18, 22, 41, 61], "datastructur": 30, "datastyp": 45, "datatyp": [26, 45], "date": [16, 31, 54, 56, 67], "datetim": 28, "daughter": 56, "daunt": 45, "db": 29, "dbl": [15, 41], "de": [56, 68], "dead": 28, "deadlin": 70, "deal": [12, 29, 40, 43, 56, 68, 73], "dear": 56, "death": 28, "debt": 28, "debug": [1, 26, 45, 52, 63, 67, 70, 75], "debugthis2": 23, "debunk": 28, "decad": 22, "decid": [11, 45, 51, 52, 74], "decim": [30, 75], "deck": 28, "declar": 63, "declin": 18, "decod": [11, 56], "decor": 26, "decreas": [3, 41, 46, 52, 56, 63], "dedic": 45, "deep": [37, 46], "deep_thought_dict": 37, "deeper": [28, 45, 46], "deer": 28, "def": [6, 9, 10, 12, 19, 23, 24, 29, 30, 34, 35, 36, 37, 40, 43, 44, 45, 46, 48, 49, 51, 54, 56, 57, 58, 59, 64, 74], "default": [6, 7, 9, 13, 15, 27, 29, 30, 31, 34, 45, 46, 51, 52, 56, 58, 59, 70, 75], "defenc": 28, "defend": 73, "defici": 64, "defin": [3, 5, 6, 8, 9, 20, 27, 30, 35, 40, 41, 43, 44, 45, 51, 54, 55, 57, 62, 63, 65, 75], "definit": [30, 35, 45, 46, 51, 56], "deg": 3, "degre": [3, 6, 13, 17, 18, 20, 55], "degreesperitem": 6, "dehaen": 26, "del": [46, 52], "delai": [6, 8, 12, 26], "deleg": 26, "delet": [30, 46, 64], "delicaci": 64, "delim": 31, "delimit": [15, 16, 25, 30, 31], "delta": 24, "delta_spe": 45, "delv": 45, "dem": [28, 41], "demarc": 64, "dement": 28, "demo": [61, 67, 68], "democraci": 64, "democrat": [20, 28, 55], "demograph": [17, 18, 29, 41], "demonstr": [8, 11, 29, 34, 35, 37, 45, 46, 54], "deni": 27, "denmark": 41, "denni": 54, "dens": 75, "dental": 28, "depend": [11, 12, 13, 23, 25, 30, 37, 43, 45, 46, 56, 58, 59, 64, 67, 74, 75], "deposit": 30, "depth": [26, 30, 56], "deriv": 45, "descend": 7, "describ": [46, 54, 67], "describe_person": 54, "descript": [17, 18, 28, 30, 54, 60, 75], "descriptor": 30, "desia": 52, "design": [1, 13, 27, 28, 45, 52, 60, 61, 63, 67, 74, 75], "designd": 35, "desir": [16, 45, 64, 74], "despit": 52, "despu": 68, "dessert": 50, "destin": 26, "destini": 40, "detail": [27, 31, 43, 45, 51, 58, 59, 75], "detect": [11, 14, 60], "determin": [6, 12, 13, 15, 30, 45, 60, 64, 74], "devast": 28, "develop": [1, 10, 15, 16, 28, 45, 51, 59, 75], "development_resourc": 75, "devour": 68, "df": 34, "di": [28, 54], "diagon": 16, "diapsid": 56, "dicho": 0, "dict": [25, 29, 49, 66], "dict_for_sort": 46, "dict_item": 46, "dictat": 75, "dictionari": [9, 11, 14, 23, 29, 30, 34, 35, 43, 45, 49, 54, 56, 67, 71], "dictionary_nam": 46, "dictonari": [45, 46], "did": [5, 7, 13, 18, 23, 26, 27, 43, 56, 58, 59, 67, 70], "didn": [28, 39, 40, 51, 56, 67], "didnt": 28, "die": 28, "diff": [13, 23, 74], "diff_pair": 74, "diff_trial": 74, "differ": [8, 12, 13, 15, 16, 17, 18, 20, 23, 26, 27, 28, 30, 35, 37, 41, 43, 44, 45, 50, 51, 52, 54, 55, 56, 57, 58, 60, 63, 65, 67, 68, 69, 70, 74, 75], "differenti": [28, 45], "difficult": [3, 18, 21, 22, 45, 75], "digit": [22, 24, 30, 64], "dimens": [12, 17, 18, 24, 26, 29], "dimension": [34, 45, 71], "dimmer": 45, "dinosaur": 56, "dip": 1, "direct": [13, 17, 24, 26, 31, 45, 67], "direction": 17, "directli": [27, 29, 45, 50], "director": 64, "directori": [5, 9, 12, 13, 15, 16, 23, 26, 27, 29, 45, 60, 70], "dirt": 68, "disappear": [7, 8, 29, 52], "disco": 68, "disconnect": 11, "discov": [17, 18], "discoveri": 68, "discrep": [18, 28, 29, 64], "discuss": [15, 17, 28, 30, 52, 61, 63, 67, 70], "disgr": 56, "disjunct": 64, "dispar": 28, "dispersion_plot": 56, "displai": [3, 6, 10, 13, 14, 16, 23, 24, 25, 27, 29, 36, 45, 46, 49, 51, 52, 54, 56, 58, 59, 60, 61, 62, 68, 75], "display": 23, "display_nam": 28, "displayed_str": [13, 16], "dispos": 26, "disqualifi": 27, "disrupt": [21, 22, 68], "dissimilar": 25, "dist": 25, "distanc": [7, 25, 45], "distancei": 25, "distancex": 25, "distinct": [29, 30, 43, 45], "distort": 26, "distractor": 23, "distractor1actor": 23, "distractor2actor": 23, "distractorcategori": 23, "distractoremotion1": 23, "distractoremotion2": 23, "distractorimage1": 23, "distractorimage2": 23, "distractorposit": 23, "distribut": [19, 23, 74], "district": 28, "dither": 26, "ditto": 30, "divers": 75, "divid": [26, 75], "divis": [30, 75], "divorc": [17, 18], "dlg": [29, 47, 58, 59], "dlgfromdict": [29, 47], "do": [1, 3, 4, 5, 6, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 25, 26, 27, 28, 30, 35, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 50, 51, 53, 54, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 73, 74, 75], "do_adjust": 13, "doc": [24, 29, 30], "docstr": [9, 67], "document": [9, 27, 28, 31, 45, 58, 59, 67, 70, 75], "dod": 35, "dodg": 35, "doe": [3, 6, 9, 11, 17, 18, 20, 22, 27, 28, 29, 30, 40, 41, 45, 46, 49, 50, 51, 52, 54, 55, 56, 62, 63, 64, 65, 70, 75], "doesn": [17, 26, 28, 30, 42, 45, 46, 51, 56, 58, 59, 63, 74, 75], "dog": [28, 29, 35, 37, 38, 44, 46, 49, 50, 52, 53, 56, 63, 64, 65, 74], "dogs_pres": 50, "dogs_we_know": 50, "doin": 68, "dollar": 64, "dolphin": 74, "domain": [21, 22, 64], "domin": 56, "don": [3, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 21, 22, 26, 27, 28, 29, 30, 34, 37, 38, 45, 46, 50, 51, 52, 53, 54, 56, 58, 59, 60, 63, 64, 65, 67, 68, 70, 75], "done": [11, 12, 20, 24, 25, 29, 30, 31, 38, 42, 45, 50, 51, 70, 75], "donetext": 25, "donnelli": 40, "dont": [28, 67], "doomsdai": 28, "door": 19, "doorknob": 49, "doorwai": 27, "dormous": 56, "dot": [21, 22, 45, 68, 70, 75], "doubl": [10, 23, 28, 45, 58, 59], "down": [4, 6, 7, 9, 13, 14, 15, 17, 24, 29, 31, 36, 37, 45, 56, 63, 70], "download": [17, 18, 56, 58, 67, 68], "downvot": 28, "downward": [7, 45], "dplyr": [17, 18, 39, 41], "dr": 68, "dramat": [20, 55], "drastic": 56, "drat": [17, 18], "draw": [3, 6, 8, 14, 23, 24, 25, 26, 29, 36, 45, 49, 62], "draw_ellips": 26, "drawn": [3, 25, 62, 74], "drawstim": 6, "drew": [52, 62], "drive": [45, 56, 58, 59], "drivewai": 28, "droodl": 60, "drop": 9, "dropbox": [25, 54], "dropdown": 29, "drug": 28, "drunk": 28, "dst": 30, "dt": 64, "dtype": 34, "dual": 71, "duchess": 56, "duck": 49, "due": [16, 27, 67, 70], "dunno": 28, "duplic": [35, 45, 58], "duplicated_list": 35, "durat": 29, "dure": [18, 28, 56, 60, 70, 75], "dutch": 75, "dynam": [9, 30, 37, 45, 46, 63], "e": [0, 1, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 26, 27, 30, 35, 37, 38, 40, 41, 42, 43, 44, 46, 47, 49, 50, 52, 53, 54, 56, 57, 58, 60, 62, 63, 64, 66, 68, 70, 74, 75], "e0_1": 2, "e0_2": 2, "e3_4_challeng": 9, "each": [2, 3, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17, 18, 22, 23, 26, 27, 29, 30, 31, 34, 35, 37, 39, 40, 43, 45, 46, 50, 51, 53, 54, 56, 57, 60, 62, 63, 64, 67, 74], "eaier": 28, "earanc": 56, "earli": [28, 67], "earlier": [7, 17, 18, 51, 54, 58, 59, 70], "earliest": 37, "earnest": 56, "earth": [7, 56, 68], "earthquak": 71, "earthsun": [17, 18], "eas": 74, "easi": [15, 25, 27, 29, 30, 31, 41, 42, 44, 45, 46, 49, 50, 52, 58, 59, 68, 70, 74, 75], "easier": [8, 16, 27, 36, 44, 45, 46, 51, 52, 75], "easiest": [29, 30, 74], "easili": [14, 27, 29, 40, 45, 50, 52, 59, 62, 64, 70, 75], "eat": 56, "ec_101": 23, "ec_101_trial": 23, "echo": 27, "econom": [22, 28], "ecuador": 41, "ed": [30, 56], "edg": [21, 22, 56], "edgeworth": 56, "edh": 28, "edinburgh": [21, 22], "edit": [2, 3, 7, 23, 27, 58, 59, 62, 64, 70], "editor": [31, 45, 58, 59, 64], "edu": [27, 64, 69], "ee62d7991d84": 65, "efecto": 68, "effbot": 30, "effect": [10, 11, 15, 17, 18, 20, 28, 39, 43, 45, 49, 51, 53, 56, 67], "efficaci": [10, 64], "effici": [5, 27, 35, 45, 50, 51, 64, 75], "effort": [45, 51, 54], "eger": 52, "egg": 30, "egypt": 41, "ehmatth": 75, "ei": [45, 64], "either": [10, 11, 30, 50, 51, 52, 56, 58, 59, 62, 64, 70, 75], "el": 41, "elect": 28, "electron": [17, 18], "eleg": [29, 45, 47, 75], "element": [14, 27, 29, 30, 35, 37, 38, 40, 44, 46, 53, 62, 66, 75], "eleph": [44, 60], "elicit": 13, "elif": [13, 23, 24, 29, 37, 46, 48, 51, 57, 63, 65], "elimin": [29, 58, 59, 64], "eliza": 68, "elizabeth": 56, "ellips": 26, "elment": 44, "els": [6, 11, 23, 24, 27, 28, 29, 30, 31, 35, 36, 37, 46, 47, 48, 51, 52, 54, 56, 57, 60, 61, 63, 65, 70, 73, 74], "elsewher": 28, "elt": 30, "email": [64, 67], "emailregexgroup": 64, "emb": 53, "embed": [25, 27, 29, 53], "embedding_": 25, "emerg": 64, "emili": 34, "emma": [5, 52, 56], "emot": [23, 24], "emotionchosen": 23, "emotionmorphtext": 24, "emotionprompt": [23, 36], "empathy1": [17, 18], "empathy2": [17, 18], "emphas": 45, "employ": [17, 18], "employe": 28, "empow": 45, "empti": [21, 25, 29, 45, 46, 50, 52, 54, 75], "en": [0, 28, 68], "enabl": [11, 45, 64], "encapsul": 45, "encas": 63, "encod": [21, 22, 64], "encount": [45, 54, 75], "encourag": [15, 16, 67], "end": [4, 9, 17, 18, 21, 22, 25, 26, 27, 28, 29, 30, 35, 37, 38, 42, 45, 51, 54, 56, 60, 61, 63, 64, 67, 68, 70], "end_stat": 6, "endian": 26, "endswith": 56, "enemi": [7, 45, 68], "energi": [64, 68], "enforc": 26, "engin": [1, 39, 45], "english": [56, 64, 75], "enhanc": 45, "enlighten": 45, "enorm": 68, "enough": [17, 18, 28, 30, 45, 63, 75], "enron": 22, "enronemail": 22, "enronemail_redacted_teamnam": 22, "ensur": [9, 30, 44, 45, 49, 67, 70, 74], "enter": [3, 9, 14, 27, 29, 39, 47, 56, 58, 59, 62, 64], "entertain": [], "entir": [17, 18, 45, 46, 52, 64, 75], "entiti": [45, 56], "entri": [29, 46, 56], "entur": 10, "enumer": [6, 28, 29, 35, 45, 48, 57, 65, 66, 68], "env": [13, 30], "environ": [1, 11, 16, 28, 42, 59, 67, 70], "equal": [13, 23, 27, 29, 46, 47, 49, 63, 74], "equat": 7, "equilateraltriangl": 26, "equilateraltriangle_": 26, "equilateraltriangle_0": 26, "equilateraltriangle_1": 26, "equilateraltriangle_crop": 26, "equip": 45, "equival": [13, 17, 18, 26, 29, 53, 63], "er": 56, "eric": [46, 50, 51, 75], "erik": 68, "erm": 50, "error": [11, 12, 13, 14, 16, 23, 30, 36, 44, 49, 50, 54, 56, 58, 59, 62, 63, 64, 65, 67, 70, 75], "errordlg": 29, "errorstatisticp": 41, "esc": 31, "escap": [30, 31, 64, 75], "especi": [17, 18, 23, 29, 41, 43, 45, 56, 62, 68, 74, 75], "essai": 56, "essenc": [45, 68], "essenti": 45, "establish": [45, 75], "estim": [16, 41, 74], "etc": [3, 6, 9, 10, 14, 26, 29, 30, 34, 35, 36, 37, 38, 43, 45, 56, 60, 64, 67], "euclidean": 25, "evalu": [26, 29, 50, 63], "evan": 40, "even": [21, 22, 28, 45, 46, 50, 51, 52, 54, 56, 64, 67, 74, 75], "evenli": 28, "event": [3, 4, 6, 8, 13, 14, 17, 18, 23, 24, 25, 29, 36, 45, 47, 62, 68], "eventu": [27, 45], "ever": [28, 46, 50, 52, 75], "everi": [6, 7, 8, 9, 11, 19, 25, 28, 29, 30, 31, 42, 44, 45, 50, 51, 52, 60, 64, 65, 70, 73, 74, 75], "everth": 54, "everyon": [14, 23, 28, 45, 50, 52, 54, 75], "everyth": [26, 34, 45, 52, 54, 57, 58, 59, 62, 74, 75], "evid": [28, 45], "evolv": [17, 18, 45], "evolved2": [17, 18], "ex": 59, "exact": [10, 13, 37, 45, 46, 56, 60, 74, 75], "exactli": [12, 13, 14, 29, 45, 46, 51, 52, 54, 62, 63, 64, 74, 75], "examin": [10, 20, 56, 60, 68], "exampl": [0, 4, 5, 6, 9, 11, 13, 14, 17, 18, 19, 21, 22, 24, 27, 29, 30, 31, 34, 35, 37, 40, 41, 43, 44, 46, 52, 53, 54, 56, 60, 62, 63, 64, 67, 69, 70, 71, 74, 75], "example_funct": 54, "excel": [30, 34, 74], "except": [9, 12, 29, 35, 40, 49, 56, 60, 64, 67, 71, 73, 74], "excess": 28, "excit": [18, 45], "exclud": [16, 27, 31, 64, 74], "exclus": 45, "excurs": [], "exec": [27, 31], "exectur": 30, "execut": [27, 29, 31, 34, 45, 47, 50, 51, 58, 59, 62, 63, 67, 74], "exemplar": 60, "exemplifi": 45, "exercis": [0, 4, 6, 29, 30, 35, 37, 38, 45, 47, 55, 61, 67, 69, 70], "exercise5": 13, "exercise_": 70, "exercise_0": 70, "exercise_0_1": 70, "exercise_11": 7, "exercise_1_": 70, "exercise_1_1": [3, 70], "exercise_1_2": [3, 70], "exercise_1_3": 3, "exercise_2_3": 70, "exercise_3": 11, "exercise_4": 67, "exercise_4_collect_data": 67, "exercise_5_se": 12, "exercise_5_sound": 12, "exercise_6": [15, 16], "exercise_6_don": [15, 16], "exist": [9, 12, 13, 28, 29, 30, 31, 38, 45, 46, 49, 61], "exit": [3, 6, 29, 30, 31, 45, 58, 59, 62, 63], "exp": 6, "exp_vers": 29, "expand": [14, 26, 45, 46], "expandtab": 30, "expect": [10, 13, 34, 41, 43, 45, 49, 52, 54, 74, 75], "experi": [1, 8, 9, 10, 11, 12, 14, 16, 23, 26, 28, 29, 30, 49, 59, 60, 62, 67, 74], "experienc": [28, 64], "experiment": [1, 6, 10, 23, 34, 45, 74], "experiment_code_for_refer": 29, "experiments1": 27, "expert": 12, "explain": [5, 9, 16, 22, 61, 67, 75], "explan": [5, 29, 43], "explanatori": 67, "explicit": [37, 52, 75], "explicitli": [25, 29, 37, 38, 45, 52, 64, 75], "explor": [31, 45, 67, 68], "explos": 68, "expon": 75, "exponenti": 7, "expos": 23, "express": [30, 36, 53, 67, 75], "exptim": 24, "ext": 22, "extend": [7, 14, 29, 40, 45, 47, 67], "extens": [29, 31, 45, 49, 58, 59], "extent": 13, "extern": [12, 13, 29, 38, 49, 67], "extra": [17, 18, 23, 27, 29, 31, 54, 67], "extract": [59, 60], "extracurricular": 64, "extraterrestri": 64, "extrem": [41, 70], "ey": 23, "ezgi": 52, "f": [9, 14, 21, 23, 26, 28, 29, 30, 31, 34, 36, 45, 46, 52, 53, 57, 63, 64, 65, 69, 70, 74, 75], "f1": 31, "face": [28, 36, 56, 67, 75], "face1": 26, "face_names_103": 12, "facil": [45, 68], "fact": [17, 19, 45, 52, 54, 60, 62, 70, 75], "factor": [10, 15, 17, 18, 23, 67, 74], "factori": 35, "fail": [28, 50, 54, 58, 59], "failur": 30, "fair": [52, 75], "fairli": [20, 46], "fall": [7, 68], "fals": [6, 7, 21, 22, 24, 25, 29, 30, 34, 37, 45, 46, 48, 53, 57, 60, 62, 63, 65, 68, 74, 75], "famili": [56, 68], "familiar": [26, 34, 45, 62, 63], "famou": 54, "famous_book": 54, "fanci": [64, 68], "fancier": [29, 64], "fangg": 40, "fantast": 27, "far": [8, 14, 28, 45, 46, 50, 62, 67, 74], "fascin": 68, "fast": [12, 15, 28, 30, 64], "faster": [5, 29, 41, 45, 56], "fat": 68, "favor": 64, "favorit": [46, 50], "favorite_dessert": 50, "favorite_languag": 54, "favorite_numb": 46, "favour": 64, "fc": 25, "fc8add8796e2": 0, "fct": [15, 41], "fct_rev": [17, 18], "featur": [12, 27, 29, 34, 45, 62, 67], "februari": 68, "feder": 28, "feed": [5, 16], "feedback": [8, 14, 60, 61, 62, 70, 75], "feel": [13, 17, 18, 20, 24, 28, 45, 52, 56, 59, 64, 67], "femal": [17, 18, 23, 24, 29], "femalewoman": 41, "fetch": [27, 70], "few": [1, 5, 19, 21, 22, 24, 28, 34, 35, 45, 46, 49, 52, 54, 56, 57, 64, 67, 75], "fewer": [11, 17, 28], "ffmpeg": 11, "fi": 56, "fib": 57, "fib_seq": [48, 57], "fib_so_far": [48, 57], "fibonacci": [48, 57], "fiction": 64, "field": [9, 10, 12, 13, 27, 29, 30, 45, 75], "field_nam": 30, "fienam": [12, 13], "fifth": 52, "fig": 4, "figur": [5, 12, 13, 14, 15, 17, 18, 20, 23, 31, 40, 46, 51, 52, 53, 56, 60, 62, 63, 66, 68, 75], "filament": 64, "file": [2, 3, 6, 9, 10, 11, 12, 13, 14, 15, 16, 22, 25, 26, 27, 28, 36, 37, 41, 45, 52, 56, 58, 59, 61, 62, 65, 67, 75], "file1": 31, "file2": 31, "file_list": [29, 49], "fileexistserror": [9, 49], "filehandl": [29, 30], "fileid": 56, "filematrix": 49, "filenam": [12, 13, 14, 23, 24, 26, 29, 49, 60, 70, 74], "filename_0": 26, "filename_1": 26, "files_data": 29, "filetool": 29, "filetyp": 29, "fill": [3, 13, 26, 29, 30, 40, 46, 52, 56], "fillchar": 30, "fillcolor": [3, 6, 8, 25, 36, 45, 62], "filler": 60, "fillrul": 26, "film": 56, "filter": [16, 17, 26, 41, 53], "final": [12, 14, 15, 16, 22, 25, 26, 27, 29, 41, 45, 52, 54, 58, 59, 61, 67, 70, 75], "financ": 22, "financi": [22, 64], "find": [10, 16, 17, 18, 19, 20, 21, 22, 24, 25, 28, 29, 31, 37, 39, 44, 45, 46, 50, 51, 55, 56, 61, 64, 67, 70], "find_al": 68, "find_next": 68, "findal": 64, "finder": 58, "fine": [11, 17, 50, 54, 66], "finer": 56, "finger": [13, 68], "finish": [3, 37, 44, 67, 70], "finit": [4, 6], "finnish": 68, "fire": 28, "first": [2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 16, 22, 23, 25, 26, 27, 28, 29, 30, 34, 39, 41, 43, 45, 46, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 68, 70, 74, 75], "first_batch": 52, "first_dog": 52, "first_nam": [40, 54, 75], "first_shuttl": 45, "firsthand": 45, "firstnam": 30, "fish": 45, "fisher": 30, "fit": [15, 16, 17, 18, 25, 26, 45], "fitzwilliam": 56, "five": [38, 63], "fix": [17, 18, 23, 35, 36, 45, 51, 56, 58, 59, 75], "fix_spac": [21, 22], "fixat": [4, 6, 8], "flag": [26, 31, 38, 70], "flair": 5, "flamenco": 64, "flamingo": [21, 22, 64], "flash": [3, 27, 68], "flat": [56, 75], "flavor": 43, "fleet": 45, "flexibl": [22, 27, 29, 45, 46, 49, 54], "flexibli": [27, 30, 41, 62], "flight": 45, "flights_complet": 45, "flip": [3, 6, 8, 11, 14, 17, 18, 23, 24, 29, 36, 45, 62], "fliphoriz": 29, "float": [9, 25, 29, 43, 46, 63, 65, 74], "flour": 60, "flourish": 67, "flow": 27, "flower": [57, 60, 68], "flu": 28, "flush": [29, 30], "fly": 45, "flyingcatwithhorn": 28, "flyswatt": 37, "fn": 57, "fn_1": 57, "fn_2": 57, "focu": [45, 51], "focus": [45, 67], "folder": [12, 58], "follow": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 22, 23, 29, 31, 37, 38, 42, 44, 45, 46, 50, 51, 52, 54, 58, 59, 60, 62, 64, 67, 68, 70, 74, 75], "font": [9, 26], "food": 56, "foot": 68, "forc": [45, 66, 68], "forecast": 68, "foreign": 28, "forev": 8, "forget": [70, 75], "fork": 62, "form": [3, 21, 22, 28, 30, 31, 45, 51, 56, 67, 70], "formal": [45, 64], "format": [9, 12, 13, 22, 23, 30, 31, 34, 46, 54, 56, 63, 70], "format_field": 30, "format_spec": 30, "format_str": 30, "formatt": 30, "formula": 45, "forster": 56, "forth": 52, "fortun": [39, 56], "forward": [31, 35, 52, 56, 75], "foster": 45, "found": [27, 28, 30, 41, 52, 60, 65, 70], "foundat": 45, "four": [38, 41, 60, 64, 65, 66], "fourth": 52, "fox": [21, 22, 53], "frame": [6, 7, 11, 15, 16, 24, 41, 48], "framework": 30, "franci": 64, "francin": 68, "frank": [34, 68], "freaki": 68, "free": [11, 13, 17, 18, 20, 24, 28, 45, 46, 54, 59, 67, 75], "freestyl": 46, "freq": 64, "freqdist": [5, 28, 56], "frequenc": [0, 64, 68, 74], "frequent": [5, 41, 56, 62, 74], "fri": 30, "fridai": 67, "friend": 56, "friendli": [58, 59], "frm": 30, "from": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 30, 35, 36, 37, 38, 40, 41, 43, 44, 46, 49, 51, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 67, 68, 69, 70, 74, 75], "fromfil": 29, "fromstr": 29, "fromthi": 26, "fromtimestamp": 28, "front": [28, 30, 54, 62], "fruit": 43, "fsm": [4, 6], "fsync": [29, 30], "fuel": 45, "full": [1, 2, 3, 8, 12, 14, 18, 28, 29, 40, 52, 59, 61, 62], "full_nam": [40, 75], "fuller": 14, "fullfilenam": 29, "fulli": [4, 6, 27, 45, 51], "fullpath": 29, "fun": 67, "function": [3, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 26, 27, 34, 35, 37, 38, 41, 42, 43, 44, 46, 49, 50, 52, 53, 55, 57, 58, 59, 62, 67, 71, 74, 75], "function_nam": 45, "fundament": [45, 67, 68], "funki": 52, "funnel": 27, "funni": 16, "furnitur": 56, "further": [9, 11, 12, 28, 45, 56, 58], "furthermor": 68, "futur": 70, "fuyi": 40, "g": [0, 1, 3, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 26, 27, 30, 31, 41, 42, 44, 46, 47, 49, 52, 53, 56, 57, 58, 60, 62, 63, 64, 68, 70, 75], "gabor": [13, 29], "gabriel": 27, "gai": [17, 28], "gain": [17, 18], "gambia": 41, "game": [7, 19, 45, 56, 71], "gap": 28, "gapmind": 41, "gardin": 56, "gari": [12, 29], "gary_lupyan": 12, "gaza0": 41, "gear": 42, "gender": [17, 18, 23, 24, 29, 41], "gendergender2": 41, "gendergender2participant_codeag": 41, "gendermix": 23, "gendermorphtext": 24, "gener": [4, 6, 9, 12, 13, 14, 15, 16, 23, 26, 37, 46, 47, 49, 50, 54, 56, 58, 59, 60, 61, 62, 63, 67, 70, 75], "generate_tri": [9, 12, 13, 29], "generate_word": 6, "generatetri": [9, 10, 29, 36], "geneviev": 68, "gentleman": 56, "geom_ablin": 16, "geom_hlin": 16, "geom_smooth": [17, 18], "geom_vlin": 16, "geometr": 7, "geometri": 26, "georg": 63, "get": [5, 6, 11, 12, 13, 15, 16, 17, 18, 19, 21, 22, 23, 26, 28, 34, 35, 45, 46, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 64, 65, 66, 74], "get_dist": 45, "get_field": 30, "get_height": 29, "get_keyboard_respons": 29, "get_number_word": 51, "get_po": 45, "get_runtime_var": [12, 29], "get_valu": 30, "get_width": 29, "getcwd": [29, 49], "getdur": 29, "getkei": [3, 6, 8, 29, 45, 62], "getmoviefram": 29, "getparamfromurl": 27, "getpo": 29, "getpress": [6, 24, 29], "getruntimevar": 29, "getsiz": 29, "gettext": 68, "gettim": [24, 29, 36], "getwheelrel": [13, 24], "ggplot": [16, 39, 67], "ggplot2": [58, 59, 67], "ghost": 68, "ghostscript": 26, "giant": 75, "gideon": 27, "gif": 26, "ginal": 70, "giraff": 65, "girl": [28, 68], "git": [11, 67], "github": [11, 12, 13, 21, 22, 35, 41, 45, 48, 52, 56, 64, 65, 67, 68, 74, 75], "githubusercont": 40, "gitrepo": [13, 35, 45, 48, 49, 52, 65, 74, 75], "give": [0, 1, 17, 18, 28, 29, 34, 42, 45, 46, 51, 52, 54, 56, 59, 62, 64, 67, 70], "given": [6, 10, 19, 23, 27, 28, 30, 40, 45, 50, 51, 52, 54, 60, 67, 75], "glacier": 64, "gladi": 68, "glanc": 27, "glimps": 68, "glob": [12, 13, 29, 67], "global": [13, 52, 71], "glossari": 46, "glove": 56, "glupyan": [13, 25, 30, 35, 45, 48, 49, 52, 56, 65, 70, 74, 75], "gmail": 64, "go": [3, 6, 7, 8, 9, 10, 12, 13, 14, 17, 18, 23, 24, 25, 26, 27, 28, 29, 31, 39, 44, 45, 46, 50, 52, 54, 56, 58, 59, 60, 61, 62, 63, 64, 67, 68, 69, 70, 74, 75], "goal": [13, 17, 18], "goali": 45, "goat": 19, "god": [20, 55, 56, 68], "goe": [13, 28, 29, 45, 46, 60], "goeden": 40, "goldberg": 54, "golden": [56, 57], "goldfish": 37, "goldin": 27, "gone": [35, 67, 69], "gonna": [37, 42], "good": [10, 14, 17, 18, 28, 30, 34, 43, 45, 49, 50, 51, 52, 54, 56, 58, 59, 61, 62, 63, 64, 67, 68, 74], "googl": [26, 28, 30, 31, 68], "gop": 28, "got": [13, 22, 26, 28, 30, 46, 49, 51, 58, 59, 64], "gotten": 42, "govern": [17, 18], "grab": [13, 28, 31, 40, 52, 64, 68], "grab_": 29, "grabscreenshot": 29, "gracechurch": 56, "graci": 64, "grade": [15, 16, 34], "gradual": [6, 7, 8, 27], "graduat": 1, "grai": [8, 24, 28], "grammar": [4, 6, 64], "grammat": 6, "grammaticalst": 6, "grampa": 68, "graph": [14, 16, 17, 18, 20, 39, 55, 61, 67], "graphic": [31, 68], "grasp": 45, "gravit": [7, 45, 68], "graviti": [7, 26], "great": [45, 56, 68, 75], "greater": [18, 49, 63], "greatli": [45, 46], "green": [8, 9, 11, 12, 23, 28, 30, 35, 36, 58, 59, 75], "greenbal": 30, "grees_g0": 28, "greet": [50, 52], "grei": [28, 62], "gremlin": 68, "grep": [31, 64], "grepl": 0, "greta": 34, "grid": 12, "ground": 7, "groundwork": 45, "group": [6, 15, 16, 17, 18, 19, 25, 27, 28, 45, 51, 56, 64, 67, 70, 74, 75], "group_bi": [18, 41], "grouped_df": 41, "grow": [25, 45, 52], "grrrr": 64, "gryphon": 56, "gss": [17, 18, 67], "gss_all": [17, 18], "gssr": 67, "gt": 41, "guarante": [30, 45], "guard": 73, "guatemala": 41, "guess": [5, 65, 75], "gui": [8, 9, 11, 12, 13, 23, 47, 58, 59, 64], "guid": [0, 58, 59, 67, 75], "guido": [54, 75], "guitar": 35, "gurnei": 68, "guru": 45, "gutenberg": [5, 56], "gweupub6m4q9yb2q9sovy6ougj20jq": 28, "h": [7, 14, 26, 30, 53, 56], "h3": 68, "ha": [3, 5, 6, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 28, 29, 30, 31, 34, 40, 41, 45, 46, 50, 51, 52, 54, 55, 56, 62, 68, 70, 74, 75], "habit": [68, 75], "hacienda": 64, "had": [1, 11, 14, 17, 18, 26, 28, 29, 37, 41, 43, 45, 46, 50, 51, 52, 54, 56, 68], "hadn": 56, "half": [3, 10, 60], "ham": [30, 46], "hamlet": [5, 56], "hamster": [37, 44], "hand": [0, 1, 22, 28, 30, 45, 56], "handei": 37, "handi": [10, 17, 18, 25, 26, 29, 31, 56, 58, 59, 68, 75], "handl": [10, 34, 38, 45, 52, 54, 67, 75], "handsom": 56, "hap": 24, "happen": [27, 29, 30, 31, 35, 43, 45, 51, 52, 53, 63, 64, 65, 66, 68, 70, 74, 75], "happi": [18, 23, 24, 36], "happier": 68, "hard": [9, 12, 17, 18, 20, 22, 28, 34, 58, 59, 67, 68, 70, 75], "hardcod": 46, "harder": [46, 62], "hardwar": [58, 59], "hare": 56, "has_sequenti": 30, "hash": 70, "hasn": 56, "hasnt": 28, "hate": 68, "hatter": 56, "have": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 25, 26, 27, 28, 30, 31, 35, 37, 38, 40, 41, 42, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 70, 73, 74, 75], "haven": [27, 45, 56], "he": [19, 28, 46, 56], "head": [28, 31, 34, 41, 67], "headach": 45, "header": [12, 13, 15, 16, 23, 31, 41], "headlin": [28, 68], "headset": 11, "health": [18, 28], "hear": 28, "heard": 56, "heart": [28, 62, 68], "heartbreak": 68, "heartili": 56, "heat": 68, "heavi": 28, "heavili": 28, "heed": 67, "height": [3, 6, 8, 13, 23, 24, 25, 26, 27, 29, 36, 49], "held": 29, "helen": 34, "hello": [2, 38, 50, 65, 70, 71, 75], "help": [3, 5, 6, 13, 15, 16, 17, 18, 21, 23, 28, 35, 42, 43, 45, 49, 51, 52, 56, 58, 59, 60, 62, 67, 70], "helper": [49, 68], "henc": [30, 64], "her": [28, 56, 75], "herb": 68, "herbert": 68, "here": [0, 1, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 35, 36, 37, 38, 42, 43, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75], "herrmann": 40, "herschel": 28, "herself": 56, "hexadecim": 30, "hexdigit": 30, "hi": 56, "hickman": 68, "hide": [28, 56, 75], "hierarchi": 45, "high": [7, 41, 56, 68, 75], "higher": [17, 18, 60], "highest": [28, 30], "highlight": [29, 54, 75], "highlightd": 29, "hill": 68, "hillari": [28, 54], "him": [28, 56], "himself": 56, "hint": [7, 14, 15, 25, 37, 53, 68], "hiram": 68, "histori": [31, 70, 75], "histplot": 74, "hit": [7, 29, 51, 58, 59, 60, 74], "hit_boundari": 45, "hitid": 27, "hitidfromparamstr": 27, "hoffman": 40, "hold": [5, 29, 51, 52, 56, 64, 75], "hole": 68, "holi": 50, "holli": 68, "home": [3, 29, 31, 44, 54, 71, 73, 75], "homonum": 60, "homonym": 60, "homophon": 60, "hondura": 41, "honk": 75, "honour": 56, "hootz": 50, "hope": 67, "hopefulli": 52, "horiont": 23, "horizont": [7, 16, 23, 26], "horn": 45, "horoscop": [17, 18], "hors": [49, 56], "horsepow": 35, "hortens": 68, "host": [19, 27], "hostel": 50, "hot": [28, 68], "hotcor": [17, 18], "hotel": 28, "hottest_submission_in_wisconsin": 28, "hour": 56, "hous": [28, 56], "houten": 68, "how": [3, 5, 11, 13, 14, 15, 16, 17, 18, 20, 23, 24, 25, 28, 31, 37, 39, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 67, 68, 74, 75], "howev": [11, 27, 28, 29, 30, 45, 46, 56, 63, 70, 74, 75], "howto": [0, 30], "hr": 68, "href": [13, 27, 35, 45, 48, 52, 65, 74, 75], "htm": 30, "html": [0, 15, 16, 24, 27, 29, 30, 62, 67, 68], "html5": 27, "http": [0, 11, 21, 22, 24, 27, 28, 29, 30, 40, 41, 52, 56, 62, 64, 68, 69, 70], "hubert": 68, "hugo": 68, "human": [63, 67, 75], "humili": 56, "humor": 64, "humour": 64, "hundr": [28, 64], "hung": 15, "hungari": 41, "hunsford": 56, "hurst": 56, "hutz": 68, "hypernym": 56, "hyphen": [51, 64], "hypothesi": 60, "hypothet": 74, "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 73, 74, 75], "ian": 34, "ic": 50, "iceland": 41, "icon": [41, 58, 59], "iconicity_sampl": 41, "iconicity_sample_demograph": 41, "id": [34, 46], "idea": [10, 16, 28, 34, 45, 49, 50, 51, 52, 56, 67, 74, 75], "ideal": [1, 11, 65, 67], "ident": [13, 22, 60, 68, 70, 74], "identif": [20, 55], "identifi": [14, 26, 27, 50, 52, 70], "idpattern": 30, "ie": 64, "iem": 52, "if_els": 0, "ifram": 27, "ignor": [9, 28, 50, 58, 59, 75], "ii": [66, 68], "illeg": [4, 6, 17, 75], "illumin": 64, "illus": [13, 16], "illustr": [13, 43, 45], "iloc": 34, "imag": [6, 10, 12, 13, 14, 24, 27, 36, 52, 60, 62, 68, 74], "image1": 26, "image2": 26, "image3": 26, "image_click": 12, "image_to__show": 52, "imagestim": [23, 25, 29, 36, 49, 62], "imagin": [17, 18, 45, 62, 75], "imbu": 45, "img": 29, "immedi": [14, 58, 59, 60], "immens": 64, "immunocompromis": 28, "immunodefici": 64, "immutbl": 43, "impact": [28, 45], "impeach": 28, "imper": 56, "implement": [4, 5, 6, 8, 12, 13, 24, 25, 29, 30, 34, 35, 45, 52, 53, 54, 56, 59, 60, 61, 63, 64, 67, 74, 75], "implic": 45, "implicit": 75, "import": [3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 17, 18, 19, 21, 22, 23, 24, 25, 28, 34, 35, 36, 37, 40, 43, 49, 50, 51, 52, 53, 56, 58, 59, 62, 63, 64, 66, 67, 68, 69, 74, 75], "import_tri": 29, "importcondit": 29, "importerror": 45, "importtri": 23, "imprecis": 11, "impress": 28, "improp": 56, "improv": [1, 11, 14, 28, 43, 45, 46, 51, 75], "inabl": 28, "inaccuraci": 64, "inadequaci": 64, "inc": [58, 59], "incclud": 29, "includ": [3, 6, 11, 14, 15, 16, 21, 22, 23, 27, 29, 34, 42, 45, 46, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 64, 67, 75], "inclus": [20, 55], "incom": [17, 18], "incomplet": [27, 41], "incongru": [8, 9, 11, 15, 67, 74], "incongruence_cost": 15, "inconsist": 64, "incorpor": [11, 45], "incorrect": [8, 11, 12, 14, 15, 23, 29, 60, 62], "incorrectfeedback": [23, 29, 36], "incorrectli": [8, 60, 62], "increas": [3, 7, 41, 45, 46, 52], "increasingli": 45, "incred": 46, "incredibli": [45, 52, 68, 75], "increment": [30, 45], "incrimin": [17, 64], "ind": 52, "inde": 63, "indent": 52, "independ": [23, 30, 43, 45], "index": [29, 30, 34, 35, 41, 45, 46, 52, 63, 65, 68], "index1": 30, "index2": 30, "indexerror": [35, 52], "india": 41, "indic": [11, 14, 15, 17, 37, 41, 44, 45, 60, 70, 74], "individu": [10, 11, 15, 16, 17, 18, 20, 26, 45, 46, 52, 55, 56, 70], "indonesia": 41, "indus10": [17, 18], "industri": [41, 68], "ine": 51, "ineffici": [5, 45, 56, 64], "inescap": 35, "infer": 5, "inferenti": 16, "infinit": 30, "infinitum": 30, "inflamm": 52, "inflect": 56, "info": [21, 23, 26, 31, 49, 58, 70], "info1": 27, "infodlg": 29, "inform": [9, 11, 12, 22, 23, 27, 28, 29, 30, 31, 37, 38, 43, 45, 46, 47, 51, 52, 54, 56, 58, 59, 60, 61, 67, 68, 70, 75], "infrastructur": 68, "infrmat": 41, "ing": 64, "inhal": 28, "init": [43, 45], "initi": [25, 29, 30, 37, 39, 40, 45, 46, 49, 50, 52, 58, 59, 64, 74, 75], "initial_bal": 30, "initial_list": 74, "ink": 8, "inner": 46, "input": [3, 6, 25, 26, 27, 35, 36, 45, 54, 62, 64, 65, 71, 75], "inputoutput": 30, "insect": 56, "insert": [15, 16, 27, 31, 34, 53, 70], "insid": [5, 10, 12, 13, 15, 16, 23, 26, 27, 29, 30, 35, 45, 46, 49, 50, 51, 53, 56, 67, 74], "insight": [17, 18, 67], "inspect": 74, "inspir": [28, 75], "instal": [11, 17, 18, 25, 26, 27, 29, 56, 67, 68, 70], "installation_problem": [58, 59], "instanc": [28, 30, 45], "instantan": 46, "instanti": [30, 45], "instead": [2, 3, 8, 14, 17, 18, 23, 29, 30, 31, 35, 37, 45, 46, 52, 56, 58, 62, 67, 68, 74, 75], "institut": 68, "instruct": [2, 8, 10, 11, 14, 17, 18, 26, 27, 29, 42, 46, 51, 59, 60, 67, 70], "instruction_text": 62, "insuffici": 64, "int": [23, 24, 27, 30, 34, 36, 41, 52, 54, 56, 63, 65, 74, 75], "int64": 34, "intef": 46, "integ": [9, 10, 12, 13, 23, 30, 40, 43, 45, 52, 54, 63, 74], "integr": [27, 29, 45, 70], "intens": [26, 29], "intent": 26, "inter_step_interv": 45, "interact": [17, 18, 20, 27, 28, 45, 52, 55, 64, 67], "intercept": 41, "interest": [1, 10, 17, 18, 45, 46, 52, 61, 67, 74, 75], "interfac": [0, 27, 56], "interlac": 26, "intermedi": 70, "intermix": [6, 23], "intern": [22, 43, 45, 75], "internet": 75, "interpol": [23, 26, 29, 36, 49], "interpret": [9, 15, 17, 20, 21, 30, 58, 59, 63, 67, 75], "intersect": [29, 30, 35, 56], "interspeci": 64, "interspers": [30, 64], "interven": 30, "interview": 28, "intimid": 63, "intox": 28, "intraperiton": 64, "intricaci": 64, "intro": 67, "intro_program": 75, "introduc": [1, 8, 9, 12, 23, 43, 45, 52, 54, 60, 71], "introducing_funct": 52, "introduct": [1, 45, 67], "intuit": [19, 45], "invalid": [36, 65, 75], "invert": 16, "investig": [17, 18, 22], "invis": 75, "invit": 60, "invok": 45, "involv": [20, 21, 22, 27, 45, 46, 52, 54], "io": [0, 13, 21, 22, 35, 41, 45, 48, 52, 56, 64, 65, 74, 75], "ioerror": 30, "iphon": 54, "ipynb": [13, 35, 45, 48, 52, 58, 59, 65, 67, 74, 75], "ipython": [25, 36, 54, 65, 68, 75], "iran": 41, "iri": 41, "irkernel": [58, 59], "is__": 2, "is_correct": [9, 11, 12], "is_palindrom": 35, "is_palindrome_builtin": [48, 57], "is_palindrome_iter": 48, "is_palindrome_nonrec": [48, 57], "is_palindrome_rec": [48, 57], "is_vowel": 37, "isalpha": [53, 56], "iscatchtri": 74, "isight": 29, "isinst": [29, 30], "ismatch": [23, 36], "isn": [28, 30, 35, 45, 56, 62, 74, 75], "iso": [21, 22, 64], "isol": 45, "ispressedin": [6, 25, 29, 45], "israel": 56, "isright": [23, 47], "issu": [17, 18, 21, 22, 45, 49, 54, 58, 59, 65, 67, 70], "item": [12, 14, 29, 30, 34, 46, 54, 60, 62, 74], "item1": 46, "item2": 46, "item3": 46, "item4": 46, "itemgett": 46, "iter": [6, 11, 12, 13, 24, 28, 29, 30, 35, 52, 53, 56, 63, 67, 68, 74], "iterrow": 34, "itertool": [23, 74], "its": [3, 5, 7, 9, 11, 12, 13, 17, 18, 28, 29, 30, 31, 34, 37, 41, 43, 45, 46, 51, 52, 54, 56, 57, 58, 59, 61, 62, 63, 68, 70, 73, 75], "itself": [30, 45, 46, 52, 54, 56, 63, 75], "ivoir": 41, "j": [14, 35, 68], "jack": [34, 37], "jacob": 52, "jan": [28, 67], "jane": [5, 56], "japanes": 28, "jargon": 56, "javascript": 27, "jerk": 28, "jiang": 40, "jimmi": 68, "jingl": 68, "job": [45, 51], "johnson": 28, "joi": 45, "join": [11, 14, 20, 29, 30, 49, 55, 56, 66], "joinfield": 30, "jolli": 68, "jordan": 41, "journei": 45, "jpeg": 26, "jpg": [23, 24, 26, 29, 36, 49, 60, 68], "jspsych": 27, "judg": 74, "judgment": 25, "juggl": 45, "jump": 53, "junior": 68, "junk": 68, "juno": 50, "jupyt": [30, 67], "jupyterlab": [58, 59], "jupytext": 0, "just": [5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 27, 28, 29, 30, 31, 34, 35, 37, 40, 41, 45, 46, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 67, 68, 69, 70, 74, 75], "just_nam": 49, "justifi": 30, "k": [6, 14, 28, 30, 31, 36], "karma": 28, "kayak": 35, "kde": 74, "keep": [3, 5, 7, 14, 17, 25, 28, 30, 37, 45, 46, 50, 51, 52, 54, 70, 75], "kei": [3, 8, 11, 14, 17, 23, 25, 29, 30, 31, 35, 36, 37, 41, 45, 47, 49, 53, 54, 56, 60, 62, 66, 67], "kelli": [37, 40], "ken": 54, "kendal": 52, "kept": 52, "kernel": [26, 58, 59], "kernighan": 54, "key_1": 46, "key_2": 46, "key_3": 46, "key_press": 62, "keyboard": [3, 11, 23, 24, 29, 31, 58, 67, 70], "keyboardinterrupt": [13, 48], "keylist": [6, 23, 29, 36, 47, 62], "keypress": 29, "keyword": [45, 50, 51, 52, 75], "khalifa_nomi": 28, "kid": [30, 56], "kill": [28, 74], "kilter": 74, "kind": [6, 7, 10, 16, 29, 43, 45, 46, 50, 51, 54, 62, 63, 68, 70, 71, 74, 75], "king": 56, "kingdom": [41, 45], "kiss": 68, "kjv": 56, "klau": 34, "knife": 68, "knight": 56, "knit": [15, 16, 67], "knive": 28, "know": [7, 11, 14, 16, 17, 18, 19, 28, 29, 30, 39, 45, 46, 50, 51, 52, 54, 56, 60, 63, 64, 67, 68, 70, 74, 75], "knowledg": 45, "known": [26, 45, 56, 68], "knox": 68, "knuth": 30, "korea": 41, "krystl": 40, "kw": 30, "kwarg": [30, 54], "l": [14, 21, 22, 23, 30, 31, 36, 64, 68, 69, 75], "la": 68, "lab": 27, "label": [17, 18, 25, 26, 64, 67], "labrador": 52, "ladi": 56, "lafleur": 68, "lagala": 28, "lai": 45, "laid": 56, "lamp": 49, "land": [7, 56], "lane": 28, "languag": [0, 7, 45, 50, 51, 52, 56, 58, 59, 63, 64, 67, 68, 70, 75], "langug": 22, "laptop": 7, "larg": [13, 15, 17, 28, 41, 63, 64, 75], "larger": [9, 15, 22, 26, 45, 51, 52, 56, 57, 67, 70], "largest": [15, 16, 17, 18, 22, 41, 46], "larn": 75, "laser": [17, 18], "last": [3, 5, 6, 7, 13, 17, 18, 22, 25, 26, 28, 29, 30, 31, 34, 35, 42, 45, 46, 48, 54, 56, 62, 63, 65, 68, 74, 75], "last_dog": 52, "last_nam": [54, 75], "last_run": 29, "lastli": [3, 27, 58, 59, 67], "lastnam": 30, "late": [16, 68], "later": [11, 13, 14, 30, 38, 45, 46, 50, 52, 56, 58, 59, 63, 70, 75], "latest": [0, 58, 59, 70], "latestagecapit": 28, "latter": 30, "laugh": 56, "launch": [27, 28, 45, 58], "lauren": 52, "law": 45, "layer": [26, 62], "lazi": [53, 63, 74], "lead": [29, 30, 45, 56], "leader": 28, "leaf": 56, "lean": [13, 16], "learn": [1, 4, 6, 8, 22, 28, 30, 31, 34, 45, 46, 50, 51, 52, 54, 56, 64, 67, 73, 75], "leas": 56, "least": [12, 14, 17, 18, 27, 36, 39, 44, 50, 54, 61, 64, 67, 74], "least_common": 0, "leather": 56, "leav": [46, 51, 56, 68], "lectur": 30, "led": 19, "left": [3, 10, 13, 16, 23, 24, 26, 28, 29, 30, 31, 37, 45, 52, 53, 58, 60, 64, 66, 67, 75], "left_join": 41, "left_minus_right": 16, "leftward": 16, "leg": 56, "legaci": 64, "legal": [4, 6], "legendari": 19, "legibl": 67, "lemma": [56, 64], "lemma_nam": 56, "lemmat": [0, 5], "lemmatis": 56, "len": [6, 12, 25, 29, 30, 35, 37, 48, 50, 52, 53, 56, 57, 63, 64, 65, 66, 74, 75], "length": [21, 22, 30, 37, 38, 41, 44, 53, 56], "length0": 41, "lengthen": 11, "lengthpet": 41, "lengthsep": 41, "lesotho": 41, "less": [13, 15, 17, 30, 31, 44, 45, 49, 51, 52, 63], "lesson": [30, 45, 64], "lest": 61, "let": [5, 6, 8, 10, 12, 14, 15, 17, 18, 23, 25, 26, 27, 28, 29, 30, 31, 34, 37, 39, 40, 41, 43, 44, 45, 46, 49, 50, 51, 52, 54, 56, 62, 63, 64, 68, 69, 70, 74, 75], "letter": [4, 6, 8, 10, 13, 14, 21, 22, 30, 31, 34, 37, 45, 46, 52, 64, 70, 75], "letterlist": 6, "letternum": 6, "letterpress": 6, "level": [1, 10, 17, 18, 20, 28, 46, 55, 75], "leverag": 45, "levit": 68, "lewisisbrown": 28, "li": [40, 45], "liabl": 75, "liam": 40, "lib": [13, 30], "liber": [17, 18], "liberia": 41, "librari": [11, 12, 13, 21, 23, 24, 25, 26, 27, 29, 34, 37, 41, 45, 56, 58, 59, 64, 67], "libya": 41, "licens": [27, 58, 59], "life": [17, 18, 28, 34, 41, 45, 64, 75], "lifeexp": 41, "light": 68, "lightgrai": 8, "lihao": 52, "like": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 37, 38, 39, 42, 43, 45, 46, 50, 51, 52, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 74, 75], "likelhood": 19, "likelihood": [17, 18, 19, 60], "likelihood_ratio": 5, "liken": 56, "likewis": [13, 67], "limit": [11, 28, 45, 50, 67], "limnologi": 69, "limoncello": 64, "lin": 29, "lindo": 68, "line": [3, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 23, 25, 26, 29, 30, 35, 36, 37, 38, 41, 42, 45, 46, 48, 50, 51, 52, 54, 56, 58, 59, 62, 63, 64, 65, 67, 70, 71, 74, 75], "linecap": 26, "linecolor": [3, 6, 8, 25, 45, 62], "linejoin": 26, "liner": 30, "linewidth": 8, "lingo": 64, "link": [27, 28, 56, 60, 67], "lint": 67, "linu": 75, "linux": [30, 67], "lionel": 68, "lisst": 46, "list": [3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 21, 22, 23, 24, 25, 26, 27, 28, 34, 35, 38, 41, 43, 44, 45, 49, 51, 54, 56, 60, 64, 67, 68, 71, 74, 75], "list1": 30, "list2": 30, "list_bas": 52, "list_of_column": [17, 18], "list_of_str": 35, "list_to_shuffl": 51, "list_to_writ": 38, "list_with_dupl": 35, "listen": 67, "listsiz": 35, "lite": 14, "liter": [63, 64, 65], "literal_text": 30, "littl": [3, 6, 7, 17, 18, 27, 28, 29, 31, 44, 45, 46, 50, 53, 54, 56, 58, 59, 67, 68, 75], "liu": 40, "live": [27, 28], "living_th": 56, "ljust": 30, "ll": [2, 3, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 26, 27, 28, 29, 30, 31, 34, 37, 38, 40, 44, 45, 46, 49, 52, 55, 56, 58, 59, 60, 61, 62, 63, 64, 67, 68, 69, 70, 75], "llm": 5, "lm": 41, "lme4": [58, 59, 67], "load": [12, 13, 15, 17, 18, 23, 24, 29, 41, 49, 68], "load_fil": [29, 49], "loadfil": [24, 25], "loc": 34, "local": [26, 30, 67, 68], "localhost": 28, "locat": [6, 14, 18, 23, 27, 36, 43, 45, 52, 59, 60], "log": [13, 26, 27, 29, 49], "logev": 26, "logic": [29, 30, 45, 51, 60, 67], "lone": 68, "long": [5, 11, 29, 30, 37, 41, 44, 45, 46, 51, 52, 54, 62, 63, 70, 73, 74, 75], "longer": [30, 31, 38, 45, 46, 49, 50, 52, 63, 64, 70, 74], "longitututin": 18, "look": [3, 5, 6, 9, 10, 11, 12, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 38, 39, 41, 42, 43, 46, 50, 51, 52, 54, 55, 58, 60, 62, 63, 64, 67, 68, 74, 75], "lookup": 30, "loop": [3, 21, 22, 23, 26, 29, 37, 40, 42, 45, 50, 51, 53, 54, 71, 74], "lord": [28, 56], "lose": [28, 34], "loss": [14, 19, 28], "lost": 38, "lot": [5, 11, 14, 15, 19, 20, 26, 29, 31, 38, 45, 46, 50, 55, 58, 62, 63, 74, 75], "lou": 68, "louisa": 56, "love": [56, 67, 68], "lovelac": 75, "low": [1, 28, 41, 56, 68], "lower": [27, 28, 30, 37, 45, 50, 53, 56, 64, 75], "lowercas": [5, 11, 21, 30, 45, 53, 56, 75], "lowercase_underscor": 45, "lowest": 30, "lowwww": 68, "lsmithbeck": 15, "lst": [30, 44], "lstrip": [30, 75], "lt": [31, 41], "lter": 69, "ltr": 31, "luca": [52, 56], "luci": [34, 64], "lumin": 68, "lupyan": [12, 64], "lupyanexp": 25, "lynda": 69, "m": [3, 6, 7, 8, 14, 21, 22, 27, 29, 30, 35, 42, 45, 50, 51, 53, 56, 60, 62, 63, 64, 70, 75], "m1": 58, "m2": 58, "m3": 35, "ma": 56, "mabel": 68, "mac": [29, 31, 64, 67], "macbeth": [5, 56], "machin": [1, 4, 6, 25, 26, 45, 59, 70], "mackerel": 50, "maco": 58, "made": [45, 52, 54, 56, 70], "madison": [28, 40], "madisonherrmann": 15, "madisonwi": 28, "madoff": 22, "magic": [12, 26, 28, 29, 31, 41, 58], "mai": [11, 12, 15, 16, 17, 18, 21, 22, 23, 26, 27, 29, 30, 37, 38, 42, 43, 45, 46, 49, 50, 51, 52, 56, 58, 59, 60, 64, 67, 70, 75], "main": [9, 10, 11, 12, 13, 17, 18, 20, 23, 40, 43, 45, 46, 51], "maintain": [45, 46, 60, 70, 71, 75], "major": [17, 45, 54, 56], "make": [5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 24, 25, 27, 28, 29, 30, 34, 38, 40, 44, 46, 49, 50, 51, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71], "make_dimm": 45, "make_incongru": 8, "make_it_drop": 7, "make_it_r": 7, "make_singular_and_lemmat": 56, "make_synset": 56, "make_them_stop": 7, "makedir": 30, "maketran": 30, "malayalam": [48, 57], "male": [17, 18, 23, 24, 29, 41], "malefemalemorph_": 24, "malign": 64, "malyalam": 35, "mamiii": 68, "mammal": [45, 56], "man": [24, 31, 35, 41, 56], "manag": [1, 28, 29, 45, 49], "mandela": 28, "mangl": 22, "mango": 43, "mani": [5, 7, 12, 13, 15, 17, 18, 22, 25, 28, 30, 31, 45, 49, 50, 51, 52, 53, 54, 56, 62, 64, 73, 74, 75], "manifold": 25, "manipul": [9, 12, 34, 64, 67], "manipulatig": 30, "maniul": 63, "manner": 74, "mansa_": 24, "manual": [27, 45, 56, 64, 70, 74], "map": [5, 14, 18, 20, 25, 29, 30, 34, 52, 55, 71], "maqdjtvrtrbfrfnrvglk": 27, "mar": [58, 59, 67], "march": [28, 56], "marchagainstnazi": 28, "marci": 64, "mari": [28, 56], "marit": 18, "mark": [12, 14, 54], "markdown": [58, 59, 67], "marker": [25, 52], "marriag": [17, 56], "mask": [10, 23, 29, 36, 49], "mask_": 31, "maskcircl": 31, "masked_fac": 26, "masksquar": 31, "massiv": [41, 63], "master": 45, "match": [0, 9, 11, 12, 13, 17, 18, 23, 31, 47, 52, 54, 56, 60, 64, 67, 70, 74, 75], "matched_angl": 13, "matcher": 64, "matchleft": 47, "matchright": 47, "mater": 54, "materi": [22, 26, 28, 60, 67], "math": [28, 29, 45], "mathemat": [45, 54], "matlab": 30, "matplotlib": 25, "matrix": [25, 41], "matt": 52, "matter": [45, 54, 63, 74, 75], "matthew": 52, "max": [25, 29, 41, 46, 74], "max_angl": 45, "max_lag": 44, "maxim": [61, 67], "maximum": [40, 41, 60], "maxreplac": 30, "maxsplit": 30, "maxstimnum": 24, "maxval": 29, "mayb": [28, 45], "mcclure": 68, "mcgraw": 13, "md": 25, "me": [1, 12, 26, 28, 44, 56, 59, 61, 67, 68], "meal": [28, 56], "mean": [9, 13, 15, 16, 17, 18, 19, 28, 29, 30, 31, 37, 39, 41, 45, 46, 50, 51, 52, 54, 56, 60, 62, 63, 64, 67, 70, 74, 75], "mean_resp": 41, "meaning": [41, 45, 46, 70], "meaningless": [50, 60], "meantim": [24, 60], "measur": [5, 6, 10, 11, 13, 15, 16, 17, 18, 20, 55, 60, 74], "meaux": 68, "media": 68, "median": 41, "median_rt": 41, "medic": [28, 41], "medicin": [28, 75], "meet": [28, 29, 49, 67, 68], "melt": 43, "melvil": 56, "member": 67, "memori": [1, 28, 43, 45, 67], "men": 17, "meng": 52, "mental": [28, 43], "mention": [16, 23, 67], "merg": 61, "merit": 45, "mesa": 56, "mesag": 75, "mess": [10, 31, 54], "messag": [11, 12, 27, 28, 41, 45, 46, 50, 51, 54, 63, 70, 75], "met": [28, 52, 60, 63], "meta": [17, 18], "method": [5, 6, 7, 26, 28, 29, 30, 46, 51, 52, 54, 56, 74, 75], "metric": 26, "mhmyi": 68, "mi": 16, "mic": 11, "mice": 29, "michel": 52, "michigan": 28, "middl": [3, 23, 40, 52, 64, 66, 67], "midpoint": 24, "midterm": 28, "might": [9, 14, 17, 18, 23, 27, 29, 30, 37, 40, 44, 45, 46, 50, 51, 52, 54, 56, 58, 59, 60, 62, 68, 70, 74, 75], "mightn": 56, "mileag": 21, "mileston": 45, "milford": 68, "militari": [17, 18], "millecond": 8, "million": 28, "millisecond": [12, 13, 14, 23, 60], "milton": 56, "milwauke": 28, "mime": 26, "mimic": 45, "min": [3, 13, 23, 41, 49, 67, 74], "min_angl": 45, "min_lag": 44, "min_scor": 34, "min_score_to_lett": 34, "mind": [13, 17, 18, 38, 41, 46, 50, 51, 52, 56, 62, 63, 70], "mindset": 75, "mine": 27, "mini": 59, "miniconda": [58, 59], "minim": 11, "minimum": [17, 38, 40, 41, 44], "minor": [20, 37], "minu": [16, 75], "minut": [5, 6, 14, 25, 28, 56, 67, 68], "minval": 29, "mirror": [11, 16, 67], "misc": 6, "mismatch": [23, 29, 47, 64, 74], "misplac": [21, 22], "miss": [34, 56, 60], "missil": 28, "mississippi": 68, "mistak": [28, 46, 51], "mix": [15, 27, 63, 70, 75], "miyawaki": 60, "mkdir": [9, 31, 49], "mnemon": 64, "moby_dick": 56, "mock": [28, 56], "mod": 75, "modal": 19, "mode": [25, 26, 28, 38], "model": [11, 28, 35, 43, 45, 46, 54], "moder": 28, "modern": [1, 5, 64], "modif": [20, 45], "modifi": [6, 13, 23, 30, 37, 45, 51, 53, 75], "modul": [25, 26, 46, 54, 56, 64, 65, 75], "modular": [9, 10, 12, 29, 45, 61, 67], "modulat": 45, "modulu": 75, "mogrifi": 26, "moin": 30, "mojo": 68, "moment": 54, "monei": [17, 18, 56], "monitor": [21, 22, 29, 64], "monolith": 45, "month": [18, 28, 67, 75], "monti": 50, "moon": 68, "more": [1, 5, 8, 9, 10, 11, 13, 14, 16, 17, 18, 21, 22, 26, 27, 28, 29, 30, 34, 36, 37, 38, 39, 40, 41, 42, 43, 46, 47, 49, 53, 56, 58, 59, 62, 64, 67, 69, 70, 71, 74, 75], "more_anim": 65, "more_fruit": 43, "moreoddnum": 30, "moreov": 30, "morn": 56, "morocco": 41, "morphologi": 26, "morphtyp": 24, "moscow": 68, "most": [3, 5, 13, 25, 27, 29, 30, 31, 34, 35, 40, 44, 45, 46, 48, 51, 52, 54, 56, 60, 63, 64, 65, 67, 70, 74, 75], "most_common": [0, 28, 56], "mostli": [28, 30], "mother": 68, "motion": 71, "mous": [6, 12, 13, 14, 16, 24, 25, 31, 44, 45, 56], "mouse_po": 29, "mouseclick": 23, "mousewheelrel": 13, "mouth": 23, "move": [7, 24, 25, 37, 50, 52, 64, 70], "move_it": 45, "move_right": 45, "move_rocket": 45, "move_up": 45, "movement": [13, 45], "movi": [24, 49], "movie_review": 67, "moviefram": 29, "movingcircl": [7, 45], "mr": 56, "mre": 29, "msec": 7, "mturk1": 27, "much": [3, 5, 12, 13, 15, 16, 17, 18, 22, 27, 39, 45, 46, 50, 51, 54, 56, 62, 63, 64, 68, 75], "mule": 68, "multi": [37, 75], "multidimension": [25, 64], "multilin": 64, "multimillion": 64, "multipl": [3, 10, 12, 13, 15, 16, 17, 18, 21, 22, 26, 27, 30, 31, 34, 47, 50, 51, 53, 56, 62, 64, 75], "multipli": [35, 45, 63, 75], "multiply_by_thre": 35, "museum": 75, "mushroom": 49, "music": 68, "musk": 28, "must": [9, 14, 19, 23, 26, 29, 30, 31, 44, 46, 51, 56, 66, 70, 74], "mustn": 56, "mutat": [15, 41], "mv": 31, "mw": 68, "my": [2, 6, 21, 27, 28, 29, 49, 50, 54, 56, 61, 68], "my_account": 30, "my_addit": 70, "my_current_tri": 75, "my_dict": 46, "my_dictionari": 46, "my_first_function_librari": [12, 13, 67], "my_list": 66, "my_mous": 45, "my_num": 63, "my_ord": 75, "my_rocket": 45, "my_str": 75, "myclass": 45, "mydlg": 29, "mygener": 30, "mylist": 35, "mymous": [6, 13, 24], "mypath": 6, "myself": [53, 56], "mysql": 27, "mysteri": [17, 18], "mystim": 29, "mysubjcode_": 64, "mysubjcode_130": 64, "mysubjcode_131": 64, "mysubjcode_132": 64, "mysubjcode_133": 64, "mysubjcode_134": 64, "mysubjcode_135": 64, "mytextfil": 31, "n": [5, 14, 21, 22, 26, 27, 28, 29, 30, 31, 36, 38, 41, 42, 45, 46, 52, 53, 54, 57, 58, 59, 64, 74, 75], "n_compon": 25, "n_pair": 74, "na": [0, 11, 14, 17, 24, 29, 41, 60], "name": [2, 3, 6, 9, 11, 13, 14, 17, 18, 21, 22, 23, 26, 27, 28, 30, 31, 34, 41, 45, 46, 47, 49, 51, 54, 56, 60, 62, 63, 64, 65, 67, 70], "name_dict": 34, "name_prompt": 12, "namechang": 64, "nameerror": 65, "namespac": [43, 67, 75], "nan1": 41, "nanci": 28, "narg_1": 54, "narr": 67, "narrow": [36, 49], "nataid": [17, 18], "natarm": [17, 18], "natciti": [17, 18], "natcrim": [17, 18], "natdrug": [17, 18], "nateduc": [17, 18], "natenvir": [17, 18], "natfar": [17, 18], "natheal": [17, 18], "nation": [28, 64], "nato": 28, "natrac": [17, 18], "natspac": [17, 18], "natur": [0, 31, 56, 67], "navig": [27, 49, 58, 67], "navigablestr": 69, "nber": 28, "nbest": 5, "nbsp": [24, 27], "nd": [15, 56], "ndown": 29, "nearest": [9, 12, 13], "nearli": [22, 28, 56, 75], "neat": [30, 54, 56, 70], "neatli": [31, 67], "necessari": [1, 12, 13, 17, 18, 21, 29, 30, 36, 38, 45, 52, 67, 70], "necessarili": [21, 22, 37], "necessit": 56, "need": [3, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 23, 27, 28, 29, 30, 31, 34, 37, 38, 41, 42, 45, 46, 49, 50, 51, 52, 54, 55, 58, 59, 60, 61, 62, 63, 64, 67, 68, 70, 74, 75], "needn": 56, "neg": [13, 16, 29, 41, 45, 50, 52], "negat": 0, "neighbor": [42, 64], "neighbour": 64, "neighbourhood": 56, "nepal": 41, "nest": [53, 67, 74, 75], "net": 5, "netherfield": 56, "netherland": 41, "neural": 5, "neurosci": 64, "neuroscientist": 64, "never": [28, 30, 34, 46, 50, 51, 52, 60, 67, 68, 75], "neveryon": 75, "new": [3, 5, 6, 7, 8, 12, 13, 16, 27, 28, 34, 38, 41, 42, 44, 49, 50, 51, 52, 54, 58, 59, 60, 61, 62, 68, 70, 75], "new_cur_angl": 45, "new_rocket": 45, "new_x_po": 45, "new_y_po": 45, "newcircl": 30, "newclass": 45, "newdirectorynam": 30, "newer": 58, "newest": 52, "newli": 45, "newlin": [21, 22, 29, 31, 38, 42, 52, 64, 75], "newscientist": 64, "newslett": 68, "newspaper3k": 68, "newspapers3k": 68, "next": [3, 4, 6, 8, 12, 13, 14, 16, 17, 18, 21, 22, 24, 29, 30, 31, 34, 43, 44, 45, 46, 50, 52, 54, 56, 58, 59, 62, 67, 70, 74, 75], "next_stat": 6, "ngram": 56, "nhello": 75, "nhere": [46, 52], "nicaragua": 41, "nice": [7, 13, 23, 27, 28, 29, 30, 40, 56, 67, 68, 70, 74], "nifti": 27, "night": [28, 68], "nimzay98": 28, "nishimoto": 60, "nltk": [0, 30, 67], "nltk_data": 56, "nn": 28, "nois": [11, 26], "non": [0, 10, 14, 21, 22, 29, 35, 50, 51, 60, 64, 75], "non_recursive_fib": [48, 57], "none": [6, 18, 23, 29, 30, 35, 36, 49, 50, 51, 54, 56, 64, 65, 74], "nonetyp": 35, "nonmask": 10, "nonsens": 54, "nor": [56, 64], "norepeat": 14, "norm": [36, 41], "normal": [6, 7, 13, 28, 30, 41, 45, 63, 75], "norwai": 41, "notat": [45, 46, 52], "note": [9, 10, 11, 12, 14, 17, 18, 23, 26, 27, 28, 29, 45, 50, 52, 58, 59, 60, 62, 70, 75], "notebook": [9, 13, 15, 16, 21, 22, 28, 35, 45, 48, 49, 52, 63, 64, 65, 66, 67, 68, 74, 75], "noth": [8, 27, 37, 46, 50, 52, 56, 64, 75], "notic": [5, 12, 13, 17, 18, 22, 23, 24, 27, 29, 30, 31, 45, 46, 49, 50, 52, 56, 62, 63, 74], "noun": 56, "nour": [51, 52], "novel": [45, 60, 61], "novic": 52, "now": [3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17, 18, 23, 25, 27, 28, 29, 30, 31, 34, 35, 37, 42, 43, 44, 45, 46, 49, 51, 52, 54, 56, 58, 59, 60, 62, 63, 64, 69, 70, 74, 75], "nowadai": [28, 30], "nowher": 28, "np": [6, 19, 23, 25, 34, 37, 74], "nsbutton": [13, 49], "nspopovertouchbaritembutton": [13, 49], "nt": 56, "nthank": 52, "nthat": 52, "nthe": 45, "nthese": 46, "ntrial": 29, "nuclear": 28, "null": 27, "num": [23, 29, 51, 53, 54, 65], "num_1": 54, "num_2": 54, "num_block": 12, "num_cirlc": 45, "num_gam": 19, "num_item": 44, "num_ratings_by_subj": 41, "num_ratings_for_word": 41, "num_row": 37, "num_submiss": 28, "num_trial": 9, "num_wheel_turns_down": 13, "num_wheel_turns_up": 13, "numb": 68, "number": [6, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 37, 40, 42, 43, 46, 50, 51, 52, 56, 57, 58, 59, 60, 63, 64, 65, 69, 70, 71, 74], "number61971": 28, "number_of_block": [12, 13], "number_word": 51, "numberbeforeswitch": [10, 30], "numcircl": 45, "numcol": 25, "numdifftrialsperperson": 74, "numer": [17, 18, 19, 30, 41, 45, 46, 51, 75], "numpi": [6, 13, 19, 23, 25, 29, 30, 34, 37, 52, 74], "numpic": 25, "numrepetit": [10, 30], "numrow": 25, "numsubj": 74, "numtrial": [23, 36, 74], "numwheelturnsdown": 24, "numwheelturnsup": 24, "nup": 29, "nut": [28, 49], "nwantiti": 68, "nwe": 65, "nwilli": 46, "nyou": [51, 54], "o": [8, 9, 12, 13, 14, 21, 22, 24, 25, 29, 30, 35, 37, 40, 42, 45, 49, 50, 53, 56, 62, 64, 66, 67, 75], "obei": [4, 6, 64], "obfusc": 30, "objec": 45, "object": [3, 6, 8, 28, 29, 30, 34, 35, 49, 50, 52, 54, 56, 62, 63, 64, 66, 67, 68], "oblig": 56, "obscur": 62, "observ": [45, 56, 63, 68], "observatori": 68, "obsolet": 30, "obtain": [27, 61], "obviou": [28, 75], "obvious": [10, 70], "occ10": [17, 18], "occup": [17, 18], "occur": [30, 52, 56, 60, 64, 68, 74], "occurr": [30, 64], "octal": 30, "octdigit": 30, "odd": [30, 67], "oddnum": 30, "off": [7, 28, 50, 56, 68, 69, 70, 74], "offer": 45, "offic": 56, "offici": [12, 29], "offload": 12, "offset": [25, 26, 52], "often": [18, 29, 34, 37, 41, 45, 46, 51, 52, 56, 58, 59, 70, 74, 75], "oftentim": 46, "oh": [12, 56, 63, 68], "ojito": 68, "ok": [7, 10, 29, 44, 56, 58, 59, 74], "okai": [45, 50], "old": [30, 46, 60, 75], "oldest": [31, 52], "olymp": 46, "oman": 41, "omit": [20, 30], "omnisci": 64, "onc": [2, 3, 4, 6, 7, 8, 9, 13, 17, 18, 21, 22, 27, 29, 38, 40, 41, 45, 49, 50, 51, 52, 56, 58, 59, 60, 62, 75], "one": [3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 28, 29, 30, 37, 38, 39, 41, 42, 43, 44, 45, 46, 49, 51, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 70, 73, 75], "one_of_the_files_to_get_head": 31, "onelin": 70, "ones": [4, 6, 12, 17, 18, 20, 27, 28, 56, 58, 59, 60, 64], "onli": [6, 8, 11, 12, 14, 15, 16, 17, 18, 27, 28, 29, 30, 31, 34, 35, 45, 46, 50, 51, 52, 54, 56, 60, 63, 64, 70, 74, 75], "onlin": [64, 68], "ons": [58, 59], "onset": [11, 12, 13, 60], "onto": [20, 26, 55], "oo": 30, "ool": 27, "ooo": [14, 42, 66], "ooooo": 42, "ooooooo": 42, "ooooooooo": 42, "oop": [30, 45, 56], "ooti": 56, "opac": 45, "open": [3, 9, 10, 12, 13, 15, 19, 25, 27, 29, 30, 49, 50, 56, 58, 59, 62, 67, 70], "open_data_fil": [12, 29], "openai": 11, "oper": [26, 29, 30, 31, 35, 50, 63, 64, 67, 75], "operand": 75, "opinion": 28, "opportun": 51, "oppos": 45, "opposit": [13, 17, 18, 43, 44, 52], "oprat": 34, "option": [11, 29, 30, 31, 52, 54, 58, 59, 64, 67, 70], "orang": [8, 25, 30, 52, 60, 68], "orange_circl": 62, "order": [4, 6, 9, 10, 12, 13, 17, 18, 21, 22, 23, 26, 28, 29, 30, 36, 40, 45, 51, 52, 54, 56, 58, 59, 62, 64, 67, 74, 75], "ordereddict": [29, 46], "ordin": [17, 18], "ordinari": 46, "ordinarili": [24, 25, 47], "org": [0, 24, 28, 29, 30, 62, 68], "organ": [34, 45, 46, 56, 67], "organiza": 45, "ori": [3, 29], "orient": [3, 6, 9, 11, 13, 15, 16, 17, 18, 23, 26, 29, 30, 37], "origin": [7, 11, 17, 18, 30, 46, 51, 52, 56, 58, 70, 75], "orvil": 68, "other": [1, 3, 5, 7, 8, 11, 15, 17, 18, 19, 24, 27, 28, 29, 30, 31, 38, 41, 42, 43, 45, 50, 51, 52, 54, 56, 58, 60, 62, 63, 64, 67, 70, 74, 75], "other_rocket": 45, "otherwis": [12, 18, 30, 36, 46, 52, 67, 74, 75], "otherword": 21, "ought": [17, 18], "our": [7, 12, 18, 23, 24, 28, 34, 41, 45, 46, 50, 51, 52, 54, 56, 62, 64, 65, 67, 68, 70, 75], "ourselv": [51, 56, 64], "out": [0, 1, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 23, 25, 26, 27, 28, 29, 31, 35, 37, 40, 41, 42, 43, 45, 46, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 75], "outcom": 20, "outlet": 28, "outlin": [6, 67], "output": [5, 6, 9, 10, 11, 12, 14, 15, 16, 19, 26, 27, 28, 29, 30, 36, 38, 41, 43, 45, 46, 51, 52, 53, 54, 61, 63, 65], "output_fil": 38, "outset": 74, "outsid": [10, 11, 16, 67], "over": [5, 7, 13, 17, 18, 45, 46, 53, 56, 58, 62, 64, 67], "overal": [15, 75], "overcom": 27, "overdrawn": 30, "overlap": 12, "overli": 62, "overload": [63, 75], "overrid": [41, 45], "overview": [45, 67], "overwrit": [9, 12, 13, 29, 46], "overwritten": [31, 38, 43, 75], "own": [1, 27, 28, 31, 34, 42, 45, 51, 54, 56, 70, 73, 75], "owner": [37, 46], "ozgrav": 68, "p": [6, 17, 18, 27, 30, 58, 59, 68], "pablo": 52, "packag": [13, 17, 18, 20, 21, 22, 23, 29, 30, 52, 56, 67, 74], "package_nam": 56, "pad": [25, 30], "page": [3, 11, 13, 27, 29, 30, 39, 59, 62, 67, 68, 75], "pai": [28, 45, 64], "pain": [26, 28, 45], "paint": [56, 62], "pair": [19, 20, 25, 37, 51, 54, 56, 60, 74], "pairwis": 25, "palindrom": 35, "palomar": 68, "pam": 46, "panama": 35, "panda": [11, 21, 22, 24, 40, 52, 64, 65, 67], "pandem": 28, "pane": 67, "panel": 18, "pang": 56, "pangram": 53, "paolacci": 27, "paper": 56, "paradigm": 45, "paradis": 56, "paraguai": 41, "paramet": [3, 7, 10, 14, 27, 29, 44, 64], "parameter": [27, 45, 64], "pardon": 56, "paremet": 45, "parent": [45, 56, 68], "parentclass": 45, "parenthes": [45, 51, 52, 64, 75], "parenthesi": [64, 75], "park": [45, 56], "pars": [30, 68], "parser": 68, "part": [4, 10, 14, 23, 27, 28, 29, 30, 31, 35, 40, 44, 45, 46, 47, 49, 52, 56, 60, 61, 63, 64, 68, 75], "part2": 2, "parti": [20, 28, 55, 68], "particip": [4, 6, 9, 10, 11, 13, 23, 37, 38, 41, 60, 62, 74], "participnt": [13, 60], "particular": [4, 10, 23, 27, 28, 29, 30, 37, 45, 46, 62, 64, 68], "particularli": [45, 54, 58, 59, 75], "partner": 28, "partyid": [20, 55], "partyid_twowai": [20, 55], "pass": [6, 8, 9, 10, 12, 13, 14, 21, 23, 26, 29, 30, 31, 40, 43, 45, 46, 48, 49, 51, 54, 56, 57, 63, 75], "passthrough": 30, "password": 28, "past": [3, 7, 26, 27, 28, 31, 58, 59, 62], "path": [6, 23, 29, 30, 49, 58, 59], "patient": [28, 45, 58, 59], "pattern": [0, 13, 17, 18, 30, 41, 42, 64, 70], "paus": [3, 7, 62], "payload": 45, "pbpast": 41, "pc": [29, 64, 67], "pcr": 64, "pd": [21, 22, 24, 34, 40, 64], "pdf": [28, 67], "peanut": 28, "pear": [43, 52, 60], "peculiar": 28, "pelosi": 28, "penguin": [38, 74], "penn": 5, "peopl": [10, 11, 14, 15, 16, 17, 18, 25, 27, 28, 39, 42, 45, 46, 47, 51, 52, 54, 56, 60, 62, 67, 74, 75], "pep": 50, "pep8": 67, "per": [3, 7, 9, 10, 13, 15, 16, 28, 46, 49, 74], "percent": 45, "percentag": 26, "perfect": [45, 51, 75], "perfectli": [13, 17, 45, 54], "perform": [28, 29, 35, 45, 51, 60, 61, 70, 74], "perhap": [15, 31], "period": [11, 21, 22, 64], "perl": 75, "perman": [28, 46, 52, 70], "permiss": 75, "persist": 45, "person": [11, 12, 14, 23, 27, 28, 45, 46, 51, 52, 53, 54, 56, 67, 70, 74, 75], "perspect": 67, "persuas": [5, 56], "peru": 41, "peso": [46, 50], "pet": [37, 46], "pet_inform": 46, "pet_nam": 46, "pet_own": 37, "petal": [41, 57], "peter": 75, "pgdown": 31, "pgup": 31, "pharmaci": 64, "phd": 1, "phenomena": 45, "phi": 57, "philosophi": 75, "phipp": 40, "photo": 26, "photo_filenam": 12, "php": 27, "phrase": [45, 53, 54], "physic": [7, 45], "physical_ent": 56, "pi": [29, 45], "pic": [12, 16, 24, 25, 29, 36], "pic1": [23, 29], "pic2": [23, 29], "pic3": [23, 29], "pic_nam": 12, "pic_stim": 29, "pick": [14, 17, 18, 19, 45, 67, 68], "pickl": [29, 67], "pickld": 29, "pics_beginning_with_a": 49, "pictur": [12, 18, 23, 24, 25, 26, 49, 56, 68], "picturetyp": 29, "pie": 68, "piec": [26, 37, 45, 46, 51, 54, 56, 68], "pierc": 27, "pig": [44, 63], "pilot": 45, "pinchi": 68, "pineappl": 28, "ping": 40, "pip": [11, 28, 56, 58, 59, 67, 68], "pipe": [31, 41], "pitch": 68, "pitfal": 35, "pivot_wid": [15, 16], "pix": [3, 6, 8, 13, 14, 23, 24, 25, 29, 36, 45, 49, 58, 59, 62], "pixel": [3, 7, 26, 37], "pixelintens": 26, "pizza": 28, "pkg": 58, "place": [11, 12, 13, 15, 23, 27, 31, 41, 43, 45, 51, 52, 54, 58, 59, 68, 70, 75], "placehold": [8, 12, 40, 52], "placement": 68, "plai": [5, 12, 19, 27, 28, 29, 36, 45, 52, 54, 64, 67], "plain": 16, "plainquot": 70, "plan": [35, 45, 61], "plant": 45, "platform": [27, 28, 58, 59], "plausibl": [13, 28], "play_monty_hal": 19, "playa": 68, "player": 45, "pleas": [2, 3, 4, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 18, 23, 27, 28, 29, 49, 58, 59, 60, 67, 70], "plenti": 54, "plopper": 68, "plot": [15, 16, 18, 20, 25, 55, 67], "plt": 25, "plu": [21, 22, 44, 52, 54, 75], "plug": 29, "plugin": [58, 59], "plural": 52, "pna": 64, "pnau": 68, "png": [4, 12, 25, 26, 29, 31, 49], "po": [0, 6, 8, 29, 37, 45, 56, 58, 59, 62, 64], "poem": 56, "point": [4, 6, 7, 16, 17, 18, 24, 25, 31, 34, 39, 42, 43, 45, 46, 52, 63, 67, 68, 70, 74], "pointer": 43, "pointsiz": 26, "pokei": 68, "pokemon": 62, "pol2cart": [6, 29], "poland": 28, "polar_to_rect": 29, "polici": [26, 64], "policydomain": 26, "policyright": 26, "polit": 28, "politician": 28, "polview": [17, 18, 20, 55], "polymorph": 45, "pong": 7, "poodl": 52, "poor": [41, 56], "pop": [9, 11, 14, 23, 47, 58, 59, 65], "popul": [9, 45, 46, 57], "popular": 5, "populated_runtime_var": 29, "popup_box": [58, 59], "popuperror": 29, "porto": 68, "pos_tag": [5, 28], "pose": 15, "posit": [6, 7, 13, 14, 23, 25, 26, 31, 37, 45, 66], "positions2": 66, "possess": [45, 56], "possibl": [4, 6, 10, 12, 14, 15, 17, 18, 20, 21, 22, 23, 26, 27, 34, 45, 50, 52, 56, 61, 74, 75], "possibli": [14, 30, 45], "post": [11, 16, 27, 58, 59, 68, 71], "poster": 28, "postpon": 56, "potenc": 64, "potenti": [28, 45], "pound": [56, 75], "powel": 68, "power": [17, 28, 29, 31, 34, 41, 46, 52, 58, 59, 64, 75], "practic": [15, 16, 17, 18, 28, 45, 52, 67, 70, 75], "practice_or_r": 16, "praw": 67, "pre": [29, 41, 46, 56, 67], "preced": [26, 30, 57, 64, 75], "precis": [23, 28, 45, 49, 58, 59, 60, 62, 74], "precon": 28, "predecessor": 57, "predict": [10, 17, 18, 20, 41, 43, 55, 63, 65, 66, 74], "pref": [13, 29, 58, 59], "prefer": [27, 29, 34, 46, 52, 59, 75], "prefil": 29, "prefix": [31, 75], "pregnanc": 64, "pregunto": 68, "preict": 41, "prejudic": 56, "preliminari": 49, "preload": 67, "premium": 28, "prepar": [9, 54, 67], "prepend": [21, 58, 59], "prescienc": 64, "prescient": 64, "present": [9, 11, 13, 27, 29, 36, 45, 49, 50, 54, 60, 61, 67, 74, 75], "present_feedback": 12, "preserv": [17, 18, 27, 52], "preset": 29, "prespecifi": 74, "press": [3, 8, 14, 24, 31, 56, 58, 59, 60, 62, 75], "pressur": [56, 68], "pretti": [17, 28, 41, 45, 46, 54, 68, 74, 75], "prev_angle_to_devi": 45, "prevent": [9, 45], "preview": [26, 27], "previo": 36, "previou": [12, 13, 28, 29, 31, 36, 45, 46, 54, 67, 70, 73], "previous": [13, 26, 27, 29, 45, 70, 73], "pricier": 64, "pride": 56, "pride_prejudic": 56, "pride_prejudice_clean_token": 56, "pride_prejudice_clean_tokens_no_stop_word": 56, "pride_prejudice_clean_tokens_no_stop_words_fd": 56, "pride_prejudice_freq_dist": 56, "pride_prejudice_raw_token": 56, "primari": 51, "primer": 67, "primit": 26, "princess": [54, 68], "principl": [45, 51, 75], "print": [2, 5, 6, 8, 9, 10, 11, 12, 13, 19, 23, 24, 27, 28, 29, 30, 34, 35, 36, 37, 38, 40, 42, 43, 45, 46, 48, 49, 50, 51, 52, 53, 54, 56, 57, 62, 64, 65, 66, 68, 69, 70, 74, 75], "print_fib": 57, "printabl": 30, "prior": [16, 49, 58, 59], "privat": 70, "prng": 74, "pro": [28, 30], "probabl": [11, 16, 17, 18, 20, 28, 30, 31, 34, 37, 39, 42, 46, 52, 55, 58, 59, 68, 74], "problem": [1, 3, 17, 18, 27, 35, 39, 45, 56, 58, 59, 74, 75], "proce": [8, 11, 67], "procedur": [24, 28, 34], "proceed": [9, 58, 59, 61], "process": [0, 4, 6, 9, 11, 22, 30, 38, 40, 45, 52, 54, 56, 58, 59, 67, 70], "processor": 70, "prod": 68, "produc": [9, 10, 23, 65, 68], "product": [23, 74], "profici": [45, 64], "program": [3, 4, 6, 14, 15, 16, 30, 31, 36, 38, 42, 43, 45, 46, 51, 52, 54, 58, 59, 60, 62, 63, 64, 70, 73, 75], "programm": [45, 52, 54, 71, 73, 75], "programmat": 69, "programmerhumor": 16, "progress": [41, 45, 52, 67], "project": [9, 45, 51, 54, 56, 70], "project1": 60, "project_not": 75, "promin": 39, "prompt": [12, 14, 31, 36, 58, 59], "prone": 51, "prong": 37, "pronunci": 68, "proof": 68, "prop": 67, "prop_back_to_back": 44, "prop_incongru": [9, 11, 15], "proper": [9, 51], "properli": [10, 24, 27, 45], "properti": [12, 13, 45, 56], "propheci": 64, "propmatch": [36, 74], "propmismatch": 74, "proport": [9, 10], "propos": 67, "protein": 28, "prove": 73, "provenza": 68, "provid": [1, 9, 10, 15, 23, 25, 27, 29, 30, 38, 45, 46, 47, 49, 52, 53, 54, 62, 63, 70], "psbattl": 28, "pseudo": [12, 13, 27, 74], "pseudocod": [4, 6], "psych": [27, 58, 59, 67], "psych711": 4, "psych750": [13, 21, 22, 28, 31, 35, 40, 41, 45, 48, 52, 56, 58, 59, 64, 65, 67, 70, 74, 75], "psych750_resourc": 49, "psych750_rost": 40, "psycholog": [1, 45], "psychologist": 60, "psychopi": [3, 6, 8, 9, 11, 12, 13, 14, 23, 24, 25, 36, 43, 49, 61, 67], "psychopy_valid": [58, 59], "psychtool": [41, 58, 59, 67], "pt": [7, 15, 17, 18, 21, 22], "ptb": [58, 59], "public": [22, 28, 30], "publish": 21, "publish_d": 68, "puffin": 68, "pull": [5, 12, 28, 46, 67, 70], "punctuat": [5, 21, 22, 30, 53, 56], "punkt": 67, "puriti": 75, "purpl": 62, "purpos": [11, 13, 28, 45, 52, 70], "pursu": 67, "push": [2, 11, 15, 16, 22, 67], "pushin": 68, "put": [7, 8, 16, 19, 29, 31, 45, 46, 50, 51, 52, 56, 69, 75], "putin": 28, "pwd": 31, "py": [2, 7, 10, 11, 12, 13, 23, 29, 30, 36, 45, 58, 59, 67, 70], "pyaudio": [58, 59], "pyc": 25, "pycodestyl": 67, "pydata": 24, "pyeongchang": 46, "pygam": [29, 58, 59], "pylab": 29, "pyo": [29, 58, 59], "pyplot": 25, "pyqt5": [58, 59], "pyqt6": [58, 59], "pyramid": 42, "pytest": 67, "python": [7, 9, 10, 11, 13, 21, 22, 27, 34, 38, 42, 43, 46, 49, 50, 51, 52, 53, 54, 56, 64, 65, 66, 67, 74], "python2": 30, "python3": [13, 30, 58, 59], "python_bas": [], "python_word": 46, "pythonpath": 45, "pythontutor": 52, "q": [3, 6, 8, 14, 29, 30, 31, 64, 67, 68, 75], "q2": 27, "qa": 64, "qaddafi": 64, "qadir": 64, "qaeda": 64, "qaida": 64, "qassam": 64, "qatar": 64, "qb": 64, "qd": 64, "qe": 64, "qei": 64, "qiagen": 64, "qianlong": 64, "qiaquick": 64, "qida": 64, "qin": 64, "qing": 64, "qingdao": 64, "qio": 64, "qm": 75, "qol": 64, "qp": 64, "qpak": 64, "qqq": 75, "qr": 64, "qrna": 64, "qrt": 64, "qsp": 64, "qspline": 64, "qt": [58, 59, 64], "qtc": 64, "qtl": 64, "qu": 64, "qua": 64, "quack": 64, "quackeri": 64, "quad": 64, "quadrangl": 64, "quadrant": 64, "quadrat": 64, "quadrupl": [45, 64], "quagmir": 64, "quai": 64, "quaid": 64, "quail": 64, "quaint": 64, "quak": 64, "quaker": 64, "qualcomm": 64, "qualif": 64, "qualifi": 64, "qualit": 64, "qualiti": [28, 64], "qualm": 64, "qualtrics1": 27, "quandari": 64, "quantif": 64, "quantifi": 64, "quantil": 64, "quantit": 64, "quantiti": 64, "quantum": 64, "quantumformat": 26, "quark": 64, "quarrel": 64, "quarri": 64, "quart": 64, "quarter": 64, "quarterback": 64, "quarterfin": 64, "quarterli": 64, "quartet": 64, "quartil": 64, "quartop": 64, "quartz": 64, "quash": 64, "quasi": 64, "quasispeci": 64, "quaternari": 64, "quayl": 64, "quaysid": 64, "qud": 64, "que": 64, "queasi": 64, "quebec": 64, "quecreek": 64, "queen": [56, 64], "queensland": 64, "queer": 64, "quell": 64, "quench": 64, "quenk": 64, "quentin": 64, "queri": 64, "queryfram": 29, "quest": [12, 29, 64], "question": [5, 15, 16, 17, 18, 19, 27, 28, 29, 39, 61, 64, 67, 68], "questionnair": 64, "quetzalcoatl": 64, "queue": [52, 64], "qui": 64, "quibbl": 64, "quich": 64, "quick": [21, 22, 28, 29, 31, 34, 46, 51, 53, 60, 61, 62, 64, 67, 68, 69], "quickedit": 64, "quicken": 64, "quicker": 64, "quickest": [30, 64], "quicki": 64, "quickli": [3, 4, 6, 12, 15, 20, 25, 45, 46, 52, 55, 56, 58, 59, 64, 73, 74], "quid": 64, "quidditch": 64, "quiescent": 64, "quiet": [11, 64], "quieter": 64, "quietli": 64, "quiglei": 64, "quill": 64, "quilt": 64, "quin": 64, "quinci": 64, "quindlen": 64, "quinean": 64, "quinn": 64, "quinon": 64, "quinta": 64, "quintana": 64, "quintanilla": 64, "quintessenti": 64, "quintet": 64, "quintil": 64, "quip": 64, "quirk": 64, "quirki": [52, 64], "quit": [3, 5, 6, 8, 9, 10, 11, 14, 21, 22, 37, 39, 42, 45, 51, 53, 58, 59, 62, 64, 70, 75], "quiver": 64, "quixot": 64, "quixtar": 64, "quiz": 64, "quizz": 64, "quo": 64, "quot": [63, 64, 70], "quota": 64, "quotabl": 64, "quotat": [30, 64, 75], "quotient": 64, "qur": 64, "quran": 64, "qureshi": 64, "qusi": 44, "quso": 64, "qutb": 64, "qu\u00e9bec": 64, "qu\u00e9b\u00e9coi": 64, "qwest": 64, "q\u00e7\u00ed": 64, "q\u00e9\u00e5\u00fc\u00e5\u00e7\u00e4\u00e7\u00f6\u00f3": 64, "r": [0, 1, 3, 8, 15, 16, 17, 18, 20, 21, 22, 23, 25, 28, 29, 30, 45, 53, 56, 64, 67, 68], "r15": 60, "rabbit": [49, 56, 57], "raccoon": 52, "race": 28, "rad": 25, "radangl": 29, "radian": 45, "radioact": [17, 18], "radiu": [6, 29], "rais": [12, 30, 49], "rake": 60, "ran": [12, 13, 26, 28], "rand": 27, "rand_lett": 27, "randint": [30, 45], "randlett": 27, "random": [6, 8, 9, 12, 13, 14, 19, 23, 24, 25, 27, 29, 30, 34, 35, 36, 37, 44, 45, 51, 60, 63, 67], "random_list": 44, "random_se": 13, "random_st": 25, "randombutnot": [23, 36], "randomizingcircularlist": 30, "randomli": 14, "randomse": 6, "randrang": [30, 53, 63], "randstr": 27, "rang": [6, 19, 23, 29, 30, 34, 35, 36, 37, 42, 44, 45, 48, 51, 52, 54, 57, 63, 65, 66, 74, 75], "rank": 5, "rare": [46, 53, 68, 74], "rate": [25, 28, 41, 56], "rather": [5, 7, 8, 15, 16, 28, 30, 34, 45, 46, 50, 51, 54, 60, 64, 74, 75], "ratio": [28, 57], "ration": 56, "rational": [61, 67], "raw": [16, 21, 29, 40, 46, 56, 63, 67], "raw_data": 16, "raw_img": 68, "re": [3, 11, 12, 15, 16, 17, 18, 19, 21, 22, 23, 24, 27, 28, 29, 30, 31, 37, 39, 41, 42, 43, 45, 46, 50, 52, 53, 56, 58, 59, 61, 62, 64, 65, 67, 68, 69, 70, 74, 75], "reach": 45, "reaction": [8, 10, 11, 12, 13, 14, 23, 41, 60, 74], "read": [5, 6, 9, 10, 11, 12, 13, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 34, 35, 38, 40, 41, 43, 45, 51, 52, 53, 56, 62, 63, 64, 67, 68, 70, 74, 75], "read_csv": [21, 22, 24, 34, 40, 64], "readabl": [45, 46, 50, 51, 54, 67, 75], "reader": [25, 67, 75], "readi": [28, 45, 52, 61, 67], "readlin": 29, "readtablehead": 41, "readthedoc": 0, "real": [28, 29, 34, 45, 47, 67, 70, 75], "realist": [52, 61], "realiti": 28, "realiz": [27, 39, 45, 54], "realli": [15, 16, 17, 18, 45, 46, 50, 52, 62, 68, 75], "reappear": 7, "reason": [5, 10, 14, 26, 28, 30, 45, 46, 50, 54, 56, 63, 67, 75], "recal": [11, 16, 17, 18, 20, 31, 45, 47, 55], "recap": 46, "receiv": [3, 28, 46, 47, 51, 54, 60, 64], "recent": [13, 17, 25, 28, 31, 35, 45, 48, 52, 54, 63, 65, 70, 74, 75], "recip": [26, 29, 64], "recode_to": 0, "recogn": [11, 12, 28, 29, 45, 46, 52, 75], "recognit": [8, 9, 58, 67], "recommend": [17, 18, 27, 45, 58, 59, 67, 70], "record": [6, 8, 9, 11, 12, 23, 24, 28, 40], "recov": 52, "recreat": 13, "rect": [3, 6, 7, 8, 14, 36, 43, 45], "rectangl": [3, 6, 7, 36, 45], "recursive_fib": [48, 57], "recycl": 31, "red": [3, 8, 9, 12, 14, 23, 29, 35, 36, 52, 56, 58, 59], "redder": 56, "reddig": 28, "redditor": 28, "redirect": [10, 28], "redo": 31, "reduc": [28, 45], "reduct": 45, "reductio": 28, "redund": [45, 64], "reentri": 27, "refactor": 51, "refer": [3, 16, 19, 45, 49, 52, 56, 58, 62, 64, 70, 75], "reflect": [11, 45], "reflog": 70, "reform": 64, "refresh": [7, 29, 31, 49, 62, 67], "refriger": [40, 64], "refus": [28, 75], "regardless": 21, "regex": 27, "regexp": [0, 21, 22, 27, 56, 64], "regexptoken": 56, "region": [18, 20, 55], "regist": 52, "registr": 28, "regress": 41, "regular": [15, 16, 28, 30, 52, 58, 59, 63, 67], "reinforc": 45, "reinstal": [58, 59], "reinvent": [30, 46], "reject": [21, 22, 60], "rel": [13, 26, 28, 45, 74], "relat": [17, 18, 20, 23, 28, 39, 45, 52, 56], "relationship": [17, 18], "relaunch": 45, "releas": [22, 75], "relev": [11, 29, 37, 70], "reli": 45, "reliabl": 45, "relig": 18, "religion": 18, "reload": 27, "remain": [7, 9, 10, 27, 30, 45, 54, 60, 67], "remaind": [9, 75], "remark": [41, 45], "rememb": [2, 3, 7, 10, 14, 23, 28, 30, 37, 38, 45, 46, 52, 67, 70, 75], "remind": 45, "remix": 68, "remot": 67, "remov": [0, 5, 27, 28, 29, 30, 35, 64], "renam": [17, 18, 45, 58], "render": 68, "reopen": 38, "rep": 41, "repag": 26, "repeat": [5, 14, 37, 44, 45, 51, 52, 60, 75], "repeatedli": 45, "repeattri": 30, "repetet": 52, "repetit": [11, 14, 30, 45, 46, 50, 51, 62, 64], "repetition_101": 14, "repetition_102": 14, "repetitionsperimag": 74, "replac": [23, 27, 30, 31, 35, 37, 41, 44, 50, 52, 54, 56, 60, 62], "replace_mor": 28, "repli": 56, "repo": [5, 10, 67], "report": [13, 14, 16, 17, 18, 45, 52, 56, 67], "repositori": [2, 3, 11, 12, 13, 15, 16, 36, 49, 60, 62, 67], "repres": [7, 30, 45, 46, 75], "represent": 75, "reproduc": [3, 61, 62, 64], "repsons": 56, "reptil": 56, "republ": 41, "republican": [20, 28, 55], "request": [26, 27, 52, 56, 68, 69], "requir": [11, 20, 26, 29, 37, 45, 54, 55, 58, 59, 70], "rescu": 26, "research": [1, 11, 28, 61], "researchsit": 69, "resembl": [41, 56], "reserv": [67, 75], "reset": [30, 70], "resid": 45, "residu": [20, 55], "resist": 28, "resolut": 26, "resolv": [63, 70], "resourc": [26, 27, 40, 67], "resp": [9, 11, 29, 36, 37], "respect": [12, 37, 75], "respond": [6, 8, 9, 10, 11, 12, 13, 14, 17, 18, 36, 37, 50, 58, 59, 60, 62, 74], "respons": [6, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 23, 27, 28, 36, 37, 38, 41, 45, 46, 47, 56, 60, 66, 67, 75], "response_map": 47, "response_receiv": 47, "response_typ": 11, "responsemap": [23, 36], "responsesmap": 66, "responsetim": 29, "resps_to_posit": 37, "resptim": 24, "rest": [3, 11, 15, 23, 37, 46, 50, 51, 64, 67], "restart": 58, "restrict": [17, 29, 30, 35, 49, 52], "result": [9, 11, 12, 13, 14, 22, 24, 25, 26, 27, 28, 30, 38, 39, 46, 50, 51, 53, 54, 58, 59, 61, 67, 68, 75], "retir": 28, "retriev": [5, 29, 46, 52], "retrospect": 28, "return": [6, 8, 11, 12, 13, 19, 21, 22, 23, 24, 27, 29, 30, 34, 35, 36, 37, 40, 43, 45, 46, 48, 49, 52, 54, 56, 57, 63, 64, 65, 66, 70, 74, 75], "return_first_nam": 40, "return_what": 56, "reus": 45, "reusabl": 45, "revers": [7, 13, 16, 29, 45, 46, 47, 51, 64], "reversalintens": 29, "revert": 70, "review": 67, "review_of_fundamentals_a": 65, "revis": [22, 35, 45, 75], "revisit": [45, 67], "revolut": 3, "rewrit": [37, 46, 54, 70], "rewritten": [30, 38, 45], "rfind": 30, "rgb": 29, "rhinocero": 75, "rhyme": 60, "rhythm": 40, "rich": 56, "rid": [5, 26, 64, 75], "right": [3, 7, 8, 10, 12, 13, 16, 17, 18, 23, 24, 25, 26, 27, 28, 30, 31, 37, 39, 40, 42, 43, 45, 46, 52, 53, 54, 56, 58, 59, 62, 64, 66, 67, 68, 75], "rightward": 16, "rindex": 30, "ring": 21, "rip": 68, "rita": 68, "ritchi": 54, "rizlahh": 28, "rjust": 30, "rm": [31, 41], "rmd": [15, 16, 67], "robot": 75, "robust": [11, 45], "rock": 68, "rocket_0": 45, "rocket_1": 45, "rocket_gam": 45, "rocket_modul": 45, "rocket_simul": 45, "rocketship": 45, "rockin": 68, "role": 45, "romania": 41, "romeo": 35, "room": [29, 56], "rose": [28, 56], "rosetta": 58, "rossum": [54, 75], "roster": [12, 40], "rotat": [3, 35], "roughli": 28, "round": [9, 12, 13, 25, 28, 29, 34, 45, 66, 74], "roup": 27, "routin": [10, 29, 74], "row": [10, 11, 14, 16, 21, 22, 23, 25, 26, 29, 30, 37, 42, 44, 56], "rowmean": [17, 18], "rowwis": [17, 18], "rowws": 0, "rproj": 15, "rsplit": 30, "rstrip": [29, 30, 56, 75], "rsudio": [58, 59], "rt": [6, 8, 9, 11, 12, 13, 14, 15, 16, 23, 24, 29, 36, 41, 74], "rtool": 59, "rtr": 27, "rule": [28, 45, 50, 64], "run": [3, 7, 8, 9, 11, 12, 13, 14, 15, 16, 19, 27, 29, 30, 35, 36, 42, 45, 46, 50, 51, 52, 56, 58, 59, 60, 61, 62, 67, 68, 73, 74], "runtim": [9, 11, 12, 13, 47, 60, 67, 74], "runtime_var": [9, 29], "runtime_vari": 29, "runtimevar": 29, "runtrial": 24, "rush": 3, "rwanda": 41, "s2": 6, "sa": [24, 51], "sad": [23, 24, 36], "safe": [14, 45, 58, 59], "safe_substitut": 30, "sai": [6, 9, 11, 17, 18, 19, 21, 26, 28, 30, 34, 45, 51, 52, 56, 58, 64, 68, 74, 75], "said": [11, 28, 56, 75], "sail": 45, "saith": 56, "salari": 28, "salvador": [30, 41], "same": [3, 5, 9, 10, 12, 13, 14, 17, 18, 19, 23, 24, 25, 26, 27, 28, 29, 30, 35, 36, 37, 40, 41, 42, 43, 45, 46, 50, 51, 52, 54, 56, 60, 62, 63, 64, 68, 70, 74, 75], "same_tri": 74, "sampl": [4, 6, 17, 18, 23, 29, 30, 41, 44, 56, 61, 64, 66, 74], "sample_data": 23, "sampletri": 24, "sand": 68, "sandbox": 27, "saniti": 41, "santa": 68, "sariel007": 28, "satellit": 56, "satisfi": [24, 65], "saucier": 64, "saudi": 41, "save": [10, 12, 13, 25, 26, 38, 45, 51, 58, 59, 67, 68, 75], "saveimag": 29, "savemoviefram": 29, "saveuserpref": [58, 59], "saw": [17, 18, 45, 56, 58, 59, 60], "sawhors": 56, "scalabl": 45, "scale": [22, 25, 41, 45, 64, 67, 68], "scaled_resp_by_subj": 41, "scaled_resp_by_word": 41, "scan": 60, "scandal": 22, "scatter": 25, "scenario": 45, "scene": [45, 75], "schemat": 60, "scholar": 68, "school": [1, 7, 28], "scienc": [28, 45, 64, 68, 75], "science_knowledg": [17, 18], "scientia": 64, "scientif": [17, 18, 28, 30, 64, 68], "scientist": [17, 18, 28, 64], "scientologi": 64, "scikit": 25, "scn": 68, "scond": 52, "scope": [21, 22, 45, 67], "score": [7, 11, 28, 34], "scorpio": [17, 18], "scrape": [61, 68], "scratch": 45, "screen": [3, 6, 7, 10, 29, 42, 52, 60, 62], "screencapnum": 29, "screenflip": 25, "scren": 60, "screwdriv": 30, "scripe": 29, "script": [6, 8, 9, 10, 12, 13, 22, 23, 27, 28, 58, 59, 67, 68], "scriptingrt": 27, "scroll": [13, 29, 31, 45], "se": 21, "seaborn": 74, "seamlessli": 45, "search": [28, 30, 31, 39, 52, 75], "seat": 28, "sec": [3, 8], "second": [3, 5, 6, 7, 8, 10, 13, 14, 16, 23, 26, 27, 28, 29, 30, 31, 34, 43, 45, 46, 50, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 70, 74], "secretcod": 27, "section": [27, 43, 45, 50, 52, 54, 67, 70, 75], "secur": 28, "see": [2, 3, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 23, 24, 26, 27, 28, 29, 30, 31, 36, 41, 42, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 68, 71, 74, 75], "seed": [6, 12, 13, 29, 30, 60], "seed1": 74, "seed2": 74, "seem": [11, 26, 28, 45, 56, 62], "seen": [10, 45, 49, 50, 51, 52, 54, 60, 70, 74], "select": [0, 31, 34, 41, 50, 58, 59, 74], "select_if": 41, "self": [6, 13, 21, 22, 27, 30, 45, 63, 64, 67], "selftext": 28, "sell": 28, "semest": 75, "senat": 28, "send": [12, 16, 27, 51, 54], "seneg": 41, "sens": [5, 45, 46, 50, 52, 54, 56, 75], "sensibl": 75, "sensibli": 74, "sensit": [22, 70], "sent": [54, 67], "sentenc": [20, 21, 22, 53, 75], "sentiment": 67, "sep": [21, 22, 30, 41, 64], "sepal": 41, "separ": [3, 5, 7, 9, 12, 13, 14, 15, 23, 26, 27, 30, 31, 37, 38, 41, 42, 45, 52, 75], "separat": 52, "seper": 45, "sequenc": [3, 4, 6, 10, 14, 25, 42, 44, 56, 57, 60, 64, 67, 70, 74, 75], "sequence_with_repeat": 44, "sequenti": [14, 26, 30, 56], "seri": [14, 39, 45, 50, 64, 74, 75], "serious": 75, "serv": [13, 27, 45], "servic": 27, "session": [6, 58, 59, 60], "set": [0, 6, 7, 8, 10, 11, 13, 16, 17, 18, 21, 22, 23, 26, 27, 28, 29, 35, 41, 42, 45, 46, 47, 50, 51, 52, 56, 64, 70, 73, 75], "setautodraw": 25, "setcolor": [8, 11], "setfillcolor": 14, "setfix": 6, "setimag": [23, 29, 36], "setlett": 6, "setlinecolor": 14, "setnum": 74, "setori": [3, 11, 29], "setosa": 41, "setpo": [6, 14, 23, 25, 45], "setrectangl": 6, "setsiz": 36, "settext": [8, 11, 23, 36], "setup": 27, "setvis": [6, 13], "sever": [0, 9, 12, 19, 21, 22, 25, 26, 27, 29, 30, 31, 42, 45, 46, 51, 52, 56, 60, 63, 67], "sewer": 28, "sex": [17, 18], "sex_l": [17, 18], "sexfreq": 18, "shabubu": 68, "shakespear": [5, 56], "shaki": 67, "shall": 56, "shallow": [41, 46], "shalt": 56, "shame": 14, "shan": 56, "shankman": 22, "shape": 14, "share": [45, 70, 73, 75], "shavem": 26, "she": [28, 56, 68], "sheet": [26, 68], "shell": [15, 16, 31, 58, 59, 67], "shepherd": 52, "shift": [52, 58, 59], "shine": 45, "ship": 45, "shiver": 68, "shiyu": 40, "shop": [30, 68], "shoppinglist": 30, "shoppingstr": 30, "short": [1, 6, 12, 28, 31, 45, 51, 61, 67, 74, 75], "shortcom": 64, "shortcut": [31, 67], "shorten": [45, 58], "shorter": [14, 46, 51, 56, 75], "shorthand": 63, "shortli": 60, "should": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20, 21, 22, 23, 25, 28, 29, 31, 35, 36, 38, 40, 42, 44, 45, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 63, 65, 66, 67, 68, 69, 70, 74], "shouldn": [56, 67], "show": [3, 4, 6, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 23, 24, 25, 26, 28, 36, 37, 39, 41, 45, 46, 49, 50, 51, 52, 54, 55, 58, 59, 60, 63, 67, 68, 70, 75], "show_stud": 51, "show_text_until_mouse_or_keypress": 29, "show_trial": 11, "show_words_mean": 46, "showcas": 45, "shown": [6, 9, 12, 13, 14, 16, 23, 24, 29, 45, 46, 60, 62], "shownactor": [23, 36], "showncategori": [23, 36], "showtext": 24, "shred": 68, "shuffl": [6, 9, 25, 35, 45, 51, 66, 74], "shuffle_list": 51, "shuffle_slic": 30, "shuheng": 40, "shutil": 30, "shuttl": 45, "shuttle_0": 45, "side": [10, 26, 50, 75], "sidebar": [64, 67], "sideshow": 68, "sign": [17, 18, 21, 22, 30, 45, 50, 60, 67, 68, 75], "signal": [29, 45, 53, 68], "signatur": 45, "signed_error": [13, 16], "signed_tilt": 16, "signific": 45, "significantli": 60, "silenc": 75, "silent": 75, "siment": 40, "similar": [15, 17, 22, 28, 29, 35, 46, 48, 52, 58, 60, 67, 74, 75], "similarli": 70, "simpl": [6, 8, 12, 13, 19, 27, 28, 29, 31, 46, 51, 52, 53, 54, 63, 64, 67, 68, 71, 75], "simpler": [27, 45], "simplest": [15, 29, 31, 50, 70], "simpli": [3, 6, 10, 27, 45, 49, 50, 52, 56, 58, 59, 64, 65, 70, 74], "simplic": [20, 55, 60], "simplifi": [22, 45, 52], "simpson": 68, "simpson_famili": 68, "simul": [19, 45], "simultan": 3, "sin": [29, 45], "sinc": [3, 11, 12, 16, 17, 18, 22, 27, 46, 52, 56, 62, 66, 70, 74], "singl": [14, 15, 16, 21, 22, 26, 29, 30, 31, 37, 42, 50, 52, 56, 60, 61, 64, 70], "singular": 56, "sink": 46, "sir": 56, "site": [13, 27, 28, 30, 52, 67, 68, 70], "situat": [19, 45, 47, 50, 52, 54, 67, 74], "size": [3, 6, 14, 17, 18, 25, 26, 27, 29, 36, 45, 62], "sizh": 52, "sjmisc": 0, "skate": 46, "sketch": 16, "ski": 46, "skill": [1, 10, 14, 17, 18, 35, 69], "skim": 67, "skip": [45, 48], "sklearn": 25, "sky": 68, "slack": [12, 16, 44, 45, 58, 59, 60, 67], "slash": [30, 47, 64, 74, 75], "sled": 49, "slice": 74, "slide": 67, "slightli": [13, 15, 16, 30, 42, 45, 50, 52, 56, 58, 64, 67, 69], "slip": 62, "slope": [15, 41], "slot": 67, "slovak": 41, "slow": [4, 6, 8, 15, 62], "slower": [15, 29, 45], "slowli": 45, "small": [7, 13, 14, 17, 18, 27, 28, 41, 46, 56, 58, 59, 62], "smaller": [12, 15, 18, 28, 45], "smallest": [16, 41], "smalltalk": 54, "smart": 70, "smartquot": 70, "smell": 60, "smith": 40, "smokin": 68, "smooth": [7, 24, 56], "smoothli": [7, 24], "sn": 74, "snazzi": [8, 64], "snippet": [26, 65], "snout": 56, "snowbal": 68, "snowboard": 46, "so": [2, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 35, 37, 38, 39, 40, 42, 43, 44, 45, 46, 49, 50, 51, 52, 54, 55, 56, 58, 59, 60, 62, 63, 64, 67, 70, 74, 75], "socbar": [17, 18], "soccer": 45, "social": 67, "societ": 64, "societi": 64, "softwar": [1, 30, 58, 59], "sole": 7, "solidifi": 45, "solut": [3, 5, 7, 9, 11, 16, 17, 18, 20, 21, 22, 29, 31, 37, 39, 40, 41, 44, 45, 47, 55, 64, 67, 74, 75], "solv": [1, 27, 39, 42, 44, 45, 75], "some": [1, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 34, 36, 37, 40, 42, 43, 44, 45, 46, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 63, 64, 67, 68, 70, 75], "some_alphanumeric_str": [21, 22], "some_book": 56, "some_books_clean": 56, "some_file_nam": [58, 59], "some_num": 65, "some_repo": 70, "some_string_with_lots_of_data": 52, "some_url": 70, "somebodi": 28, "somehow": 22, "somenum": 64, "someoddnum": 30, "someon": [1, 10, 11, 17, 28, 45, 73], "someth": [9, 10, 11, 15, 17, 18, 21, 22, 23, 25, 27, 28, 31, 35, 40, 44, 45, 46, 50, 51, 52, 53, 54, 56, 61, 62, 63, 65, 66, 67, 68, 69, 70, 74], "sometim": [27, 28, 45, 46, 50, 51, 52, 54, 62, 64, 70, 75], "somewhat": [11, 17, 18, 30, 74], "somewher": [25, 64], "someword": 21, "son": 56, "song": 68, "soo": 56, "soon": [29, 50, 51, 56], "sophist": [5, 45], "sorri": [51, 62], "sort": [15, 16, 30, 31, 37, 41, 51, 56, 64, 67], "sorted_represent": 46, "soul": 68, "sound": [6, 12, 29, 36, 41, 45, 49, 67, 68], "sound_stim": 29, "soup": 56, "soup_mendota": 69, "soup_weather_channel": 69, "sourc": [11, 26, 27, 28, 43, 75], "south": 41, "space": [14, 28, 29, 30, 31, 35, 42, 45, 50, 54, 63, 68, 75], "spacebar": [29, 60], "spam": [30, 46, 66], "spam2": 30, "span": [24, 64, 68], "spangler": 40, "sparrow": 56, "spars": 75, "sparsecolor": 26, "speak": 11, "spec": 22, "speci": [41, 64], "special": [45, 46, 50, 51, 52, 56, 60, 64, 67, 75], "special_stim": 60, "speciessep": 41, "speciestermestimatestd": 41, "specif": [11, 12, 14, 15, 22, 23, 26, 28, 29, 31, 37, 45, 46, 50, 56, 64, 70, 75], "specifc": 70, "specifi": [4, 6, 9, 26, 30, 31, 37, 45, 46, 52, 54, 63, 64, 70, 74], "speech": [5, 8, 9, 28, 56, 58, 64, 67], "speech_recognit": 11, "speed": [4, 6, 64], "spell": [46, 60, 75], "spend": [3, 6, 17, 18, 45, 67, 75], "spent": 3, "spike": 28, "spill": 28, "spiritu": [17, 18], "spit": 27, "split": [23, 26, 29, 30, 37, 51, 53, 56, 64, 74], "split_var": 0, "splitext": [29, 49], "splitfield": 30, "spoken": 54, "spoon": 49, "spot": [31, 68, 75], "spotlight": 22, "spous": 17, "spread": 28, "spreadsheet": 34, "spring": 61, "sprtprsn": [17, 18], "spwrksta": 17, "spwrkstat": 17, "sql": 34, "sqrt": 45, "squar": [14, 46, 52, 53, 67], "square_it": 51, "src": [27, 30], "sre_pattern": 30, "stabl": [24, 45, 74], "stackoverflow": 30, "stai": [14, 19, 27, 45, 56, 67, 68], "stairhandl": 29, "stampi": 68, "stan": 26, "stand": [27, 45, 56, 63, 64], "standa": 56, "standalon": 30, "standard": [13, 30, 36, 46, 58, 67, 75], "standard_ord": 75, "stanlei": 68, "star": 68, "stark": 28, "start": [1, 3, 6, 7, 9, 10, 11, 13, 14, 19, 23, 25, 27, 29, 30, 31, 34, 39, 41, 42, 44, 45, 46, 49, 50, 52, 54, 56, 58, 59, 60, 62, 64, 67, 69, 70, 74, 75], "start_stat": 6, "starter": [2, 3, 5, 6, 11, 12, 13, 15, 16, 22, 62, 70], "starter_cod": 49, "startval": 29, "stat": 29, "state": [1, 4, 6, 12, 13, 18, 20, 28, 41, 43, 45, 55, 61, 67, 70], "state_transit": 6, "state_union": 67, "statemachin": 6, "statement": [5, 8, 11, 21, 22, 23, 29, 30, 37, 42, 45, 46, 47, 51, 52, 53, 54, 59, 64, 65, 71], "statewid": 28, "statist": [1, 16, 26], "statu": [17, 18, 46, 70], "stdtype": 30, "steadili": 75, "steep": [41, 56], "steepl": 28, "stellar": 68, "stelvio": 35, "stem": [56, 64], "step": [3, 9, 25, 27, 28, 29, 45, 46, 56, 58, 59, 67, 68], "stepsiz": 29, "steptyp": 29, "stick": [7, 37, 67], "stiker": 45, "still": [13, 21, 22, 27, 45, 46, 52, 58, 59], "stim": [6, 24, 25, 29, 37, 49, 60], "stim_filenam": 49, "stim_list": 29, "stim_names_descript": 60, "stimfil": 29, "stimgend": 24, "stimlist": 29, "stimnum": 24, "stimuli": [8, 9, 12, 13, 16, 24, 25, 29, 37, 40, 49, 60, 61], "stimulu": [9, 11, 13, 14, 26, 29, 37, 62], "stimulus_info": 60, "stole": 22, "stolen": 28, "stone": 45, "stood": 56, "stop": [3, 5, 28, 30, 45, 51], "stopwatch": 11, "stopword": [0, 5, 56, 67], "stopwrd": 56, "storag": [26, 34], "store": [8, 9, 11, 14, 23, 27, 29, 31, 35, 37, 46, 47, 52, 54, 67, 75], "stori": [56, 67], "storm": 28, "str": [14, 24, 28, 29, 30, 35, 46, 48, 50, 52, 53, 56, 57, 63, 65, 69, 75], "strai": 68, "straight": [7, 17, 64, 71], "straightforward": [45, 46, 52, 54, 75], "strait": 68, "strangl": 68, "strategi": [19, 45, 62], "streamlin": 45, "street": 56, "strenght": 45, "strengt": 14, "strength": [13, 16, 45], "stretch": 26, "strickland": 68, "strike": 37, "string": [0, 4, 6, 9, 12, 14, 15, 16, 21, 22, 23, 27, 28, 31, 38, 43, 45, 46, 50, 51, 63, 64, 65, 67, 70, 71], "string1": 14, "string1a": 63, "string1string2": 63, "string2": [14, 63], "string3": 14, "stringn": 14, "strip": [30, 68], "strongest": [17, 18], "strongli": [14, 17, 18, 67], "stroop": [11, 45, 67], "stroop_101": [9, 29], "stroop_102": 9, "strop": 30, "structur": [6, 10, 34, 37, 45, 50, 52, 54, 63, 70], "struggl": 28, "sttement": 21, "stu": 68, "stuck": [52, 54], "student": [1, 12, 28, 40, 51, 52, 75], "student_nam": 75, "studi": [6, 22, 27, 28, 61, 67, 74], "studio": 67, "stuff": [11, 28, 29, 31, 39, 41, 52, 56, 63, 75], "stupid": 56, "sture": 46, "style": [6, 26, 50, 58, 59, 67], "stylist": 67, "sub": [21, 22, 30, 64], "subclass": 45, "subdirectori": [9, 31, 49], "subfold": [12, 13, 15, 16, 29], "subj_cod": [9, 11, 12, 13, 15, 16, 29, 41], "subj_code_": 9, "subj_code_data": [12, 13], "subj_codewordkeyrt": 41, "subj_codewordkeyrtmedian_rt": 41, "subj_codewordkeyrtscaled_resp_by_subjnum_ratings_by_subjscaled_resp_by_wordnum_ratings_for_word": 41, "subjcod": 29, "subjcode_data": 23, "subjcode_tri": [12, 13], "subject": [6, 9, 12, 13, 14, 15, 16, 24, 27, 41, 46, 60, 67, 74], "subject_cod": [12, 13], "sublim": [64, 75], "sublist": 30, "submiss": [14, 15, 61, 70], "submit": [2, 8, 15, 16, 22, 67], "suboptim": 62, "subplots_adjust": 25, "subpoena": 28, "subscrib": [56, 70], "subsequ": 29, "subset": [15, 16, 52, 66], "subspeci": 64, "substanti": 18, "substitut": [30, 45], "substr": [30, 48, 57], "subtract": 75, "successfulli": [8, 58, 59], "sucient": 64, "suffer": 28, "suffic": 52, "suffici": [20, 45, 64, 67], "suffix": [23, 36], "sugar": 63, "suggest": [14, 21], "suitabl": 30, "sujin": 52, "sullivan": 30, "sum": [53, 54, 57, 74, 75], "summar": [16, 18, 41, 45], "summari": 23, "summaris": 41, "summarize_al": 0, "summarize_if": 0, "summer": 28, "sunroof": 68, "sunset": 28, "super": [45, 68], "superclass": 45, "supermass": 68, "supplement": 64, "suppli": [14, 29, 30, 54], "support": [17, 30, 34, 45, 56], "suppos": [10, 17, 18, 19, 25, 27, 30, 35, 37, 41, 45, 47, 51, 52, 56, 64, 74], "suppress": 31, "suprem": 28, "sure": [5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 27, 29, 30, 31, 34, 38, 40, 44, 45, 50, 51, 52, 54, 58, 59, 60, 61, 62, 64, 65, 67, 75], "surfac": [29, 37, 68], "surpris": [18, 28, 45, 50, 65, 75], "surprisingli": 19, "surround": 56, "survei": [34, 67], "surveyurl": 29, "sutdi": 60, "suycient": 64, "swallow": 56, "swapcas": 30, "swaziland": 41, "swcarpentri": 52, "sweden": 41, "sweetest": 68, "swim": 45, "swinburn": 68, "swing": 28, "swipe": 13, "swiss": 28, "switch": [3, 19, 31, 42], "sy": [3, 8, 23, 29, 30, 45, 69], "syllabu": [], "symbol": 75, "syn": 56, "sync": 29, "synonym": [30, 56], "synset": 56, "synset_hypernym": 56, "syntact": [63, 75], "syntax": [21, 22, 29, 36, 45, 46, 49, 52, 54, 62, 64, 65, 66, 75], "syntaxerror": [35, 36, 65, 75], "syria": 41, "system": [27, 28, 45, 49, 58, 59, 67, 70], "t": [3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 74, 75], "tab": [14, 16, 21, 22, 27, 29, 30, 75], "tabl": [17, 24, 27, 30, 41, 56, 66], "tableland": 56, "tablewar": 56, "tabset": 67, "tabsiz": 30, "tabular": 56, "tackl": 45, "tag": [0, 2, 3, 5, 7, 9, 12, 15, 16, 56, 68], "tagger": 5, "tail": [34, 41, 52], "tailor": 45, "tair": 56, "take": [1, 5, 6, 8, 9, 10, 11, 21, 22, 23, 25, 26, 27, 28, 29, 30, 37, 40, 43, 45, 46, 50, 51, 52, 53, 54, 56, 57, 58, 59, 67, 68, 74, 75], "taken": 56, "talk": [28, 38, 42, 52, 56, 61, 63, 68, 75], "tangl": 45, "tanzania": 41, "target": [1, 10, 23, 45, 74], "targetactor": 23, "targetcategori": 23, "targetfaceimag": [23, 36], "targetimag": 23, "targetloc": 23, "task": [4, 6, 9, 12, 13, 24, 25, 27, 45, 60, 67, 68, 74], "taught": [1, 51], "taylor": 68, "teach": [1, 9, 13, 51], "team": [11, 45, 60, 67], "teammat": 70, "tear": 68, "tech": 28, "technic": [63, 75], "techniqu": 10, "technologi": 68, "tediou": 64, "telecommun": 64, "teleport": 45, "tell": [11, 14, 27, 28, 31, 38, 41, 45, 46, 50, 51, 52, 54, 56, 63, 67, 70, 75], "temp": [26, 46, 69], "templat": 30, "temporari": [28, 29, 45, 52, 70], "temporarili": [6, 28, 75], "tempt": [45, 52], "temptat": 75, "tempvalu": 68, "ten": [56, 75], "tend": [17, 28, 56], "tendenc": 64, "tenth": 75, "teo": 40, "term": [28, 29, 30, 31, 41, 45, 46, 54, 61, 75], "termin": [6, 10, 16, 23, 29, 31, 36, 50, 58, 59, 60, 67, 71, 74, 75], "terminologi": [26, 60], "terror": 64, "terwillig": 68, "test": [6, 8, 11, 12, 13, 14, 21, 27, 28, 31, 45, 54, 62, 67, 70, 71, 74], "test_assign": [2, 70], "test_path": 6, "test_subj1": [12, 13], "test_subj2": [12, 13], "test_subj3": [12, 13], "test_subj4": 13, "testmonitor": 29, "testscript": 28, "testsubj1_tri": 60, "teveryon": 75, "texa": 28, "text": [0, 5, 6, 8, 9, 11, 15, 16, 23, 24, 25, 26, 27, 31, 36, 56, 58, 59, 62, 63, 64, 67, 68, 69, 70, 71, 75], "text_color": 11, "textcoord": 25, "textstim": [6, 8, 23, 24, 25, 29, 36, 62], "th": [35, 75], "than": [5, 7, 8, 13, 14, 15, 16, 17, 18, 26, 28, 30, 34, 37, 38, 44, 45, 46, 49, 51, 52, 54, 56, 60, 63, 64, 68, 74, 75], "thank": [51, 54, 75], "thank_you": [51, 54], "thatnonsens": 68, "thei": [7, 9, 12, 13, 14, 16, 17, 18, 20, 21, 22, 23, 25, 28, 29, 30, 35, 36, 43, 45, 50, 51, 52, 54, 56, 60, 62, 63, 64, 67, 68, 70, 74, 75], "theirs": 56, "thello": 75, "them": [2, 5, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 34, 35, 39, 40, 43, 45, 46, 49, 50, 51, 52, 54, 55, 56, 58, 59, 60, 62, 63, 64, 65, 67, 68, 70, 74, 75], "theme": [56, 69], "themselv": [28, 56, 67], "theori": [1, 68], "therebi": 8, "therefor": [30, 45], "theta": 29, "thi": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 73, 74, 75], "thing": [0, 1, 7, 8, 9, 13, 14, 16, 27, 28, 30, 34, 42, 43, 45, 46, 50, 51, 52, 53, 54, 56, 58, 62, 63, 64, 66, 67, 70, 71, 73, 75], "think": [6, 9, 15, 17, 18, 19, 26, 28, 30, 40, 42, 44, 45, 51, 52, 56, 60, 63, 65, 67, 75], "thinker": 75, "third": [17, 18, 26, 27, 28, 45, 52, 54, 68], "thisdict": 35, "thissubj": 74, "thm": 75, "thompson": 54, "those": [5, 9, 12, 17, 18, 26, 27, 29, 31, 45, 46, 49, 50, 51, 52, 54, 56, 62, 63, 64, 70, 74, 75], "thou": 56, "though": [1, 13, 14, 15, 16, 17, 18, 21, 22, 24, 25, 28, 31, 42, 45, 46, 53, 54, 74, 75], "thought": [37, 45, 56, 60, 75], "thousand": [22, 56], "three": [5, 10, 14, 15, 19, 23, 24, 27, 38, 51, 52, 54, 60, 63, 65, 66, 67, 74, 75], "threshold": [26, 28, 29], "through": [3, 6, 9, 11, 12, 13, 14, 23, 24, 27, 28, 29, 30, 31, 35, 39, 42, 45, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 67, 68, 69, 75], "throughout": [30, 45, 75], "throught": 8, "throw": [44, 50, 63, 75], "throwawai": 63, "tht": 58, "thu": [20, 55, 56], "thursdai": 56, "tianrun": [37, 40], "tibbl": 41, "tibiammo": 28, "tidal": 68, "tidi": 41, "tidyvers": [1, 39, 41, 58, 59, 67], "tiim": 52, "til": [28, 68], "til_blacking_out_from_alcohol_doesnt_cause_you_to": 28, "tile": 26, "tilt": 13, "tilt_103": 13, "tilt_direciton": 16, "tilt_direct": [13, 16], "tim": 75, "time": [3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 36, 38, 41, 44, 45, 46, 48, 49, 50, 51, 52, 54, 56, 58, 59, 60, 62, 63, 64, 67, 68, 70, 73, 74, 75], "timelin": 70, "timeout": 8, "timer": [8, 36], "timeseri": 41, "timestamp": 29, "ting": 52, "tip": [27, 28, 62, 63, 67], "titi": 68, "titl": [15, 16, 28, 29, 46, 50, 51, 52, 54, 58, 59, 67, 68, 75], "to_csv": 34, "to_dict": 24, "to_factor": [17, 18], "tobago": 41, "todai": [68, 69], "todayilearn": 28, "toexclud": [23, 36], "tofil": 29, "togeth": [8, 9, 15, 16, 51, 54, 56, 61, 67, 70, 75], "token": [5, 56, 70], "told": [52, 56, 67, 68], "tom": 28, "toni": 68, "too": [8, 12, 13, 15, 17, 18, 22, 28, 56, 63, 68, 74, 75], "took": [11, 56], "tool": [1, 27, 29, 45, 52, 64, 70], "toolkit": [1, 56, 67], "top": [5, 23, 26, 27, 31, 45, 54, 56, 58, 59, 68, 73], "top_imag": 68, "top_level_com": 28, "top_submission_in_madison": 28, "topic": [1, 30, 45, 68], "torn": 68, "torpedo": 28, "torvald": 75, "tostr": 29, "total": [6, 7, 9, 16, 38, 50, 56, 60, 74], "tothi": 26, "touch": 1, "tour": [28, 56], "toward": 45, "towardsdatasci": 0, "town": [28, 68], "tppp": 6, "tpppt": 6, "tppptxxv": 6, "tppt": 4, "tpt": 6, "tptp": 6, "tptxxvpxxvp": 6, "traceback": [13, 25, 35, 45, 48, 52, 54, 63, 65, 74, 75], "track": [14, 29, 37, 45, 52, 70], "trackpad": [13, 24], "trade": 1, "tradit": 27, "tradition": 29, "trail": 30, "train": [5, 28], "trajectori": [17, 18], "transcrib": [11, 64], "transcribe_respons": 11, "transcript": 64, "transfer": 22, "transform": [45, 74], "transient": 68, "transit": [6, 24, 30, 45], "translat": 30, "transport": 45, "trap": 11, "trash": 31, "traumat": 28, "travel": 7, "travers": 46, "treat": [52, 56, 75], "treatment": 28, "tree": 68, "treebank": 5, "trend": [15, 41], "tri": [28, 31, 54, 63, 75], "trial": [6, 8, 9, 11, 12, 13, 14, 15, 16, 23, 24, 30, 34, 36, 37, 52, 60, 61, 67, 75], "trial_dict": 29, "trial_fil": 29, "trial_filenam": 29, "trial_gener": 74, "trial_info": 60, "trial_list": 29, "trial_num": [9, 12], "trial_numb": [12, 13], "trialindex": [24, 60], "trialinfo": 60, "triallist": [10, 23, 29], "trials_list": 29, "trialspersubject": 74, "trialtyp": 23, "trick": [12, 13, 49], "tricki": [3, 15, 16, 18, 40, 44, 64, 65], "trig": 29, "trigram": [5, 56], "trigram_freq": 56, "trigram_measur": 5, "trigramassocmeasur": 5, "trigramcollocationfind": 5, "trimmed_": 26, "trinidad": 41, "trip": [21, 22, 52], "tripl": [45, 75], "triplet": 56, "troi": 68, "troubl": [11, 15, 16, 23, 30, 42, 68, 70], "troubleshoot": 75, "true": [3, 6, 7, 8, 13, 15, 17, 18, 23, 24, 25, 29, 30, 36, 37, 41, 43, 45, 46, 48, 49, 51, 52, 53, 57, 62, 63, 65, 66], "true_angl": [13, 16], "trump": 28, "truncat": 30, "trunk": 60, "trust": [20, 45, 55], "truth": [56, 63], "try": [9, 10, 11, 14, 16, 17, 18, 28, 29, 30, 31, 35, 37, 39, 40, 41, 42, 44, 45, 46, 49, 51, 52, 56, 58, 59, 60, 61, 63, 64, 67, 74], "tryst": 40, "tt": 64, "tuesdai": 70, "tumefacien": 64, "tune": 27, "tunisia": 41, "tupl": [30, 43, 45, 46, 54, 71], "tupon": [21, 22], "turk1": 27, "turkei": [41, 50], "turn": [4, 6, 7, 16, 30, 42, 52, 62], "turtl": [28, 56], "tutor": 52, "tutori": [28, 58, 59, 64, 67, 68, 69, 70], "tutorial_for_praw": 28, "tweak": [7, 61], "twice": [9, 12, 27, 28, 30, 44, 51, 74], "twitter": 28, "twitter_sampl": 67, "two": [3, 5, 10, 13, 14, 16, 17, 18, 20, 21, 22, 24, 28, 29, 30, 37, 38, 41, 43, 44, 45, 46, 50, 51, 52, 54, 56, 57, 60, 61, 62, 63, 64, 66, 67, 70, 74, 75], "txt": [5, 10, 11, 14, 21, 22, 23, 30, 38, 56, 58, 59, 60, 64, 67, 70], "ty": 6, "type": [3, 10, 12, 13, 15, 17, 18, 22, 23, 24, 26, 27, 28, 29, 30, 31, 34, 37, 39, 41, 43, 44, 45, 46, 49, 54, 56, 58, 59, 60, 61, 62, 64, 65, 67, 70, 74], "typeerror": [35, 52, 54, 63, 74, 75], "typic": [5, 30, 38, 45, 46, 56, 70], "typo": 75, "tyron": 68, "u": [6, 11, 14, 15, 16, 18, 20, 27, 28, 29, 31, 35, 37, 40, 41, 45, 46, 49, 50, 51, 52, 53, 54, 56, 62, 63, 64, 66, 67, 68, 69, 70, 74, 75], "ubuntu": 71, "uc": 54, "ueda": 60, "uganda": 41, "ugli": 75, "uh": 63, "uk": [21, 22], "uk_educ": [21, 22], "ukrain": 28, "ul": 68, "ultramicroextens": 64, "un": 60, "unambigu": 75, "uncl": [28, 56, 68], "unclutt": 45, "under": [50, 56], "underdetermin": 60, "underpin": 43, "underscor": [45, 54, 75], "understand": [1, 3, 6, 8, 18, 20, 26, 29, 30, 43, 45, 51, 52, 62, 64, 65, 67, 75], "understood": [15, 65], "underus": 31, "undo": 31, "undon": 70, "unexpect": [17, 18], "unexpectli": 75, "unfamiliar": 64, "ungrammat": 6, "unhelpfulli": 30, "unholi": 68, "unicod": 30, "uniform": [34, 74], "unimport": 74, "uninstal": [58, 59], "unintuit": 31, "union": [30, 35], "uniqu": [9, 14, 23, 27, 28, 30, 35, 45, 46, 53, 54, 56, 64, 70], "unique_subreddit": 28, "unit": [3, 6, 7, 8, 13, 14, 23, 24, 25, 26, 29, 36, 41, 45, 49, 58, 59, 62, 67], "univers": [56, 68], "unless": [12, 26, 28, 30, 70, 75], "unlik": [9, 31, 35, 45, 56, 64, 70, 75], "unlock": 46, "unmatch": 35, "unnam": 70, "unnecessari": 30, "unord": [46, 67], "unpack": [28, 54, 64], "unrel": 60, "unrest": 41, "unrol": 46, "unsav": 70, "unscientif": 64, "unscrupul": [17, 18], "unsupport": 75, "unsur": 50, "until": [3, 5, 7, 14, 17, 22, 23, 24, 26, 38, 46, 51, 52, 56, 62, 63, 65, 74], "untim": 68, "unto": 56, "up": [4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 21, 22, 23, 24, 27, 28, 30, 31, 34, 36, 39, 40, 45, 46, 47, 50, 51, 52, 54, 57, 58, 59, 60, 61, 64, 67, 68, 73, 74, 75], "upcom": 45, "updat": [6, 12, 13, 23, 29, 37, 40, 45, 46, 62, 67], "upload": [67, 68], "upon": [21, 22, 45, 56], "upper": [28, 30, 45, 75], "upperca": 53, "uppercas": [21, 30, 45, 75], "upright": [9, 16], "upsid": 9, "upside_down": [9, 11], "uptak": 28, "upvote_ratio": 28, "upward": 45, "ur": 64, "uri": 28, "url": [27, 29, 39, 68], "urllib": [56, 68], "urllib2": 69, "urlopen": [56, 68], "uruguai": 41, "us": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 35, 36, 38, 40, 41, 42, 44, 46, 49, 50, 54, 56, 58, 59, 61, 63, 67, 69, 70, 74, 75], "us_map": [20, 55], "usag": [17, 18, 29, 52, 64], "usb": 29, "used_arg": 30, "useful_funct": [24, 25], "usefulfilenam": 31, "usenam": 28, "user": [3, 8, 9, 13, 23, 25, 30, 35, 43, 45, 47, 48, 49, 52, 54, 56, 58, 59, 60, 64, 65, 74, 75], "user_ag": 28, "user_count": 52, "user_inst": 28, "user_script": 28, "usernam": [28, 52], "usernamefromparamstr": 27, "uservar": [29, 47], "usr": 30, "usual": [28, 46, 51, 56, 60, 74], "uswi0411": [68, 69], "utf": 69, "util": [45, 58], "uuuu": 66, "uw": 27, "v": [6, 10, 15, 16, 20, 30, 41, 43, 55, 56, 58, 59, 63, 64, 67, 70, 75], "v1": 68, "va": 25, "vacanc": 64, "vaccin": [28, 46], "vader_lexicon": 67, "valiat": 70, "valid": 26, "validkei": 36, "validrespons": 29, "valu": [0, 3, 6, 7, 8, 9, 11, 12, 13, 16, 17, 18, 19, 23, 27, 29, 30, 36, 41, 42, 43, 45, 47, 53, 60, 63, 65, 70, 74, 75], "valuabl": [45, 52], "value_1": 46, "value_2": 46, "value_3": [46, 54], "value_4": 54, "value_5": 54, "valueerror": [25, 30, 35, 52, 65], "van": [54, 68, 75], "var": [14, 27], "var1": 14, "var2": 14, "var3": 14, "var_1": 63, "var_2": 63, "var_3": 63, "var_4": 63, "var_5": 63, "var_6": 63, "var_string_num": 75, "vari": [9, 15, 20, 21, 46, 55], "variabl": [5, 9, 11, 12, 13, 14, 16, 17, 18, 20, 23, 28, 30, 37, 38, 42, 43, 45, 46, 47, 51, 52, 53, 54, 55, 60, 67, 71, 74], "variable_nam": 75, "variant": [30, 52, 56, 64], "variat": [9, 37], "varibl": 43, "varieti": [4, 30, 46], "variou": [10, 12, 13, 15, 22, 34, 39, 43, 45, 46, 52, 56, 59, 68, 70], "variousword": 64, "varnish": 56, "vars_to_get": 29, "vast": 56, "vax": 28, "vbz": 64, "ve": [8, 11, 12, 13, 14, 15, 17, 18, 20, 29, 36, 38, 39, 41, 42, 43, 45, 46, 49, 56, 58, 59, 62, 63, 64, 65, 66, 67, 69, 70, 74], "vector": 15, "vega": 68, "vehicl": 45, "veloc": 7, "verb": [51, 56], "verbal": 11, "verbos": [45, 52], "veri": [5, 9, 12, 13, 16, 17, 18, 22, 25, 27, 28, 29, 30, 35, 41, 45, 50, 51, 52, 54, 56, 58, 59, 62, 63, 64, 67, 70, 74, 75], "verifi": [8, 11, 27, 45], "verison": [58, 59], "versa": 30, "versatil": 45, "versicolor": 41, "versicolor5": 41, "versicolorpet": 41, "version": [14, 18, 21, 22, 23, 29, 36, 46, 49, 51, 52, 54, 58, 59, 68, 70, 75], "vertain": 63, "vertebr": 56, "vertic": [13, 16, 23, 26, 56], "vformat": 30, "via": 27, "vice": [28, 30], "victoria": 40, "video": [45, 58, 59, 67, 71], "vietnam": 41, "view": [13, 17, 18, 25, 28, 49, 56, 66], "viewform": 29, "vila": 40, "vindic": 17, "violat": [13, 22, 28, 49, 64], "violin": 35, "virgil": 68, "virginica": 41, "virtual": [45, 59], "virtualpixel": 26, "visibl": [3, 7, 24, 62, 70], "vision": 45, "visual": [3, 6, 8, 10, 13, 14, 15, 17, 18, 20, 23, 24, 25, 29, 30, 36, 43, 45, 49, 52, 55, 62, 67, 71, 74], "visualis": 0, "vizual": [18, 20, 55], "vladimir": 28, "vocal": 28, "voic": [9, 11, 28], "voila": [27, 35], "vote": 28, "voter": 28, "vowel": [21, 22, 35, 37, 40, 50, 53, 64, 66, 75], "vsc": [58, 59], "vscode": [13, 35, 45, 48, 49, 52, 65, 70, 74, 75], "vxxv": 6, "vxxvp": [4, 6], "vxxxvp": 4, "vxxxvpxxxxvp": 4, "w": [9, 13, 23, 30, 36, 38, 53, 56, 64], "w2szmlszq": 35, "w30512": 28, "w3szmlszq": 48, "w6szmlszq": 13, "w_800": 68, "wa": [1, 3, 10, 11, 12, 14, 16, 17, 18, 23, 27, 28, 29, 41, 42, 43, 45, 46, 51, 52, 54, 56, 60, 62, 63, 67, 68, 70, 73, 75], "wai": [5, 6, 7, 9, 13, 14, 15, 17, 18, 20, 21, 23, 25, 26, 27, 28, 30, 31, 34, 35, 37, 39, 41, 43, 44, 49, 50, 51, 52, 53, 54, 55, 56, 57, 61, 62, 63, 64, 67, 70, 73, 74, 75], "wait": [3, 6, 8, 11, 23, 24, 26, 36, 45, 58, 59, 62, 68], "waitkei": [3, 8, 14, 23, 24, 29, 36, 47, 62], "walk": [19, 28, 52, 56, 64, 67, 68], "walker": 28, "walkthrough": [62, 67], "wall": [7, 64], "walter": 46, "wang": 40, "wanna": 68, "want": [3, 5, 6, 7, 10, 11, 14, 15, 16, 17, 18, 19, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 37, 38, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 64, 66, 67, 68, 70, 74, 75], "war": 28, "wari": [17, 18], "warm": [52, 67], "warn": [9, 13, 30, 41, 49, 58, 59], "washington": 28, "washingtonpost": 28, "wasn": [56, 60], "wast": 68, "watch": [49, 50, 52, 67], "water": 69, "water_temp": 69, "watermelon": 43, "wav": [12, 29, 36, 67], "wave": [17, 18, 68], "wc": 31, "we": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 70, 73, 74, 75], "weak": 30, "weather": [56, 69], "weather_channel": 69, "web": [3, 27, 45, 52, 62, 68, 71, 75], "webbrows": 29, "webcrap": 67, "webpag": [29, 68], "webscrap": 67, "wednesdai": 16, "week": [18, 24, 38], "weight": 45, "weird": [43, 63], "welcom": [1, 28, 52], "well": [13, 15, 17, 18, 23, 24, 27, 28, 30, 45, 46, 50, 52, 54, 56, 59, 64, 67, 68, 75], "went": [56, 63], "were": [11, 14, 17, 18, 22, 28, 37, 40, 45, 46, 54, 56, 61, 65, 67, 75], "weren": 56, "west": 41, "what": [3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 20, 22, 23, 26, 27, 28, 29, 30, 31, 34, 35, 37, 39, 41, 42, 43, 45, 47, 49, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 71, 74], "whatev": [20, 29, 34, 46, 50, 51, 52, 55, 56], "wheel": [13, 16, 24, 30, 46], "wheelhous": 61, "wheelrel": [13, 24], "when": [1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 23, 24, 27, 28, 29, 34, 36, 38, 43, 45, 46, 47, 50, 51, 52, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 67, 68, 70, 74], "whenev": [3, 15, 41, 46, 51, 52, 75], "where": [2, 3, 9, 12, 13, 14, 21, 23, 24, 25, 28, 29, 30, 37, 40, 41, 45, 46, 50, 52, 56, 58, 59, 62, 63, 64, 75], "wherea": 56, "whether": [4, 6, 9, 10, 11, 12, 14, 16, 17, 18, 21, 23, 29, 30, 34, 37, 43, 46, 47, 58, 59, 60, 64, 67, 68, 70, 74, 75], "whew": 45, "which": [0, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 35, 37, 40, 41, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 68, 74, 75], "which_image_click": 12, "whichlett": 6, "whichmatch": 47, "whichset": 60, "while": [1, 5, 6, 7, 8, 10, 13, 17, 18, 23, 24, 25, 28, 30, 35, 36, 43, 45, 46, 47, 52, 53, 56, 58, 59, 60, 61, 65, 67, 70, 71, 75], "whirlwind": 56, "whisper": 11, "whistl": 49, "whitak": 13, "white": [4, 6, 13, 23, 25, 26, 36, 56], "whitespac": [30, 64], "whitman": 56, "who": [1, 13, 14, 17, 18, 19, 25, 27, 42, 45, 46, 52, 54, 56, 75], "whole": [5, 27, 30, 38, 45, 50, 52, 56, 63, 70], "whom": [56, 74], "whose": [12, 15, 16, 31, 41, 43, 52], "why": [5, 23, 26, 29, 30, 35, 43, 51, 52, 56, 60, 62, 63, 64, 65, 66, 67, 68, 74, 75], "wi": [28, 68], "wide": [22, 26, 28, 36, 45, 54], "widen": 28, "width": [3, 6, 8, 26, 27, 29, 30, 41], "widthpet": 41, "widthspeci": 41, "wife": 56, "wiggl": [7, 45], "wiki": [28, 30, 68], "wiki_comment_rul": 28, "wikipedia": [28, 75], "wildcard": [49, 70], "wildli": [5, 56], "willi": [46, 50], "william": 56, "win": [3, 6, 8, 11, 13, 14, 19, 23, 24, 25, 29, 36, 43, 45, 49, 62], "window": [3, 6, 8, 13, 14, 23, 24, 25, 27, 29, 31, 36, 45, 49, 62, 67, 68], "wingback": 45, "wins_by_stai": 19, "wins_by_switch": 19, "winter": [28, 46], "wipe": 70, "wisc": [64, 67, 69], "wisconsin": 28, "wisconsinpandemicprimari": 28, "wish": [1, 50], "withdraw": 30, "within": [6, 14, 28, 30, 31, 45, 52, 58, 59, 70, 75], "without": [23, 25, 28, 29, 30, 37, 41, 45, 46, 49, 51, 52, 54, 56, 58, 59, 67, 74, 75], "witht": 46, "wizardri": 45, "wkrstat": 17, "wn": 56, "wnat": 75, "wolf": [35, 38], "woman": [24, 68], "womanha_": 24, "women": 17, "won": [6, 27, 28, 31, 45, 49, 56, 58, 59, 62, 66, 70, 75], "wonder": [45, 68], "wonderland": 56, "woop": 40, "word": [0, 5, 6, 8, 9, 11, 14, 28, 30, 37, 38, 40, 41, 43, 45, 46, 51, 52, 64, 68, 70, 75], "word_stim": [8, 11], "word_token": [28, 56], "word_typ": 56, "wordcloud": 0, "wordlength": 53, "wordmean_resp": 41, "wordnet": [0, 67], "wordnetlemmat": [5, 56], "work": [1, 3, 11, 12, 13, 14, 15, 16, 18, 21, 23, 26, 27, 29, 30, 31, 35, 36, 39, 43, 45, 46, 49, 51, 52, 54, 56, 58, 59, 61, 62, 64, 66, 67, 68, 70, 73, 74, 75], "worker": 28, "workerid": 27, "workflow": [5, 70], "working_pap": 28, "workspac": 70, "world": [2, 38, 45, 47, 65, 67, 68, 70, 71, 75], "worri": [13, 16, 18, 21, 22, 28, 45, 46, 51, 67, 68, 75], "wors": 74, "worth": [17, 45], "would": [6, 11, 14, 15, 17, 24, 25, 26, 28, 29, 30, 31, 45, 46, 47, 50, 51, 52, 56, 60, 64, 70, 74, 75], "wouldn": [10, 29, 56], "wouldnt": 45, "wow": 50, "wrangl": [1, 17, 18, 39, 67], "wrap": [13, 46, 74], "wrapper": 28, "write": [1, 4, 6, 9, 10, 12, 13, 14, 15, 19, 21, 22, 23, 26, 27, 28, 35, 37, 40, 42, 44, 45, 46, 50, 51, 52, 54, 57, 60, 63, 67, 73], "write_data": 9, "write_to_fil": 29, "writer": 64, "writeup": 61, "written": [6, 9, 21, 22, 26, 29, 50, 51, 54, 56, 64, 67, 73, 75], "wrkstat": 17, "wrong": [6, 8, 15, 35, 63, 65, 66], "wrote": [9, 22, 27], "wundergound": 68, "wunderground": 68, "www": [0, 28, 29, 68], "wx": 26, "wxpython": [58, 59], "x": [0, 3, 6, 12, 13, 14, 16, 25, 26, 29, 30, 35, 37, 43, 45, 48, 52, 57, 60, 64], "x0b": 30, "x0c": 30, "x100": 26, "x11szmlszq": 35, "x12szmlszq": [], "x13szmlszq": 35, "x21szmlszq": 52, "x41szmlszq": 65, "x50": 26, "x56szmlszq": 74, "x86": 58, "x_increment": 45, "xc": 26, "xcoord": 29, "xcorrect": 25, "xlabel": 56, "xoffset": 25, "xternal": 27, "xv": 6, "xxx": 58, "xxxv": 4, "xy": 25, "xytext": 25, "y": [3, 6, 8, 9, 12, 25, 26, 29, 30, 31, 35, 37, 45, 53, 56], "y145szmlszq": 75, "y212szmlszq": 45, "y410szmlszq": 45, "y_increment": 45, "yai": 28, "yan": 52, "yanchi": 40, "yang": 40, "yate": 30, "ycoord": 29, "ycorrect": 25, "ye": [28, 46, 58, 59, 63], "year": [17, 18, 22, 28, 35, 41, 56, 68], "yearlifeexp": 41, "yellow": [4, 6, 8, 9, 25, 30], "yemen": 41, "yep": [6, 30, 75], "yer": 56, "yet": [6, 13, 28, 30, 45, 51], "yield": [19, 30], "yihan": 40, "ylabel": 56, "yoffset": 25, "yoken": 56, "you": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74], "youmaydissagre": 28, "young": 56, "your": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 35, 38, 39, 40, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 63, 67, 69, 73, 74], "your_data": 23, "your_full_qualtrics_url_her": 27, "your_object": 45, "yourhost": 27, "yourself": [11, 12, 37, 45, 50, 51, 56, 67], "yourselv": [13, 56], "yshook": 28, "ysm4y": 28, "yuanxu": 52, "yuck": 63, "yuh": 68, "yuma": 68, "ywmd17": 28, "ywoieq": 28, "ywp9wt": 28, "ywpgj8": 28, "ywq0vq": 28, "ywryol": 28, "ywrzzu": 28, "ywu2od": 28, "ywukjk": 28, "ywvvpv": 28, "z": [30, 47, 60, 63, 64], "z0": 30, "zachari": 40, "zambia": 41, "zealand": 41, "zebra": [40, 44], "zero": [28, 30, 50, 51, 52, 64], "zfill": [24, 30], "zhang": 40, "zhu": 40, "zhuolu": 52, "zihan": [37, 40], "zimbabw": 41, "zimbabwe195248": 41, "zimbabwe200743": 41, "zimbamb": 41, "zip": [6, 25, 29, 30, 31], "zodiac": [17, 18], "zone": 30, "zoom": 67, "zootiez": 68, "zurich": 28, "zwicki": 68, "zz": 63, "zzz": 63, "zzzz": 63, "zzzzz": 63, "zzzzzz": 63, "zzzzzzz": 63, "zzzzzzzz": 63, "zzzzzzzzz": 63, "zzzzzzzzzz": 63}, "titles": ["TODO", "COGS 219: Programming for Behavioral Sciences", "Exercise 0 - Test assignment", "Exercise 1 - Make a square and play with it", "<no title>", "Exercise 10 - Natural Language Processing with NLTK", "Part 1", "Exercise 11 - Practice with object oriented programming", "Exercise 2: The stroop effect", "Exercise 3: Extending the Stroop effect", "Exercise 3: Trial generation 1", "Exercise 4: Modularizing your code + speech recognition!", "Exercise 5 - How well do you know everyone\u2019s names?", "Exercise 5 - Interactive experiments", "Exercise 5: A perceptual grouping task", "Exercise 6 - Exploring the Stroop adjustment data", "Exercise 6 - Exploring the tilt adjustment data", "Exercise 7 - Exploring the General Social Survey", "Exercise 7 - Exploring the General Social Survey", "Exercise 7a - The Monty Hall Problem", "Exercise 8 - More practice with the GSS", "Exercise 8 - Practice with regular expressions", "Exercise 9 - Practice with regular expressions", "Exercise 5 - Categorizing Facial Expressions", "Exercise 9 - Face Morph", "Exercise 10 - Dragging images to obtain a similarity space", "ImageMagick basics", "Amazon Mechanical Turk", "PRAW", "Psychopy reference", "Python basics", "Basic Linux commands", "<no title>", "<no title>", "Basic Pandas Operations", "Debugging practice", "Debugging practice", "Playing around with dictionaries", "Primer on writing files", "Google this!", "List/string manipulation exercises", "Tying up some loose ends", "Let\u2019s warm up them neurons", "Mutables, Immutables, and Object References", "A couple trial-generation activities", "Classes", "Dictionaries", "Using dictionaries in experiment design: some examples", "<no title>", "Preloading files", "If Statements", "Introducing Functions", "Lists - the basics", "List comprehension", "More Functions", "More practice with the GSS", "Intro to NLTK", "<no title>", "Installation and setup for Windows", "Installation and setup for Windows", "Project 1", "Project instructions", "Intro to PsychoPy", "Python essentials to get you started", "Regular expressions", "Review of fundamentals A", "Review of fundamentals B", "Week by week schedule", "Webscraping with Beautiful Soup", "Simple scraping with BeautifulSoup!", "Submitting assignments", "Syllabus", "<no title>", "Testing", "Some ins and outs of trial generation", "Variables, Strings, and Numbers", "Viewing solutions"], "titleterms": {"": [12, 28, 29, 42, 46, 52, 68, 70, 75], "0": [2, 53], "1": [2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 36, 40, 44, 53, 55, 60, 61, 67, 70], "10": [5, 25, 53, 67], "100": [53, 68], "1000": 53, "11": [7, 67], "12": 67, "13": 67, "14": 67, "16th": 67, "19": 67, "1pt": 12, "2": [2, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 36, 40, 44, 55, 60, 61, 67, 70], "21": 67, "219": 1, "23rd": 67, "26th": 67, "28": 67, "2nd": 67, "3": [5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 44, 53, 55, 67, 70, 75], "30th": 67, "4": [7, 9, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 55, 67], "5": [11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 44, 67], "50": 19, "5b": 23, "6": [15, 16, 22, 67], "7": [17, 18, 67], "750": [], "7a": 19, "7b": 19, "7th": 67, "8": [20, 21, 67], "9": [22, 24, 53, 67], "9th": 67, "A": [14, 23, 28, 29, 44, 45, 51, 52, 53, 56, 63, 65], "At": 67, "If": 50, "In": 67, "No": 67, "The": [8, 19, 45, 50, 53], "To": 30, "With": 27, "__init__": 45, "about": [46, 63], "accept": [45, 54, 70], "access": [27, 28, 34, 46, 52], "activ": 44, "actor": 23, "ad": [45, 46, 52, 58, 59], "add": [31, 62], "addit": 28, "adject": 5, "adjust": [15, 16], "advanc": 29, "advantag": 51, "after": 62, "again": 28, "all": [31, 46, 49, 52, 53], "amazon": 27, "an": [23, 26, 27, 29, 31, 46, 50, 52, 54, 56, 62, 70], "anaconda": [58, 59], "analysi": 61, "anim": [26, 56], "anoth": [26, 31], "antonym": 56, "append": [31, 52], "appli": 41, "ar": [30, 46, 51, 53, 70], "arbitrari": 54, "argument": 54, "arithmet": 30, "around": 37, "articl": 68, "assign": [2, 63, 70], "astrologi": [17, 18], "audio": 29, "authent": 28, "avail": 70, "b": [5, 66], "back": 70, "base": 29, "basic": [17, 18, 26, 30, 31, 34, 46, 51, 52, 67, 71], "batch": 64, "beauti": 68, "beautifulsoup": 69, "becom": 31, "been": 70, "befor": 27, "behavior": 1, "being": [30, 70], "belief": [17, 18], "between": 46, "billboard": 68, "birthdai": 19, "bit": 63, "block": 10, "blue": 62, "bonu": [5, 7, 21, 23], "border": 26, "box": 29, "branch": 70, "bunch": 29, "button": 29, "case": [56, 75], "cat": 31, "categor": 23, "cell": 34, "certain": 52, "chain": 50, "challeng": [9, 29, 40, 52, 53], "chanc": 74, "chang": [20, 31, 34, 55, 62, 70, 75], "charact": 31, "check": [19, 45, 50, 70, 75], "circl": [45, 62], "class": [30, 45, 56, 67], "click": 29, "climat": [20, 55], "closer": 45, "cmder": 59, "code": [11, 23, 27, 29, 40, 53, 58, 59, 68, 75], "cog": 1, "collect": [29, 62], "colloc": 56, "color": 54, "column": [31, 34, 41], "combin": [26, 31, 74, 75], "combinatori": 74, "command": 31, "comment": [28, 75], "commentari": 28, "commit": 70, "common": [51, 52], "compact": 46, "compar": 5, "complet": [27, 31], "comprehens": [30, 53, 66], "comput": 31, "concaten": [31, 75], "conclus": 45, "concord": 56, "condit": [29, 63, 64, 65], "configur": [58, 59], "consider": 56, "conson": 53, "contain": 75, "content": [54, 73], "control": 74, "convert": [26, 29, 52], "coordin": 29, "copi": [30, 31], "correctli": [58, 59], "correl": [20, 55], "count": 31, "coupl": 44, "cpu": 58, "creat": [23, 30, 37, 52, 58, 59], "credit": [12, 16, 44], "crop": 26, "csv": 34, "current": [68, 69], "custom": 29, "cut": 26, "data": [15, 16, 31, 34, 46, 61, 75], "date": 70, "debug": [35, 36], "dec": 67, "default": 54, "defin": [46, 52], "delet": [31, 70], "demo": 28, "demograph": 27, "describ": 27, "design": 47, "desktop": [58, 59], "detach": 70, "detail": 60, "detect": 30, "detour": 56, "dictionari": [37, 46, 47, 53, 66], "differ": [29, 46], "directori": [30, 31, 49], "dispers": 56, "displai": 31, "distribut": [56, 58, 59], "divis": 53, "do": [12, 29, 31, 34, 52, 70], "document": 26, "doe": 19, "done": 27, "doubl": 75, "download": 59, "drag": 25, "drop": 7, "dynam": 52, "e": [29, 31], "each": [10, 41, 52, 70], "easier": 29, "educ": [17, 18, 20, 55], "effect": [8, 9, 23], "effici": [31, 46], "element": 52, "eleph": [17, 18], "elif": 50, "els": 50, "email": [21, 22], "emb": 27, "end": [31, 41, 52], "endors": [17, 18], "english": 5, "entail": 56, "enumer": 52, "environ": [58, 71], "equal": 50, "error": [29, 51, 52], "essenti": 63, "etc": 27, "everyon": 12, "evolut": [17, 18], "exampl": [26, 45, 47, 50, 51, 68], "except": 30, "exercis": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 40, 44, 53, 54], "exert": 74, "experi": [13, 27, 45, 47, 61], "explor": [15, 16, 17, 18, 62], "explos": 74, "express": [21, 22, 23, 64], "extend": [9, 10], "extens": 27, "extra": [12, 16, 44], "extract": 28, "face": [23, 24, 26], "facial": 23, "factor": 41, "fals": 50, "fast": 70, "favorit": 54, "featur": 70, "few": [58, 59], "figur": 70, "file": [23, 29, 30, 31, 34, 38, 49, 60, 64, 70], "filenam": 31, "filter": 64, "find": [30, 52, 53], "first": [31, 40, 67], "fix": [21, 22], "flatten": 30, "float": [30, 75], "form": 29, "format": 26, "forward": 70, "frame": 34, "frequenc": [18, 56], "frequent": 28, "from": [26, 27, 28, 29, 31, 34, 45, 52, 53], "function": [29, 30, 40, 45, 51, 54], "fundament": [65, 66], "g": 29, "game": 54, "gener": [10, 17, 18, 27, 29, 30, 44, 45, 51, 53, 74], "generatetri": 23, "get": [27, 29, 30, 31, 41, 63, 67, 68, 69, 70, 75], "git": [58, 59, 70], "github": 70, "give": 27, "glob": 49, "good": 75, "googl": [29, 39], "grab": [29, 49], "gram": 56, "graph": 15, "greater": 50, "group": [14, 23, 41], "gss": [20, 55], "gui": 29, "hall": 19, "happen": 50, "happi": [17, 67], "have": 29, "head": [68, 70], "help": [30, 31], "helper": 29, "hit": 27, "hobbi": [17, 18], "home": 67, "homebrew": 58, "hottest": 28, "how": [12, 19, 27, 29, 30, 38], "human": [17, 18], "hyphen": 21, "i": [19, 29, 31, 50, 52, 70], "id": [27, 28, 54], "idea": 53, "imag": [25, 26, 29, 49], "imagemagick": 26, "immut": 43, "import": [29, 30, 45, 46], "increas": 5, "indivis": 74, "ineffici": 46, "inequ": 50, "info": [27, 28, 29, 67], "inherit": 45, "input": 29, "ins": 74, "insert": 52, "insid": 52, "instal": [28, 58, 59], "instruct": [58, 61, 62], "integ": [53, 75], "intel": 58, "interact": 13, "interest": 23, "intro": [56, 62], "introduc": 51, "introduct": [28, 71], "item": [50, 52], "iter": [34, 37, 46], "its": [20, 55], "join": 52, "joke": 28, "jupyt": [58, 59], "keep": [29, 60], "kei": 46, "keyboard": 62, "keyword": 54, "know": [12, 58, 59], "knowledg": [17, 18, 20, 55], "lake": 69, "languag": [5, 54], "last": [40, 52], "later": 51, "learn": 60, "least": 19, "leav": 74, "lemma": 5, "lemmat": 56, "length": [52, 54, 75], "less": 50, "let": [42, 58, 59], "letter": 53, "level": 41, "librari": 30, "like": 5, "line": [31, 53], "linear": 41, "linux": 31, "list": [10, 29, 30, 31, 37, 40, 46, 50, 52, 53, 62, 63, 65, 66, 70], "lmno": [21, 22], "load": [30, 34], "local": 70, "local_module_nam": 45, "locat": 30, "log": 70, "logic": 50, "longer": 53, "look": [37, 45, 56, 70], "loop": [46, 52, 62, 63], "loos": 41, "lot": 68, "lure": 60, "mac": 58, "madison": [68, 69], "main": 70, "make": [3, 7, 26, 31, 45, 52, 70, 75], "manag": 27, "mani": 19, "manipul": 40, "mask": 26, "match": [21, 22], "meaning": 60, "mechan": 27, "memori": [49, 60], "mendota": 69, "merg": [41, 70], "method": [27, 45], "mind": 60, "mini": 30, "miscellan": 31, "mix": 54, "model": 41, "modifi": [46, 52], "modul": [30, 45], "modular": [11, 23], "module_nam": 45, "montag": 26, "monti": 19, "more": [7, 20, 23, 31, 45, 50, 51, 52, 54, 55, 63, 68], "morph": 24, "most": 28, "mous": [23, 29], "move": [31, 45], "movi": 54, "mturk": 27, "multipl": [41, 45, 52, 70], "mutabl": [30, 43], "n": [19, 56], "name": [12, 29, 40, 52, 68, 75], "nameerror": 75, "natur": [5, 7], "navig": 31, "necessari": [58, 59], "nest": 46, "neuron": 42, "new": [30, 31, 45, 46], "newspap": 68, "nltk": [5, 28, 56], "notat": 30, "note": [30, 46], "notebook": [58, 59], "noun": 28, "nov": 67, "now": [40, 68], "number": [22, 45, 53, 54, 75], "numer": 52, "object": [7, 43, 45], "obtain": 25, "oct": 67, "onc": 70, "one": [26, 27, 31, 50, 52, 53], "onli": 40, "onlin": 27, "open": 38, "oper": [34, 37, 46, 52, 65], "option": [26, 60, 61], "orang": 62, "order": 46, "orient": [7, 45, 67], "other": 46, "our": 71, "out": [30, 68, 70, 74], "output": [23, 31, 40, 60], "outsid": 52, "over": 74, "overlai": 26, "own": 62, "packag": [58, 59, 68], "pair": 46, "panda": 34, "paper": 27, "paradox": 19, "paramet": 45, "pars": 27, "part": [2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 55, 70], "particip": 27, "particular": [31, 34, 70], "pass": [27, 50], "peopl": [19, 29], "perceptu": 14, "permut": 74, "person": [17, 18], "phase": 60, "phone": [22, 54], "pictur": 29, "pitfal": 27, "place": [30, 64], "plai": [3, 37], "plot": 56, "point": [29, 30, 75], "polar": 29, "polit": [17, 18, 20, 55], "pop": [29, 52], "portaudio": 58, "portion": 26, "posit": [29, 52, 54], "positiontyp": 23, "post": 28, "power": 45, "practic": [7, 20, 21, 22, 35, 36, 37, 38, 55], "praw": 28, "pre": 68, "preload": [29, 49], "present": 62, "press": 29, "prevent": 27, "primer": [38, 63], "print": [31, 63], "prior": 67, "prioriti": [17, 18], "probabl": 19, "problem": [5, 19], "process": 5, "profici": 31, "program": [1, 7, 50, 67, 71], "project": [60, 61, 67, 71], "prompt": 23, "properti": 62, "proport": 74, "psych": [], "psychopi": [29, 45, 58, 59, 62], "pt": [5, 44], "push": 70, "python": [29, 30, 45, 58, 59, 63, 71, 75], "qualtric": [27, 29], "question": 51, "quick": [30, 45, 56], "quot": 75, "r": [58, 59], "random": [10, 53, 66, 74], "rang": 53, "rather": 27, "reach": 19, "real": 27, "recognit": [11, 60], "rectangular": 29, "red": 7, "redact": 22, "reddit": 28, "refer": [29, 30, 43], "refin": 45, "refresh": 53, "regular": [21, 22, 64], "reinforc": 60, "relat": 27, "reload": 29, "remot": 70, "remov": [46, 52, 56], "renam": [31, 64], "repetit": [10, 52], "replac": 64, "repositori": 70, "resiz": 26, "respond": [23, 29], "respons": [29, 62], "result": 31, "return": [51, 53], "revers": 52, "review": [45, 65, 66], "rewind": 70, "rid": 31, "robust": 5, "rocket": 45, "room": 19, "row": 34, "rstudio": [58, 59], "rule": 75, "run": [23, 40, 41], "runtim": [29, 56], "safe": 30, "same": 31, "save": 29, "schedul": 67, "scienc": [1, 17, 18, 20, 55], "scrape": 69, "screen": 31, "screenshot": 29, "script": 29, "search": 64, "second": 51, "see": 70, "seed": 74, "send": 31, "separ": 29, "sept": 67, "sequenc": [30, 54], "seri": 26, "set": [30, 58, 59, 71, 74], "setup": [58, 59], "sexual": 18, "share": 19, "shave": 26, "shortcut": [58, 59], "should": 75, "show": [29, 62], "shuffl": 30, "similar": 25, "simpl": [10, 30, 45, 50, 65, 69], "singl": [45, 75], "slice": [30, 52], "social": [17, 18], "softwar": 27, "solut": [19, 27, 46, 70, 76], "some": [29, 30, 31, 41, 47, 74], "someth": [29, 30, 41, 75], "sort": [46, 52], "soup": 68, "sourc": 30, "space": [21, 22, 25], "spaceshuttl": 45, "spatial": 23, "specifi": 29, "speech": 11, "split": 52, "sport": 54, "squar": 3, "stage": 70, "staircas": 29, "start": 63, "state": 29, "statement": [50, 63], "step": 70, "stimuli": 62, "stimulu": 60, "stop": [7, 56], "store": [34, 45], "string": [29, 30, 40, 52, 75], "strip": 75, "stroop": [8, 9, 15], "structur": 46, "studi": [23, 56, 60], "studio": [58, 59], "subject": [23, 29], "submiss": [28, 67], "submit": 70, "subreddit": 28, "sure": 70, "survei": [17, 18, 27, 29], "switch": 70, "syllabu": 71, "syntax": [51, 53], "tab": 31, "tabl": 37, "tag": 70, "tail": 31, "take": 19, "task": [14, 23], "tax": [17, 18], "team": 54, "temperatur": [68, 69], "terminologi": 45, "test": [2, 29, 40, 50, 52, 58, 59, 60, 73], "text": [22, 29], "than": [27, 50, 53], "thanksgiv": 67, "thei": [27, 46], "them": [7, 42], "thi": [39, 40, 50], "thing": [60, 74], "through": [34, 37, 46], "tilt": 16, "tip": [29, 30, 31, 70], "todo": 0, "togeth": 31, "top": 28, "trial": [10, 29, 44, 62, 74], "trim": 26, "true": 50, "turk": 27, "turker": 27, "turkgat": 27, "turn": [40, 68], "tutori": [27, 30], "two": [19, 26, 31], "txt": 31, "ty": 41, "type": [52, 63, 75], "u": [5, 58, 59], "uk": 5, "undo": 70, "until": 29, "up": [26, 29, 37, 41, 42, 56, 70, 71], "updat": 70, "upvot": 28, "url": [28, 70], "us": [23, 28, 29, 30, 31, 34, 37, 45, 47, 51, 52, 53, 62, 64, 68], "user": [28, 29, 31], "v": [5, 17, 18, 52], "valid": [21, 22], "valu": [34, 37, 46, 50, 51, 52, 54], "variabl": [27, 29, 41, 63, 75], "variou": 27, "ve": [27, 30], "verb": 5, "verbal": 60, "verbos": 46, "version": 30, "via": 28, "view": [20, 55, 76], "virtual": 58, "visual": [58, 59, 60], "wai": [29, 45, 46], "wait": 29, "warm": 42, "we": 34, "weather": 68, "web": 29, "webcam": 29, "webscrap": 68, "week": 67, "weird": [21, 22], "well": 12, "what": [19, 46, 50, 51, 52, 70, 75], "when": [30, 75], "where": 70, "whether": 52, "which": [5, 31, 70], "while": [29, 31, 63], "whitespac": [50, 75], "who": 5, "why": [34, 45], "wikipedia": 68, "window": [58, 59], "within": [10, 29, 46], "word": [21, 22, 31, 53, 56], "wordnet": 56, "work": [17, 28], "workaround": 27, "worker": 27, "world": 54, "write": [29, 30, 31, 38, 75], "written": 68, "you": [12, 30, 63, 75], "your": [11, 19, 29, 62, 68, 70, 75], "yourself": 23, "zen": 75}}) \ No newline at end of file +Search.setIndex({"alltitles": {"": [[37, "id1"]], "2.1": [[20, "id1"], [55, "id1"]], "2.2": [[20, "id2"], [55, "id2"]], "2.3": [[20, "id3"], [55, "id3"]], "2.4": [[20, "id4"], [55, "id4"]], "3.1": [[20, "id5"], [55, "id5"]], "3.2": [[20, "id6"], [55, "id6"]], "\nExercises": [[54, "exercises"]], "\nExercises": [[54, "id2"]], "\nExercises": [[54, "id1"]], "A bit more about printing": [[63, "a-bit-more-about-printing"]], "A closer look at the Rocket class": [[45, "a-closer-look-at-the-rocket-class"]], "A common error": [[51, "a-common-error"]], "A common looping error": [[52, "a-common-looping-error"]], "A couple trial-generation activities": [[44, null]], "A detour into runtime considerations": [[56, "a-detour-into-runtime-considerations"]], "A different way of showing a text box": [[29, "a-different-way-of-showing-a-text-box"]], "A function for grabbing screenshots": [[29, "a-function-for-grabbing-screenshots"]], "A function for writing a string (trial info) to a file.": [[29, "a-function-for-writing-a-string-trial-info-to-a-file"]], "A generic function for collecting responses": [[29, "a-generic-function-for-collecting-responses"]], "A joke": [[28, "a-joke"]], "A list of all consonants": [[53, "a-list-of-all-consonants"]], "A module of functions": [[45, "a-module-of-functions"]], "A number of ways to import modules and classes": [[45, "a-number-of-ways-to-import-modules-and-classes"]], "A quick check-in": [[45, "a-quick-check-in"]], "A second example": [[51, "a-second-example"]], "A simple method": [[45, "a-simple-method"]], "A single moving circle": [[45, "a-single-moving-circle"]], "A while loop": [[63, "a-while-loop"]], "Accepting a sequence of arbitrary length": [[54, "accepting-a-sequence-of-arbitrary-length"]], "Accepting an arbitrary number of arguments": [[54, "accepting-an-arbitrary-number-of-arguments"]], "Accepting an arbitrary number of keyword arguments": [[54, "accepting-an-arbitrary-number-of-keyword-arguments"]], "Accepting parameters for the __init__() method": [[45, "accepting-parameters-for-the-init-method"]], "Accepting parameters in a method": [[45, "accepting-parameters-in-a-method"]], "Access comments via the submission\u2019s ID": [[28, "access-comments-via-the-submission-s-id"]], "Access comments via the submission\u2019s URL": [[28, "access-comments-via-the-submission-s-url"]], "Accessing a dictionary": [[46, "accessing-a-dictionary"]], "Accessing a particular row, column, or cell": [[34, "accessing-a-particular-row-column-or-cell"]], "Accessing all elements in a list": [[52, "accessing-all-elements-in-a-list"]], "Accessing comments": [[28, "accessing-comments"]], "Accessing multiple list elements using slices": [[52, "accessing-multiple-list-elements-using-slices"]], "Accessing one item in a list": [[52, "accessing-one-item-in-a-list"]], "Accessing the last items in a list": [[52, "accessing-the-last-items-in-a-list"]], "Accessing top posts": [[28, "accessing-top-posts"]], "Accessing upvotes": [[28, "accessing-upvotes"]], "Accessing user info of hottest post": [[28, "accessing-user-info-of-hottest-post"]], "Add an instruction": [[62, "add-an-instruction"]], "Adding R to Jupyter Notebook": [[58, "adding-r-to-jupyter-notebook"], [59, "adding-r-to-jupyter-notebook"]], "Adding a new method": [[45, "adding-a-new-method"]], "Adding items to a list": [[52, "adding-items-to-a-list"]], "Adding new key-value pairs": [[46, "adding-new-key-value-pairs"]], "Advanced tip": [[29, null]], "Advantages of using functions": [[51, "advantages-of-using-functions"]], "Again with additional commentary": [[28, "again-with-additional-commentary"]], "Amazon Mechanical Turk": [[27, null]], "An important note about nesting": [[46, null]], "Animating a series of images": [[26, "animating-a-series-of-images"]], "Antonyms and entailments": [[56, "antonyms-and-entailments"]], "Append the output to a file (i.e., add to the end of the file)": [[31, "append-the-output-to-a-file-i-e-add-to-the-end-of-the-file"]], "Appending items to the end of a list": [[52, "appending-items-to-the-end-of-a-list"]], "Applying something to multiple columns": [[41, "applying-something-to-multiple-columns"]], "Arithmetic and floating point notation": [[30, "arithmetic-and-floating-point-notation"]], "At home": [[67, "at-home"], [67, "id2"], [67, "id4"], [67, "id6"], [67, "id8"], [67, "id10"], [67, "id12"], [67, "id14"], [67, "id16"], [67, "id18"], [67, "id20"], [67, "id22"]], "Authenticating PRAW to access Reddit": [[28, "authenticating-praw-to-access-reddit"]], "Basic Examples": [[51, "basic-examples"]], "Basic Linux commands": [[31, null]], "Basic Pandas Operations": [[34, null]], "Basic dictionary operations": [[46, "basic-dictionary-operations"]], "Batch file renaming": [[64, "batch-file-renaming"]], "Become a more proficient computer user": [[31, "become-a-more-proficient-computer-user"]], "Billboard 100": [[68, "billboard-100"]], "Bonus": [[7, "bonus"]], "Bonus problem - US vs. UK English": [[5, "bonus-problem-us-vs-uk-english"]], "Bonus: Actor + positionType": [[23, "bonus-actor-positiontype"]], "Borders": [[26, "borders"]], "COGS 219: Programming for Behavioral Sciences": [[1, null]], "Challenge": [[40, null], [52, null], [53, null]], "Challenge!": [[9, null], [29, null]], "Change where a repository pushes to": [[70, "change-where-a-repository-pushes-to"]], "Changing case": [[75, "changing-case"]], "Changing data in a data-frame": [[34, "changing-data-in-a-data-frame"]], "Changing properties of stimuli": [[62, "changing-properties-of-stimuli"]], "Check out a particular commit": [[70, "check-out-a-particular-commit"]], "Check your solutions": [[19, "check-your-solutions"]], "Checking if an item is in a list": [[50, "checking-if-an-item-is-in-a-list"]], "Classes": [[45, null]], "Collect a Keyboard Response": [[62, "collect-a-keyboard-response"]], "Collocations": [[56, "collocations"]], "Combinations and permutations": [[74, "combinations-and-permutations"]], "Combinatorial explosions": [[74, "combinatorial-explosions"]], "Combine (concatenate) two or more files and write the output to another file": [[31, "combine-concatenate-two-or-more-files-and-write-the-output-to-another-file"]], "Combine all files with the word \u2018data\u2019 in the filename and which end on txt.": [[31, "combine-all-files-with-the-word-data-in-the-filename-and-which-end-on-txt"]], "Combine two files and print the results to the screen": [[31, "combine-two-files-and-print-the-results-to-the-screen"]], "Combining data-types": [[75, "combining-data-types"]], "Combining strings (concatenation)": [[75, "combining-strings-concatenation"]], "Combining two images": [[26, "combining-two-images"]], "Commenting your code": [[75, "commenting-your-code"]], "Common List Operations": [[52, "common-list-operations"]], "Concatenate files while getting rid of the first line": [[31, "concatenate-files-while-getting-rid-of-the-first-line"]], "Conclusion: The Power of Classes in Python": [[45, "conclusion-the-power-of-classes-in-python"]], "Concordances": [[56, "concordances"]], "Conditionals": [[65, "conditionals"]], "Configure a few Psychopy settings": [[58, "configure-a-few-psychopy-settings"], [59, "configure-a-few-psychopy-settings"]], "Contents": [[54, "contents"], [73, "contents"]], "Control over proportions": [[74, "control-over-proportions"]], "Convert from polar to rectangular coordinates": [[29, "convert-from-polar-to-rectangular-coordinates"]], "Converting all the elements of the list to a certain type": [[52, "converting-all-the-elements-of-the-list-to-a-certain-type"]], "Converting images from one format to another": [[26, "converting-images-from-one-format-to-another"]], "Copy a file": [[30, "copy-a-file"]], "Copy/move/delete files": [[31, "copy-move-delete-files"]], "Count words/lines/characters in a file": [[31, "count-words-lines-characters-in-a-file"]], "Create a Virtual Environment": [[58, "create-a-virtual-environment"]], "Create a new directory": [[30, "create-a-new-directory"]], "Create a shortcut to Visual Studio code": [[58, "create-a-shortcut-to-visual-studio-code"], [59, "create-a-shortcut-to-visual-studio-code"]], "Create an output file": [[23, "create-an-output-file"], [23, "id1"]], "Create and iterate through a list of dictionaries": [[37, "create-and-iterate-through-a-list-of-dictionaries"]], "Creating lists dynamically": [[52, "creating-lists-dynamically"]], "Cropping": [[26, "cropping"]], "Cutting up a montage of images": [[26, "cutting-up-a-montage-of-images"]], "Debugging practice": [[35, null], [36, null]], "Default argument values": [[54, "default-argument-values"]], "Defining a dictionary": [[46, "defining-a-dictionary"]], "Delete tags": [[70, "delete-tags"]], "Deleting a local tag": [[70, "deleting-a-local-tag"]], "Deleting a remote tag": [[70, "deleting-a-remote-tag"]], "Deleting multiple tags at once": [[70, "deleting-multiple-tags-at-once"]], "Demo of accessing most frequent nouns used in a subreddit\u2019s posts": [[28, "demo-of-accessing-most-frequent-nouns-used-in-a-subreddit-s-posts"]], "Detached HEAD?": [[70, "detached-head"]], "Detect sequences": [[30, "detect-sequences"]], "Dictionaries": [[46, null], [66, "dictionaries"]], "Dictionaries in a dictionary": [[46, "dictionaries-in-a-dictionary"]], "Dictionary Comprehension": [[53, "dictionary-comprehension"]], "Dictionary refresher": [[53, "dictionary-refresher"]], "Dispersion plots": [[56, "dispersion-plots"]], "Display a file": [[31, "display-a-file"]], "Do the same and write the output to a new file": [[31, "do-the-same-and-write-the-output-to-a-new-file"]], "Doing more with each item": [[52, "doing-more-with-each-item"]], "Download CMDer": [[59, "download-cmder"], [59, "id1"]], "Easier way to get a bunch of runtime variables": [[29, "easier-way-to-get-a-bunch-of-runtime-variables"]], "Effect of spatial grouping?": [[23, "effect-of-spatial-grouping"]], "Enumerating a list": [[52, "enumerating-a-list"]], "Equality": [[50, "equality"]], "Example": [[50, "example"]], "Example of using a class in a Psychopy experiment": [[45, "example-of-using-a-class-in-a-psychopy-experiment"]], "Example of using the newspaper package": [[68, "example-of-using-the-newspaper-package"]], "Exercise 0 - Test assignment": [[2, null]], "Exercise 1": [[40, "exercise-1"], [44, "exercise-1"]], "Exercise 1 - Make a square and play with it": [[3, null]], "Exercise 1 parts": [[3, "exercise-1-parts"]], "Exercise 10 - Dragging images to obtain a similarity space": [[25, null]], "Exercise 10 - Natural Language Processing with NLTK": [[5, null]], "Exercise 11 - Practice with object oriented programming": [[7, null]], "Exercise 2": [[40, "exercise-2"], [44, "exercise-2"]], "Exercise 2 parts": [[8, "exercise-2-parts"]], "Exercise 2: The stroop effect": [[8, null]], "Exercise 3 parts": [[9, "exercise-3-parts"]], "Exercise 3: Extending the Stroop effect": [[9, null]], "Exercise 3: Trial generation 1": [[10, null]], "Exercise 4: Modularizing your code + speech recognition!": [[11, null]], "Exercise 5 - Categorizing Facial Expressions": [[23, null]], "Exercise 5 - How well do you know everyone\u2019s names?": [[12, null]], "Exercise 5 - Interactive experiments": [[13, null]], "Exercise 5: A perceptual grouping task": [[14, null]], "Exercise 5b: A more interesting face categorization study": [[23, "exercise-5b-a-more-interesting-face-categorization-study"]], "Exercise 6 - Exploring the Stroop adjustment data": [[15, null]], "Exercise 6 - Exploring the tilt adjustment data": [[16, null]], "Exercise 7 - Exploring the General Social Survey": [[17, null], [18, null]], "Exercise 7a - The Monty Hall Problem": [[19, null]], "Exercise 7b - The Birthday Paradox": [[19, "exercise-7b-the-birthday-paradox"]], "Exercise 8 - More practice with the GSS": [[20, null]], "Exercise 8 - Practice with regular expressions": [[21, null]], "Exercise 9 - Face Morph": [[24, null]], "Exercise 9 - Practice with regular expressions": [[22, null]], "Exercises": [[53, "exercises"]], "Exerting control over chance": [[74, "exerting-control-over-chance"]], "Explore on your own!": [[62, "explore-on-your-own"]], "Extending each block": [[10, "extending-each-block"]], "Extra credit (3 extra pts on Exercise 5)": [[44, "extra-credit-3-extra-pts-on-exercise-5"]], "Extra credit! (1pt)": [[12, null], [12, null]], "Face Mask Example": [[26, "face-mask-example"]], "Fast-forward": [[70, "fast-forward"]], "Favorite Colors": [[54, "favorite-colors"]], "Favorite Movie": [[54, "favorite-movie"]], "Figure out what\u2019s been changed and which files are being staged": [[70, "figure-out-what-s-been-changed-and-which-files-are-being-staged"]], "Find all of the numbers from 1-1000 that are divisible by 9": [[53, "find-all-of-the-numbers-from-1-1000-that-are-divisible-by-9"]], "Finding an element in a list": [[52, "finding-an-element-in-a-list"]], "Finding something in lists and strings": [[30, "finding-something-in-lists-and-strings"]], "Finding the length of a list": [[52, "finding-the-length-of-a-list"]], "Floating-Point numbers (floats)": [[75, "floating-point-numbers-floats"]], "Frequency Distributions": [[56, "frequency-distributions"]], "Games": [[54, "games"]], "General Syntax": [[51, "general-syntax"]], "General terminology": [[45, "general-terminology"]], "Generate 100 random integers in the range 1-10 using one line of code": [[53, "generate-100-random-integers-in-the-range-1-10-using-one-line-of-code"]], "Generate 100 random numbers in the range 0-1 using one line of code": [[53, "generate-100-random-numbers-in-the-range-0-1-using-one-line-of-code"]], "Generating a simple trial list.": [[10, "generating-a-simple-trial-list"]], "Get a particular column from a file": [[31, "get-a-particular-column-from-a-file"]], "Get current temperature in Madison": [[68, "get-current-temperature-in-madison"], [69, "get-current-temperature-in-madison"]], "Get heading names in a Wikipedia article": [[68, "get-heading-names-in-a-wikipedia-article"]], "Get help on a command": [[31, "get-help-on-a-command"]], "Get help on a module": [[30, "get-help-on-a-module"]], "Get mouse position at point of button press.": [[29, "get-mouse-position-at-point-of-button-press"]], "Get temperatures for Lake Mendota": [[69, "get-temperatures-for-lake-mendota"]], "Get the URL of remote branch": [[70, "get-the-url-of-remote-branch"]], "Getting a string\u2019s length and checking if it contains something": [[75, "getting-a-string-s-length-and-checking-if-it-contains-something"]], "Getting group-level variables": [[41, "getting-group-level-variables"]], "Getting help": [[30, "getting-help"]], "Google form": [[29, "google-form"]], "Google this!": [[39, null]], "Grabbing (globbing) all the files in a directory": [[49, "grabbing-globbing-all-the-files-in-a-directory"]], "Greater than": [[50, "greater-than"]], "Greater than or equal to": [[50, "greater-than-or-equal-to"]], "How do I have people respond with a mouse?": [[29, "how-do-i-have-people-respond-with-a-mouse"]], "How do I keep doing something while waiting for a response?": [[29, "how-do-i-keep-doing-something-while-waiting-for-a-response"]], "How many people does it take for the probability to reach 50%?": [[19, "how-many-people-does-it-take-for-the-probability-to-reach-50"]], "How to embed a Qualtrics survey in MTurk and give Qualtrics access to worker id and hit id info": [[27, "how-to-embed-a-qualtrics-survey-in-mturk-and-give-qualtrics-access-to-worker-id-and-hit-id-info"]], "How to flatten a list": [[30, "how-to-flatten-a-list"]], "How to get Qualtrics to generate a completion code": [[27, "how-to-get-qualtrics-to-generate-a-completion-code"]], "How to get Qualtrics to parse variables passed in from MTurk": [[27, "how-to-get-qualtrics-to-parse-variables-passed-in-from-mturk"]], "How to open a file for writing?": [[38, "how-to-open-a-file-for-writing"]], "How to prevent a Turker from participating in a HIT related to one they\u2019ve done before": [[27, "how-to-prevent-a-turker-from-participating-in-a-hit-related-to-one-they-ve-done-before"]], "How to write to a file?": [[38, "how-to-write-to-a-file"]], "If Statements": [[50, null]], "ImageMagick Documentation": [[26, "imagemagick-documentation"]], "ImageMagick basics": [[26, null]], "ImageMagick options": [[26, "imagemagick-options"]], "Importing a custom function and Testing a function that\u2019s in a separate file": [[29, "importing-a-custom-function-and-testing-a-function-that-s-in-a-separate-file"]], "Importing a trial list": [[29, "importing-a-trial-list"]], "In class": [[67, "in-class"], [67, "id3"], [67, "id5"], [67, "id7"], [67, "id9"], [67, "id11"], [67, "id13"], [67, "id15"], [67, "id17"], [67, "id19"], [67, "id21"], [67, "id23"]], "In class:": [[67, "id1"]], "Indivisibility": [[74, "indivisibility"]], "Indivisibility and combinatorial explosions": [[74, "indivisibility-and-combinatorial-explosions"]], "Inequality": [[50, "inequality"]], "Inheritance": [[45, "inheritance"]], "Inserting items into a list": [[52, "inserting-items-into-a-list"]], "Inside and outside the loop": [[52, "inside-and-outside-the-loop"]], "Install Homebrew and PortAudio": [[58, "install-homebrew-and-portaudio"]], "Install R & RStudio Desktop": [[58, "install-r-rstudio-desktop"]], "Install R and RStudio Desktop": [[59, "install-r-and-rstudio-desktop"]], "Install Visual Studio Code": [[58, "install-visual-studio-code"], [59, "install-visual-studio-code"]], "Install a few R packages": [[58, "install-a-few-r-packages"], [59, "install-a-few-r-packages"]], "Install git": [[58, "install-git"], [59, "install-git"]], "Install the Anaconda Distribution of Python": [[58, "install-the-anaconda-distribution-of-python"], [59, "install-the-anaconda-distribution-of-python"]], "Install the necessary Python packages": [[58, "install-the-necessary-python-packages"], [59, "install-the-necessary-python-packages"]], "Installation and setup for Windows": [[58, null], [59, null]], "Installing PRAW": [[28, "installing-praw"]], "Integers": [[75, "integers"]], "Integers in Python 3": [[75, "integers-in-python-3"]], "Intel CPU Instructions": [[58, "intel-cpu-instructions"]], "Intro": [[62, "intro"]], "Intro to NLTK": [[56, null]], "Intro to PsychoPy": [[62, null]], "Introducing Functions": [[51, null]], "Introduction": [[71, "introduction"]], "Introduction to PRAW": [[28, "introduction-to-praw"]], "Iterate through rows and access values in that row": [[34, "iterate-through-rows-and-access-values-in-that-row"]], "Joining a list to make a string": [[52, "joining-a-list-to-make-a-string"]], "Keyword arguments": [[54, "keyword-arguments"]], "Leaving things to chance": [[74, "leaving-things-to-chance"]], "Lemmatization": [[56, "lemmatization"]], "Less than": [[50, "less-than"]], "Less than or equal to": [[50, "less-than-or-equal-to"]], "Let us know that Psychopy installed correctly": [[58, "let-us-know-that-psychopy-installed-correctly"], [59, "let-us-know-that-psychopy-installed-correctly"]], "Let\u2019s warm up them neurons": [[42, null]], "List comprehension": [[53, null]], "List the available branches": [[70, "list-the-available-branches"]], "List/string manipulation exercises": [[40, null]], "Listing files, changing directories, and making new directories": [[31, "listing-files-changing-directories-and-making-new-directories"]], "Lists": [[65, "lists"]], "Lists - the basics": [[52, null]], "Lists and Looping": [[52, "lists-and-looping"]], "Lists and for loops": [[63, "lists-and-for-loops"]], "Lists in a dictionary": [[46, "lists-in-a-dictionary"]], "Lists, list comprehension, and randomization": [[66, "lists-list-comprehension-and-randomization"]], "Loading in data from a CSV file": [[34, "loading-in-data-from-a-csv-file"]], "Logical Tests": [[50, "logical-tests"]], "Looking at solutions": [[70, "looking-at-solutions"]], "Looking up the class of an animal \u2013 quick case study": [[56, "looking-up-the-class-of-an-animal-quick-case-study"]], "Looping through a dictionary in order by keys": [[46, "looping-through-a-dictionary-in-order-by-keys"]], "Looping through a dictionary in order by values": [[46, "looping-through-a-dictionary-in-order-by-values"]], "Looping through all key-value pairs": [[46, "looping-through-all-key-value-pairs"]], "Looping through all keys in a dictionary": [[46, "looping-through-all-keys-in-a-dictionary"]], "Looping through all values in a dictionary": [[46, "looping-through-all-values-in-a-dictionary"]], "Lots of examples and pre-written code out there!": [[68, "lots-of-examples-and-pre-written-code-out-there"]], "MTurk and Qualtrics": [[27, "mturk-and-qualtrics"]], "Mac CPU Instructions": [[58, "mac-cpu-instructions"]], "Make sure the branch is up to date:": [[70, "make-sure-the-branch-is-up-to-date"]], "Making an image montage": [[26, "making-an-image-montage"]], "Making multiple objects from a class": [[45, "making-multiple-objects-from-a-class"]], "Masking portions of an image": [[26, "masking-portions-of-an-image"]], "Merge the main branch into your branch:": [[70, "merge-the-main-branch-into-your-branch"]], "Merging": [[41, "merging"], [70, "merging"]], "Mixing positional and keyword arguments": [[54, "mixing-positional-and-keyword-arguments"]], "Modifying elements in a list": [[52, "modifying-elements-in-a-list"]], "Modifying keys in a dictionary": [[46, "modifying-keys-in-a-dictionary"]], "Modifying values in a dictionary": [[46, "modifying-values-in-a-dictionary"]], "Modularize generateTrials": [[23, "modularize-generatetrials"]], "Modularize the generateTrials code": [[23, "modularize-the-generatetrials-code"]], "Modules and classes": [[45, "modules-and-classes"]], "More Functions": [[54, null]], "More Later": [[51, "more-later"]], "More circles!": [[45, "more-circles"]], "More practice with the GSS": [[55, null]], "More than one passing test": [[50, "more-than-one-passing-test"]], "More weather": [[68, "more-weather"]], "Mutables, Immutables, and Object References": [[43, null]], "N-grams and their frequencies": [[56, "n-grams-and-their-frequencies"]], "NameError": [[75, "nameerror"]], "Naming and defining a list": [[52, "naming-and-defining-a-list"]], "Navigating a command line efficiently": [[31, "navigating-a-command-line-efficiently"]], "Nesting data structures within dictionaries": [[46, "nesting-data-structures-within-dictionaries"]], "No class! Happy Thanksgiving! \ud83e\udd83": [[67, "no-class-happy-thanksgiving"]], "Notes on importing libraries and functions": [[30, "notes-on-importing-libraries-and-functions"]], "Now it\u2019s your turn": [[68, "now-it-s-your-turn"]], "Now test it by running this code:": [[40, "now-test-it-by-running-this-code"]], "Now turn it into a function": [[40, "now-turn-it-into-a-function"]], "Numbers": [[75, "numbers"]], "Option 1 - Visual Recognition Memory and Verbal Lures": [[60, "option-1-visual-recognition-memory-and-verbal-lures"]], "Option 1: Experiment": [[61, "option-1-experiment"]], "Option 2: Data analysis": [[61, "option-2-data-analysis"]], "Option 2: Reinforcement learning and meaningfulness": [[60, "option-2-reinforcement-learning-and-meaningfulness"]], "Other ways of iterating through dictionaries": [[46, "other-ways-of-iterating-through-dictionaries"]], "Output file details": [[60, "output-file-details"], [60, "id1"]], "Output first names only": [[40, "output-first-names-only"]], "Output last names only": [[40, "output-last-names-only"]], "Overlaying images": [[26, "overlaying-images"]], "PRAW": [[28, null]], "Papers describing MTurk methods, demographics, pitfalls, etc.": [[27, "papers-describing-mturk-methods-demographics-pitfalls-etc"]], "Part 1": [[2, "part-1"], [6, null], [12, "part-1"], [13, "part-1"], [15, "part-1"], [16, "part-1"]], "Part 1.": [[9, "part-1"], [11, "part-1"]], "Part 1: Education, political view, and climate change": [[20, "part-1-education-political-view-and-climate-change"], [55, "part-1-education-political-view-and-climate-change"]], "Part 1: Human evolution vs. elephant evolution": [[17, "part-1-human-evolution-vs-elephant-evolution"], [18, "part-1-human-evolution-vs-elephant-evolution"]], "Part 1: Make it red!": [[7, "part-1-make-it-red"]], "Part 1: Who likes which adjectives?": [[5, "part-1-who-likes-which-adjectives"]], "Part 1: Word matching": [[21, "part-1-word-matching"], [22, "part-1-word-matching"]], "Part 2": [[2, "part-2"], [6, "part-2"], [9, "part-2"], [11, "part-2"], [12, "part-2"], [13, "part-2"], [15, "part-2"], [16, "part-2"]], "Part 2: Basic science knowledge, politics, education, and endorsement of human evolution?": [[17, "part-2-basic-science-knowledge-politics-education-and-endorsement-of-human-evolution"], [18, "part-2-basic-science-knowledge-politics-education-and-endorsement-of-human-evolution"]], "Part 2: Increasing robustness": [[5, "part-2-increasing-robustness"]], "Part 2: Make them stop": [[7, "part-2-make-them-stop"]], "Part 2: Match lmno words": [[21, "part-2-match-lmno-words"], [22, "part-2-match-lmno-words"]], "Part 2: Science knowledge and its correlates": [[20, "part-2-science-knowledge-and-its-correlates"], [55, "part-2-science-knowledge-and-its-correlates"]], "Part 3": [[6, "part-3"], [9, "part-3"], [11, "part-3"], [12, "part-3"], [13, "part-3"], [15, "part-3"], [16, "part-3"], [20, "part-3"], [55, "part-3"]], "Part 3 - Comparing verb lemmas": [[5, "part-3-comparing-verb-lemmas"]], "Part 3 - Fix weird spacing": [[22, "part-3-fix-weird-spacing"]], "Part 3 Make it drop!": [[7, "part-3-make-it-drop"]], "Part 3: Hyphenated Words": [[21, "part-3-hyphenated-words"]], "Part 3: Sexual frequency": [[18, "part-3-sexual-frequency"]], "Part 3: Work and Happiness": [[17, "part-3-work-and-happiness"]], "Part 4": [[9, "part-4"], [11, "part-4"], [12, "part-4"], [13, "part-4"], [15, "part-4"], [16, "part-4"]], "Part 4: Email validation": [[21, "part-4-email-validation"]], "Part 4: Make it drop\u2026. more naturally": [[7, "part-4-make-it-drop-more-naturally"]], "Part 4: Match phone numbers": [[22, "part-4-match-phone-numbers"]], "Part 4: Tax priorities": [[17, "part-4-tax-priorities"], [18, "part-4-tax-priorities"]], "Part 5": [[11, "part-5"], [16, "part-5"]], "Part 5 - Bonus - Fix weird spacing": [[21, "part-5-bonus-fix-weird-spacing"]], "Part 5 - Graphing!": [[15, "part-5-graphing"]], "Part 5: Astrology: beliefs, hobbies, and personalities": [[17, "part-5-astrology-beliefs-hobbies-and-personalities"], [18, "part-5-astrology-beliefs-hobbies-and-personalities"]], "Part 5: Email validation": [[22, "part-5-email-validation"]], "Part 6 - extra credit": [[16, "part-6-extra-credit"]], "Part 6: Redacting text": [[22, "part-6-redacting-text"]], "Part a. (3 pts)": [[5, "part-a-3-pts"]], "Part b. (3 pts)": [[5, "part-b-3-pts"]], "Phones": [[54, "phones"]], "Playing around with dictionaries": [[37, null]], "Pop up an error box": [[29, "pop-up-an-error-box"]], "Popping items from a list": [[52, "popping-items-from-a-list"]], "Popping up a box to get user input e.g., to specify a condition name or subject code at runtime": [[29, "popping-up-a-box-to-get-user-input-e-g-to-specify-a-condition-name-or-subject-code-at-runtime"]], "Popping up a web-based survey from within your python script": [[29, "popping-up-a-web-based-survey-from-within-your-python-script"]], "Positional Arguments": [[54, "positional-arguments"]], "Practice 1": [[36, "practice-1"]], "Practice 2": [[36, "practice-2"]], "Practice with operations on dictionary values": [[37, "practice-with-operations-on-dictionary-values"]], "Practice writing to files": [[38, "practice-writing-to-files"]], "Preloading files": [[49, null]], "Preloading image and audio files": [[29, "preloading-image-and-audio-files"]], "Preloading images into memory": [[49, "preloading-images-into-memory"]], "Primer on conditionals (if statements)": [[63, "primer-on-conditionals-if-statements"]], "Primer on writing files": [[38, null]], "Prior to first class": [[67, "prior-to-first-class"]], "Project 1": [[60, null]], "Project instructions": [[61, null]], "Project submission info": [[67, "project-submission-info"]], "Projects in Python": [[71, "projects-in-python"]], "Prompt for the subject code": [[23, "prompt-for-the-subject-code"]], "Psychopy reference": [[29, null]], "Push the updated feature branch back to Github": [[70, "push-the-updated-feature-branch-back-to-github"]], "Python Basics": [[71, "python-basics"]], "Python basics": [[30, null]], "Python essentials to get you started": [[63, null]], "Python mini tutorials and tips": [[30, "python-mini-tutorials-and-tips"]], "Qualtrics forms": [[29, "qualtrics-forms"]], "Question": [[51, null]], "Quick references": [[30, "quick-references"]], "Randomizing": [[10, "randomizing"]], "Randomizing within blocks": [[10, "randomizing-within-blocks"]], "Reference, mutability, and copying": [[30, "reference-mutability-and-copying"]], "Refining the Rocket class": [[45, "refining-the-rocket-class"]], "Regular expressions": [[64, null]], "Removing Items from a List": [[52, "removing-items-from-a-list"]], "Removing items by position": [[52, "removing-items-by-position"]], "Removing items by value": [[52, "removing-items-by-value"]], "Removing key-value pairs": [[46, "removing-key-value-pairs"]], "Removing stop words": [[56, "removing-stop-words"]], "Rename files": [[31, "rename-files"]], "Repetition": [[10, "repetition"]], "Resizing images": [[26, "resizing-images"]], "Return a list of words longer than 3 letters.": [[53, "return-a-list-of-words-longer-than-3-letters"]], "Returning a Value": [[51, "returning-a-value"]], "Reversing a list": [[52, "reversing-a-list"]], "Reversing a list using slices": [[52, "reversing-a-list-using-slices"]], "Review of fundamentals A": [[65, null]], "Review of fundamentals B": [[66, null]], "Review: Object-Oriented terminology": [[45, "review-object-oriented-terminology"]], "Rewind": [[70, "rewind"]], "Run yourself on the task!": [[23, "run-yourself-on-the-task"]], "Running a linear model on each grouping factor": [[41, "running-a-linear-model-on-each-grouping-factor"]], "Saving state of a variable and reloading it": [[29, "saving-state-of-a-variable-and-reloading-it"]], "Search and replace": [[64, "search-and-replace"]], "See the git log": [[70, "see-the-git-log"]], "Send an output of one command to another command": [[31, "send-an-output-of-one-command-to-another-command"]], "Setting the random seed": [[74, "setting-the-random-seed"]], "Setting up our programming environment": [[71, "setting-up-our-programming-environment"]], "Shaving": [[26, "shaving"]], "Show an orange circle after the blue circle": [[62, "show-an-orange-circle-after-the-blue-circle"]], "Show text until mouse click": [[29, "show-text-until-mouse-click"]], "Shuffle a list slice in place": [[30, "shuffle-a-list-slice-in-place"]], "Simple classes": [[30, "simple-classes"]], "Simple if statements": [[50, "simple-if-statements"]], "Simple operations": [[65, "simple-operations"]], "Simple scraping with BeautifulSoup!": [[69, null]], "Single and double quotes": [[75, "single-and-double-quotes"]], "Some helper functions for grabbing runtime variables with a GUI box": [[29, "some-helper-functions-for-grabbing-runtime-variables-with-a-gui-box"]], "Some ins and outs of trial generation": [[74, null]], "Some miscellanous tips": [[31, "some-miscellanous-tips"]], "Some simple generator functions": [[30, "some-simple-generator-functions"]], "Sorting a List": [[52, "sorting-a-list"]], "Sorting a numerical list": [[52, "sorting-a-numerical-list"]], "Sorting by values: the compact and efficient solution": [[46, "sorting-by-values-the-compact-and-efficient-solution"]], "Sorting by values: the verbose and inefficient solution": [[46, "sorting-by-values-the-verbose-and-inefficient-solution"]], "Splitting a string to make a list": [[52, "splitting-a-string-to-make-a-list"]], "Sports Teams": [[54, "sports-teams"]], "Staircasing": [[29, "staircasing"]], "Step 1: Accept an assignment": [[70, "step-1-accept-an-assignment"]], "Step 2: Do the assignment": [[70, "step-2-do-the-assignment"]], "Step 3: Submit each part of the assignment": [[70, "step-3-submit-each-part-of-the-assignment"]], "Stimulus details": [[60, "stimulus-details"]], "Storing a single class in a module": [[45, "storing-a-single-class-in-a-module"]], "Storing data frames in a CSV file": [[34, "storing-data-frames-in-a-csv-file"]], "Storing multiple classes in a module": [[45, "storing-multiple-classes-in-a-module"]], "Strings": [[75, "strings"]], "Stripping whitespace": [[75, "stripping-whitespace"]], "Study phase details": [[60, "study-phase-details"]], "Submitting assignments": [[70, null]], "Switch to a particular branch": [[70, "switch-to-a-particular-branch"]], "Syllabus": [[71, null]], "TODO": [[0, null]], "Test PsychoPy": [[58, "test-psychopy"], [59, "test-psychopy"]], "Test phase details": [[60, "test-phase-details"]], "Test the Anaconda Python install": [[58, "test-the-anaconda-python-install"], [59, "test-the-anaconda-python-install"]], "Testing": [[73, null]], "Testing whether an item is in a list": [[52, "testing-whether-an-item-is-in-a-list"]], "The SpaceShuttle class": [[45, "the-spaceshuttle-class"]], "The __init__() method": [[45, "the-init-method"]], "The idea": [[53, "the-idea"]], "The if-elif\u2026else chain": [[50, "the-if-elif-else-chain"]], "The syntax": [[53, "the-syntax"]], "Things to keep in mind": [[60, "things-to-keep-in-mind"]], "Tips": [[70, "tips"]], "To find out the location of the source files that are being loaded when you import a library:": [[30, "to-find-out-the-location-of-the-source-files-that-are-being-loaded-when-you-import-a-library"]], "To find out the version of the library you\u2019ve imported:": [[30, "to-find-out-the-version-of-the-library-you-ve-imported"]], "Trimming borders": [[26, "trimming-borders"]], "True and False values": [[50, "true-and-false-values"]], "TurkGate (a real solution)": [[27, "turkgate-a-real-solution"]], "TurkGate Manager (an extension of TurkGate)": [[27, "turkgate-manager-an-extension-of-turkgate"]], "Tying up some loose ends": [[41, null]], "Undo a push": [[70, "undo-a-push"]], "Use Exceptions": [[30, "use-exceptions"]], "Use a mouse for responding": [[23, "use-a-mouse-for-responding"]], "Use as a filter": [[64, "use-as-a-filter"]], "Use cat and tail together:": [[31, "use-cat-and-tail-together"]], "Use in place of conditionals": [[64, "use-in-place-of-conditionals"]], "Use sets": [[30, "use-sets"]], "Use tab completion": [[31, "use-tab-completion"]], "Using NLTK to extract info from comments": [[28, "using-nltk-to-extract-info-from-comments"]], "Using a dictionary as a look-up table": [[37, "using-a-dictionary-as-a-look-up-table"]], "Using a webcam in psychopy": [[29, "using-a-webcam-in-psychopy"]], "Using dictionaries in experiment design: some examples": [[47, null]], "Using for-loops to present trial lists": [[62, "using-for-loops-to-present-trial-lists"]], "Using list comprehension": [[30, "using-list-comprehension"]], "Variable naming rules": [[75, "variable-naming-rules"]], "Variable types and assignments": [[63, "variable-types-and-assignments"]], "Variables": [[75, "variables"]], "Variables, Strings, and Numbers": [[75, null]], "Various tutorials and software for online experiments": [[27, "various-tutorials-and-software-for-online-experiments"]], "Viewing solutions": [[76, null]], "Wait for click on a picture": [[29, "wait-for-click-on-a-picture"]], "Webscraping with Beautiful Soup": [[68, null]], "Week 1 (Sept 7): Getting oriented": [[67, "week-1-sept-7-getting-oriented"]], "Week 10 (Nov 9th)": [[67, "week-10-nov-9th"]], "Week 11 (Nov 16th)": [[67, "week-11-nov-16th"]], "Week 12 (Nov 23rd)": [[67, "week-12-nov-23rd"]], "Week 13 (Nov 30th)": [[67, "week-13-nov-30th"]], "Week 14 (Dec 7th)": [[67, "week-14-dec-7th"]], "Week 2 (Sept 14): Programming basics": [[67, "week-2-sept-14-programming-basics"]], "Week 3 (Sept 21)": [[67, "week-3-sept-21"]], "Week 4 (Sept 28)": [[67, "week-4-sept-28"]], "Week 5 (Oct 5)": [[67, "week-5-oct-5"]], "Week 6 (Oct 12)": [[67, "week-6-oct-12"]], "Week 7 (Oct 19)": [[67, "week-7-oct-19"]], "Week 8 (Oct 26th)": [[67, "week-8-oct-26th"]], "Week 9 (Nov 2nd)": [[67, "week-9-nov-2nd"]], "Week by week schedule": [[67, null]], "What are functions?": [[51, "what-are-functions"]], "What are they?": [[46, "what-are-they"]], "What happens in this program?": [[50, "what-happens-in-this-program"]], "What is an if statement?": [[50, "what-is-an-if-statement"]], "What is the probability that in a room of n people, at least two share a birthday?": [[19, "what-is-the-probability-that-in-a-room-of-n-people-at-least-two-share-a-birthday"]], "What makes a good comment?": [[75, "what-makes-a-good-comment"]], "What\u2019s a list?": [[52, "what-s-a-list"]], "What\u2019s the difference between a list and a dictionary?": [[46, "what-s-the-difference-between-a-list-and-a-dictionary"]], "What\u2019s with all the repetition?": [[52, null]], "When should you write comments?": [[75, "when-should-you-write-comments"]], "Whitespace": [[50, "whitespace"], [75, "whitespace"]], "Why classes?": [[45, "why-classes"]], "Why do we use Pandas?": [[34, "why-do-we-use-pandas"]], "With Qualtrics (a workaround rather than a solution)": [[27, "with-qualtrics-a-workaround-rather-than-a-solution"]], "WordNet": [[56, "wordnet"]], "Working with PRAW": [[28, "working-with-praw"]], "World Languages": [[54, "world-languages"]], "Writing to a file, safely": [[30, "writing-to-a-file-safely"]], "Zen of Python": [[75, "zen-of-python"]], "from module_name import *": [[45, "from-module-name-import"]], "if-elif\u2026else chains": [[50, "if-elif-else-chains"]], "if-else statements": [[50, "if-else-statements"]], "import module_name": [[45, "import-module-name"]], "import module_name as local_module_name": [[45, "import-module-name-as-local-module-name"]], "sorted() vs. sort()": [[52, "sorted-vs-sort"]]}, "docnames": ["TODO", "index", "notebooks/Exercise0-test", "notebooks/Exercise1-square", "notebooks/Exercise10-FiniteState", "notebooks/Exercise10-nltk", "notebooks/Exercise11-FiniteState", "notebooks/Exercise11-oop_circles", "notebooks/Exercise2-stroop", "notebooks/Exercise3-extended-stroop", "notebooks/Exercise3-trials", "notebooks/Exercise4-more_modularized_stroop", "notebooks/Exercise5-face-search", "notebooks/Exercise5-interactive", "notebooks/Exercise6-grouping", "notebooks/Exercise6-stroop_analysis", "notebooks/Exercise6-tilt_analysis", "notebooks/Exercise7-gss-wrangling", "notebooks/Exercise7-gss-wrangling_2022", "notebooks/Exercise7-simulations", "notebooks/Exercise8-more-gss-wrangling", "notebooks/Exercise8-regexps", "notebooks/Exercise9-regexps", "notebooks/ExerciseX-categorizingExpressions", "notebooks/ExerciseX-faceMorph", "notebooks/ExerciseX-imageDrag", "notebooks/ImageMagick", "notebooks/MTurk_reference", "notebooks/PRAW_demo", "notebooks/Psychopy_reference", "notebooks/Python_reference", "notebooks/Shell_reference", "notebooks/Tips", "notebooks/Untitled", "notebooks/activity_basic_pandas_operations", "notebooks/activity_debugging", "notebooks/activity_debugging_experiments", "notebooks/activity_dictionaries", "notebooks/activity_file_writing", "notebooks/activity_google_this", "notebooks/activity_list_manip_vowels_1", "notebooks/activity_merge_sac", "notebooks/activity_print_pyramids", "notebooks/activity_reference_vs_value", "notebooks/activity_trial_generation", "notebooks/classes", "notebooks/dictionaries", "notebooks/dictionaries_exp_design_examples", "notebooks/fibonacci", "notebooks/globbing_files", "notebooks/if_statements", "notebooks/introducing_functions", "notebooks/list_basics", "notebooks/list_comprehension", "notebooks/more_functions", "notebooks/more_gss_practice", "notebooks/nltk_demo", "notebooks/palindromes_fibonacci", "notebooks/programming_environment_osx", "notebooks/programming_environment_windows", "notebooks/project_1", "notebooks/project_2023", "notebooks/psychopy_intro", "notebooks/python_basics", "notebooks/regexp", "notebooks/review_of_fundamentals_a", "notebooks/review_of_fundamentals_b", "notebooks/schedule", "notebooks/scraping", "notebooks/simple_scraping", "notebooks/submitting_assignments", "notebooks/syllabus", "notebooks/test_r_kernel", "notebooks/testing", "notebooks/trial_generation", "notebooks/var_string_num", "notebooks/viewing_solutions"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1}, "filenames": ["TODO.md", "index.md", "notebooks/Exercise0-test.ipynb", "notebooks/Exercise1-square.ipynb", "notebooks/Exercise10-FiniteState.ipynb", "notebooks/Exercise10-nltk.ipynb", "notebooks/Exercise11-FiniteState.ipynb", "notebooks/Exercise11-oop_circles.ipynb", "notebooks/Exercise2-stroop.ipynb", "notebooks/Exercise3-extended-stroop.ipynb", "notebooks/Exercise3-trials.ipynb", "notebooks/Exercise4-more_modularized_stroop.ipynb", "notebooks/Exercise5-face-search.ipynb", "notebooks/Exercise5-interactive.ipynb", "notebooks/Exercise6-grouping.ipynb", "notebooks/Exercise6-stroop_analysis.ipynb", "notebooks/Exercise6-tilt_analysis.ipynb", "notebooks/Exercise7-gss-wrangling.ipynb", "notebooks/Exercise7-gss-wrangling_2022.ipynb", "notebooks/Exercise7-simulations.ipynb", "notebooks/Exercise8-more-gss-wrangling.ipynb", "notebooks/Exercise8-regexps.ipynb", "notebooks/Exercise9-regexps.ipynb", "notebooks/ExerciseX-categorizingExpressions.ipynb", "notebooks/ExerciseX-faceMorph.ipynb", "notebooks/ExerciseX-imageDrag.ipynb", "notebooks/ImageMagick.ipynb", "notebooks/MTurk_reference.ipynb", "notebooks/PRAW_demo.ipynb", "notebooks/Psychopy_reference.ipynb", "notebooks/Python_reference.ipynb", "notebooks/Shell_reference.ipynb", "notebooks/Tips.ipynb", "notebooks/Untitled.ipynb", "notebooks/activity_basic_pandas_operations.ipynb", "notebooks/activity_debugging.ipynb", "notebooks/activity_debugging_experiments.ipynb", "notebooks/activity_dictionaries.ipynb", "notebooks/activity_file_writing.ipynb", "notebooks/activity_google_this.ipynb", "notebooks/activity_list_manip_vowels_1.ipynb", "notebooks/activity_merge_sac.ipynb", "notebooks/activity_print_pyramids.ipynb", "notebooks/activity_reference_vs_value.ipynb", "notebooks/activity_trial_generation.ipynb", "notebooks/classes.ipynb", "notebooks/dictionaries.ipynb", "notebooks/dictionaries_exp_design_examples.ipynb", "notebooks/fibonacci.ipynb", "notebooks/globbing_files.ipynb", "notebooks/if_statements.ipynb", "notebooks/introducing_functions.ipynb", "notebooks/list_basics.ipynb", "notebooks/list_comprehension.ipynb", "notebooks/more_functions.ipynb", "notebooks/more_gss_practice.ipynb", "notebooks/nltk_demo.ipynb", "notebooks/palindromes_fibonacci.ipynb", "notebooks/programming_environment_osx.ipynb", "notebooks/programming_environment_windows.ipynb", "notebooks/project_1.ipynb", "notebooks/project_2023.ipynb", "notebooks/psychopy_intro.ipynb", "notebooks/python_basics.ipynb", "notebooks/regexp.ipynb", "notebooks/review_of_fundamentals_a.ipynb", "notebooks/review_of_fundamentals_b.ipynb", "notebooks/schedule.ipynb", "notebooks/scraping.ipynb", "notebooks/simple_scraping.ipynb", "notebooks/submitting_assignments.ipynb", "notebooks/syllabus.ipynb", "notebooks/test_r_kernel.ipynb", "notebooks/testing.ipynb", "notebooks/trial_generation.ipynb", "notebooks/var_string_num.ipynb", "notebooks/viewing_solutions.ipynb"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 26, 27, 30, 31, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 49, 50, 51, 53, 54, 56, 58, 59, 60, 62, 63, 64, 65, 67, 69, 74], "0": [6, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 29, 30, 34, 35, 36, 37, 41, 42, 45, 46, 47, 48, 49, 50, 51, 52, 54, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 68, 69, 70, 74, 75], "00": [28, 64, 68], "000": 28, "000000": [13, 41, 49], "0000000": 41, "000000014": 41, "001": 24, "001m": [23, 36], "001ma_90_60": 49, "001me_90_60": 49, "001mf_90_60": 49, "001mn_90_60": 49, "001mt_90_60": 49, "001mu_90_60": 49, "001mw_90_60": 49, "001w": [23, 36], "001wa_90_60": 49, "001we_90_60": 49, "001wf_90_60": 49, "001wn_90_60": 49, "001wt_90_60": 49, "001wu_90_60": 49, "001ww_90_60": 49, "002m": [23, 36], "002ma_90_60": 49, "002me_90_60": 49, "002mf_90_60": 49, "002mn_90_60": 49, "002mt_90_60": 49, "002mu_90_60": 49, "002mw_90_60": 49, "002w": [23, 36], "002wa_90_60": 49, "002we_90_60": 49, "002wf_90_60": 49, "002wn_90_60": 49, "002wt_90_60": 49, "002wu_90_60": 49, "002ww_90_60": 49, "003m": [23, 36], "003ma_90_60": 49, "003me_90_60": 49, "003mf_90_60": 49, "003mn_90_60": 49, "003mt_90_60": 49, "003mu_90_60": 49, "003mw_90_60": 49, "003w": [23, 36], "003wa_90_60": 49, "003we_90_60": 49, "003wf_90_60": 49, "003wn_90_60": 49, "003wt_90_60": 49, "003wu_90_60": 49, "003ww_90_60": 49, "004m": [23, 36], "004ma_90_60": 49, "004me_90_60": 49, "004mf_90_60": 49, "004mn_90_60": 49, "004mt_90_60": 49, "004mu_90_60": 49, "004mw_90_60": 49, "004w": [23, 36], "004wa_90_60": 49, "004we_90_60": 49, "004wf_90_60": 49, "004wn_90_60": 49, "004wt_90_60": 49, "004wu_90_60": 49, "004ww_90_60": 49, "005m": [23, 36], "005ma_90_60": 49, "005me_90_60": 49, "005mf_90_60": 49, "005mn_90_60": 49, "005mt_90_60": 49, "005mu_90_60": 49, "005mw_90_60": 49, "005w": [23, 36], "005wa_90_60": 49, "005we_90_60": 49, "005wf_90_60": 49, "005wn_90_60": [23, 49], "005wt_90_60": 49, "005wu_90_60": 49, "005ww_90_60": 49, "0061": 41, "0063": 41, "00742": 41, "008": 45, "01": [28, 41, 56, 68], "01234567": 30, "0123456789": 30, "0123456789abcdefabcdef": 30, "0123456789abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstu": 30, "014625": 74, "017": 7, "017778114": 41, "02": [28, 41, 45, 56], "02011537966836": 41, "020141585198305667": 53, "021458484681543433": 53, "02152156913266834": 53, "024070833648734302": 53, "02469514": 41, "025425": 74, "026": 41, "02i": 56, "03": [41, 52, 56], "04": [28, 49, 56], "04215517442110839": 53, "04583147": 41, "05": [13, 28, 45, 56], "05762": 41, "05965910": 41, "05971806742805463": 53, "06": [41, 56, 58, 59], "06042517": 41, "06066853": 41, "06400825379612352": 53, "069778e": 41, "07": [0, 28], "075294e": 41, "07959125": 41, "08": [28, 56], "08272697951195707": 53, "0836676411": 41, "08813079460739": 41, "09": [13, 28, 56], "09108953": 41, "09302098": 41, "09391538": 41, "09507483": 41, "09556573": 41, "09599371": 41, "0th": 52, "0x": 30, "0x115550740": 30, "0x7f98320b2990": 49, "0x7f98320e8ed0": 49, "0x7f98326681b0": 49, "0x7f9832681600": 49, "0x7fa95e0d1ac0": 45, "0x7fa95e0d1d00": 45, "0x7fa95e213550": 45, "0x7fa95e213640": 45, "0x7fa95e213cd0": 45, "0x7fb1a6fdb8e0": 68, "0x7fd6e32ca600": 13, "0x7fd6e4c42890": 13, "0x7fd6e4c43450": 13, "0x7fd6e4c48d00": 13, "0x7fedd3b03b20": 45, "0x7fedd45e8610": 45, "0x7fedd45e8820": 45, "0x7fedd45e8bb0": 45, "0x7fedd45e8d60": 45, "0x7fedd45e8e50": 45, "0x7fedd45e8eb0": 45, "0x7fedd45e8f10": 45, "1": [8, 14, 19, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 37, 38, 41, 42, 45, 46, 47, 48, 50, 51, 52, 54, 56, 57, 62, 63, 64, 65, 66, 68, 69, 74, 75], "10": [3, 6, 12, 13, 16, 23, 26, 27, 28, 29, 30, 31, 34, 35, 37, 41, 45, 48, 49, 52, 54, 56, 57, 63, 64, 65, 66, 68, 74, 75], "100": [3, 6, 9, 14, 15, 17, 23, 25, 34, 36, 45, 46, 48, 56, 57, 60, 62, 65, 66, 74], "1000": [8, 19, 28, 46, 48, 49, 56, 57, 60, 68], "1001": 53, "1007": 41, "101": [25, 74], "1010": 15, "101010": 65, "1018": 15, "102": [18, 74], "102334155": 57, "1024": [6, 23], "103": 74, "104": [25, 74], "10413643": 41, "105": 74, "106": [25, 74], "10610209857723": 57, "107": 64, "108": 53, "1081168": 64, "10946": 57, "10994432111406482": 53, "10min": 24, "10x40": 26, "11": [12, 13, 16, 28, 30, 34, 35, 37, 41, 45, 46, 52, 53, 54, 56, 57, 60, 68, 74], "1100000": 28, "1100087778366101931": 57, "11134": 41, "112": 49, "11235": 41, "113": [49, 56], "1134": 41, "1134903170": 57, "11393": 41, "1142": 28, "11488": 41, "116": 49, "116492449": 41, "11660": 41, "117": 53, "1175698": 41, "117669030460994": 57, "118": 49, "118562449": 41, "119": 30, "11943933212685554": 53, "119960": 56, "11abdominal13245": 41, "12": [13, 18, 26, 28, 34, 42, 46, 51, 52, 54, 56, 57, 58, 59, 60, 65, 66, 68, 74, 75], "120": [24, 35, 46, 67], "1202": 56, "120932449": 41, "121": 22, "12133007": 41, "121393": 57, "12158601": 41, "121742449": 41, "121892449": 41, "12200160415121876738": 57, "1225": 74, "123": [22, 42, 56], "12324": 40, "1234": [22, 42], "12345": [42, 48, 57], "123582449": 41, "12364895": 41, "124492449": 41, "125": [6, 26, 53], "1253756": 50, "12586269025": 57, "126": 53, "127": 25, "12849": 41, "128x156": 26, "12902643273947778": 53, "13": [9, 13, 28, 30, 34, 41, 52, 53, 54, 56, 57, 58, 59, 65, 66, 68, 74], "1304969544928657": 57, "13055664": 41, "131162449": 41, "13194126": 41, "132452449": 41, "13335": 41, "133352449": 41, "13404406": 41, "1346269": 57, "135": [53, 74], "135301852344706746049": 57, "13668671": 41, "1368": 56, "1378301": 41, "138162449": 41, "139": 30, "139583862445": 57, "14": [13, 28, 52, 54, 56, 57, 66, 68, 74, 75], "142": 41, "142747125": 29, "1439": 64, "144": [51, 53, 57], "14472334024676221": 57, "14481538": 41, "14568881": 41, "1466": 56, "147": 30, "14780": 41, "148": 28, "14930352": 57, "14_1": 30, "15": [3, 5, 8, 14, 28, 30, 41, 45, 52, 54, 56, 57, 63, 66, 68, 74, 75], "150": [25, 30, 45], "152": [25, 30], "153": 53, "154": 25, "15413427": 41, "1548008755920": 57, "155": 30, "15735455": 41, "15740140": 41, "1597": 57, "15th": 29, "16": [16, 25, 28, 29, 30, 35, 41, 52, 53, 54, 56, 57, 58, 59, 68, 74], "160": 30, "160500643816367088": 57, "161": 25, "16189504": 41, "162": [25, 53], "163": 25, "164": 25, "165": [25, 30], "16537552": 41, "165580141": 57, "16625455": 41, "16818305080458973": 53, "16915944": 41, "1695": 56, "16x9": 68, "17": [7, 30, 52, 54, 56, 57, 66, 68, 74], "171": 53, "17167680177565": 57, "17366154": 41, "17468811": 41, "17711": 57, "1776": 28, "1779979416004714189": 57, "1780": 56, "18": [28, 34, 41, 45, 52, 53, 54, 56, 57, 68, 74], "180": [8, 11, 29, 30, 45, 53, 60], "18019374": 41, "18221730799001423": 53, "18327203": 41, "1836311903": 57, "18390559": 41, "18416923": 41, "1844": 56, "18462919695296454": 53, "1846768": 49, "18501623151708046": 53, "18596573": 41, "1865": 56, "189": 53, "19": [28, 30, 46, 52, 54, 56, 57, 66, 68, 74], "190": 23, "190392490709135": 57, "19101005848787056": 53, "19282098": 41, "192975": 64, "19382785739789887": 53, "1947": 56, "1952": 41, "195237": 41, "195249": 41, "196418": 57, "1969": 35, "1971": 41, "19740274219868223167": 57, "198": 53, "1991": 75, "1993": [17, 18], "1997": 35, "1abdomin": 41, "1and": 42, "1carousel": 41, "1cloth": 41, "1coland": 41, "1countri": 41, "1displeasur": 41, "1e75bebcb0a1": 65, "1fenc": 41, "1grain": 41, "1hepat": 41, "1lackei": 41, "1m": [5, 41], "1maleman": 41, "1misdirect": 41, "1pamper": 41, "1reed": 41, "1reek": 41, "1rg_sf55xnpotv7ad4esuxupso1x5c_svkbcl2b6hrzo": 29, "1seer": 41, "1select": 41, "1st": 12, "1stroganoff": 41, "1twice": 41, "2": [10, 14, 19, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 37, 38, 41, 42, 43, 45, 46, 47, 48, 51, 52, 53, 54, 56, 57, 58, 59, 62, 63, 64, 65, 66, 68, 71, 74, 75], "20": [5, 6, 8, 11, 13, 14, 22, 25, 26, 27, 28, 29, 30, 34, 36, 41, 44, 45, 54, 56, 57, 60, 66, 68, 74, 75], "200": [8, 29, 36, 49], "2000": [13, 62], "2001": 22, "2007": 41, "200767": 41, "200775": 41, "2008": 22, "200x200": 26, "2010": 60, "2011": 54, "2012": 27, "2016": [17, 18], "2018": [17, 18, 28, 35], "2020": 28, "2021": [0, 28], "2022": [13, 28, 49, 58, 59, 68], "2022cmc": 68, "2023": [35, 58, 59], "20365011074": 57, "2051381": 13, "206": 25, "2065": 56, "207": 53, "20785": 74, "21": [30, 34, 41, 54, 56, 57, 65, 66, 68, 74], "2111485077978050": 57, "212": 25, "21316820": 41, "216": 53, "21713421888585216": 53, "2178309": 57, "218922995834555169026": 57, "21select": 41, "22": [28, 34, 49, 54, 56, 57, 66, 68, 74], "2203": 56, "221130121224": 68, "22343": 49, "224492449": 41, "22474494": 41, "225": 53, "225851433717": 57, "22m": 41, "22mjoin": 41, "23": [28, 30, 34, 46, 54, 56, 57, 68, 74], "23051491860196693": 53, "233": [25, 57], "234": 53, "23416728348467685": 57, "24": [13, 28, 34, 41, 54, 56, 57, 60, 66, 68, 74], "24157817": 57, "243": 53, "246": 41, "24911453527274008": 53, "2494282549500233": 53, "25": [9, 14, 15, 23, 25, 28, 29, 30, 36, 41, 53, 54, 56, 57, 63, 67, 68, 74], "2504730781961": 57, "252": [15, 53], "256": 30, "2562505737878181": 53, "2584": 57, "259695496911122585": 57, "26": [28, 34, 54, 56, 57, 58, 59, 66, 68, 74], "260": 41, "2601": 41, "261": 53, "2620811349727985": 53, "267914296": 57, "27": [7, 28, 30, 34, 53, 56, 57, 68, 74], "270": 53, "2702132": 41, "273": 25, "27777890035288": 57, "279": 53, "28": [28, 34, 56, 57, 58, 59, 66, 68, 74], "280": 35, "2808559139810669": 53, "28231526": 41, "28606095549529886": 53, "28642355806137865": 53, "28657": 57, "288": 53, "2880067194370816120": 57, "29": [28, 30, 34, 56, 57, 66, 68, 74], "290": 56, "292": 25, "29247664808391993": 53, "295": 15, "29538622585966035": 53, "297": 53, "2971215073": 57, "297786e": 41, "2coin": 41, "2geek": 41, "2maleman": 41, "2pallet": 41, "2precognition328153091": 41, "2rep": 41, "2setosa": 41, "2settlement": 41, "2twirl": 41, "3": [14, 19, 23, 24, 26, 27, 28, 29, 30, 34, 35, 37, 38, 41, 45, 46, 48, 50, 51, 52, 54, 56, 57, 58, 59, 60, 63, 64, 65, 66, 68, 71, 74], "30": [13, 24, 25, 26, 28, 29, 30, 34, 37, 41, 45, 49, 51, 56, 57, 65, 66, 68, 74], "300": [29, 45], "30000000000000004": 75, "30038285887800653": 53, "302": 56, "305": 56, "306": 53, "308061521170129": 57, "309": 25, "3092707780928309": 53, "30935395037559643": 53, "31": [28, 30, 56, 57, 68, 74], "3140663367395595": 53, "315": 53, "317811": 57, "31940434634990099905": 57, "31958": 41, "31grain": 41, "32": [13, 28, 49, 57, 68, 74], "320": 25, "321": 56, "322": 25, "32336": 41, "323362449": 41, "324": 53, "326": [41, 56], "327106133738682": 53, "328": 15, "32951280099": 57, "33": [28, 30, 56, 57, 64, 68, 74], "330212449": 41, "332": 41, "333": 53, "333333": [41, 50], "336953091": 41, "34": [41, 56, 57, 68, 74], "340": 25, "3409970942647851": 53, "341": 25, "3416454622906707": 57, "342": 53, "34215": 41, "345": 35, "3470620533997659": 53, "35": [28, 30, 46, 56, 57, 68, 74], "350": [45, 74], "351": 53, "3524578": 57, "354224848179261915075": 57, "356": 25, "3578": 56, "36": [53, 57, 68], "360": [3, 6, 26, 29, 45, 53], "3608": 56, "360853": 64, "3646504416742017": 53, "365435296162": 57, "366": 28, "3661259": 41, "369": 53, "37": [26, 28, 30, 57, 68], "375": 28, "37551795560730317": 53, "377": 57, "3776": 28, "378": 53, "3787042302780732": 53, "37889062373143906": 57, "38": [9, 28, 56, 57, 68], "382": 25, "38213270217320083": 53, "387": 53, "389": 25, "39": [28, 30, 56, 57, 68], "39088169": 57, "391413091": 41, "393": 25, "3949092": 41, "396": 53, "397": 56, "398": 25, "3d": [13, 35, 45, 48, 52, 65, 74, 75], "3maleman": 41, "3x2": 26, "3x4": 26, "4": [10, 14, 24, 25, 26, 27, 28, 29, 30, 34, 35, 37, 38, 41, 43, 44, 45, 46, 48, 51, 52, 53, 54, 56, 57, 60, 63, 64, 65, 66, 68, 72, 74, 75], "40": [8, 14, 23, 24, 26, 28, 36, 41, 54, 56, 57, 68, 74], "400": [3, 13, 29, 56, 58, 59, 74], "40000": 74, "40055368628571353": 53, "401": [13, 56], "403": 13, "404": 56, "4046464903695117": 53, "405": [13, 53], "4052739537881": 57, "406057": 64, "407": 56, "40752310": 41, "408": 56, "409": 56, "40k": 28, "41": [30, 56, 57, 68, 74], "4137": 56, "414": 53, "414213614": 41, "415": 25, "4155887710": 41, "4181": 57, "4183978821491037": 53, "419": 56, "41924": 41, "41cloth": 41, "42": [46, 57, 68, 74], "420196140727489673": 57, "422": 56, "423": 53, "425": 35, "42612": 41, "426122449": 41, "427": 56, "4281": 41, "4284401": 41, "43": [28, 29, 30, 41, 57, 68], "430": 56, "43034575083494186": 53, "432": 53, "4331": 56, "433494437": 57, "435": [28, 56], "43814880372786": 41, "44": [16, 28, 41, 56, 57, 68, 74], "441": 53, "4453": 41, "4457223247921731": 53, "44625834": 41, "447": 41, "448519": 64, "44945570212853": 57, "4499530587930166": 53, "45": [3, 28, 30, 40, 45, 49, 52, 53, 56, 57, 68, 74], "450": [53, 74], "451": [25, 41], "452": 45, "454": 56, "456": 22, "459": 53, "45972": 41, "46": [28, 57, 68], "460195014": 41, "46036": 28, "461": 56, "462": 41, "4620": 41, "46368": 57, "46570984": 41, "4660046610375530309": 57, "466737": 64, "46676645": 41, "468": [53, 56], "469": 25, "46941871510638766": 53, "47": [28, 30, 57, 68], "4706569800421482": 53, "47287553685169526": 53, "473": [25, 35], "474": 56, "4768441": 41, "477": 53, "4771413": 41, "47727": 13, "48": [28, 49, 57, 68], "4807285946005715": 53, "4807526976": 57, "481": 56, "48142566108152396": 53, "483": 64, "48316": 64, "486": 53, "4860061514293683": 53, "487": 41, "48pm": 13, "49": [28, 30, 53, 57, 68, 74], "491": 28, "4928298184606388": 53, "49346465042560794": 53, "4947": 56, "495": 53, "4966399": 41, "497": 25, "4972399": 41, "4981308": 41, "498454011879264": 57, "4999322": 41, "4maleman": 41, "4setosa": 41, "4th": 14, "5": [3, 6, 7, 8, 9, 10, 24, 25, 26, 27, 28, 30, 34, 35, 36, 37, 41, 42, 43, 45, 46, 48, 50, 51, 52, 53, 54, 55, 56, 57, 60, 63, 64, 65, 66, 68, 74, 75], "50": [3, 9, 14, 15, 17, 23, 26, 27, 28, 29, 38, 41, 57, 60, 67, 68, 74], "500": [3, 6, 8, 56], "500000": 41, "50000004": 41, "5000531": 41, "5039434184534949": 53, "504": 53, "5047000": 41, "5053210": 41, "5065216772296162": 53, "507": 25, "508511120928683": 53, "51": [27, 30, 41, 57, 68, 74], "510": 56, "513": 53, "513372814": 41, "514229": 57, "51604": 41, "51680708854858323072": 57, "51852": 41, "51986": 41, "51hepatitis12174": 41, "52": [28, 45, 57, 63, 64, 68], "522": 53, "525": [56, 74], "52500": 41, "525002449": 41, "526": 56, "5276979": 41, "529150823418107": 53, "5292615": 41, "529493091": 41, "53": [26, 28, 30, 57, 63, 68], "5307149": 41, "530994214": 41, "531": 53, "5312734": 41, "53316291173": 57, "53938": 28, "539793": 64, "54": [28, 45, 53, 57, 64, 68], "540": 53, "54229260": 41, "5424727": 41, "5428517": 41, "54321": [48, 57], "543721900350119": 53, "5460446706976356": 53, "547553091": 41, "549": 53, "55": [28, 30, 41, 57, 68], "552": 41, "5522": 41, "5527939700884757": 57, "5532446112724092": 53, "5543594": 41, "555": [15, 63], "5554000": 41, "5554545": 41, "5565196": 41, "557": 28, "558": 53, "5584948725350998": 53, "56": [28, 56, 57, 68], "5619624214446906": 53, "56354": 41, "567": 53, "5689675362205405": 53, "5692797": 41, "57": [28, 30, 57, 68], "5702887": 57, "5717294": 41, "572": 56, "574": 56, "576": 53, "57735033": 41, "578": 41, "58": [57, 68], "581": 25, "5818259": 41, "584": 25, "585": 53, "586190e": 41, "5878434": 41, "5882": 41, "58836": 41, "5885": 41, "59": [30, 57, 64, 68], "590044255895823": 53, "59049": 65, "591286729879": 57, "594": 53, "5942899905691458": 53, "59fb6d0341c1": 54, "5a": 23, "5b9cab591576": 65, "5maleman1241": 41, "5th": 14, "6": [8, 9, 12, 13, 14, 18, 20, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 41, 43, 45, 46, 48, 51, 52, 53, 54, 56, 57, 60, 63, 64, 65, 66, 68, 74, 75], "60": [23, 24, 28, 29, 34, 36, 57, 68, 74], "600": [8, 13, 14, 16, 27, 29, 36, 62], "6011007": 41, "60187": 41, "603": 53, "6054594": 41, "60hz": [7, 29], "61": [34, 41, 57, 68], "610": 57, "611": 25, "612": 53, "61305790721611591": 57, "614927e": 41, "618033988749895": [48, 57], "61862": 41, "6190": 56, "61carousel": 41, "62": [34, 45, 57, 68, 74], "62015": 41, "621": 53, "62453847": 41, "6255357": 41, "626": 56, "628": 25, "628263091": 41, "6284547762752576": 53, "629": 25, "63": [34, 41, 53, 57, 68], "630": 53, "6305409085670466": 53, "631": 25, "632": 56, "63245986": 57, "6346413": 41, "639": 53, "64": [26, 53, 57, 58, 59, 68], "640": [25, 41], "644": 25, "647": 56, "648": 53, "6496231": 41, "65": [34, 41, 56, 57, 68], "6557470319842": 57, "657": 53, "66": [57, 68], "6602528067033887": 53, "666": 53, "67": [29, 57, 68], "6716154": 41, "675": 53, "6756821234417167": 53, "6765": 57, "679891637638612258": 57, "68": [30, 54, 57, 68], "683": 25, "684": 53, "6895201817754012": 53, "69": [57, 68], "693": 53, "694": 41, "6942438596309538": 53, "6949404766488418": 53, "697": 56, "6ebc972579c733621124e40360812777aeeeeb6f": 70, "6maleman1540": 41, "7": [12, 13, 14, 16, 20, 24, 25, 27, 30, 31, 34, 35, 37, 41, 45, 47, 48, 52, 53, 54, 55, 57, 63, 64, 65, 66, 68, 74], "70": [6, 34, 41, 54, 57, 68], "700": [23, 24], "7011hairpin": 41, "7011learn": 41, "7011make": 41, "7011payrol": 41, "7011scaffold": 41, "7011swept": 41, "7012affection": 41, "7012congruiti": 41, "7012corset": 41, "7012deterg": 41, "7012disenfranchise11471": 41, "7012droplet": 41, "7012hurri": 41, "7012irat": 41, "7012marsh": 41, "7012methodologi": 41, "7012particip": 41, "7012salamand": 41, "7012sweater": 41, "7012tram": 41, "701408733": 57, "702": 53, "707106814": 41, "70710682": 41, "71": [28, 34, 54, 57, 68], "711": 53, "715": 15, "7154901703159035": 53, "72": [34, 53, 57, 68], "720": 53, "723992449": 41, "725293091": 41, "72723460248141": 57, "729": 53, "7295071929030806": 53, "729702449": 41, "73": [34, 41, 57, 68], "73296": 41, "7360639644822417": 53, "738": 53, "74": [30, 57, 68], "743": 41, "7440921522929225": 53, "747": [25, 53], "75": [9, 34, 57, 68], "75025": 57, "753": 25, "754": 9, "7540113804746346429": 57, "7552020412113069": 53, "756": 53, "7579094907353902": 53, "76": [57, 68], "764": 56, "765": 53, "766": 15, "7674232704225379": 53, "768": 6, "77": [28, 34, 45, 57, 68], "7704": 41, "7721790": 41, "772289e": 41, "774": 53, "7778742049": 57, "778": 25, "78": [25, 57, 68], "782": 13, "783": [13, 53], "784": 13, "785": 13, "7860818145964547": 53, "7890": 22, "79": [57, 68], "792": 53, "7931705529833472": 53, "794": 15, "7966723379c3": 75, "8": [7, 8, 12, 13, 14, 16, 24, 25, 29, 30, 31, 34, 35, 37, 41, 42, 45, 46, 47, 48, 50, 52, 53, 54, 56, 57, 58, 59, 60, 63, 64, 65, 66, 68, 69, 74, 75], "80": [8, 28, 29, 34, 57, 64, 68], "800": [8, 13, 14, 24, 27, 29, 36], "801": [41, 53], "806515533049393": 57, "8068608676121372": 53, "8080": 28, "81": [30, 34, 53, 57, 68], "810": 53, "8167974146530707": 53, "8179411": 41, "818": 56, "819": 53, "81981": 41, "82": [34, 48, 57, 68], "828": 53, "82828100": 41, "83": [30, 57, 68], "832040": 57, "8320922310309975": 53, "83621143489848422977": 57, "837": 53, "84": [34, 45, 57, 68, 75], "840": 28, "8425333779": 41, "846": 53, "8467812662036726": 53, "84887474": 41, "85": [57, 68], "850": 25, "8530": 41, "854": 56, "855": 53, "8577178933096079": 53, "85812": 41, "86": [57, 68], "860": 56, "86267571272": 57, "864": 53, "87": [56, 57, 68], "8717538": 41, "873": 53, "875373367977733": 53, "88": [57, 64, 68], "8812859168335222": 53, "882": 53, "8859": [21, 22, 64], "89": [45, 57, 64, 68], "891": 53, "8944394323791464": 57, "898": 9, "8za63ytaqvoq": 28, "9": [7, 12, 13, 25, 28, 30, 34, 35, 36, 42, 43, 45, 46, 48, 52, 54, 56, 57, 63, 64, 65, 66, 68, 74], "90": [6, 26, 29, 34, 53, 57, 68], "900": [25, 53], "900342216": 29, "9011206": 41, "902": 9, "9088649425014437": 53, "909": 53, "91": [26, 41, 56, 57, 68], "9164624229550201": 53, "917": 56, "918": 53, "92": [45, 57, 64, 68], "9208766": 41, "9218257425065518": 53, "921947091892469": 53, "9227465": 57, "9240934820": 41, "927": 53, "9284894090060116": 53, "93": [34, 41, 45, 57, 68], "932": 41, "9355777522907279": 53, "936": 53, "9362": 41, "9364": 41, "938": 41, "94": [34, 57, 68], "945": 53, "95": [30, 57, 68], "9538062": 41, "954": 53, "956722026041": 57, "9584641317010492": 53, "96": [57, 68], "960": 41, "9628654": 41, "963": 53, "97": [34, 57, 68], "972": 53, "9745": 41, "9757460282563791": 53, "98": [30, 34, 57, 68], "981": 53, "9811": 41, "9866580852216292": 53, "987": 57, "99": [34, 53, 57, 64, 68], "990": 53, "990918595214355": 53, "99194853094755497": 57, "9926090090647068": 53, "9939998d2a01": 54, "99573860": 41, "99710267083853": 41, "999": [53, 64], "9991187183058816": 53, "9pm": [67, 70], "A": [10, 15, 20, 21, 22, 26, 27, 30, 31, 34, 41, 43, 46, 49, 50, 58, 59, 61, 64, 67, 68, 70, 75], "AND": [27, 56], "AT": 68, "And": [1, 5, 6, 29, 30, 42, 43, 45, 52, 56, 58, 59, 68], "As": [12, 14, 17, 18, 26, 29, 31, 45, 46, 50, 52, 57, 60, 61, 63, 68, 74, 75], "At": [4, 10, 23, 29, 30, 45, 46, 52, 56, 58, 59, 68], "Be": [17, 18, 31, 45, 50, 58, 59, 68, 70, 75], "But": [18, 25, 27, 28, 30, 41, 45, 46, 50, 51, 52, 54, 59, 63, 64, 68, 74, 75], "By": [37, 45, 50, 53, 56, 60, 70, 74], "For": [3, 4, 6, 9, 10, 11, 12, 13, 14, 16, 17, 18, 20, 26, 27, 28, 29, 30, 31, 34, 35, 37, 40, 41, 44, 45, 46, 49, 51, 52, 53, 55, 56, 57, 60, 62, 63, 64, 67, 68, 70, 74, 75], "IN": 64, "If": [6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 26, 27, 28, 29, 30, 31, 34, 36, 38, 40, 42, 43, 44, 45, 46, 49, 51, 52, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 74, 75], "In": [1, 7, 8, 9, 10, 11, 14, 22, 23, 24, 26, 27, 28, 29, 30, 34, 35, 37, 40, 41, 43, 45, 46, 50, 51, 52, 53, 54, 60, 62, 63, 65, 66, 68, 70, 74, 75], "Into": 68, "It": [5, 6, 10, 15, 16, 21, 22, 23, 26, 27, 28, 29, 30, 34, 36, 41, 45, 49, 50, 51, 52, 54, 56, 57, 58, 59, 64, 65, 68, 70, 74, 75], "Its": 7, "NOT": [0, 26, 59], "No": [3, 13, 19, 46, 52, 75], "Not": [11, 28, 29, 45, 52, 64, 70, 74], "OR": [11, 64], "Of": [23, 50, 68, 75], "On": [12, 13, 27, 30, 45, 51, 58, 59, 63, 68], "One": [20, 22, 25, 28, 29, 30, 31, 45, 46, 49, 51, 52, 55, 62, 64, 68, 74], "Or": [26, 28, 29, 30, 34, 45, 52, 70, 74], "TO": [27, 64], "That": [27, 29, 30, 37, 50, 52, 54, 56, 60, 62, 63, 64, 68, 74], "Thats": 68, "The": [1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 36, 38, 40, 41, 43, 44, 46, 47, 49, 51, 52, 54, 56, 58, 59, 60, 62, 63, 64, 65, 67, 68, 70, 73, 74, 75], "Then": [3, 6, 8, 16, 26, 27, 28, 29, 34, 37, 40, 45, 46, 54, 58, 59, 62, 63, 64, 67, 70, 74, 75], "There": [5, 6, 7, 10, 20, 21, 22, 25, 26, 28, 29, 30, 31, 45, 46, 50, 51, 52, 54, 55, 58, 59, 60, 64, 67, 68, 75], "These": [7, 12, 27, 28, 31, 35, 45, 46, 50, 51, 52, 54, 56, 60, 64, 73], "To": [3, 6, 8, 10, 15, 18, 21, 22, 23, 25, 26, 27, 28, 29, 31, 37, 41, 45, 46, 51, 52, 56, 58, 59, 60, 62, 63, 64, 66, 68, 70, 73, 75], "Will": [18, 67], "With": [26, 28, 45, 46, 49, 51, 52, 68, 74], "_": [6, 26, 30, 44, 45, 54, 56, 63, 64, 70], "_90_60": [23, 36], "__": 45, "___": 2, "__builtin__": 30, "__call__": 30, "__dict__": 30, "__doc__": 9, "__file__": 30, "__import__": 30, "__index__": 74, "__init__": [6, 30], "__main__": [12, 13, 29, 45], "__metaclass__": 30, "__name__": [12, 13, 29], "__version__": [30, 58, 59], "__weakref__": 30, "_a": 30, "_data": 29, "_left": 26, "_recurse_all_hypernym": 56, "_sre": 30, "_templatemetaclass": 30, "_trial": 9, "a1": 31, "a964f1e96d9b": 54, "a_deep_thought": 37, "a_fruit": 43, "a_list": [43, 51, 52, 53, 63], "a_num": 43, "a_z": 27, "aa": [34, 68], "aaaaaaaaaa": 65, "aaron": [51, 52], "ab": [45, 64], "abandon": 28, "abbei": 68, "abbrevi": [58, 59], "abc": [30, 64], "abcdefg": 52, "abcdefghijklmnopqrstuvwxyz": 30, "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz": [27, 30], "abcdefu": 68, "abcracadabra": 30, "abdelghani": 64, "aberr": 64, "abi": 64, "abil": [10, 28, 39, 45], "abl": [4, 11, 14, 22, 26, 29, 38, 42, 45, 46, 51, 52, 54, 58, 59, 60, 65, 66, 70, 75], "abort": [11, 28], "about": [5, 6, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 26, 28, 29, 38, 41, 42, 43, 44, 45, 50, 51, 52, 54, 55, 56, 58, 60, 61, 64, 65, 67, 68, 70, 74, 75], "abov": [3, 5, 6, 10, 14, 16, 23, 24, 26, 27, 28, 29, 30, 31, 37, 45, 46, 50, 52, 53, 56, 58, 59, 60, 62, 63, 65, 67, 68, 70, 74], "abracadabra": [30, 40], "abraham": 68, "absent": 30, "absente": 28, "absolut": [13, 16, 45], "absolute_error": [13, 16], "absurdum": 28, "abyssi": 64, "ac": [21, 22], "ac50e1f5290d": 65, "acart3r": 15, "acc": 28, "acceler": [7, 45], "accept": [2, 3, 5, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 27, 28, 29, 30, 44, 51, 52, 56, 62, 67, 73, 75], "access": [9, 11, 17, 18, 23, 29, 37, 38, 45, 49, 59, 63, 64, 67, 70], "accident": [45, 46, 50, 52], "accommod": [22, 38], "accompli": 64, "accomplish": [16, 37, 45, 62], "accord": [7, 28, 45], "accordingli": 27, "accordion": 49, "accordion_1": 60, "accordion_2": 60, "account": [21, 22, 28, 67, 70], "accur": [16, 45], "accuraci": [6, 8, 10, 15, 23, 29, 60], "achiev": 45, "aci": 64, "acini": 64, "acknowledg": 56, "acquir": [14, 56], "across": [0, 17, 18, 22, 41, 45, 60, 74], "act": 54, "action": [5, 28, 37, 41, 45, 46, 50, 51, 52, 75], "activ": [6, 17, 18, 28, 34, 36, 37, 39, 57, 58, 59, 67, 71], "activity_debug": 35, "activity_debugging_experi": 49, "actor": 36, "actorstoshow": 23, "actual": [11, 13, 14, 18, 26, 27, 28, 29, 42, 45, 46, 50, 51, 52, 61, 64, 67, 68, 70, 75], "ad": [7, 11, 26, 27, 28, 29, 30, 53, 54, 56, 61, 63, 70, 75], "ada": 75, "adam": [27, 34], "adapt": [14, 20, 45, 55], "add": [2, 3, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 23, 26, 27, 28, 29, 34, 38, 41, 45, 46, 50, 51, 52, 53, 54, 58, 59, 63, 64, 67, 70, 75], "add_newlin": 29, "add_stat": 6, "add_transit": 6, "adder": 54, "addfield": 29, "addit": [5, 7, 15, 16, 29, 30, 41, 45, 46, 51, 53, 58, 59, 63, 66, 67, 70, 75], "addition": [45, 70], "addrespons": 29, "address": [21, 22, 45, 54], "addtext": [29, 58, 59], "adel": 54, "adher": 67, "adi": 64, "adist": 25, "adjec": 5, "adject": [0, 56], "adjust": [13, 24], "adjusting_stim": 13, "adlai": 64, "adopt": 45, "adriana": [51, 54], "advanc": [0, 6, 45, 68], "advantag": [15, 19, 29, 37, 45, 46, 54], "adventur": 71, "adverb": 56, "advic": 67, "advis": [11, 45], "ae": [53, 70], "aeiou": [21, 22, 75], "af": 53, "affair": 22, "affect": [24, 28, 45, 70], "affili": [17, 18, 28], "afghani": 64, "afghanistanasia195228": 41, "afghanistanasia195730": 41, "afghanistanasia196231": 41, "afghanistanasia196734": 41, "afghanistanasia197236": 41, "afghanistanasia197738": 41, "afi": 64, "afraid": 45, "africa": 41, "african": 41, "after": [3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 27, 28, 29, 30, 31, 34, 45, 50, 51, 52, 56, 58, 59, 60, 64, 70, 75], "afterward": 56, "ag": [5, 17, 18, 34, 41, 47, 54, 68], "again": [3, 6, 11, 13, 15, 21, 22, 27, 45, 46, 51, 56, 58, 59, 74, 75], "against": [5, 45, 56, 73], "agassi": 64, "agenc": 64, "aggregated_data": 15, "agnelli": 64, "ago": [22, 28], "agouti": 64, "ah": 68, "ahead": [10, 27, 59, 67], "aim": [16, 50, 56], "ain": [56, 68], "air": [28, 46, 69], "air_temp": 69, "airbag": 45, "airplan": 49, "airport": 28, "ajami": 64, "aka": 31, "alarm": [13, 60, 68], "alcohol": 28, "alert": [60, 67], "alexand": 52, "alexei": 64, "alfa": 35, "algeria": 41, "algorithm": [11, 29, 42, 67], "ali": 64, "alia": [31, 58], "alibi": 64, "alic": 56, "alice_clean": 56, "alice_raw": 56, "alice_token": 56, "align": [23, 26], "alito": 28, "all": [5, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 34, 35, 38, 41, 42, 43, 45, 48, 50, 51, 54, 56, 58, 59, 60, 63, 64, 65, 66, 67, 68, 70, 74, 75], "all_com": 28, "all_comments_noun": 28, "all_comments_po": 28, "all_comments_token": 28, "all_dat": 31, "all_hot_submiss": 28, "all_hot_submissions_noun": 28, "all_hot_submissions_po": 28, "all_hot_submissions_token": 28, "all_hypernym": 56, "all_pic": 49, "all_subreddits_user_post": 28, "all_trial": 74, "alldat": 31, "alldata": 31, "allig": [49, 56], "allow": [5, 6, 9, 10, 11, 23, 25, 27, 28, 29, 30, 31, 35, 37, 38, 40, 41, 45, 46, 49, 50, 51, 52, 54, 58, 59, 62, 64, 70, 74, 75], "allowgui": [24, 25, 45], "allyson": 40, "alma": 54, "alma_mat": 54, "almost": [28, 45, 54, 65, 75], "along": [7, 11, 15, 22, 24, 26, 27, 28, 36, 45, 51, 67, 69], "alongsid": [17, 18, 27], "alpha": [25, 26, 46], "alphabet": [46, 51, 52], "alphanumer": [21, 22, 64], "alreadi": [5, 9, 12, 13, 18, 20, 22, 25, 27, 28, 31, 36, 37, 38, 41, 43, 45, 46, 49, 51, 52, 56, 59, 63, 67, 70, 74, 75], "also": [9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 22, 23, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 41, 45, 46, 50, 51, 52, 53, 54, 56, 58, 59, 60, 63, 64, 65, 67, 68, 70, 74, 75], "alt": 31, "alter": 45, "altern": [14, 17, 18, 25, 30, 37, 40, 75], "although": [27, 46, 52, 60, 63, 74, 75], "altitud": 45, "alumni": 64, "alveoli": 64, "alwai": [14, 17, 18, 29, 30, 34, 45, 46, 50, 52, 54, 75], "am": [28, 50, 56, 67, 70], "amalfi": 64, "amanda": 40, "amax": 25, "ambani": 64, "amber": 68, "ambigu": [30, 75], "amend": 28, "america": 28, "american": [22, 41, 64], "americanize3": 41, "ami": 64, "amico": 68, "amnesia": 28, "among": [28, 64], "amount": [30, 45, 75], "amphibi": 56, "amphibian": 56, "an": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 24, 25, 28, 30, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 49, 51, 53, 58, 59, 60, 61, 63, 64, 67, 68, 74, 75], "anaconda": 29, "anaconda3": [13, 30], "analys": [14, 17, 18, 58, 59, 67], "analysi": [0, 5, 13, 14, 16, 17, 28, 34, 67], "analyticsvidhya": 0, "analyz": [17, 18, 61, 67], "anc": [21, 22, 64], "anchor": 49, "ancient": 64, "andi": 40, "andrea": 52, "andrei": 64, "andrew": 40, "anecdot": 28, "anel": 40, "ang": 24, "angl": [13, 16, 29, 45], "angle_moving_degre": 45, "anglelist": 29, "angri": [23, 24, 36], "ani": [3, 7, 9, 11, 13, 14, 16, 18, 19, 20, 21, 22, 24, 27, 28, 29, 30, 31, 41, 42, 44, 45, 46, 50, 51, 52, 54, 56, 58, 59, 60, 61, 62, 64, 67, 68, 70, 74, 75], "anim": [44, 45, 46, 60, 63, 65], "animateit": 26, "ann": 56, "annot": 25, "anonym": 3, "anoth": [9, 13, 17, 18, 19, 24, 27, 28, 30, 37, 42, 43, 45, 46, 47, 50, 52, 54, 56, 58, 62, 63, 64, 67, 68, 70, 75], "another_fruit": 43, "another_num": 63, "answer": [12, 15, 16, 17, 18, 19, 27, 28, 39, 41, 56, 61, 63, 64, 67, 68, 74, 75], "ant": 49, "anterograd": 28, "anterograde_amnesia": 28, "anti": [28, 64], "anticip": 75, "antiretrovir": 64, "antoni": 64, "anxieti": 28, "anymor": [16, 51, 62], "anynum": 64, "anyon": [46, 54], "anyth": [7, 14, 17, 27, 29, 44, 45, 46, 52, 61, 64, 73, 74], "anytim": [37, 60], "anywai": [28, 75], "anywher": [52, 75], "apart": [26, 44, 45, 68], "api": [3, 27, 28, 29, 62, 64, 67, 68], "app": [28, 71], "appear": [3, 4, 6, 8, 23, 25, 30, 54, 56, 58, 59, 68, 75], "append": [8, 12, 23, 26, 28, 29, 35, 36, 38, 43, 45, 46, 48, 57, 65, 66, 74], "appl": [30, 43, 49, 50, 52, 58], "appleappl": 43, "appli": [26, 28, 29, 45, 52, 53, 54, 75], "applic": [27, 28, 45, 56, 58, 59, 71], "appopri": 75, "appreci": [17, 18], "approach": [45, 47, 49, 52, 56, 57, 64, 68, 75], "appropri": [7, 9, 11, 12, 13, 23, 26, 27, 30, 45, 50, 64, 67, 68, 70], "approprit": 15, "approv": 28, "approx": 8, "approxim": 19, "april": 41, "apropo": 31, "ar": [1, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 34, 35, 36, 37, 38, 39, 41, 43, 44, 45, 47, 49, 50, 52, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 74, 75], "arabi": 64, "arabia": 41, "arang": 6, "arbitrari": [14, 21, 22, 29, 38, 44, 45, 50, 60, 74, 75], "arbitrarili": 74, "arc": 67, "arc3": 25, "area": 50, "aren": [17, 18, 56, 75], "arg": [25, 30], "arg_1": 54, "arg_2": 54, "arg_3": 54, "arguabl": 45, "argument": [8, 9, 10, 11, 14, 17, 18, 21, 22, 26, 28, 29, 30, 31, 34, 37, 41, 42, 44, 45, 46, 51, 52, 56, 57], "arguments_new_class": 45, "arguments_parent_class": 45, "argumnt": 49, "ari": 64, "arithmet": 63, "arizona": 28, "arm": 49, "armani": 64, "armi": 28, "around": [4, 6, 7, 26, 27, 28, 29, 31, 43, 45, 49, 52, 58, 64, 68], "arrai": [13, 25, 29, 30, 45, 52, 63], "arrang": [16, 29, 41, 56], "arrow": [3, 14, 31, 37, 49, 52, 75], "arrowprop": 25, "arrowstyl": 25, "art": 1, "artemi": 28, "arthropod": 56, "arthur": 68, "artichok": 49, "articl": [13, 28, 30], "artifici": [4, 6], "artist": 68, "arundhati": 64, "asahi": 64, "asci": 64, "ascii": 64, "ascii_lett": 30, "ascii_lowercas": 30, "ascii_uppercas": 30, "ascrib": 60, "asd": 75, "ashkenazi": 64, "ashlei": 68, "ashtrai": 49, "asign": 2, "ask": [3, 5, 12, 14, 17, 18, 20, 22, 28, 38, 39, 45, 51, 56, 58, 59, 61, 63, 67, 70], "asker": 17, "asparagu": 49, "aspect": [1, 36, 45], "assembl": 56, "assert": [29, 40], "assertionerror": 40, "assign": [3, 7, 9, 15, 16, 21, 22, 27, 28, 29, 30, 38, 43, 45, 46, 47, 54, 56, 60, 65, 67, 74], "assignmentid": 27, "assignmentidfromparamstr": 27, "assignmentit": 27, "assisi": 64, "associ": [17, 18, 27, 45, 46, 60, 68, 70], "assum": [28, 29, 46, 47, 50, 56], "assur": [19, 46], "asterisk": [54, 75], "astrolgi": [17, 18], "astronom": 68, "astrosci": [17, 18], "atla": 40, "atmospheric_pressur": 56, "atof": 30, "atoi": 30, "atol": 30, "attach": [37, 45, 50, 70], "attack": 28, "attain": 39, "attemp": 52, "attempt": [13, 30, 45, 70], "attent": [45, 60, 64, 67], "attr": 68, "attribut": [7, 28, 29, 30, 45, 54], "attributeerror": [45, 54], "au": 28, "audi": 64, "audienc": 67, "audio": 49, "audiolib": [29, 58, 59], "aug": 28, "aulaqi": 64, "aunt": [56, 68], "aurora": 41, "austen": [5, 56], "australian": 52, "author": [5, 28, 68], "autodraw": 25, "automat": [11, 12, 28, 30, 42, 45, 56, 59, 68], "automaton": [4, 6], "avaialbl": 36, "avail": [5, 26, 28, 29, 36, 45, 46, 49, 60], "averag": [16, 17, 18, 29, 37, 41, 44, 53], "averaged_perceptron_tagg": 67, "avi": 64, "avocado": 43, "avoid": [7, 11, 15, 28, 37, 68, 73, 75], "awai": [13, 28, 45, 54, 56, 62, 68], "awar": [45, 75], "awk": 31, "awkward": 23, "ax": 49, "axessubplot": 56, "axi": [16, 67], "b": [7, 8, 9, 10, 13, 14, 17, 18, 21, 27, 30, 31, 34, 44, 50, 51, 52, 53, 54, 56, 62, 64, 65, 67, 68, 75], "b035952ec3f1": 75, "b61b6ba6a6b7": 36, "b_list": 43, "babi": 68, "back": [11, 22, 27, 28, 30, 31, 44, 45, 52, 54, 56, 58, 59, 60, 62, 75], "backbon": 45, "background": [11, 14, 26, 27, 58, 59], "backrefer": 64, "backslash": 74, "backstreet": 64, "backward": [35, 42], "bad": [14, 28, 68, 74, 75], "badli": 63, "badsbjcode_131": 64, "badsubjcode_133": 64, "badsubjcode_135": 64, "badubjcode_134": 64, "baggi": 41, "bai": 28, "balanc": 30, "ball": [30, 56], "ballot": 28, "bam": 68, "ban": 41, "banana": 52, "bananan": 52, "bangladesh": 41, "bank": 41, "bankaccount": 30, "bankruptci": [22, 64], "baptist": 64, "bar": [13, 15, 16, 17, 18], "bare": 54, "bart": 68, "bartlett": 64, "base": [5, 14, 17, 18, 23, 27, 28, 30, 34, 37, 45, 52, 56, 64, 65, 70, 71], "basebal": 60, "basement": 28, "basenam": [29, 49], "bash": [31, 59], "bash_histori": 31, "bash_profil": 58, "bashrc": 31, "basi": 45, "basic": [1, 5, 6, 10, 23, 27, 28, 29, 45, 49, 58, 59, 62, 63, 64, 68, 73, 75], "basic_load_fil": 49, "basubjcode_132": 64, "bat": 60, "batch": [27, 49, 52], "bathroom": 28, "batshit": 64, "bbox": 25, "bc": 64, "bc4d9312a8bc": 25, "bd": 53, "bdsubjcode_130": 64, "beagl": 52, "bear": [60, 62], "bear4": 60, "bearabl": 37, "beat": 75, "beau": 56, "beauti": [16, 45, 56, 61, 71, 75], "beautifulsoup": 68, "becam": [22, 28], "becaus": [5, 6, 7, 10, 11, 14, 15, 16, 17, 18, 19, 21, 22, 28, 29, 30, 35, 40, 43, 44, 45, 46, 49, 50, 51, 52, 54, 56, 58, 59, 62, 63, 68, 70, 74, 75], "becker": 40, "becki": 34, "becom": [3, 23, 28, 29, 30, 38, 45, 46, 52, 62, 63, 64, 73, 74], "been": [3, 9, 13, 17, 18, 22, 26, 28, 30, 41, 43, 45, 46, 56, 62, 75], "beep": 29, "beer": 64, "befor": [8, 9, 10, 11, 19, 21, 22, 23, 28, 30, 42, 44, 45, 46, 51, 54, 56, 58, 59, 61, 62, 63, 64, 67, 70, 75], "before1": 27, "beg": 56, "begin": [4, 5, 6, 10, 12, 13, 16, 17, 18, 21, 22, 23, 29, 30, 37, 45, 51, 52, 58, 59, 60, 63, 64, 67, 68, 70, 75], "beginn": [0, 45], "behav": [45, 75], "behavio": 46, "behavior": [27, 37, 45, 46, 51], "behind": [19, 28, 45, 58, 59, 67, 75], "being": [6, 8, 12, 15, 16, 17, 18, 23, 24, 34, 45, 51, 52, 56, 61, 63, 74, 75], "belief": [20, 55], "believ": [13, 17, 18, 28], "bell": [49, 68], "belong": 45, "below": [3, 6, 9, 13, 14, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 37, 40, 45, 46, 49, 50, 53, 56, 58, 59, 60, 62, 64, 65, 67, 70], "benefit": 54, "benjamin": 52, "bennet": 56, "berkelei": 54, "bern": 68, "berni": 22, "bernic": [51, 52], "best": [15, 27, 29, 31, 67, 70, 73], "bestest": 64, "better": [5, 11, 14, 15, 17, 18, 26, 29, 30, 37, 39, 45, 51, 52, 56, 64, 68, 75], "between": [5, 11, 13, 14, 15, 16, 17, 18, 20, 25, 27, 28, 29, 31, 41, 43, 45, 50, 52, 54, 55, 56, 60, 63, 64, 65, 67, 68, 70, 74], "beyond": [21, 22, 54, 56], "bf": 53, "bgr": 29, "bhpxy52f": 28, "bias": 16, "bibl": 56, "bicycl": 45, "biden": 28, "big": [18, 25, 28, 67, 68, 70], "bigger": 16, "bigram": [5, 56], "bigram_freq": 56, "bill": 68, "billi": [51, 54], "billion": 68, "bin": [31, 56], "binglei": 56, "bioscienc": 64, "bioterrorist": 64, "bird": [28, 45, 56], "bit": [3, 6, 11, 17, 18, 27, 28, 29, 30, 35, 39, 40, 42, 43, 46, 50, 52, 56, 58, 59, 62, 70, 75], "bittersweet": 64, "bittorr": 64, "black": [3, 6, 8, 14, 23, 24, 25, 26, 28, 29, 35, 36, 45, 49, 62, 68], "blackmail": 56, "blackout": 28, "blah": 75, "blak": 36, "blake": 56, "blank": [3, 54], "blast": 28, "blastocyst": 64, "blatant": 64, "bleep": [12, 36], "blew": 28, "block": [11, 12, 13, 15, 16, 27, 43, 45, 50, 52, 60, 63, 67], "block_num": 13, "blog": [0, 68, 71], "bloomington": 64, "blown": 14, "blue": [3, 6, 8, 9, 14, 26, 36, 54], "blue_circl": 62, "blueprint": 45, "blurrypicturesofdog": 28, "bmw": 35, "board": 56, "boat": 45, "bob": 68, "bodi": [28, 40, 45, 46, 51], "boi": 68, "bold": 68, "bolivia": 41, "bone": 54, "bonito": 68, "bonu": [14, 15, 17, 18, 20, 22, 55], "boo": 12, "book": [0, 5, 45, 54, 56, 64], "bool": [29, 63, 65], "boolean": [26, 43, 63], "boot": [68, 71], "border": 52, "bordercolor": 26, "bore": [18, 45], "bori": 68, "born": [22, 39, 67], "boss": 28, "bot": 28, "both": [10, 14, 15, 16, 26, 27, 28, 29, 30, 43, 45, 49, 52, 53, 56, 60, 63, 64, 67, 70, 75], "bother": [52, 74], "botswana": 41, "bottl": 64, "bottom": [7, 12, 13, 23, 25, 26, 27, 31, 58, 66], "bounc": [7, 30], "bouncingbal": 30, "bound": 45, "boundari": 21, "bourgh": 56, "bouvier": 68, "box": [4, 6, 9, 11, 12, 13, 14, 23, 27, 28, 47, 58, 59, 64], "boxdlg": [58, 59], "boxstyl": 25, "boyfriend": 68, "br": 27, "brace": [46, 63], "bracket": [46, 52], "brag": 28, "brain": [28, 43], "branch": [27, 67], "branchnam": 70, "brand": [35, 54], "bread": [34, 56], "break": [6, 12, 13, 17, 24, 28, 29, 60, 67, 68, 70, 73, 74, 75], "breed": [46, 52], "breviti": 49, "brew": 58, "brian": 54, "bride": 54, "brief": [3, 45, 52, 67], "briefli": 27, "bright": 68, "brightest": 64, "bring": [17, 45, 56, 70], "british": [5, 64], "broader": 56, "broadwai": 68, "broken": [15, 36, 60], "broom": [41, 58, 59, 67], "brown": [21, 22, 53, 56], "brows": 70, "browser": [27, 58, 59], "bruno": 68, "bryant": 56, "bs4": [68, 69], "btk": 64, "buffer": [3, 29, 31, 62], "bug": [51, 68, 73], "bui": 68, "build": [1, 7, 8, 14, 27, 45, 52, 56, 63, 71], "built": [10, 12, 13, 17, 18, 29, 30, 64], "builtin_function_or_method": 63, "bulgaria": 41, "bulk": [64, 68], "bullet": [51, 68], "bulletpoint": 68, "bunch": [14, 17, 18, 26, 27, 31, 37, 45, 54, 64, 70, 75], "bundl": 56, "bureau": 28, "bureaucraci": 64, "burgess": 56, "burundi": 41, "busi": 28, "busterbrown": 56, "but_a_jap": 28, "butait": 64, "butaprost": 64, "butter": [34, 56], "buttom": 29, "button": [6, 24, 25, 27, 28, 52, 64, 74], "buzz": [12, 36], "bypass": 31, "byte": 30, "c": [9, 10, 14, 17, 18, 30, 34, 44, 51, 52, 53, 54, 58, 59, 60, 64, 66, 68], "c_across": [17, 18], "c_fill": 68, "cach": 26, "caesar": [5, 56], "cag": 64, "cake": 60, "calcul": [11, 16, 19, 25, 28, 45, 56], "calculaterectangularcoordin": 25, "caleb": [37, 40], "calibr": 29, "california": 68, "call": [3, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 23, 25, 26, 27, 28, 29, 30, 31, 34, 35, 38, 45, 46, 48, 49, 51, 52, 54, 55, 56, 58, 59, 60, 62, 63, 65, 67, 68, 70, 74, 75], "calld": 16, "caller": 54, "came": [28, 56], "camelcas": 45, "camera": 29, "camp": [17, 18], "campaign": 28, "campesino": 64, "can": [4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 37, 38, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 70, 71, 73, 74, 75], "canal": 35, "cancel": 29, "candidaci": 64, "cannabi": 28, "cannot": [21, 22, 28, 43, 45, 75], "capabl": [11, 23, 45, 67, 68], "capac": 45, "capit": [5, 30, 45, 46, 52, 70, 75], "captur": [29, 64], "capturefromcam": 29, "capword": 30, "car": [19, 35, 45, 64], "card": 28, "cardiorespiratori": 64, "care": [23, 27, 29, 30, 31, 41, 45, 46, 50, 54, 63, 75], "career": [28, 45], "carefulli": [45, 67], "carl": 68, "carmen": 28, "carol": 52, "carolin": [51, 54], "carolina": 68, "carpentri": 30, "carri": [42, 50, 52, 56], "carrol": 56, "carter": 40, "carvedilol": 64, "case": [4, 7, 17, 21, 22, 24, 27, 30, 31, 34, 37, 41, 44, 45, 49, 50, 51, 52, 54, 63, 64, 66, 67, 70, 74], "case_when": 0, "cat": [23, 35, 37, 38, 44, 52, 56, 63, 64, 65, 74], "catch": [30, 67, 70, 74, 75], "categor": [36, 64], "categori": [4, 17, 18, 23, 36, 56, 60], "caterpillar": 56, "catherin": 56, "catheter": 64, "cattl": 52, "caus": [7, 13, 28, 31, 70, 75], "cavalri": 56, "caveat": [27, 30, 31], "cc": 64, "cc001": 25, "cc002": 25, "cc003": 25, "cc004": 25, "cc005": 25, "cc006": 25, "cc007": 25, "cc008": 25, "cc009": 25, "cc010": 25, "ccctcctttttcc": 66, "ccess": 27, "ccomplish": [], "cd": [31, 49, 53], "cde": 30, "cdef": 30, "cdmer": 59, "ce": 53, "cei": 64, "cell": [13, 35, 43, 45, 48, 52, 63, 65, 74, 75], "cellar": 30, "cement": [13, 17, 18, 45], "center": [3, 26, 28, 30], "central": [4, 6, 41, 70], "centuri": 64, "certain": [3, 17, 18, 26, 27, 39, 42, 45, 50, 62, 63, 64, 74], "certainli": [30, 75], "cf": [23, 53], "chain": 51, "chair": 66, "challeng": [35, 37, 42, 67], "chanc": [7, 44, 45, 58, 59, 60, 62], "chang": [2, 3, 4, 5, 6, 7, 14, 16, 17, 18, 21, 22, 26, 27, 29, 30, 40, 43, 45, 46, 50, 51, 52, 64, 67, 73], "change_spe": 45, "changeabl": 14, "channel": [26, 58, 59, 60], "chao": 28, "chapter": 56, "char": [30, 68], "charact": [15, 17, 18, 21, 22, 25, 27, 30, 37, 38, 52, 64, 68, 75], "character": [45, 64], "characterist": [17, 18, 45], "charli": 34, "chart": 68, "cheat": [27, 68], "check": [0, 3, 4, 5, 7, 12, 13, 17, 18, 21, 22, 23, 28, 29, 30, 34, 35, 41, 43, 44, 47, 49, 53, 58, 59, 62, 63, 64, 67, 68, 74], "check_unused_arg": 30, "checker": 35, "checkmousepress": 6, "checkout": [67, 70], "checktim": 62, "chen": 40, "cherri": 40, "chess": 54, "chesterton": 56, "chet": 68, "chevrolet": 35, "chew": 56, "child": [18, 45], "children": [18, 56], "chile": 41, "china": 41, "chines": 25, "chirpi": 68, "chloe": 46, "chloramphenicol": 64, "chocol": 50, "choic": [8, 14, 19, 23, 30, 36, 37, 44, 45, 66, 74], "choos": [0, 16, 17, 18, 20, 28, 29, 37, 45, 55, 56, 58, 59, 66], "chordat": 56, "chosen": [23, 30, 36, 74], "chr": 41, "chrisdh79": 28, "christma": 68, "chunk": [3, 15, 16, 75], "church": 28, "cie": 64, "circl": [6, 7, 14, 25, 29, 68], "circular": 30, "circularlist": 30, "citi": [54, 68], "civil": [28, 41], "claim": 56, "clang": [58, 59], "clarifi": 46, "clariti": [45, 46], "clash": 28, "class": [1, 3, 4, 6, 7, 12, 13, 17, 21, 23, 26, 27, 28, 34, 40, 44, 46, 49, 52, 54, 58, 59, 62, 63, 68, 70, 71, 75], "classifi": 56, "classlist": 34, "classnam": 45, "classroom": [67, 70], "claus": [50, 51, 75], "clean": [1, 34, 45, 46, 54, 56, 70, 75], "cleaner": [12, 45, 51], "cleanli": 50, "clear": [30, 45, 46, 52, 75], "clearer": [45, 75], "clearest": [15, 17, 18], "clearev": 29, "clearli": [15, 16, 17, 18, 46, 54], "click": [4, 6, 7, 12, 16, 23, 24, 25, 27, 28, 31, 45, 52, 58, 59, 64], "click_i": 12, "click_x": 12, "clicked_imag": 12, "clickreset": 6, "client_id": 28, "client_secret": 28, "clipboard": [31, 41], "clippath": 26, "clmtcau": [20, 55], "clock": [13, 24, 29], "clockwis": 3, "clone": [2, 3, 36, 49, 60, 62, 67, 70], "close": [3, 8, 11, 14, 28, 29, 30, 38, 39, 45, 58, 59, 62, 68, 74], "clutter": 45, "cmder": 31, "cnn": [28, 68], "co": [29, 45], "coalesc": 0, "cockroach": 46, "code": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 28, 30, 34, 35, 36, 37, 38, 39, 42, 43, 45, 46, 49, 50, 51, 52, 54, 60, 61, 62, 63, 64, 65, 67, 69, 70, 73, 74], "code1": 27, "code_data": 9, "codebas": [8, 45, 68], "codebook": [17, 18], "coder": 26, "codi": [51, 52], "coeffici": [41, 64], "coerc": 56, "cog": 64, "cognit": 1, "cogniz": 63, "col": [9, 12, 13], "col_nam": [29, 34], "cold": 68, "collabor": 45, "collect": [9, 11, 13, 23, 27, 30, 46, 52, 54, 56, 61, 75], "colleg": 17, "colli": 52, "collin": 56, "colloc": [0, 5], "collocation_list": 56, "colnam": 29, "colon": 51, "colonel": 56, "color": [3, 4, 6, 8, 9, 11, 13, 14, 23, 24, 25, 26, 28, 29, 30, 35, 36, 37, 45, 49, 58, 59, 62, 64], "color_tri": 62, "colorado": 28, "colorlett": 6, "colorsnshapes888": 28, "colorspac": 26, "colou": 64, "colour": [28, 64], "column": [0, 6, 9, 11, 12, 13, 14, 15, 16, 23, 24, 25, 26, 29, 30, 37, 56, 60], "com": [0, 11, 21, 22, 28, 29, 30, 40, 52, 64, 68, 69], "combin": [6, 16, 17, 18, 23, 41, 46, 49, 50, 54, 56, 63, 70], "come": [9, 10, 12, 13, 15, 17, 18, 25, 26, 29, 38, 39, 41, 43, 44, 45, 46, 51, 52, 57, 60, 63, 67, 73, 75], "comfort": [11, 45, 52, 62], "comma": [9, 12, 13, 15, 23, 52], "command": [11, 15, 26, 28, 29, 46, 52, 58, 59, 63, 67, 70], "comment": [9, 45, 67, 70], "comment_karma": 28, "commit": [3, 15, 16, 67], "common": [5, 12, 16, 22, 29, 30, 34, 35, 37, 45, 46, 54, 56, 63, 64, 68, 75], "commonli": [45, 54], "commun": [22, 27, 75], "compact": [23, 30, 50, 53, 62, 70, 74], "compactli": 67, "compani": [22, 28, 54, 56], "compar": [0, 10, 11, 23, 29, 41, 45, 56, 65], "comparison": [15, 50], "compartment": 64, "compel": [17, 18], "compet": [52, 64], "compil": [27, 58, 59, 64, 67], "complement": 64, "complet": [2, 3, 7, 9, 10, 17, 18, 21, 30, 38, 40, 43, 45, 52, 53, 67, 70, 75], "complex": [26, 27, 30, 43, 45, 46, 51, 56, 62, 64, 69, 73, 75], "complic": [31, 45, 46, 62, 64, 70, 73, 75], "compliment": 51, "compon": [17, 18, 45], "compos": [26, 28, 30, 70, 75], "composit": [26, 56], "compound": [17, 18, 20, 22, 55], "comprehens": [29, 37, 44, 45, 64, 67], "compress": 26, "comput": [1, 5, 8, 11, 15, 16, 30, 35, 38, 40, 45, 56, 57, 60, 63, 64, 67, 69, 70, 75], "computation": 29, "compute_accuraci": 12, "compute_factori": 35, "con": 30, "concaten": [14, 15, 16, 63], "concentr": 28, "concept": [45, 46, 52, 54, 62], "conceptu": [29, 30], "concern": [28, 64], "concierg": 64, "concis": 45, "conclud": 45, "concord": 0, "conda": [58, 59], "condit": [9, 10, 11, 13, 15, 16, 23, 27, 28, 30, 34, 37, 47, 50, 52, 60, 74], "condrift": [17, 18], "conduct": 1, "confid": [1, 45, 51], "configur": [26, 27, 71], "confirm": [27, 56], "conflict": [45, 58, 59, 70], "conform": [22, 64], "confus": [11, 30, 45, 49, 53, 67, 75], "confusingli": 17, "congo": 41, "congratul": 45, "congruenc": [9, 15], "congruent": [9, 11, 15, 52, 74], "connect": [11, 46], "connectionstyl": 25, "consci": [20, 55], "conscienc": 64, "conscienti": 64, "consecut": [21, 22], "consequ": 60, "conserv": [17, 18, 28], "consid": [30, 45, 46, 50, 52, 54, 56, 74, 75], "consider": 67, "consist": [7, 30, 39, 45, 46, 60, 68, 75], "consol": [11, 13, 29, 36], "conson": 37, "conspiraci": 64, "constant": [7, 27], "constitu": 64, "constitut": 28, "construct": [30, 63], "constructor": 45, "consult": [17, 18], "consum": 56, "conta": 9, "contact": [26, 28], "contain": [5, 7, 9, 10, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 26, 27, 29, 30, 31, 34, 35, 37, 40, 41, 43, 45, 46, 51, 52, 53, 56, 60, 61, 64, 67, 70], "contempl": 56, "content": [24, 27, 28, 29, 30, 31, 43, 46, 51, 62, 68], "context": [1, 11, 45, 46, 52, 56, 63], "conting": [62, 64], "continu": [3, 6, 7, 12, 15, 16, 17, 18, 30, 31, 45, 51, 59, 74], "continuum": 24, "continuumcod": 24, "contract": 56, "contrast": 29, "control": [12, 13, 20, 27, 28, 30, 60, 62, 70], "convei": 67, "conveni": 52, "convent": [45, 46, 52, 63, 70, 75], "convention": 9, "converg": 29, "convers": [17, 18, 30, 41, 52, 75], "convert": [14, 22, 30, 34, 37, 45, 63, 75], "convert_field": 30, "convert_gend": 41, "convert_score_to_grad": 34, "cook": 68, "cooki": 50, "cool": [30, 52], "cooper": 16, "coord": [12, 25, 29], "coordin": [6, 12, 45], "coordinatetool": 29, "coording": 45, "copi": [3, 7, 26, 27, 46, 49, 58, 59, 62], "copydict": 29, "copyfil": 30, "copyright": [56, 58, 59], "cor": [16, 41], "core": [3, 6, 8, 11, 13, 14, 23, 24, 25, 29, 34, 36, 45, 51, 62], "cork": 46, "corner": [7, 58, 59, 64], "cornerston": 45, "coronaviru": 28, "corpor": [22, 64], "corpora": [5, 56], "corpu": [5, 22, 56, 64], "correct": [5, 6, 8, 11, 12, 13, 14, 15, 17, 18, 19, 22, 23, 27, 29, 36, 45, 46, 60, 62, 67, 70], "correct_respons": 47, "correctfeedback": [23, 29, 36], "correctli": [5, 8, 11, 12, 13, 23, 36, 40, 45, 51, 60, 62, 65, 66, 73], "correctrespons": 47, "correl": [16, 17, 18], "correspond": [9, 12, 14, 17, 18, 23, 29, 37, 40, 45, 46, 50, 51, 64], "corrupt": 38, "corvett": 35, "cosmic": 68, "cosplay": 28, "cost": 15, "cote": 41, "cotton": 28, "could": [26, 29, 41, 44, 45, 46, 47, 50, 52, 54, 56, 58, 59, 61, 63, 64, 75], "couldn": [11, 56], "count": [0, 27, 30, 40, 52, 53, 56, 63, 74, 75], "count_over9": [21, 22, 64], "count_vowels_in_str": 40, "counter": [19, 30, 38, 64], "counterbalanc": [47, 60], "counterclockwis": 3, "counterterror": 64, "counterterrorist": 64, "counti": 28, "countri": [20, 41, 54, 55, 68], "countrycontinentyearlifeexppopgdppercap": 41, "countryestim": 41, "countryyearlifeexp": 41, "coupl": [27, 43, 45, 67, 69, 75], "cours": [1, 7, 12, 17, 29, 30, 40, 41, 46, 50, 58, 59, 60, 67, 68, 75], "court": 28, "cousin": 68, "cover": [1, 24, 30, 45, 46, 58, 66, 75], "covid": 28, "cow": [44, 74], "cp": 31, "crack": 56, "craft": [17, 18, 45], "crappyfilenam": 31, "crash": [11, 14, 22, 30, 45, 67], "cream": 50, "creat": [3, 6, 8, 9, 10, 11, 14, 15, 16, 17, 18, 20, 26, 27, 28, 31, 34, 35, 41, 44, 45, 46, 47, 49, 51, 54, 55, 56, 60, 62, 64, 67, 68, 70, 74, 75], "created_utc": 28, "creation": [34, 45], "creativ": 68, "credit": [5, 17, 18, 58, 59], "creep": 73, "crew": 45, "cri": 56, "crisp": 50, "criteria": 49, "critic": [17, 18, 45, 46], "critter": 28, "crocodil": 56, "crocodilian_reptil": 56, "crosbi": 40, "cross": [8, 23, 64, 68, 74], "crucial": 45, "csv": [9, 12, 13, 15, 16, 20, 23, 24, 25, 29, 31, 38, 40, 41, 55, 60, 61], "ctrl": [29, 31, 59], "cue": [5, 74], "cumbersom": [30, 62, 63], "cur_angl": 45, "cur_angle_to_devi": 45, "cur_circl": 45, "cur_color": 11, "cur_fil": 49, "cur_imag": 52, "cur_num": 63, "cur_orient": 11, "cur_stim": 8, "cur_submiss": 28, "cur_subreddit": 28, "cur_synset": 56, "cur_trial": [11, 29, 75], "cur_trial_typ": 11, "cur_vowel": 35, "cur_word": [11, 37], "curangl": 29, "curaspect": 36, "curcol": 25, "curcu": 74, "curextens": 29, "curfil": 29, "curiou": [13, 50, 74], "curit": 36, "curlett": 6, "curli": [46, 63], "curobj": 25, "curpic": 25, "curpositiontyp": 23, "currenc": 64, "current": [4, 6, 7, 11, 12, 13, 23, 26, 29, 30, 31, 45, 46, 49, 50, 51, 52, 60, 62, 70, 74], "current_ag": 51, "current_block_num": 12, "current_color": 62, "current_nam": 51, "current_numb": 51, "current_st": 6, "currentcondit": 68, "curresp": 66, "currow": 25, "cursor": [29, 31], "cursubj": 74, "curtarget": 74, "curtrial": [23, 24, 29, 36, 60, 75], "curv": [17, 18], "curword": 64, "custom": [41, 45, 67], "cut": 31, "cv": 29, "cycl": [8, 31, 62], "cygwin": 31, "cyru": 68, "czech": 41, "d": [12, 13, 14, 18, 26, 27, 28, 29, 30, 31, 34, 41, 44, 45, 46, 51, 53, 54, 56, 64, 66, 68, 70], "dai": [28, 29, 56, 68, 75], "dali": 30, "dalia": 52, "damn": 68, "danc": 56, "daniel": 34, "darci": 56, "dare": 56, "darker": 28, "darlow": 27, "darwin": [58, 59], "dash": [21, 22], "dat": [15, 16, 23, 30], "data": [0, 1, 5, 6, 9, 11, 12, 13, 14, 17, 18, 20, 21, 22, 23, 25, 27, 28, 29, 30, 37, 38, 39, 41, 45, 49, 52, 54, 55, 56, 63, 64, 67, 68, 71], "data_fil": 29, "data_for_bonu": 5, "data_format_test": 23, "databas": [27, 46], "datafil": 30, "datafram": [11, 15, 16, 17, 18, 24, 34, 67], "dataset": [18, 22, 41, 61], "datastructur": 30, "datastyp": 45, "datatyp": [26, 45], "date": [16, 31, 54, 56, 67], "datetim": 28, "daughter": 56, "daunt": 45, "db": 29, "dbl": [15, 41], "de": [56, 68], "dead": 28, "deadlin": 70, "deal": [12, 29, 40, 43, 56, 68, 73], "dear": 56, "death": 28, "debt": 28, "debug": [1, 26, 45, 52, 63, 67, 70, 75], "debugthis2": 23, "debunk": 28, "decad": 22, "decid": [11, 45, 51, 52, 74], "decim": [30, 75], "deck": 28, "declar": 63, "declin": 18, "decod": [11, 56], "decor": 26, "decreas": [3, 41, 46, 52, 56, 63], "dedic": 45, "deep": [37, 46], "deep_thought_dict": 37, "deeper": [28, 45, 46], "deer": 28, "def": [6, 9, 10, 12, 19, 23, 24, 29, 30, 34, 35, 36, 37, 40, 43, 44, 45, 46, 48, 49, 51, 54, 56, 57, 58, 59, 64, 74], "default": [6, 7, 9, 13, 15, 27, 29, 30, 31, 34, 45, 46, 51, 52, 56, 58, 59, 70, 75], "defenc": 28, "defend": 73, "defici": 64, "defin": [3, 5, 6, 8, 9, 20, 27, 30, 35, 40, 41, 43, 44, 45, 51, 54, 55, 57, 62, 63, 65, 75], "definit": [30, 35, 45, 46, 51, 56], "deg": 3, "degre": [3, 6, 13, 17, 18, 20, 55], "degreesperitem": 6, "dehaen": 26, "del": [46, 52], "delai": [6, 8, 12, 26], "deleg": 26, "delet": [30, 46, 64], "delicaci": 64, "delim": 31, "delimit": [15, 16, 25, 30, 31], "delta": 24, "delta_spe": 45, "delv": 45, "dem": [28, 41], "demarc": 64, "dement": 28, "demo": [61, 67, 68], "democraci": 64, "democrat": [20, 28, 55], "demograph": [17, 18, 29, 41], "demonstr": [8, 11, 29, 34, 35, 37, 45, 46, 54], "deni": 27, "denmark": 41, "denni": 54, "dens": 75, "dental": 28, "depend": [11, 12, 13, 23, 25, 30, 37, 43, 45, 46, 56, 58, 59, 64, 67, 74, 75], "deposit": 30, "depth": [26, 30, 56], "deriv": 45, "descend": 7, "describ": [46, 54, 67], "describe_person": 54, "descript": [17, 18, 28, 30, 54, 60, 75], "descriptor": 30, "desia": 52, "design": [1, 13, 27, 28, 45, 52, 60, 61, 63, 67, 74, 75], "designd": 35, "desir": [16, 45, 64, 74], "despit": 52, "despu": 68, "dessert": 50, "destin": 26, "destini": 40, "detail": [27, 31, 43, 45, 51, 58, 59, 75], "detect": [11, 14, 60], "determin": [6, 12, 13, 15, 30, 45, 60, 64, 74], "devast": 28, "develop": [1, 10, 15, 16, 28, 45, 51, 59, 75], "development_resourc": 75, "devour": 68, "df": 34, "di": [28, 54], "diagon": 16, "diapsid": 56, "dicho": 0, "dict": [25, 29, 49, 66], "dict_for_sort": 46, "dict_item": 46, "dictat": 75, "dictionari": [9, 11, 14, 23, 29, 30, 34, 35, 43, 45, 49, 54, 56, 67, 71], "dictionary_nam": 46, "dictonari": [45, 46], "did": [5, 7, 13, 18, 23, 26, 27, 43, 56, 58, 59, 67, 70], "didn": [28, 39, 40, 51, 56, 67], "didnt": 28, "die": 28, "diff": [13, 23, 74], "diff_pair": 74, "diff_trial": 74, "differ": [8, 12, 13, 15, 16, 17, 18, 20, 23, 26, 27, 28, 30, 35, 37, 41, 43, 44, 45, 50, 51, 52, 54, 55, 56, 57, 58, 60, 63, 65, 67, 68, 69, 70, 74, 75], "differenti": [28, 45], "difficult": [3, 18, 21, 22, 45, 75], "digit": [22, 24, 30, 64], "dimens": [12, 17, 18, 24, 26, 29], "dimension": [34, 45, 71], "dimmer": 45, "dinosaur": 56, "dip": 1, "direct": [13, 17, 24, 26, 31, 45, 67], "direction": 17, "directli": [27, 29, 45, 50], "director": 64, "directori": [5, 9, 12, 13, 15, 16, 23, 26, 27, 29, 45, 60, 70], "dirt": 68, "disappear": [7, 8, 29, 52], "disco": 68, "disconnect": 11, "discov": [17, 18], "discoveri": 68, "discrep": [18, 28, 29, 64], "discuss": [15, 17, 28, 30, 52, 61, 63, 67, 70], "disgr": 56, "disjunct": 64, "dispar": 28, "dispersion_plot": 56, "displai": [3, 6, 10, 13, 14, 16, 23, 24, 25, 27, 29, 36, 45, 46, 49, 51, 52, 54, 56, 58, 59, 60, 61, 62, 68, 75], "display": 23, "display_nam": 28, "displayed_str": [13, 16], "dispos": 26, "disqualifi": 27, "disrupt": [21, 22, 68], "dissimilar": 25, "dist": 25, "distanc": [7, 25, 45], "distancei": 25, "distancex": 25, "distinct": [29, 30, 43, 45], "distort": 26, "distractor": 23, "distractor1actor": 23, "distractor2actor": 23, "distractorcategori": 23, "distractoremotion1": 23, "distractoremotion2": 23, "distractorimage1": 23, "distractorimage2": 23, "distractorposit": 23, "distribut": [19, 23, 74], "district": 28, "dither": 26, "ditto": 30, "divers": 75, "divid": [26, 75], "divis": [30, 75], "divorc": [17, 18], "dlg": [29, 47, 58, 59], "dlgfromdict": [29, 47], "do": [1, 3, 4, 5, 6, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 21, 23, 24, 25, 26, 27, 28, 30, 35, 37, 38, 39, 40, 41, 42, 44, 45, 46, 47, 50, 51, 53, 54, 56, 58, 59, 60, 61, 63, 64, 66, 67, 68, 73, 74, 75], "do_adjust": 13, "doc": [24, 29, 30], "docstr": [9, 67], "document": [9, 27, 28, 31, 45, 58, 59, 67, 70, 75], "dod": 35, "dodg": 35, "doe": [3, 6, 9, 11, 17, 18, 20, 22, 27, 28, 29, 30, 40, 41, 45, 46, 49, 50, 51, 52, 54, 55, 56, 62, 63, 64, 65, 70, 75], "doesn": [17, 26, 28, 30, 42, 45, 46, 51, 56, 58, 59, 63, 74, 75], "dog": [28, 29, 35, 37, 38, 44, 46, 49, 50, 52, 53, 56, 63, 64, 65, 74], "dogs_pres": 50, "dogs_we_know": 50, "doin": 68, "dollar": 64, "dolphin": 74, "domain": [21, 22, 64], "domin": 56, "don": [3, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 21, 22, 26, 27, 28, 29, 30, 34, 37, 38, 45, 46, 50, 51, 52, 53, 54, 56, 58, 59, 60, 63, 64, 65, 67, 68, 70, 75], "done": [11, 12, 20, 24, 25, 29, 30, 31, 38, 42, 45, 50, 51, 70, 75], "donetext": 25, "donnelli": 40, "dont": [28, 67], "doomsdai": 28, "door": 19, "doorknob": 49, "doorwai": 27, "dormous": 56, "dot": [21, 22, 45, 68, 70, 75], "doubl": [10, 23, 28, 45, 58, 59], "down": [4, 6, 7, 9, 13, 14, 15, 17, 24, 29, 31, 36, 37, 45, 56, 63, 70], "download": [17, 18, 56, 58, 67, 68], "downvot": 28, "downward": [7, 45], "dplyr": [17, 18, 39, 41], "dr": 68, "dramat": [20, 55], "drastic": 56, "drat": [17, 18], "draw": [3, 6, 8, 14, 23, 24, 25, 26, 29, 36, 45, 49, 62], "draw_ellips": 26, "drawn": [3, 25, 62, 74], "drawstim": 6, "drew": [52, 62], "drive": [45, 56, 58, 59], "drivewai": 28, "droodl": 60, "drop": 9, "dropbox": [25, 54], "dropdown": 29, "drug": 28, "drunk": 28, "dst": 30, "dt": 64, "dtype": 34, "dual": 71, "duchess": 56, "duck": 49, "due": [16, 27, 67, 70], "dunno": 28, "duplic": [35, 45, 58], "duplicated_list": 35, "durat": 29, "dure": [18, 28, 56, 60, 70, 75], "dutch": 75, "dynam": [9, 30, 37, 45, 46, 63], "e": [0, 1, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 26, 27, 30, 35, 37, 38, 40, 41, 42, 43, 44, 46, 47, 49, 50, 52, 53, 54, 56, 57, 58, 60, 62, 63, 64, 66, 68, 70, 74, 75], "e0_1": 2, "e0_2": 2, "e3_4_challeng": 9, "each": [2, 3, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17, 18, 22, 23, 26, 27, 29, 30, 31, 34, 35, 37, 39, 40, 43, 45, 46, 50, 51, 53, 54, 56, 57, 60, 62, 63, 64, 67, 74], "eaier": 28, "earanc": 56, "earli": [28, 67], "earlier": [7, 17, 18, 51, 54, 58, 59, 70], "earliest": 37, "earnest": 56, "earth": [7, 56, 68], "earthquak": 71, "earthsun": [17, 18], "eas": 74, "easi": [15, 25, 27, 29, 30, 31, 41, 42, 44, 45, 46, 49, 50, 52, 58, 59, 68, 70, 74, 75], "easier": [8, 16, 27, 36, 44, 45, 46, 51, 52, 75], "easiest": [29, 30, 74], "easili": [14, 27, 29, 40, 45, 50, 52, 59, 62, 64, 70, 75], "eat": 56, "ec_101": 23, "ec_101_trial": 23, "echo": 27, "econom": [22, 28], "ecuador": 41, "ed": [30, 56], "edg": [21, 22, 56], "edgeworth": 56, "edh": 28, "edinburgh": [21, 22], "edit": [2, 3, 7, 23, 27, 58, 59, 62, 64, 70], "editor": [31, 45, 58, 59, 64], "edu": [27, 64, 69], "ee62d7991d84": 65, "efecto": 68, "effbot": 30, "effect": [10, 11, 15, 17, 18, 20, 28, 39, 43, 45, 49, 51, 53, 56, 67], "efficaci": [10, 64], "effici": [5, 27, 35, 45, 50, 51, 64, 75], "effort": [45, 51, 54], "eger": 52, "egg": 30, "egypt": 41, "ehmatth": 75, "ei": [45, 64], "either": [10, 11, 30, 50, 51, 52, 56, 58, 59, 62, 64, 70, 75], "el": 41, "elect": 28, "electron": [17, 18], "eleg": [29, 45, 47, 75], "element": [14, 27, 29, 30, 35, 37, 38, 40, 44, 46, 53, 62, 66, 75], "eleph": [44, 60], "elicit": 13, "elif": [13, 23, 24, 29, 37, 46, 48, 51, 57, 63, 65], "elimin": [29, 58, 59, 64], "eliza": 68, "elizabeth": 56, "ellips": 26, "elment": 44, "els": [6, 11, 23, 24, 27, 28, 29, 30, 31, 35, 36, 37, 46, 47, 48, 51, 52, 54, 56, 57, 60, 61, 63, 65, 70, 73, 74], "elsewher": 28, "elt": 30, "email": [64, 67], "emailregexgroup": 64, "emb": 53, "embed": [25, 27, 29, 53], "embedding_": 25, "emerg": 64, "emili": 34, "emma": [5, 52, 56], "emot": [23, 24], "emotionchosen": 23, "emotionmorphtext": 24, "emotionprompt": [23, 36], "empathy1": [17, 18], "empathy2": [17, 18], "emphas": 45, "employ": [17, 18], "employe": 28, "empow": 45, "empti": [21, 25, 29, 45, 46, 50, 52, 54, 75], "en": [0, 28, 68], "enabl": [11, 45, 64], "encapsul": 45, "encas": 63, "encod": [21, 22, 64], "encount": [45, 54, 75], "encourag": [15, 16, 67], "end": [4, 9, 17, 18, 21, 22, 25, 26, 27, 28, 29, 30, 35, 37, 38, 42, 45, 51, 54, 56, 60, 61, 63, 64, 67, 68, 70], "end_stat": 6, "endian": 26, "endswith": 56, "enemi": [7, 45, 68], "energi": [64, 68], "enforc": 26, "engin": [1, 39, 45], "english": [56, 64, 75], "enhanc": 45, "enlighten": 45, "enorm": 68, "enough": [17, 18, 28, 30, 45, 63, 75], "enron": 22, "enronemail": 22, "enronemail_redacted_teamnam": 22, "ensur": [9, 30, 44, 45, 49, 67, 70, 74], "enter": [3, 9, 14, 27, 29, 39, 47, 56, 58, 59, 62, 64], "entertain": [], "entir": [17, 18, 45, 46, 52, 64, 75], "entiti": [45, 56], "entri": [29, 46, 56], "entur": 10, "enumer": [6, 28, 29, 35, 45, 48, 57, 65, 66, 68], "env": [13, 30], "environ": [1, 11, 16, 28, 42, 59, 67, 70], "equal": [13, 23, 27, 29, 46, 47, 49, 63, 74], "equat": 7, "equilateraltriangl": 26, "equilateraltriangle_": 26, "equilateraltriangle_0": 26, "equilateraltriangle_1": 26, "equilateraltriangle_crop": 26, "equip": 45, "equival": [13, 17, 18, 26, 29, 53, 63], "er": 56, "eric": [46, 50, 51, 75], "erik": 68, "erm": 50, "error": [11, 12, 13, 14, 16, 23, 30, 36, 44, 49, 50, 54, 56, 58, 59, 62, 63, 64, 65, 67, 70, 75], "errordlg": 29, "errorstatisticp": 41, "esc": 31, "escap": [30, 31, 64, 75], "especi": [17, 18, 23, 29, 41, 43, 45, 56, 62, 68, 74, 75], "essai": 56, "essenc": [45, 68], "essenti": 45, "establish": [45, 75], "estim": [16, 41, 74], "etc": [3, 6, 9, 10, 14, 26, 29, 30, 34, 35, 36, 37, 38, 43, 45, 56, 60, 64, 67], "euclidean": 25, "evalu": [26, 29, 50, 63], "evan": 40, "even": [21, 22, 28, 45, 46, 50, 51, 52, 54, 56, 64, 67, 74, 75], "evenli": 28, "event": [3, 4, 6, 8, 13, 14, 17, 18, 23, 24, 25, 29, 36, 45, 47, 62, 68], "eventu": [27, 45], "ever": [28, 46, 50, 52, 75], "everi": [6, 7, 8, 9, 11, 19, 25, 28, 29, 30, 31, 42, 44, 45, 50, 51, 52, 60, 64, 65, 70, 73, 74, 75], "everth": 54, "everyon": [14, 23, 28, 45, 50, 52, 54, 75], "everyth": [26, 34, 45, 52, 54, 57, 58, 59, 62, 74, 75], "evid": [28, 45], "evolv": [17, 18, 45], "evolved2": [17, 18], "ex": 59, "exact": [10, 13, 37, 45, 46, 56, 60, 74, 75], "exactli": [12, 13, 14, 29, 45, 46, 51, 52, 54, 62, 63, 64, 74, 75], "examin": [10, 20, 56, 60, 68], "exampl": [0, 4, 5, 6, 9, 11, 13, 14, 17, 18, 19, 21, 22, 24, 27, 29, 30, 31, 34, 35, 37, 40, 41, 43, 44, 46, 52, 53, 54, 56, 60, 62, 63, 64, 67, 69, 70, 71, 74, 75], "example_funct": 54, "excel": [30, 34, 74], "except": [9, 12, 29, 35, 40, 49, 56, 60, 64, 67, 71, 73, 74], "excess": 28, "excit": [18, 45], "exclud": [16, 27, 31, 64, 74], "exclus": 45, "excurs": [], "exec": [27, 31], "exectur": 30, "execut": [27, 29, 31, 34, 45, 47, 50, 51, 58, 59, 62, 63, 67, 74], "exemplar": 60, "exemplifi": 45, "exercis": [0, 4, 6, 29, 30, 35, 37, 38, 45, 47, 55, 61, 67, 69, 70], "exercise5": 13, "exercise_": 70, "exercise_0": 70, "exercise_0_1": 70, "exercise_11": 7, "exercise_1_": 70, "exercise_1_1": [3, 70], "exercise_1_2": [3, 70], "exercise_1_3": 3, "exercise_2_3": 70, "exercise_3": 11, "exercise_4": 67, "exercise_4_collect_data": 67, "exercise_5_se": 12, "exercise_5_sound": 12, "exercise_6": [15, 16], "exercise_6_don": [15, 16], "exist": [9, 12, 13, 28, 29, 30, 31, 38, 45, 46, 49, 61], "exit": [3, 6, 29, 30, 31, 45, 58, 59, 62, 63], "exp": 6, "exp_vers": 29, "expand": [14, 26, 45, 46], "expandtab": 30, "expect": [10, 13, 34, 41, 43, 45, 49, 52, 54, 74, 75], "experi": [1, 8, 9, 10, 11, 12, 14, 16, 23, 26, 28, 29, 30, 49, 59, 60, 62, 67, 74], "experienc": [28, 64], "experiment": [1, 6, 10, 23, 34, 45, 74], "experiment_code_for_refer": 29, "experiments1": 27, "expert": 12, "explain": [5, 9, 16, 22, 61, 67, 75], "explan": [5, 29, 43], "explanatori": 67, "explicit": [37, 52, 75], "explicitli": [25, 29, 37, 38, 45, 52, 64, 75], "explor": [31, 45, 67, 68], "explos": 68, "expon": 75, "exponenti": 7, "expos": 23, "express": [30, 36, 53, 67, 75], "exptim": 24, "ext": 22, "extend": [7, 14, 29, 40, 45, 47, 67], "extens": [29, 31, 45, 49, 58, 59], "extent": 13, "extern": [12, 13, 29, 38, 49, 67], "extra": [17, 18, 23, 27, 29, 31, 54, 67], "extract": [59, 60], "extracurricular": 64, "extraterrestri": 64, "extrem": [41, 70], "ey": 23, "ezgi": 52, "f": [9, 14, 21, 23, 26, 28, 29, 30, 31, 34, 36, 45, 46, 52, 53, 57, 63, 64, 65, 69, 70, 74, 75], "f1": 31, "face": [28, 36, 56, 67, 75], "face1": 26, "face_names_103": 12, "facil": [45, 68], "fact": [17, 19, 45, 52, 54, 60, 62, 70, 75], "factor": [10, 15, 17, 18, 23, 67, 74], "factori": 35, "fail": [28, 50, 54, 58, 59], "failur": 30, "fair": [52, 75], "fairli": [20, 46], "fall": [7, 68], "fals": [6, 7, 21, 22, 24, 25, 29, 30, 34, 37, 45, 46, 48, 53, 57, 60, 62, 63, 65, 68, 74, 75], "famili": [56, 68], "familiar": [26, 34, 45, 62, 63], "famou": 54, "famous_book": 54, "fanci": [64, 68], "fancier": [29, 64], "fangg": 40, "fantast": 27, "far": [8, 14, 28, 45, 46, 50, 62, 67, 74], "fascin": 68, "fast": [12, 15, 28, 30, 64], "faster": [5, 29, 41, 45, 56], "fat": 68, "favor": 64, "favorit": [46, 50], "favorite_dessert": 50, "favorite_languag": 54, "favorite_numb": 46, "favour": 64, "fc": 25, "fc8add8796e2": 0, "fct": [15, 41], "fct_rev": [17, 18], "featur": [12, 27, 29, 34, 45, 62, 67], "februari": 68, "feder": 28, "feed": [5, 16], "feedback": [8, 14, 60, 61, 62, 70, 75], "feel": [13, 17, 18, 20, 24, 28, 45, 52, 56, 59, 64, 67], "femal": [17, 18, 23, 24, 29], "femalewoman": 41, "fetch": [27, 70], "few": [1, 5, 19, 21, 22, 24, 28, 34, 35, 45, 46, 49, 52, 54, 56, 57, 64, 67, 75], "fewer": [11, 17, 28], "ffmpeg": 11, "fi": 56, "fib": 57, "fib_seq": [48, 57], "fib_so_far": [48, 57], "fibonacci": [48, 57], "fiction": 64, "field": [9, 10, 12, 13, 27, 29, 30, 45, 75], "field_nam": 30, "fienam": [12, 13], "fifth": 52, "fig": 4, "figur": [5, 12, 13, 14, 15, 17, 18, 20, 23, 31, 40, 46, 51, 52, 53, 56, 60, 62, 63, 66, 68, 75], "filament": 64, "file": [2, 3, 6, 9, 10, 11, 12, 13, 14, 15, 16, 22, 25, 26, 27, 28, 36, 37, 41, 45, 52, 56, 58, 59, 61, 62, 65, 67, 75], "file1": 31, "file2": 31, "file_list": [29, 49], "fileexistserror": [9, 49], "filehandl": [29, 30], "fileid": 56, "filematrix": 49, "filenam": [12, 13, 14, 23, 24, 26, 29, 49, 60, 70, 74], "filename_0": 26, "filename_1": 26, "files_data": 29, "filetool": 29, "filetyp": 29, "fill": [3, 13, 26, 29, 30, 40, 46, 52, 56], "fillchar": 30, "fillcolor": [3, 6, 8, 25, 36, 45, 62], "filler": 60, "fillrul": 26, "film": 56, "filter": [16, 17, 26, 41, 53], "final": [12, 14, 15, 16, 22, 25, 26, 27, 29, 41, 45, 52, 54, 58, 59, 61, 67, 70, 75], "financ": 22, "financi": [22, 64], "find": [10, 16, 17, 18, 19, 20, 21, 22, 24, 25, 28, 29, 31, 37, 39, 44, 45, 46, 50, 51, 55, 56, 61, 64, 67, 70], "find_al": 68, "find_next": 68, "findal": 64, "finder": 58, "fine": [11, 17, 50, 54, 66], "finer": 56, "finger": [13, 68], "finish": [3, 37, 44, 67, 70], "finit": [4, 6], "finnish": 68, "fire": 28, "first": [2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 16, 22, 23, 25, 26, 27, 28, 29, 30, 34, 39, 41, 43, 45, 46, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 68, 70, 74, 75], "first_batch": 52, "first_dog": 52, "first_nam": [40, 54, 75], "first_shuttl": 45, "firsthand": 45, "firstnam": 30, "fish": 45, "fisher": 30, "fit": [15, 16, 17, 18, 25, 26, 45], "fitzwilliam": 56, "five": [38, 63], "fix": [17, 18, 23, 35, 36, 45, 51, 56, 58, 59, 75], "fix_spac": [21, 22], "fixat": [4, 6, 8], "flag": [26, 31, 38, 70], "flair": 5, "flamenco": 64, "flamingo": [21, 22, 64], "flash": [3, 27, 68], "flat": [56, 75], "flavor": 43, "fleet": 45, "flexibl": [22, 27, 29, 45, 46, 49, 54], "flexibli": [27, 30, 41, 62], "flight": 45, "flights_complet": 45, "flip": [3, 6, 8, 11, 14, 17, 18, 23, 24, 29, 36, 45, 62], "fliphoriz": 29, "float": [9, 25, 29, 43, 46, 63, 65, 74], "flour": 60, "flourish": 67, "flow": 27, "flower": [57, 60, 68], "flu": 28, "flush": [29, 30], "fly": 45, "flyingcatwithhorn": 28, "flyswatt": 37, "fn": 57, "fn_1": 57, "fn_2": 57, "focu": [45, 51], "focus": [45, 67], "folder": [12, 58], "follow": [2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 22, 23, 29, 31, 37, 38, 42, 44, 45, 46, 50, 51, 52, 54, 58, 59, 60, 62, 64, 67, 68, 70, 74, 75], "font": [9, 26], "food": 56, "foot": 68, "forc": [45, 66, 68], "forecast": 68, "foreign": 28, "forev": 8, "forget": [70, 75], "fork": 62, "form": [3, 21, 22, 28, 30, 31, 45, 51, 56, 67, 70], "formal": [45, 64], "format": [9, 12, 13, 22, 23, 30, 31, 34, 46, 54, 56, 63, 70], "format_field": 30, "format_spec": 30, "format_str": 30, "formatt": 30, "formula": 45, "forster": 56, "forth": 52, "fortun": [39, 56], "forward": [31, 35, 52, 56, 75], "foster": 45, "found": [27, 28, 30, 41, 52, 60, 65, 70], "foundat": 45, "four": [38, 41, 60, 64, 65, 66], "fourth": 52, "fox": [21, 22, 53], "frame": [6, 7, 11, 15, 16, 24, 41, 48], "framework": 30, "franci": 64, "francin": 68, "frank": [34, 68], "freaki": 68, "free": [11, 13, 17, 18, 20, 24, 28, 45, 46, 54, 59, 67, 75], "freestyl": 46, "freq": 64, "freqdist": [5, 28, 56], "frequenc": [0, 64, 68, 74], "frequent": [5, 41, 56, 62, 74], "fri": 30, "fridai": 67, "friend": 56, "friendli": [58, 59], "frm": 30, "from": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 30, 35, 36, 37, 38, 40, 41, 43, 44, 46, 49, 51, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 67, 68, 69, 70, 74, 75], "fromfil": 29, "fromstr": 29, "fromthi": 26, "fromtimestamp": 28, "front": [28, 30, 54, 62], "fruit": 43, "fsm": [4, 6], "fsync": [29, 30], "fuel": 45, "full": [1, 2, 3, 8, 12, 14, 18, 28, 29, 40, 52, 59, 61, 62], "full_nam": [40, 75], "fuller": 14, "fullfilenam": 29, "fulli": [4, 6, 27, 45, 51], "fullpath": 29, "fun": 67, "function": [3, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 26, 27, 34, 35, 37, 38, 41, 42, 43, 44, 46, 49, 50, 52, 53, 55, 57, 58, 59, 62, 67, 71, 74, 75], "function_nam": 45, "fundament": [45, 67, 68], "funki": 52, "funnel": 27, "funni": 16, "furnitur": 56, "further": [9, 11, 12, 28, 45, 56, 58], "furthermor": 68, "futur": 70, "fuyi": 40, "g": [0, 1, 3, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 21, 22, 23, 24, 26, 27, 30, 31, 41, 42, 44, 46, 47, 49, 52, 53, 56, 57, 58, 60, 62, 63, 64, 68, 70, 75], "gabor": [13, 29], "gabriel": 27, "gai": [17, 28], "gain": [17, 18], "gambia": 41, "game": [7, 19, 45, 56, 71], "gap": 28, "gapmind": 41, "gardin": 56, "gari": [12, 29], "gary_lupyan": 12, "gaza0": 41, "gear": 42, "gender": [17, 18, 23, 24, 29, 41], "gendergender2": 41, "gendergender2participant_codeag": 41, "gendermix": 23, "gendermorphtext": 24, "gener": [4, 6, 9, 12, 13, 14, 15, 16, 23, 26, 37, 46, 47, 49, 50, 54, 56, 58, 59, 60, 61, 62, 63, 67, 70, 75], "generate_tri": [9, 12, 13, 29], "generate_word": 6, "generatetri": [9, 10, 29, 36], "geneviev": 68, "gentleman": 56, "geom_ablin": 16, "geom_hlin": 16, "geom_smooth": [17, 18], "geom_vlin": 16, "geometr": 7, "geometri": 26, "georg": 63, "get": [5, 6, 11, 12, 13, 15, 16, 17, 18, 19, 21, 22, 23, 26, 28, 34, 35, 45, 46, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 62, 64, 65, 66, 74], "get_dist": 45, "get_field": 30, "get_height": 29, "get_keyboard_respons": 29, "get_number_word": 51, "get_po": 45, "get_runtime_var": [12, 29], "get_valu": 30, "get_width": 29, "getcwd": [29, 49], "getdur": 29, "getkei": [3, 6, 8, 29, 45, 62], "getmoviefram": 29, "getparamfromurl": 27, "getpo": 29, "getpress": [6, 24, 29], "getruntimevar": 29, "getsiz": 29, "gettext": 68, "gettim": [24, 29, 36], "getwheelrel": [13, 24], "ggplot": [16, 39, 67], "ggplot2": [58, 59, 67], "ghost": 68, "ghostscript": 26, "giant": 75, "gideon": 27, "gif": 26, "ginal": 70, "giraff": 65, "girl": [28, 68], "git": [11, 67], "github": [11, 12, 13, 21, 22, 35, 41, 45, 48, 52, 56, 64, 65, 67, 68, 74, 75], "githubusercont": 40, "gitrepo": [13, 35, 45, 48, 49, 52, 65, 74, 75], "give": [0, 1, 17, 18, 28, 29, 34, 42, 45, 46, 51, 52, 54, 56, 59, 62, 64, 67, 70], "given": [6, 10, 19, 23, 27, 28, 30, 40, 45, 50, 51, 52, 54, 60, 67, 75], "glacier": 64, "gladi": 68, "glanc": 27, "glimps": 68, "glob": [12, 13, 29, 67], "global": [13, 52, 71], "glossari": 46, "glove": 56, "glupyan": [13, 25, 30, 35, 45, 48, 49, 52, 56, 65, 70, 74, 75], "gmail": 64, "go": [3, 6, 7, 8, 9, 10, 12, 13, 14, 17, 18, 23, 24, 25, 26, 27, 28, 29, 31, 39, 44, 45, 46, 50, 52, 54, 56, 58, 59, 60, 61, 62, 63, 64, 67, 68, 69, 70, 74, 75], "goal": [13, 17, 18], "goali": 45, "goat": 19, "god": [20, 55, 56, 68], "goe": [13, 28, 29, 45, 46, 60], "goeden": 40, "goldberg": 54, "golden": [56, 57], "goldfish": 37, "goldin": 27, "gone": [35, 67, 69], "gonna": [37, 42], "good": [10, 14, 17, 18, 28, 30, 34, 43, 45, 49, 50, 51, 52, 54, 56, 58, 59, 61, 62, 63, 64, 67, 68, 74], "googl": [26, 28, 30, 31, 68], "gop": 28, "got": [13, 22, 26, 28, 30, 46, 49, 51, 58, 59, 64], "gotten": 42, "govern": [17, 18], "grab": [13, 28, 31, 40, 52, 64, 68], "grab_": 29, "grabscreenshot": 29, "gracechurch": 56, "graci": 64, "grade": [15, 16, 34], "gradual": [6, 7, 8, 27], "graduat": 1, "grai": [8, 24, 28], "grammar": [4, 6, 64], "grammat": 6, "grammaticalst": 6, "grampa": 68, "graph": [14, 16, 17, 18, 20, 39, 55, 61, 67], "graphic": [31, 68], "grasp": 45, "gravit": [7, 45, 68], "graviti": [7, 26], "great": [45, 56, 68, 75], "greater": [18, 49, 63], "greatli": [45, 46], "green": [8, 9, 11, 12, 23, 28, 30, 35, 36, 58, 59, 75], "greenbal": 30, "grees_g0": 28, "greet": [50, 52], "grei": [28, 62], "gremlin": 68, "grep": [31, 64], "grepl": 0, "greta": 34, "grid": 12, "ground": 7, "groundwork": 45, "group": [6, 15, 16, 17, 18, 19, 25, 27, 28, 45, 51, 56, 64, 67, 70, 74, 75], "group_bi": [18, 41], "grouped_df": 41, "grow": [25, 45, 52], "grrrr": 64, "gryphon": 56, "gss": [17, 18, 67], "gss_all": [17, 18], "gssr": 67, "gt": 41, "guarante": [30, 45], "guard": 73, "guatemala": 41, "guess": [5, 65, 75], "gui": [8, 9, 11, 12, 13, 23, 47, 58, 59, 64], "guid": [0, 58, 59, 67, 75], "guido": [54, 75], "guitar": 35, "gurnei": 68, "guru": 45, "gutenberg": [5, 56], "gweupub6m4q9yb2q9sovy6ougj20jq": 28, "h": [7, 14, 26, 30, 53, 56], "h3": 68, "ha": [3, 5, 6, 8, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 27, 28, 29, 30, 31, 34, 40, 41, 45, 46, 50, 51, 52, 54, 55, 56, 62, 68, 70, 74, 75], "habit": [68, 75], "hacienda": 64, "had": [1, 11, 14, 17, 18, 26, 28, 29, 37, 41, 43, 45, 46, 50, 51, 52, 54, 56, 68], "hadn": 56, "half": [3, 10, 60], "ham": [30, 46], "hamlet": [5, 56], "hamster": [37, 44], "hand": [0, 1, 22, 28, 30, 45, 56], "handei": 37, "handi": [10, 17, 18, 25, 26, 29, 31, 56, 58, 59, 68, 75], "handl": [10, 34, 38, 45, 52, 54, 67, 75], "handsom": 56, "hap": 24, "happen": [27, 29, 30, 31, 35, 43, 45, 51, 52, 53, 63, 64, 65, 66, 68, 70, 74, 75], "happi": [18, 23, 24, 36], "happier": 68, "hard": [9, 12, 17, 18, 20, 22, 28, 34, 58, 59, 67, 68, 70, 75], "hardcod": 46, "harder": [46, 62], "hardwar": [58, 59], "hare": 56, "has_sequenti": 30, "hash": 70, "hasn": 56, "hasnt": 28, "hate": 68, "hatter": 56, "have": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 25, 26, 27, 28, 30, 31, 35, 37, 38, 40, 41, 42, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 70, 73, 74, 75], "haven": [27, 45, 56], "he": [19, 28, 46, 56], "head": [28, 31, 34, 41, 67], "headach": 45, "header": [12, 13, 15, 16, 23, 31, 41], "headlin": [28, 68], "headset": 11, "health": [18, 28], "hear": 28, "heard": 56, "heart": [28, 62, 68], "heartbreak": 68, "heartili": 56, "heat": 68, "heavi": 28, "heavili": 28, "heed": 67, "height": [3, 6, 8, 13, 23, 24, 25, 26, 27, 29, 36, 49], "held": 29, "helen": 34, "hello": [2, 38, 50, 65, 70, 71, 75], "help": [3, 5, 6, 13, 15, 16, 17, 18, 21, 23, 28, 35, 42, 43, 45, 49, 51, 52, 56, 58, 59, 60, 62, 67, 70], "helper": [49, 68], "henc": [30, 64], "her": [28, 56, 75], "herb": 68, "herbert": 68, "here": [0, 1, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 35, 36, 37, 38, 42, 43, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 63, 64, 65, 66, 67, 68, 69, 70, 74, 75], "herrmann": 40, "herschel": 28, "herself": 56, "hexadecim": 30, "hexdigit": 30, "hi": 56, "hickman": 68, "hide": [28, 56, 75], "hierarchi": 45, "high": [7, 41, 56, 68, 75], "higher": [17, 18, 60], "highest": [28, 30], "highlight": [29, 54, 75], "highlightd": 29, "hill": 68, "hillari": [28, 54], "him": [28, 56], "himself": 56, "hint": [7, 14, 15, 25, 37, 53, 68], "hiram": 68, "histori": [31, 70, 75], "histplot": 74, "hit": [7, 29, 51, 58, 59, 60, 74], "hit_boundari": 45, "hitid": 27, "hitidfromparamstr": 27, "hoffman": 40, "hold": [5, 29, 51, 52, 56, 64, 75], "hole": 68, "holi": 50, "holli": 68, "home": [3, 29, 31, 44, 54, 71, 73, 75], "homonum": 60, "homonym": 60, "homophon": 60, "hondura": 41, "honk": 75, "honour": 56, "hootz": 50, "hope": 67, "hopefulli": 52, "horiont": 23, "horizont": [7, 16, 23, 26], "horn": 45, "horoscop": [17, 18], "hors": [49, 56], "horsepow": 35, "hortens": 68, "host": [19, 27], "hostel": 50, "hot": [28, 68], "hotcor": [17, 18], "hotel": 28, "hottest_submission_in_wisconsin": 28, "hour": 56, "hous": [28, 56], "houten": 68, "how": [3, 5, 11, 13, 14, 15, 16, 17, 18, 20, 23, 24, 25, 28, 31, 37, 39, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 67, 68, 74, 75], "howev": [11, 27, 28, 29, 30, 45, 46, 56, 63, 70, 74, 75], "howto": [0, 30], "hr": 68, "href": [13, 27, 35, 45, 48, 52, 65, 74, 75], "htm": 30, "html": [0, 15, 16, 24, 27, 29, 30, 62, 67, 68], "html5": 27, "http": [0, 11, 21, 22, 24, 27, 28, 29, 30, 40, 41, 52, 56, 62, 64, 68, 69, 70], "hubert": 68, "hugo": 68, "human": [63, 67, 75], "humili": 56, "humor": 64, "humour": 64, "hundr": [28, 64], "hung": 15, "hungari": 41, "hunsford": 56, "hurst": 56, "hutz": 68, "hypernym": 56, "hyphen": [51, 64], "hypothesi": 60, "hypothet": 74, "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 73, 74, 75], "ian": 34, "ic": 50, "iceland": 41, "icon": [41, 58, 59], "iconicity_sampl": 41, "iconicity_sample_demograph": 41, "id": [34, 46], "idea": [10, 16, 28, 34, 45, 49, 50, 51, 52, 56, 67, 74, 75], "ideal": [1, 11, 65, 67], "ident": [13, 22, 60, 68, 70, 74], "identif": [20, 55], "identifi": [14, 26, 27, 50, 52, 70], "idpattern": 30, "ie": 64, "iem": 52, "if_els": 0, "ifram": 27, "ignor": [9, 28, 50, 58, 59, 75], "ii": [66, 68], "illeg": [4, 6, 17, 75], "illumin": 64, "illus": [13, 16], "illustr": [13, 43, 45], "iloc": 34, "imag": [6, 10, 12, 13, 14, 24, 27, 36, 52, 60, 62, 68, 74], "image1": 26, "image2": 26, "image3": 26, "image_click": 12, "image_to__show": 52, "imagestim": [23, 25, 29, 36, 49, 62], "imagin": [17, 18, 45, 62, 75], "imbu": 45, "img": 29, "immedi": [14, 58, 59, 60], "immens": 64, "immunocompromis": 28, "immunodefici": 64, "immutbl": 43, "impact": [28, 45], "impeach": 28, "imper": 56, "implement": [4, 5, 6, 8, 12, 13, 24, 25, 29, 30, 34, 35, 45, 52, 53, 54, 56, 59, 60, 61, 63, 64, 67, 74, 75], "implic": 45, "implicit": 75, "import": [3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 17, 18, 19, 21, 22, 23, 24, 25, 28, 34, 35, 36, 37, 40, 43, 49, 50, 51, 52, 53, 56, 58, 59, 62, 63, 64, 66, 67, 68, 69, 74, 75], "import_tri": 29, "importcondit": 29, "importerror": 45, "importtri": 23, "imprecis": 11, "impress": 28, "improp": 56, "improv": [1, 11, 14, 28, 43, 45, 46, 51, 75], "inabl": 28, "inaccuraci": 64, "inadequaci": 64, "inc": [58, 59], "incclud": 29, "includ": [3, 6, 11, 14, 15, 16, 21, 22, 23, 27, 29, 34, 42, 45, 46, 50, 51, 52, 53, 54, 58, 59, 60, 61, 62, 64, 67, 75], "inclus": [20, 55], "incom": [17, 18], "incomplet": [27, 41], "incongru": [8, 9, 11, 15, 67, 74], "incongruence_cost": 15, "inconsist": 64, "incorpor": [11, 45], "incorrect": [8, 11, 12, 14, 15, 23, 29, 60, 62], "incorrectfeedback": [23, 29, 36], "incorrectli": [8, 60, 62], "increas": [3, 7, 41, 45, 46, 52], "increasingli": 45, "incred": 46, "incredibli": [45, 52, 68, 75], "increment": [30, 45], "incrimin": [17, 64], "ind": 52, "inde": 63, "indent": 52, "independ": [23, 30, 43, 45], "index": [29, 30, 34, 35, 41, 45, 46, 52, 63, 65, 68], "index1": 30, "index2": 30, "indexerror": [35, 52], "india": 41, "indic": [11, 14, 15, 17, 37, 41, 44, 45, 60, 70, 74], "individu": [10, 11, 15, 16, 17, 18, 20, 26, 45, 46, 52, 55, 56, 70], "indonesia": 41, "indus10": [17, 18], "industri": [41, 68], "ine": 51, "ineffici": [5, 45, 56, 64], "inescap": 35, "infer": 5, "inferenti": 16, "infinit": 30, "infinitum": 30, "inflamm": 52, "inflect": 56, "info": [21, 23, 26, 31, 49, 58, 70], "info1": 27, "infodlg": 29, "inform": [9, 11, 12, 22, 23, 27, 28, 29, 30, 31, 37, 38, 43, 45, 46, 47, 51, 52, 54, 56, 58, 59, 60, 61, 67, 68, 70, 75], "infrastructur": 68, "infrmat": 41, "ing": 64, "inhal": 28, "init": [43, 45], "initi": [25, 29, 30, 37, 39, 40, 45, 46, 49, 50, 52, 58, 59, 64, 74, 75], "initial_bal": 30, "initial_list": 74, "ink": 8, "inner": 46, "input": [3, 6, 25, 26, 27, 35, 36, 45, 54, 62, 64, 65, 71, 75], "inputoutput": 30, "insect": 56, "insert": [15, 16, 27, 31, 34, 53, 70], "insid": [5, 10, 12, 13, 15, 16, 23, 26, 27, 29, 30, 35, 45, 46, 49, 50, 51, 53, 56, 67, 74], "insight": [17, 18, 67], "inspect": 74, "inspir": [28, 75], "instal": [11, 17, 18, 25, 26, 27, 29, 56, 67, 68, 70], "installation_problem": [58, 59], "instanc": [28, 30, 45], "instantan": 46, "instanti": [30, 45], "instead": [2, 3, 8, 14, 17, 18, 23, 29, 30, 31, 35, 37, 45, 46, 52, 56, 58, 62, 67, 68, 74, 75], "institut": 68, "instruct": [2, 8, 10, 11, 14, 17, 18, 26, 27, 29, 42, 46, 51, 59, 60, 67, 70], "instruction_text": 62, "insuffici": 64, "int": [23, 24, 27, 30, 34, 36, 41, 52, 54, 56, 63, 65, 74, 75], "int64": 34, "intef": 46, "integ": [9, 10, 12, 13, 23, 30, 40, 43, 45, 52, 54, 63, 74], "integr": [27, 29, 45, 70], "intens": [26, 29], "intent": 26, "inter_step_interv": 45, "interact": [17, 18, 20, 27, 28, 45, 52, 55, 64, 67], "intercept": 41, "interest": [1, 10, 17, 18, 45, 46, 52, 61, 67, 74, 75], "interfac": [0, 27, 56], "interlac": 26, "intermedi": 70, "intermix": [6, 23], "intern": [22, 43, 45, 75], "internet": 75, "interpol": [23, 26, 29, 36, 49], "interpret": [9, 15, 17, 20, 21, 30, 58, 59, 63, 67, 75], "intersect": [29, 30, 35, 56], "interspeci": 64, "interspers": [30, 64], "interven": 30, "interview": 28, "intimid": 63, "intox": 28, "intraperiton": 64, "intricaci": 64, "intro": 67, "intro_program": 75, "introduc": [1, 8, 9, 12, 23, 43, 45, 52, 54, 60, 71], "introducing_funct": 52, "introduct": [1, 45, 67], "intuit": [19, 45], "invalid": [36, 65, 75], "invert": 16, "investig": [17, 18, 22], "invis": 75, "invit": 60, "invok": 45, "involv": [20, 21, 22, 27, 45, 46, 52, 54], "io": [0, 13, 21, 22, 35, 41, 45, 48, 52, 56, 64, 65, 74, 75], "ioerror": 30, "iphon": 54, "ipynb": [13, 35, 45, 48, 52, 58, 59, 65, 67, 74, 75], "ipython": [25, 36, 54, 65, 68, 75], "iran": 41, "iri": 41, "irkernel": [58, 59], "is__": 2, "is_correct": [9, 11, 12], "is_palindrom": 35, "is_palindrome_builtin": [48, 57], "is_palindrome_iter": 48, "is_palindrome_nonrec": [48, 57], "is_palindrome_rec": [48, 57], "is_vowel": 37, "isalpha": [53, 56], "iscatchtri": 74, "isight": 29, "isinst": [29, 30], "ismatch": [23, 36], "isn": [28, 30, 35, 45, 56, 62, 74, 75], "iso": [21, 22, 64], "isol": 45, "ispressedin": [6, 25, 29, 45], "israel": 56, "isright": [23, 47], "issu": [17, 18, 21, 22, 45, 49, 54, 58, 59, 65, 67, 70], "item": [12, 14, 29, 30, 34, 46, 54, 60, 62, 74], "item1": 46, "item2": 46, "item3": 46, "item4": 46, "itemgett": 46, "iter": [6, 11, 12, 13, 24, 28, 29, 30, 35, 52, 53, 56, 63, 67, 68, 74], "iterrow": 34, "itertool": [23, 74], "its": [3, 5, 7, 9, 11, 12, 13, 17, 18, 28, 29, 30, 31, 34, 37, 41, 43, 45, 46, 51, 52, 54, 56, 57, 58, 59, 61, 62, 63, 68, 70, 73, 75], "itself": [30, 45, 46, 52, 54, 56, 63, 75], "ivoir": 41, "j": [14, 35, 68], "jack": [34, 37], "jacob": 52, "jan": [28, 67], "jane": [5, 56], "japanes": 28, "jargon": 56, "javascript": 27, "jerk": 28, "jiang": 40, "jimmi": 68, "jingl": 68, "job": [45, 51], "johnson": 28, "joi": 45, "join": [11, 14, 20, 29, 30, 49, 55, 56, 66], "joinfield": 30, "jolli": 68, "jordan": 41, "journei": 45, "jpeg": 26, "jpg": [23, 24, 26, 29, 36, 49, 60, 68], "jspsych": 27, "judg": 74, "judgment": 25, "juggl": 45, "jump": 53, "junior": 68, "junk": 68, "juno": 50, "jupyt": [30, 67], "jupyterlab": [58, 59], "jupytext": 0, "just": [5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 27, 28, 29, 30, 31, 34, 35, 37, 40, 41, 45, 46, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 67, 68, 69, 70, 74, 75], "just_nam": 49, "justifi": 30, "k": [6, 14, 28, 30, 31, 36], "karma": 28, "kayak": 35, "kde": 74, "keep": [3, 5, 7, 14, 17, 25, 28, 30, 37, 45, 46, 50, 51, 52, 54, 70, 75], "kei": [3, 8, 11, 14, 17, 23, 25, 29, 30, 31, 35, 36, 37, 41, 45, 47, 49, 53, 54, 56, 60, 62, 66, 67], "kelli": [37, 40], "ken": 54, "kendal": 52, "kept": 52, "kernel": [26, 58, 59], "kernighan": 54, "key_1": 46, "key_2": 46, "key_3": 46, "key_press": 62, "keyboard": [3, 11, 23, 24, 29, 31, 58, 67, 70], "keyboardinterrupt": [13, 48], "keylist": [6, 23, 29, 36, 47, 62], "keypress": 29, "keyword": [45, 50, 51, 52, 75], "khalifa_nomi": 28, "kid": [30, 56], "kill": [28, 74], "kilter": 74, "kind": [6, 7, 10, 16, 29, 43, 45, 46, 50, 51, 54, 62, 63, 68, 70, 71, 74, 75], "king": 56, "kingdom": [41, 45], "kiss": 68, "kjv": 56, "klau": 34, "knife": 68, "knight": 56, "knit": [15, 16, 67], "knive": 28, "know": [7, 11, 14, 16, 17, 18, 19, 28, 29, 30, 39, 45, 46, 50, 51, 52, 54, 56, 60, 63, 64, 67, 68, 70, 74, 75], "knowledg": 45, "known": [26, 45, 56, 68], "knox": 68, "knuth": 30, "korea": 41, "krystl": 40, "kw": 30, "kwarg": [30, 54], "l": [14, 21, 22, 23, 30, 31, 36, 64, 68, 69, 75], "la": 68, "lab": 27, "label": [17, 18, 25, 26, 64, 67], "labrador": 52, "ladi": 56, "lafleur": 68, "lagala": 28, "lai": 45, "laid": 56, "lamp": 49, "land": [7, 56], "lane": 28, "languag": [0, 7, 45, 50, 51, 52, 56, 58, 59, 63, 64, 67, 68, 70, 75], "langug": 22, "laptop": 7, "larg": [13, 15, 17, 28, 41, 63, 64, 75], "larger": [9, 15, 22, 26, 45, 51, 52, 56, 57, 67, 70], "largest": [15, 16, 17, 18, 22, 41, 46], "larn": 75, "laser": [17, 18], "last": [3, 5, 6, 7, 13, 17, 18, 22, 25, 26, 28, 29, 30, 31, 34, 35, 42, 45, 46, 48, 54, 56, 62, 63, 65, 68, 74, 75], "last_dog": 52, "last_nam": [54, 75], "last_run": 29, "lastli": [3, 27, 58, 59, 67], "lastnam": 30, "late": [16, 68], "later": [11, 13, 14, 30, 38, 45, 46, 50, 52, 56, 58, 59, 63, 70, 75], "latest": [0, 58, 59, 70], "latestagecapit": 28, "latter": 30, "laugh": 56, "launch": [27, 28, 45, 58], "lauren": 52, "law": 45, "layer": [26, 62], "lazi": [53, 63, 74], "lead": [29, 30, 45, 56], "leader": 28, "leaf": 56, "lean": [13, 16], "learn": [1, 4, 6, 8, 22, 28, 30, 31, 34, 45, 46, 50, 51, 52, 54, 56, 64, 67, 73, 75], "leas": 56, "least": [12, 14, 17, 18, 27, 36, 39, 44, 50, 54, 61, 64, 67, 74], "least_common": 0, "leather": 56, "leav": [46, 51, 56, 68], "lectur": 30, "led": 19, "left": [3, 10, 13, 16, 23, 24, 26, 28, 29, 30, 31, 37, 45, 52, 53, 58, 60, 64, 66, 67, 75], "left_join": 41, "left_minus_right": 16, "leftward": 16, "leg": 56, "legaci": 64, "legal": [4, 6], "legendari": 19, "legibl": 67, "lemma": [56, 64], "lemma_nam": 56, "lemmat": [0, 5], "lemmatis": 56, "len": [6, 12, 25, 29, 30, 35, 37, 48, 50, 52, 53, 56, 57, 63, 64, 65, 66, 74, 75], "length": [21, 22, 30, 37, 38, 41, 44, 53, 56], "length0": 41, "lengthen": 11, "lengthpet": 41, "lengthsep": 41, "lesotho": 41, "less": [13, 15, 17, 30, 31, 44, 45, 49, 51, 52, 63], "lesson": [30, 45, 64], "lest": 61, "let": [5, 6, 8, 10, 12, 14, 15, 17, 18, 23, 25, 26, 27, 28, 29, 30, 31, 34, 37, 39, 40, 41, 43, 44, 45, 46, 49, 50, 51, 52, 54, 56, 62, 63, 64, 68, 69, 70, 74, 75], "letter": [4, 6, 8, 10, 13, 14, 21, 22, 30, 31, 34, 37, 45, 46, 52, 64, 70, 75], "letterlist": 6, "letternum": 6, "letterpress": 6, "level": [1, 10, 17, 18, 20, 28, 46, 55, 75], "leverag": 45, "levit": 68, "lewisisbrown": 28, "li": [40, 45], "liabl": 75, "liam": 40, "lib": [13, 30], "liber": [17, 18], "liberia": 41, "librari": [11, 12, 13, 21, 23, 24, 25, 26, 27, 29, 34, 37, 41, 45, 56, 58, 59, 64, 67], "libya": 41, "licens": [27, 58, 59], "life": [17, 18, 28, 34, 41, 45, 64, 75], "lifeexp": 41, "light": 68, "lightgrai": 8, "lihao": 52, "like": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 37, 38, 39, 42, 43, 45, 46, 50, 51, 52, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 74, 75], "likelhood": 19, "likelihood": [17, 18, 19, 60], "likelihood_ratio": 5, "liken": 56, "likewis": [13, 67], "limit": [11, 28, 45, 50, 67], "limnologi": 69, "limoncello": 64, "lin": 29, "lindo": 68, "line": [3, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 23, 25, 26, 29, 30, 35, 36, 37, 38, 41, 42, 45, 46, 48, 50, 51, 52, 54, 56, 58, 59, 62, 63, 64, 65, 67, 70, 71, 74, 75], "linecap": 26, "linecolor": [3, 6, 8, 25, 45, 62], "linejoin": 26, "liner": 30, "linewidth": 8, "lingo": 64, "link": [27, 28, 56, 60, 67], "lint": 67, "linu": 75, "linux": [30, 67], "lionel": 68, "lisst": 46, "list": [3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 21, 22, 23, 24, 25, 26, 27, 28, 34, 35, 38, 41, 43, 44, 45, 49, 51, 54, 56, 60, 64, 67, 68, 71, 74, 75], "list1": 30, "list2": 30, "list_bas": 52, "list_of_column": [17, 18], "list_of_str": 35, "list_to_shuffl": 51, "list_to_writ": 38, "list_with_dupl": 35, "listen": 67, "listsiz": 35, "lite": 14, "liter": [63, 64, 65], "literal_text": 30, "littl": [3, 6, 7, 17, 18, 27, 28, 29, 31, 44, 45, 46, 50, 53, 54, 56, 58, 59, 67, 68, 75], "liu": 40, "live": [27, 28], "living_th": 56, "ljust": 30, "ll": [2, 3, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 26, 27, 28, 29, 30, 31, 34, 37, 38, 40, 44, 45, 46, 49, 52, 55, 56, 58, 59, 60, 61, 62, 63, 64, 67, 68, 69, 70, 75], "llm": 5, "lm": 41, "lme4": [58, 59, 67], "load": [12, 13, 15, 17, 18, 23, 24, 29, 41, 49, 68], "load_fil": [29, 49], "loadfil": [24, 25], "loc": 34, "local": [26, 30, 67, 68], "localhost": 28, "locat": [6, 14, 18, 23, 27, 36, 43, 45, 52, 59, 60], "log": [13, 26, 27, 29, 49], "logev": 26, "logic": [29, 30, 45, 51, 60, 67], "lone": 68, "long": [5, 11, 29, 30, 37, 41, 44, 45, 46, 51, 52, 54, 62, 63, 70, 73, 74, 75], "longer": [30, 31, 38, 45, 46, 49, 50, 52, 63, 64, 70, 74], "longitututin": 18, "look": [3, 5, 6, 9, 10, 11, 12, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 38, 39, 41, 42, 43, 46, 50, 51, 52, 54, 55, 58, 60, 62, 63, 64, 67, 68, 74, 75], "lookup": 30, "loop": [3, 21, 22, 23, 26, 29, 37, 40, 42, 45, 50, 51, 53, 54, 71, 74], "lord": [28, 56], "lose": [28, 34], "loss": [14, 19, 28], "lost": 38, "lot": [5, 11, 14, 15, 19, 20, 26, 29, 31, 38, 45, 46, 50, 55, 58, 62, 63, 74, 75], "lou": 68, "louisa": 56, "love": [56, 67, 68], "lovelac": 75, "low": [1, 28, 41, 56, 68], "lower": [27, 28, 30, 37, 45, 50, 53, 56, 64, 75], "lowercas": [5, 11, 21, 30, 45, 53, 56, 75], "lowercase_underscor": 45, "lowest": 30, "lowwww": 68, "lsmithbeck": 15, "lst": [30, 44], "lstrip": [30, 75], "lt": [31, 41], "lter": 69, "ltr": 31, "luca": [52, 56], "luci": [34, 64], "lumin": 68, "lupyan": [12, 64], "lupyanexp": 25, "lynda": 69, "m": [3, 6, 7, 8, 14, 21, 22, 27, 29, 30, 35, 42, 45, 50, 51, 53, 56, 60, 62, 63, 64, 70, 75], "m1": 58, "m2": 58, "m3": 35, "ma": 56, "mabel": 68, "mac": [29, 31, 64, 67], "macbeth": [5, 56], "machin": [1, 4, 6, 25, 26, 45, 59, 70], "mackerel": 50, "maco": 58, "made": [45, 52, 54, 56, 70], "madison": [28, 40], "madisonherrmann": 15, "madisonwi": 28, "madoff": 22, "magic": [12, 26, 28, 29, 31, 41, 58], "mai": [11, 12, 15, 16, 17, 18, 21, 22, 23, 26, 27, 29, 30, 37, 38, 42, 43, 45, 46, 49, 50, 51, 52, 56, 58, 59, 60, 64, 67, 70, 75], "main": [9, 10, 11, 12, 13, 17, 18, 20, 23, 40, 43, 45, 46, 51], "maintain": [45, 46, 60, 70, 71, 75], "major": [17, 45, 54, 56], "make": [5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 24, 25, 27, 28, 29, 30, 34, 38, 40, 44, 46, 49, 50, 51, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 71], "make_dimm": 45, "make_incongru": 8, "make_it_drop": 7, "make_it_r": 7, "make_singular_and_lemmat": 56, "make_synset": 56, "make_them_stop": 7, "makedir": 30, "maketran": 30, "malayalam": [48, 57], "male": [17, 18, 23, 24, 29, 41], "malefemalemorph_": 24, "malign": 64, "malyalam": 35, "mamiii": 68, "mammal": [45, 56], "man": [24, 31, 35, 41, 56], "manag": [1, 28, 29, 45, 49], "mandela": 28, "mangl": 22, "mango": 43, "mani": [5, 7, 12, 13, 15, 17, 18, 22, 25, 28, 30, 31, 45, 49, 50, 51, 52, 53, 54, 56, 62, 64, 73, 74, 75], "manifold": 25, "manipul": [9, 12, 34, 64, 67], "manipulatig": 30, "maniul": 63, "manner": 74, "mansa_": 24, "manual": [27, 45, 56, 64, 70, 74], "map": [5, 14, 18, 20, 25, 29, 30, 34, 52, 55, 71], "maqdjtvrtrbfrfnrvglk": 27, "mar": [58, 59, 67], "march": [28, 56], "marchagainstnazi": 28, "marci": 64, "mari": [28, 56], "marit": 18, "mark": [12, 14, 54], "markdown": [58, 59, 67], "marker": [25, 52], "marriag": [17, 56], "mask": [10, 23, 29, 36, 49], "mask_": 31, "maskcircl": 31, "masked_fac": 26, "masksquar": 31, "massiv": [41, 63], "master": 45, "match": [0, 9, 11, 12, 13, 17, 18, 23, 31, 47, 52, 54, 56, 60, 64, 67, 70, 74, 75], "matched_angl": 13, "matcher": 64, "matchleft": 47, "matchright": 47, "mater": 54, "materi": [22, 26, 28, 60, 67], "math": [28, 29, 45], "mathemat": [45, 54], "matlab": 30, "matplotlib": 25, "matrix": [25, 41], "matt": 52, "matter": [45, 54, 63, 74, 75], "matthew": 52, "max": [25, 29, 41, 46, 74], "max_angl": 45, "max_lag": 44, "maxim": [61, 67], "maximum": [40, 41, 60], "maxreplac": 30, "maxsplit": 30, "maxstimnum": 24, "maxval": 29, "mayb": [28, 45], "mcclure": 68, "mcgraw": 13, "md": 25, "me": [1, 12, 26, 28, 44, 56, 59, 61, 67, 68], "meal": [28, 56], "mean": [9, 13, 15, 16, 17, 18, 19, 28, 29, 30, 31, 37, 39, 41, 45, 46, 50, 51, 52, 54, 56, 60, 62, 63, 64, 67, 70, 74, 75], "mean_resp": 41, "meaning": [41, 45, 46, 70], "meaningless": [50, 60], "meantim": [24, 60], "measur": [5, 6, 10, 11, 13, 15, 16, 17, 18, 20, 55, 60, 74], "meaux": 68, "media": 68, "median": 41, "median_rt": 41, "medic": [28, 41], "medicin": [28, 75], "meet": [28, 29, 49, 67, 68], "melt": 43, "melvil": 56, "member": 67, "memori": [1, 28, 43, 45, 67], "men": 17, "meng": 52, "mental": [28, 43], "mention": [16, 23, 67], "merg": 61, "merit": 45, "mesa": 56, "mesag": 75, "mess": [10, 31, 54], "messag": [11, 12, 27, 28, 41, 45, 46, 50, 51, 54, 63, 70, 75], "met": [28, 52, 60, 63], "meta": [17, 18], "method": [5, 6, 7, 26, 28, 29, 30, 46, 51, 52, 54, 56, 74, 75], "metric": 26, "mhmyi": 68, "mi": 16, "mic": 11, "mice": 29, "michel": 52, "michigan": 28, "middl": [3, 23, 40, 52, 64, 66, 67], "midpoint": 24, "midterm": 28, "might": [9, 14, 17, 18, 23, 27, 29, 30, 37, 40, 44, 45, 46, 50, 51, 52, 54, 56, 58, 59, 60, 62, 68, 70, 74, 75], "mightn": 56, "mileag": 21, "mileston": 45, "milford": 68, "militari": [17, 18], "millecond": 8, "million": 28, "millisecond": [12, 13, 14, 23, 60], "milton": 56, "milwauke": 28, "mime": 26, "mimic": 45, "min": [3, 13, 23, 41, 49, 67, 74], "min_angl": 45, "min_lag": 44, "min_scor": 34, "min_score_to_lett": 34, "mind": [13, 17, 18, 38, 41, 46, 50, 51, 52, 56, 62, 63, 70], "mindset": 75, "mine": 27, "mini": 59, "miniconda": [58, 59], "minim": 11, "minimum": [17, 38, 40, 41, 44], "minor": [20, 37], "minu": [16, 75], "minut": [5, 6, 14, 25, 28, 56, 67, 68], "minval": 29, "mirror": [11, 16, 67], "misc": 6, "mismatch": [23, 29, 47, 64, 74], "misplac": [21, 22], "miss": [34, 56, 60], "missil": 28, "mississippi": 68, "mistak": [28, 46, 51], "mix": [15, 27, 63, 70, 75], "miyawaki": 60, "mkdir": [9, 31, 49], "mnemon": 64, "moby_dick": 56, "mock": [28, 56], "mod": 75, "modal": 19, "mode": [25, 26, 28, 38], "model": [11, 28, 35, 43, 45, 46, 54], "moder": 28, "modern": [1, 5, 64], "modif": [20, 45], "modifi": [6, 13, 23, 30, 37, 45, 51, 53, 75], "modul": [25, 26, 46, 54, 56, 64, 65, 75], "modular": [9, 10, 12, 29, 45, 61, 67], "modulat": 45, "modulu": 75, "mogrifi": 26, "moin": 30, "mojo": 68, "moment": 54, "monei": [17, 18, 56], "monitor": [21, 22, 29, 64], "monolith": 45, "month": [18, 28, 67, 75], "monti": 50, "moon": 68, "more": [1, 5, 8, 9, 10, 11, 13, 14, 16, 17, 18, 21, 22, 26, 27, 28, 29, 30, 34, 36, 37, 38, 39, 40, 41, 42, 43, 46, 47, 49, 53, 56, 58, 59, 62, 64, 67, 69, 70, 71, 74, 75], "more_anim": 65, "more_fruit": 43, "moreoddnum": 30, "moreov": 30, "morn": 56, "morocco": 41, "morphologi": 26, "morphtyp": 24, "moscow": 68, "most": [3, 5, 13, 25, 27, 29, 30, 31, 34, 35, 40, 44, 45, 46, 48, 51, 52, 54, 56, 60, 63, 64, 65, 67, 70, 74, 75], "most_common": [0, 28, 56], "mostli": [28, 30], "mother": 68, "motion": 71, "mous": [6, 12, 13, 14, 16, 24, 25, 31, 44, 45, 56], "mouse_po": 29, "mouseclick": 23, "mousewheelrel": 13, "mouth": 23, "move": [7, 24, 25, 37, 50, 52, 64, 70], "move_it": 45, "move_right": 45, "move_rocket": 45, "move_up": 45, "movement": [13, 45], "movi": [24, 49], "movie_review": 67, "moviefram": 29, "movingcircl": [7, 45], "mr": 56, "mre": 29, "msec": 7, "mturk1": 27, "much": [3, 5, 12, 13, 15, 16, 17, 18, 22, 27, 39, 45, 46, 50, 51, 54, 56, 62, 63, 64, 68, 75], "mule": 68, "multi": [37, 75], "multidimension": [25, 64], "multilin": 64, "multimillion": 64, "multipl": [3, 10, 12, 13, 15, 16, 17, 18, 21, 22, 26, 27, 30, 31, 34, 47, 50, 51, 53, 56, 62, 64, 75], "multipli": [35, 45, 63, 75], "multiply_by_thre": 35, "museum": 75, "mushroom": 49, "music": 68, "musk": 28, "must": [9, 14, 19, 23, 26, 29, 30, 31, 44, 46, 51, 56, 66, 70, 74], "mustn": 56, "mutat": [15, 41], "mv": 31, "mw": 68, "my": [2, 6, 21, 27, 28, 29, 49, 50, 54, 56, 61, 68], "my_account": 30, "my_addit": 70, "my_current_tri": 75, "my_dict": 46, "my_dictionari": 46, "my_first_function_librari": [12, 13, 67], "my_list": 66, "my_mous": 45, "my_num": 63, "my_ord": 75, "my_rocket": 45, "my_str": 75, "myclass": 45, "mydlg": 29, "mygener": 30, "mylist": 35, "mymous": [6, 13, 24], "mypath": 6, "myself": [53, 56], "mysql": 27, "mysteri": [17, 18], "mystim": 29, "mysubjcode_": 64, "mysubjcode_130": 64, "mysubjcode_131": 64, "mysubjcode_132": 64, "mysubjcode_133": 64, "mysubjcode_134": 64, "mysubjcode_135": 64, "mytextfil": 31, "n": [5, 14, 21, 22, 26, 27, 28, 29, 30, 31, 36, 38, 41, 42, 45, 46, 52, 53, 54, 57, 58, 59, 64, 74, 75], "n_compon": 25, "n_pair": 74, "na": [0, 11, 14, 17, 24, 29, 41, 60], "name": [2, 3, 6, 9, 11, 13, 14, 17, 18, 21, 22, 23, 26, 27, 28, 30, 31, 34, 41, 45, 46, 47, 49, 51, 54, 56, 60, 62, 63, 64, 65, 67, 70], "name_dict": 34, "name_prompt": 12, "namechang": 64, "nameerror": 65, "namespac": [43, 67, 75], "nan1": 41, "nanci": 28, "narg_1": 54, "narr": 67, "narrow": [36, 49], "nataid": [17, 18], "natarm": [17, 18], "natciti": [17, 18], "natcrim": [17, 18], "natdrug": [17, 18], "nateduc": [17, 18], "natenvir": [17, 18], "natfar": [17, 18], "natheal": [17, 18], "nation": [28, 64], "nato": 28, "natrac": [17, 18], "natspac": [17, 18], "natur": [0, 31, 56, 67], "navig": [27, 49, 58, 67], "navigablestr": 69, "nber": 28, "nbest": 5, "nbsp": [24, 27], "nd": [15, 56], "ndown": 29, "nearest": [9, 12, 13], "nearli": [22, 28, 56, 75], "neat": [30, 54, 56, 70], "neatli": [31, 67], "necessari": [1, 12, 13, 17, 18, 21, 29, 30, 36, 38, 45, 52, 67, 70], "necessarili": [21, 22, 37], "necessit": 56, "need": [3, 5, 6, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 23, 27, 28, 29, 30, 31, 34, 37, 38, 41, 42, 45, 46, 49, 50, 51, 52, 54, 55, 58, 59, 60, 61, 62, 63, 64, 67, 68, 70, 74, 75], "needn": 56, "neg": [13, 16, 29, 41, 45, 50, 52], "negat": 0, "neighbor": [42, 64], "neighbour": 64, "neighbourhood": 56, "nepal": 41, "nest": [53, 67, 74, 75], "net": 5, "netherfield": 56, "netherland": 41, "neural": 5, "neurosci": 64, "neuroscientist": 64, "never": [28, 30, 34, 46, 50, 51, 52, 60, 67, 68, 75], "neveryon": 75, "new": [3, 5, 6, 7, 8, 12, 13, 16, 27, 28, 34, 38, 41, 42, 44, 49, 50, 51, 52, 54, 58, 59, 60, 61, 62, 68, 70, 75], "new_cur_angl": 45, "new_rocket": 45, "new_x_po": 45, "new_y_po": 45, "newcircl": 30, "newclass": 45, "newdirectorynam": 30, "newer": 58, "newest": 52, "newli": 45, "newlin": [21, 22, 29, 31, 38, 42, 52, 64, 75], "newscientist": 64, "newslett": 68, "newspaper3k": 68, "newspapers3k": 68, "next": [3, 4, 6, 8, 12, 13, 14, 16, 17, 18, 21, 22, 24, 29, 30, 31, 34, 43, 44, 45, 46, 50, 52, 54, 56, 58, 59, 62, 67, 70, 74, 75], "next_stat": 6, "ngram": 56, "nhello": 75, "nhere": [46, 52], "nicaragua": 41, "nice": [7, 13, 23, 27, 28, 29, 30, 40, 56, 67, 68, 70, 74], "nifti": 27, "night": [28, 68], "nimzay98": 28, "nishimoto": 60, "nltk": [0, 30, 67], "nltk_data": 56, "nn": 28, "nois": [11, 26], "non": [0, 10, 14, 21, 22, 29, 35, 50, 51, 60, 64, 75], "non_recursive_fib": [48, 57], "none": [6, 18, 23, 29, 30, 35, 36, 49, 50, 51, 54, 56, 64, 65, 74], "nonetyp": 35, "nonmask": 10, "nonsens": 54, "nor": [56, 64], "norepeat": 14, "norm": [36, 41], "normal": [6, 7, 13, 28, 30, 41, 45, 63, 75], "norwai": 41, "notat": [45, 46, 52], "note": [9, 10, 11, 12, 14, 17, 18, 23, 26, 27, 28, 29, 45, 50, 52, 58, 59, 60, 62, 70, 75], "notebook": [9, 13, 15, 16, 21, 22, 28, 35, 45, 48, 49, 52, 63, 64, 65, 66, 67, 68, 74, 75], "noth": [8, 27, 37, 46, 50, 52, 56, 64, 75], "notic": [5, 12, 13, 17, 18, 22, 23, 24, 27, 29, 30, 31, 45, 46, 49, 50, 52, 56, 62, 63, 74], "noun": 56, "nour": [51, 52], "novel": [45, 60, 61], "novic": 52, "now": [3, 5, 6, 7, 8, 9, 10, 11, 14, 15, 16, 17, 18, 23, 25, 27, 28, 29, 30, 31, 34, 35, 37, 42, 43, 44, 45, 46, 49, 51, 52, 54, 56, 58, 59, 60, 62, 63, 64, 69, 70, 74, 75], "nowadai": [28, 30], "nowher": 28, "np": [6, 19, 23, 25, 34, 37, 74], "nsbutton": [13, 49], "nspopovertouchbaritembutton": [13, 49], "nt": 56, "nthank": 52, "nthat": 52, "nthe": 45, "nthese": 46, "ntrial": 29, "nuclear": 28, "null": 27, "num": [23, 29, 51, 53, 54, 65], "num_1": 54, "num_2": 54, "num_block": 12, "num_cirlc": 45, "num_gam": 19, "num_item": 44, "num_ratings_by_subj": 41, "num_ratings_for_word": 41, "num_row": 37, "num_submiss": 28, "num_trial": 9, "num_wheel_turns_down": 13, "num_wheel_turns_up": 13, "numb": 68, "number": [6, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 37, 40, 42, 43, 46, 50, 51, 52, 56, 57, 58, 59, 60, 63, 64, 65, 69, 70, 71, 74], "number61971": 28, "number_of_block": [12, 13], "number_word": 51, "numberbeforeswitch": [10, 30], "numcircl": 45, "numcol": 25, "numdifftrialsperperson": 74, "numer": [17, 18, 19, 30, 41, 45, 46, 51, 75], "numpi": [6, 13, 19, 23, 25, 29, 30, 34, 37, 52, 74], "numpic": 25, "numrepetit": [10, 30], "numrow": 25, "numsubj": 74, "numtrial": [23, 36, 74], "numwheelturnsdown": 24, "numwheelturnsup": 24, "nup": 29, "nut": [28, 49], "nwantiti": 68, "nwe": 65, "nwilli": 46, "nyou": [51, 54], "o": [8, 9, 12, 13, 14, 21, 22, 24, 25, 29, 30, 35, 37, 40, 42, 45, 49, 50, 53, 56, 62, 64, 66, 67, 75], "obei": [4, 6, 64], "obfusc": 30, "objec": 45, "object": [3, 6, 8, 28, 29, 30, 34, 35, 49, 50, 52, 54, 56, 62, 63, 64, 66, 67, 68], "oblig": 56, "obscur": 62, "observ": [45, 56, 63, 68], "observatori": 68, "obsolet": 30, "obtain": [27, 61], "obviou": [28, 75], "obvious": [10, 70], "occ10": [17, 18], "occup": [17, 18], "occur": [30, 52, 56, 60, 64, 68, 74], "occurr": [30, 64], "octal": 30, "octdigit": 30, "odd": [30, 67], "oddnum": 30, "off": [7, 28, 50, 56, 68, 69, 70, 74], "offer": 45, "offic": 56, "offici": [12, 29], "offload": 12, "offset": [25, 26, 52], "often": [18, 29, 34, 37, 41, 45, 46, 51, 52, 56, 58, 59, 70, 74, 75], "oftentim": 46, "oh": [12, 56, 63, 68], "ojito": 68, "ok": [7, 10, 29, 44, 56, 58, 59, 74], "okai": [45, 50], "old": [30, 46, 60, 75], "oldest": [31, 52], "olymp": 46, "oman": 41, "omit": [20, 30], "omnisci": 64, "onc": [2, 3, 4, 6, 7, 8, 9, 13, 17, 18, 21, 22, 27, 29, 38, 40, 41, 45, 49, 50, 51, 52, 56, 58, 59, 60, 62, 75], "one": [3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 23, 24, 28, 29, 30, 37, 38, 39, 41, 42, 43, 44, 45, 46, 49, 51, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 70, 73, 75], "one_of_the_files_to_get_head": 31, "onelin": 70, "ones": [4, 6, 12, 17, 18, 20, 27, 28, 56, 58, 59, 60, 64], "onli": [6, 8, 11, 12, 14, 15, 16, 17, 18, 27, 28, 29, 30, 31, 34, 35, 45, 46, 50, 51, 52, 54, 56, 60, 63, 64, 70, 74, 75], "onlin": [64, 68], "ons": [58, 59], "onset": [11, 12, 13, 60], "onto": [20, 26, 55], "oo": 30, "ool": 27, "ooo": [14, 42, 66], "ooooo": 42, "ooooooo": 42, "ooooooooo": 42, "oop": [30, 45, 56], "ooti": 56, "opac": 45, "open": [3, 9, 10, 12, 13, 15, 19, 25, 27, 29, 30, 49, 50, 56, 58, 59, 62, 67, 70], "open_data_fil": [12, 29], "openai": 11, "oper": [26, 29, 30, 31, 35, 50, 63, 64, 67, 75], "operand": 75, "opinion": 28, "opportun": 51, "oppos": 45, "opposit": [13, 17, 18, 43, 44, 52], "oprat": 34, "option": [11, 29, 30, 31, 52, 54, 58, 59, 64, 67, 70], "orang": [8, 25, 30, 52, 60, 68], "orange_circl": 62, "order": [4, 6, 9, 10, 12, 13, 17, 18, 21, 22, 23, 26, 28, 29, 30, 36, 40, 45, 51, 52, 54, 56, 58, 59, 62, 64, 67, 74, 75], "ordereddict": [29, 46], "ordin": [17, 18], "ordinari": 46, "ordinarili": [24, 25, 47], "org": [0, 24, 28, 29, 30, 62, 68], "organ": [34, 45, 46, 56, 67], "organiza": 45, "ori": [3, 29], "orient": [3, 6, 9, 11, 13, 15, 16, 17, 18, 23, 26, 29, 30, 37], "origin": [7, 11, 17, 18, 30, 46, 51, 52, 56, 58, 70, 75], "orvil": 68, "other": [1, 3, 5, 7, 8, 11, 15, 17, 18, 19, 24, 27, 28, 29, 30, 31, 38, 41, 42, 43, 45, 50, 51, 52, 54, 56, 58, 60, 62, 63, 64, 67, 70, 74, 75], "other_rocket": 45, "otherwis": [12, 18, 30, 36, 46, 52, 67, 74, 75], "otherword": 21, "ought": [17, 18], "our": [7, 12, 18, 23, 24, 28, 34, 41, 45, 46, 50, 51, 52, 54, 56, 62, 64, 65, 67, 68, 70, 75], "ourselv": [51, 56, 64], "out": [0, 1, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 23, 25, 26, 27, 28, 29, 31, 35, 37, 40, 41, 42, 43, 45, 46, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 66, 67, 69, 75], "outcom": 20, "outlet": 28, "outlin": [6, 67], "output": [5, 6, 9, 10, 11, 12, 14, 15, 16, 19, 26, 27, 28, 29, 30, 36, 38, 41, 43, 45, 46, 51, 52, 53, 54, 61, 63, 65], "output_fil": 38, "outset": 74, "outsid": [10, 11, 16, 67], "over": [5, 7, 13, 17, 18, 45, 46, 53, 56, 58, 62, 64, 67], "overal": [15, 75], "overcom": 27, "overdrawn": 30, "overlap": 12, "overli": 62, "overload": [63, 75], "overrid": [41, 45], "overview": [45, 67], "overwrit": [9, 12, 13, 29, 46], "overwritten": [31, 38, 43, 75], "own": [1, 27, 28, 31, 34, 42, 45, 51, 54, 56, 70, 73, 75], "owner": [37, 46], "ozgrav": 68, "p": [6, 17, 18, 27, 30, 58, 59, 68], "pablo": 52, "packag": [13, 17, 18, 20, 21, 22, 23, 29, 30, 52, 56, 67, 74], "package_nam": 56, "pad": [25, 30], "page": [3, 11, 13, 27, 29, 30, 39, 59, 62, 67, 68, 75], "pai": [28, 45, 64], "pain": [26, 28, 45], "paint": [56, 62], "pair": [19, 20, 25, 37, 51, 54, 56, 60, 74], "pairwis": 25, "palindrom": 35, "palomar": 68, "pam": 46, "panama": 35, "panda": [11, 21, 22, 24, 40, 52, 64, 65, 67], "pandem": 28, "pane": 67, "panel": 18, "pang": 56, "pangram": 53, "paolacci": 27, "paper": 56, "paradigm": 45, "paradis": 56, "paraguai": 41, "paramet": [3, 7, 10, 14, 27, 29, 44, 64], "parameter": [27, 45, 64], "pardon": 56, "paremet": 45, "parent": [45, 56, 68], "parentclass": 45, "parenthes": [45, 51, 52, 64, 75], "parenthesi": [64, 75], "park": [45, 56], "pars": [30, 68], "parser": 68, "part": [4, 10, 14, 23, 27, 28, 29, 30, 31, 35, 40, 44, 45, 46, 47, 49, 52, 56, 60, 61, 63, 64, 68, 75], "part2": 2, "parti": [20, 28, 55, 68], "particip": [4, 6, 9, 10, 11, 13, 23, 37, 38, 41, 60, 62, 74], "participnt": [13, 60], "particular": [4, 10, 23, 27, 28, 29, 30, 37, 45, 46, 62, 64, 68], "particularli": [45, 54, 58, 59, 75], "partner": 28, "partyid": [20, 55], "partyid_twowai": [20, 55], "pass": [6, 8, 9, 10, 12, 13, 14, 21, 23, 26, 29, 30, 31, 40, 43, 45, 46, 48, 49, 51, 54, 56, 57, 63, 75], "passthrough": 30, "password": 28, "past": [3, 7, 26, 27, 28, 31, 58, 59, 62], "path": [6, 23, 29, 30, 49, 58, 59], "patient": [28, 45, 58, 59], "pattern": [0, 13, 17, 18, 30, 41, 42, 64, 70], "paus": [3, 7, 62], "payload": 45, "pbpast": 41, "pc": [29, 64, 67], "pcr": 64, "pd": [21, 22, 24, 34, 40, 64], "pdf": [28, 67], "peanut": 28, "pear": [43, 52, 60], "peculiar": 28, "pelosi": 28, "penguin": [38, 74], "penn": 5, "peopl": [10, 11, 14, 15, 16, 17, 18, 25, 27, 28, 39, 42, 45, 46, 47, 51, 52, 54, 56, 60, 62, 67, 74, 75], "pep": 50, "pep8": 67, "per": [3, 7, 9, 10, 13, 15, 16, 28, 46, 49, 74], "percent": 45, "percentag": 26, "perfect": [45, 51, 75], "perfectli": [13, 17, 45, 54], "perform": [28, 29, 35, 45, 51, 60, 61, 70, 74], "perhap": [15, 31], "period": [11, 21, 22, 64], "perl": 75, "perman": [28, 46, 52, 70], "permiss": 75, "persist": 45, "person": [11, 12, 14, 23, 27, 28, 45, 46, 51, 52, 53, 54, 56, 67, 70, 74, 75], "perspect": 67, "persuas": [5, 56], "peru": 41, "peso": [46, 50], "pet": [37, 46], "pet_inform": 46, "pet_nam": 46, "pet_own": 37, "petal": [41, 57], "peter": 75, "pgdown": 31, "pgup": 31, "pharmaci": 64, "phd": 1, "phenomena": 45, "phi": 57, "philosophi": 75, "phipp": 40, "photo": 26, "photo_filenam": 12, "php": 27, "phrase": [45, 53, 54], "physic": [7, 45], "physical_ent": 56, "pi": [29, 45], "pic": [12, 16, 24, 25, 29, 36], "pic1": [23, 29], "pic2": [23, 29], "pic3": [23, 29], "pic_nam": 12, "pic_stim": 29, "pick": [14, 17, 18, 19, 45, 67, 68], "pickl": [29, 67], "pickld": 29, "pics_beginning_with_a": 49, "pictur": [12, 18, 23, 24, 25, 26, 49, 56, 68], "picturetyp": 29, "pie": 68, "piec": [26, 37, 45, 46, 51, 54, 56, 68], "pierc": 27, "pig": [44, 63], "pilot": 45, "pinchi": 68, "pineappl": 28, "ping": 40, "pip": [11, 28, 56, 58, 59, 67, 68], "pipe": [31, 41], "pitch": 68, "pitfal": 35, "pivot_wid": [15, 16], "pix": [3, 6, 8, 13, 14, 23, 24, 25, 29, 36, 45, 49, 58, 59, 62], "pixel": [3, 7, 26, 37], "pixelintens": 26, "pizza": 28, "pkg": 58, "place": [11, 12, 13, 15, 23, 27, 31, 41, 43, 45, 51, 52, 54, 58, 59, 68, 70, 75], "placehold": [8, 12, 40, 52], "placement": 68, "plai": [5, 12, 19, 27, 28, 29, 36, 45, 52, 54, 64, 67], "plain": 16, "plainquot": 70, "plan": [35, 45, 61], "plant": 45, "platform": [27, 28, 58, 59], "plausibl": [13, 28], "play_monty_hal": 19, "playa": 68, "player": 45, "pleas": [2, 3, 4, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 18, 23, 27, 28, 29, 49, 58, 59, 60, 67, 70], "plenti": 54, "plopper": 68, "plot": [15, 16, 18, 20, 25, 55, 67], "plt": 25, "plu": [21, 22, 44, 52, 54, 75], "plug": 29, "plugin": [58, 59], "plural": 52, "pna": 64, "pnau": 68, "png": [4, 12, 25, 26, 29, 31, 49], "po": [0, 6, 8, 29, 37, 45, 56, 58, 59, 62, 64], "poem": 56, "point": [4, 6, 7, 16, 17, 18, 24, 25, 31, 34, 39, 42, 43, 45, 46, 52, 63, 67, 68, 70, 74], "pointer": 43, "pointsiz": 26, "pokei": 68, "pokemon": 62, "pol2cart": [6, 29], "poland": 28, "polar_to_rect": 29, "polici": [26, 64], "policydomain": 26, "policyright": 26, "polit": 28, "politician": 28, "polview": [17, 18, 20, 55], "polymorph": 45, "pong": 7, "poodl": 52, "poor": [41, 56], "pop": [9, 11, 14, 23, 47, 58, 59, 65], "popul": [9, 45, 46, 57], "popular": 5, "populated_runtime_var": 29, "popup_box": [58, 59], "popuperror": 29, "porto": 68, "pos_tag": [5, 28], "pose": 15, "posit": [6, 7, 13, 14, 23, 25, 26, 31, 37, 45, 66], "positions2": 66, "possess": [45, 56], "possibl": [4, 6, 10, 12, 14, 15, 17, 18, 20, 21, 22, 23, 26, 27, 34, 45, 50, 52, 56, 61, 74, 75], "possibli": [14, 30, 45], "post": [11, 16, 27, 58, 59, 68, 71], "poster": 28, "postpon": 56, "potenc": 64, "potenti": [28, 45], "pound": [56, 75], "powel": 68, "power": [17, 28, 29, 31, 34, 41, 46, 52, 58, 59, 64, 75], "practic": [15, 16, 17, 18, 28, 45, 52, 67, 70, 75], "practice_or_r": 16, "praw": 67, "pre": [29, 41, 46, 56, 67], "preced": [26, 30, 57, 64, 75], "precis": [23, 28, 45, 49, 58, 59, 60, 62, 74], "precon": 28, "predecessor": 57, "predict": [10, 17, 18, 20, 41, 43, 55, 63, 65, 66, 74], "pref": [13, 29, 58, 59], "prefer": [27, 29, 34, 46, 52, 59, 75], "prefil": 29, "prefix": [31, 75], "pregnanc": 64, "pregunto": 68, "preict": 41, "prejudic": 56, "preliminari": 49, "preload": 67, "premium": 28, "prepar": [9, 54, 67], "prepend": [21, 58, 59], "prescienc": 64, "prescient": 64, "present": [9, 11, 13, 27, 29, 36, 45, 49, 50, 54, 60, 61, 67, 74, 75], "present_feedback": 12, "preserv": [17, 18, 27, 52], "preset": 29, "prespecifi": 74, "press": [3, 8, 14, 24, 31, 56, 58, 59, 60, 62, 75], "pressur": [56, 68], "pretti": [17, 28, 41, 45, 46, 54, 68, 74, 75], "prev_angle_to_devi": 45, "prevent": [9, 45], "preview": [26, 27], "previo": 36, "previou": [12, 13, 28, 29, 31, 36, 45, 46, 54, 67, 70, 73], "previous": [13, 26, 27, 29, 45, 70, 73], "pricier": 64, "pride": 56, "pride_prejudic": 56, "pride_prejudice_clean_token": 56, "pride_prejudice_clean_tokens_no_stop_word": 56, "pride_prejudice_clean_tokens_no_stop_words_fd": 56, "pride_prejudice_freq_dist": 56, "pride_prejudice_raw_token": 56, "primari": 51, "primer": 67, "primit": 26, "princess": [54, 68], "principl": [45, 51, 75], "print": [2, 5, 6, 8, 9, 10, 11, 12, 13, 19, 23, 24, 27, 28, 29, 30, 34, 35, 36, 37, 38, 40, 42, 43, 45, 46, 48, 49, 50, 51, 52, 53, 54, 56, 57, 62, 64, 65, 66, 68, 69, 70, 74, 75], "print_fib": 57, "printabl": 30, "prior": [16, 49, 58, 59], "privat": 70, "prng": 74, "pro": [28, 30], "probabl": [11, 16, 17, 18, 20, 28, 30, 31, 34, 37, 39, 42, 46, 52, 55, 58, 59, 68, 74], "problem": [1, 3, 17, 18, 27, 35, 39, 45, 56, 58, 59, 74, 75], "proce": [8, 11, 67], "procedur": [24, 28, 34], "proceed": [9, 58, 59, 61], "process": [0, 4, 6, 9, 11, 22, 30, 38, 40, 45, 52, 54, 56, 58, 59, 67, 70], "processor": 70, "prod": 68, "produc": [9, 10, 23, 65, 68], "product": [23, 74], "profici": [45, 64], "program": [3, 4, 6, 14, 15, 16, 30, 31, 36, 38, 42, 43, 45, 46, 51, 52, 54, 58, 59, 60, 62, 63, 64, 70, 73, 75], "programm": [45, 52, 54, 71, 73, 75], "programmat": 69, "programmerhumor": 16, "progress": [41, 45, 52, 67], "project": [9, 45, 51, 54, 56, 70], "project1": 60, "project_not": 75, "promin": 39, "prompt": [12, 14, 31, 36, 58, 59], "prone": 51, "prong": 37, "pronunci": 68, "proof": 68, "prop": 67, "prop_back_to_back": 44, "prop_incongru": [9, 11, 15], "proper": [9, 51], "properli": [10, 24, 27, 45], "properti": [12, 13, 45, 56], "propheci": 64, "propmatch": [36, 74], "propmismatch": 74, "proport": [9, 10], "propos": 67, "protein": 28, "prove": 73, "provenza": 68, "provid": [1, 9, 10, 15, 23, 25, 27, 29, 30, 38, 45, 46, 47, 49, 52, 53, 54, 62, 63, 70], "psbattl": 28, "pseudo": [12, 13, 27, 74], "pseudocod": [4, 6], "psych": [27, 58, 59, 67], "psych711": 4, "psych750": [13, 21, 22, 28, 31, 35, 40, 41, 45, 48, 52, 56, 58, 59, 64, 65, 67, 70, 74, 75], "psych750_resourc": 49, "psych750_rost": 40, "psycholog": [1, 45], "psychologist": 60, "psychopi": [3, 6, 8, 9, 11, 12, 13, 14, 23, 24, 25, 36, 43, 49, 61, 67], "psychopy_valid": [58, 59], "psychtool": [41, 58, 59, 67], "pt": [7, 15, 17, 18, 21, 22], "ptb": [58, 59], "public": [22, 28, 30], "publish": 21, "publish_d": 68, "puffin": 68, "pull": [5, 12, 28, 46, 67, 70], "punctuat": [5, 21, 22, 30, 53, 56], "punkt": 67, "puriti": 75, "purpl": 62, "purpos": [11, 13, 28, 45, 52, 70], "pursu": 67, "push": [2, 11, 15, 16, 22, 67], "pushin": 68, "put": [7, 8, 16, 19, 29, 31, 45, 46, 50, 51, 52, 56, 69, 75], "putin": 28, "pwd": 31, "py": [2, 7, 10, 11, 12, 13, 23, 29, 30, 36, 45, 58, 59, 67, 70], "pyaudio": [58, 59], "pyc": 25, "pycodestyl": 67, "pydata": 24, "pyeongchang": 46, "pygam": [29, 58, 59], "pylab": 29, "pyo": [29, 58, 59], "pyplot": 25, "pyqt5": [58, 59], "pyqt6": [58, 59], "pyramid": 42, "pytest": 67, "python": [7, 9, 10, 11, 13, 21, 22, 27, 34, 38, 42, 43, 46, 49, 50, 51, 52, 53, 54, 56, 64, 65, 66, 67, 74], "python2": 30, "python3": [13, 30, 58, 59], "python_bas": [], "python_word": 46, "pythonpath": 45, "pythontutor": 52, "q": [3, 6, 8, 14, 29, 30, 31, 64, 67, 68, 75], "q2": 27, "qa": 64, "qaddafi": 64, "qadir": 64, "qaeda": 64, "qaida": 64, "qassam": 64, "qatar": 64, "qb": 64, "qd": 64, "qe": 64, "qei": 64, "qiagen": 64, "qianlong": 64, "qiaquick": 64, "qida": 64, "qin": 64, "qing": 64, "qingdao": 64, "qio": 64, "qm": 75, "qol": 64, "qp": 64, "qpak": 64, "qqq": 75, "qr": 64, "qrna": 64, "qrt": 64, "qsp": 64, "qspline": 64, "qt": [58, 59, 64], "qtc": 64, "qtl": 64, "qu": 64, "qua": 64, "quack": 64, "quackeri": 64, "quad": 64, "quadrangl": 64, "quadrant": 64, "quadrat": 64, "quadrupl": [45, 64], "quagmir": 64, "quai": 64, "quaid": 64, "quail": 64, "quaint": 64, "quak": 64, "quaker": 64, "qualcomm": 64, "qualif": 64, "qualifi": 64, "qualit": 64, "qualiti": [28, 64], "qualm": 64, "qualtrics1": 27, "quandari": 64, "quantif": 64, "quantifi": 64, "quantil": 64, "quantit": 64, "quantiti": 64, "quantum": 64, "quantumformat": 26, "quark": 64, "quarrel": 64, "quarri": 64, "quart": 64, "quarter": 64, "quarterback": 64, "quarterfin": 64, "quarterli": 64, "quartet": 64, "quartil": 64, "quartop": 64, "quartz": 64, "quash": 64, "quasi": 64, "quasispeci": 64, "quaternari": 64, "quayl": 64, "quaysid": 64, "qud": 64, "que": 64, "queasi": 64, "quebec": 64, "quecreek": 64, "queen": [56, 64], "queensland": 64, "queer": 64, "quell": 64, "quench": 64, "quenk": 64, "quentin": 64, "queri": 64, "queryfram": 29, "quest": [12, 29, 64], "question": [5, 15, 16, 17, 18, 19, 27, 28, 29, 39, 61, 64, 67, 68], "questionnair": 64, "quetzalcoatl": 64, "queue": [52, 64], "qui": 64, "quibbl": 64, "quich": 64, "quick": [21, 22, 28, 29, 31, 34, 46, 51, 53, 60, 61, 62, 64, 67, 68, 69], "quickedit": 64, "quicken": 64, "quicker": 64, "quickest": [30, 64], "quicki": 64, "quickli": [3, 4, 6, 12, 15, 20, 25, 45, 46, 52, 55, 56, 58, 59, 64, 73, 74], "quid": 64, "quidditch": 64, "quiescent": 64, "quiet": [11, 64], "quieter": 64, "quietli": 64, "quiglei": 64, "quill": 64, "quilt": 64, "quin": 64, "quinci": 64, "quindlen": 64, "quinean": 64, "quinn": 64, "quinon": 64, "quinta": 64, "quintana": 64, "quintanilla": 64, "quintessenti": 64, "quintet": 64, "quintil": 64, "quip": 64, "quirk": 64, "quirki": [52, 64], "quit": [3, 5, 6, 8, 9, 10, 11, 14, 21, 22, 37, 39, 42, 45, 51, 53, 58, 59, 62, 64, 70, 75], "quiver": 64, "quixot": 64, "quixtar": 64, "quiz": 64, "quizz": 64, "quo": 64, "quot": [63, 64, 70], "quota": 64, "quotabl": 64, "quotat": [30, 64, 75], "quotient": 64, "qur": 64, "quran": 64, "qureshi": 64, "qusi": 44, "quso": 64, "qutb": 64, "qu\u00e9bec": 64, "qu\u00e9b\u00e9coi": 64, "qwest": 64, "q\u00e7\u00ed": 64, "q\u00e9\u00e5\u00fc\u00e5\u00e7\u00e4\u00e7\u00f6\u00f3": 64, "r": [0, 1, 3, 8, 15, 16, 17, 18, 20, 21, 22, 23, 25, 28, 29, 30, 45, 53, 56, 64, 67, 68], "r15": 60, "rabbit": [49, 56, 57], "raccoon": 52, "race": 28, "rad": 25, "radangl": 29, "radian": 45, "radioact": [17, 18], "radiu": [6, 29], "rais": [12, 30, 49], "rake": 60, "ran": [12, 13, 26, 28], "rand": 27, "rand_lett": 27, "randint": [30, 45], "randlett": 27, "random": [6, 8, 9, 12, 13, 14, 19, 23, 24, 25, 27, 29, 30, 34, 35, 36, 37, 44, 45, 51, 60, 63, 67], "random_list": 44, "random_se": 13, "random_st": 25, "randombutnot": [23, 36], "randomizingcircularlist": 30, "randomli": 14, "randomse": 6, "randrang": [30, 53, 63], "randstr": 27, "rang": [6, 19, 23, 29, 30, 34, 35, 36, 37, 42, 44, 45, 48, 51, 52, 54, 57, 63, 65, 66, 74, 75], "rank": 5, "rare": [46, 53, 68, 74], "rate": [25, 28, 41, 56], "rather": [5, 7, 8, 15, 16, 28, 30, 34, 45, 46, 50, 51, 54, 60, 64, 74, 75], "ratio": [28, 57], "ration": 56, "rational": [61, 67], "raw": [16, 21, 29, 40, 46, 56, 63, 67], "raw_data": 16, "raw_img": 68, "re": [3, 11, 12, 15, 16, 17, 18, 19, 21, 22, 23, 24, 27, 28, 29, 30, 31, 37, 39, 41, 42, 43, 45, 46, 50, 52, 53, 56, 58, 59, 61, 62, 64, 65, 67, 68, 69, 70, 74, 75], "reach": 45, "reaction": [8, 10, 11, 12, 13, 14, 23, 41, 60, 74], "read": [5, 6, 9, 10, 11, 12, 13, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 34, 35, 38, 40, 41, 43, 45, 51, 52, 53, 56, 62, 63, 64, 67, 68, 70, 74, 75], "read_csv": [21, 22, 24, 34, 40, 64], "readabl": [45, 46, 50, 51, 54, 67, 75], "reader": [25, 67, 75], "readi": [28, 45, 52, 61, 67], "readlin": 29, "readtablehead": 41, "readthedoc": 0, "real": [28, 29, 34, 45, 47, 67, 70, 75], "realist": [52, 61], "realiti": 28, "realiz": [27, 39, 45, 54], "realli": [15, 16, 17, 18, 45, 46, 50, 52, 62, 68, 75], "reappear": 7, "reason": [5, 10, 14, 26, 28, 30, 45, 46, 50, 54, 56, 63, 67, 75], "recal": [11, 16, 17, 18, 20, 31, 45, 47, 55], "recap": 46, "receiv": [3, 28, 46, 47, 51, 54, 60, 64], "recent": [13, 17, 25, 28, 31, 35, 45, 48, 52, 54, 63, 65, 70, 74, 75], "recip": [26, 29, 64], "recode_to": 0, "recogn": [11, 12, 28, 29, 45, 46, 52, 75], "recognit": [8, 9, 58, 67], "recommend": [17, 18, 27, 45, 58, 59, 67, 70], "record": [6, 8, 9, 11, 12, 23, 24, 28, 40], "recov": 52, "recreat": 13, "rect": [3, 6, 7, 8, 14, 36, 43, 45], "rectangl": [3, 6, 7, 36, 45], "recursive_fib": [48, 57], "recycl": 31, "red": [3, 8, 9, 12, 14, 23, 29, 35, 36, 52, 56, 58, 59], "redder": 56, "reddig": 28, "redditor": 28, "redirect": [10, 28], "redo": 31, "reduc": [28, 45], "reduct": 45, "reductio": 28, "redund": [45, 64], "reentri": 27, "refactor": 51, "refer": [3, 16, 19, 45, 49, 52, 56, 58, 62, 64, 70, 75], "reflect": [11, 45], "reflog": 70, "reform": 64, "refresh": [7, 29, 31, 49, 62, 67], "refriger": [40, 64], "refus": [28, 75], "regardless": 21, "regex": 27, "regexp": [0, 21, 22, 27, 56, 64], "regexptoken": 56, "region": [18, 20, 55], "regist": 52, "registr": 28, "regress": 41, "regular": [15, 16, 28, 30, 52, 58, 59, 63, 67], "reinforc": 45, "reinstal": [58, 59], "reinvent": [30, 46], "reject": [21, 22, 60], "rel": [13, 26, 28, 45, 74], "relat": [17, 18, 20, 23, 28, 39, 45, 52, 56], "relationship": [17, 18], "relaunch": 45, "releas": [22, 75], "relev": [11, 29, 37, 70], "reli": 45, "reliabl": 45, "relig": 18, "religion": 18, "reload": 27, "remain": [7, 9, 10, 27, 30, 45, 54, 60, 67], "remaind": [9, 75], "remark": [41, 45], "rememb": [2, 3, 7, 10, 14, 23, 28, 30, 37, 38, 45, 46, 52, 67, 70, 75], "remind": 45, "remix": 68, "remot": 67, "remov": [0, 5, 27, 28, 29, 30, 35, 64], "renam": [17, 18, 45, 58], "render": 68, "reopen": 38, "rep": 41, "repag": 26, "repeat": [5, 14, 37, 44, 45, 51, 52, 60, 75], "repeatedli": 45, "repeattri": 30, "repetet": 52, "repetit": [11, 14, 30, 45, 46, 50, 51, 62, 64], "repetition_101": 14, "repetition_102": 14, "repetitionsperimag": 74, "replac": [23, 27, 30, 31, 35, 37, 41, 44, 50, 52, 54, 56, 60, 62], "replace_mor": 28, "repli": 56, "repo": [5, 10, 67], "report": [13, 14, 16, 17, 18, 45, 52, 56, 67], "repositori": [2, 3, 11, 12, 13, 15, 16, 36, 49, 60, 62, 67], "repres": [7, 30, 45, 46, 75], "represent": 75, "reproduc": [3, 61, 62, 64], "repsons": 56, "reptil": 56, "republ": 41, "republican": [20, 28, 55], "request": [26, 27, 52, 56, 68, 69], "requir": [11, 20, 26, 29, 37, 45, 54, 55, 58, 59, 70], "rescu": 26, "research": [1, 11, 28, 61], "researchsit": 69, "resembl": [41, 56], "reserv": [67, 75], "reset": [30, 70], "resid": 45, "residu": [20, 55], "resist": 28, "resolut": 26, "resolv": [63, 70], "resourc": [26, 27, 40, 67], "resp": [9, 11, 29, 36, 37], "respect": [12, 37, 75], "respond": [6, 8, 9, 10, 11, 12, 13, 14, 17, 18, 36, 37, 50, 58, 59, 60, 62, 74], "respons": [6, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 23, 27, 28, 36, 37, 38, 41, 45, 46, 47, 56, 60, 66, 67, 75], "response_map": 47, "response_receiv": 47, "response_typ": 11, "responsemap": [23, 36], "responsesmap": 66, "responsetim": 29, "resps_to_posit": 37, "resptim": 24, "rest": [3, 11, 15, 23, 37, 46, 50, 51, 64, 67], "restart": 58, "restrict": [17, 29, 30, 35, 49, 52], "result": [9, 11, 12, 13, 14, 22, 24, 25, 26, 27, 28, 30, 38, 39, 46, 50, 51, 53, 54, 58, 59, 61, 67, 68, 75], "retir": 28, "retriev": [5, 29, 46, 52], "retrospect": 28, "return": [6, 8, 11, 12, 13, 19, 21, 22, 23, 24, 27, 29, 30, 34, 35, 36, 37, 40, 43, 45, 46, 48, 49, 52, 54, 56, 57, 63, 64, 65, 66, 70, 74, 75], "return_first_nam": 40, "return_what": 56, "reus": 45, "reusabl": 45, "revers": [7, 13, 16, 29, 45, 46, 47, 51, 64], "reversalintens": 29, "revert": 70, "review": 67, "review_of_fundamentals_a": 65, "revis": [22, 35, 45, 75], "revisit": [45, 67], "revolut": 3, "rewrit": [37, 46, 54, 70], "rewritten": [30, 38, 45], "rfind": 30, "rgb": 29, "rhinocero": 75, "rhyme": 60, "rhythm": 40, "rich": 56, "rid": [5, 26, 64, 75], "right": [3, 7, 8, 10, 12, 13, 16, 17, 18, 23, 24, 25, 26, 27, 28, 30, 31, 37, 39, 40, 42, 43, 45, 46, 52, 53, 54, 56, 58, 59, 62, 64, 66, 67, 68, 75], "rightward": 16, "rindex": 30, "ring": 21, "rip": 68, "rita": 68, "ritchi": 54, "rizlahh": 28, "rjust": 30, "rm": [31, 41], "rmd": [15, 16, 67], "robot": 75, "robust": [11, 45], "rock": 68, "rocket_0": 45, "rocket_1": 45, "rocket_gam": 45, "rocket_modul": 45, "rocket_simul": 45, "rocketship": 45, "rockin": 68, "role": 45, "romania": 41, "romeo": 35, "room": [29, 56], "rose": [28, 56], "rosetta": 58, "rossum": [54, 75], "roster": [12, 40], "rotat": [3, 35], "roughli": 28, "round": [9, 12, 13, 25, 28, 29, 34, 45, 66, 74], "roup": 27, "routin": [10, 29, 74], "row": [10, 11, 14, 16, 21, 22, 23, 25, 26, 29, 30, 37, 42, 44, 56], "rowmean": [17, 18], "rowwis": [17, 18], "rowws": 0, "rproj": 15, "rsplit": 30, "rstrip": [29, 30, 56, 75], "rsudio": [58, 59], "rt": [6, 8, 9, 11, 12, 13, 14, 15, 16, 23, 24, 29, 36, 41, 74], "rtool": 59, "rtr": 27, "rule": [28, 45, 50, 64], "run": [3, 7, 8, 9, 11, 12, 13, 14, 15, 16, 19, 27, 29, 30, 35, 36, 42, 45, 46, 50, 51, 52, 56, 58, 59, 60, 61, 62, 67, 68, 73, 74], "runtim": [9, 11, 12, 13, 47, 60, 67, 74], "runtime_var": [9, 29], "runtime_vari": 29, "runtimevar": 29, "runtrial": 24, "rush": 3, "rwanda": 41, "s2": 6, "sa": [24, 51], "sad": [23, 24, 36], "safe": [14, 45, 58, 59], "safe_substitut": 30, "sai": [6, 9, 11, 17, 18, 19, 21, 26, 28, 30, 34, 45, 51, 52, 56, 58, 64, 68, 74, 75], "said": [11, 28, 56, 75], "sail": 45, "saith": 56, "salari": 28, "salvador": [30, 41], "same": [3, 5, 9, 10, 12, 13, 14, 17, 18, 19, 23, 24, 25, 26, 27, 28, 29, 30, 35, 36, 37, 40, 41, 42, 43, 45, 46, 50, 51, 52, 54, 56, 60, 62, 63, 64, 68, 70, 74, 75], "same_tri": 74, "sampl": [4, 6, 17, 18, 23, 29, 30, 41, 44, 56, 61, 64, 66, 74], "sample_data": 23, "sampletri": 24, "sand": 68, "sandbox": 27, "saniti": 41, "santa": 68, "sariel007": 28, "satellit": 56, "satisfi": [24, 65], "saucier": 64, "saudi": 41, "save": [10, 12, 13, 25, 26, 38, 45, 51, 58, 59, 67, 68, 75], "saveimag": 29, "savemoviefram": 29, "saveuserpref": [58, 59], "saw": [17, 18, 45, 56, 58, 59, 60], "sawhors": 56, "scalabl": 45, "scale": [22, 25, 41, 45, 64, 67, 68], "scaled_resp_by_subj": 41, "scaled_resp_by_word": 41, "scan": 60, "scandal": 22, "scatter": 25, "scenario": 45, "scene": [45, 75], "schemat": 60, "scholar": 68, "school": [1, 7, 28], "scienc": [28, 45, 64, 68, 75], "science_knowledg": [17, 18], "scientia": 64, "scientif": [17, 18, 28, 30, 64, 68], "scientist": [17, 18, 28, 64], "scientologi": 64, "scikit": 25, "scn": 68, "scond": 52, "scope": [21, 22, 45, 67], "score": [7, 11, 28, 34], "scorpio": [17, 18], "scrape": [61, 68], "scratch": 45, "screen": [3, 6, 7, 10, 29, 42, 52, 60, 62], "screencapnum": 29, "screenflip": 25, "scren": 60, "screwdriv": 30, "scripe": 29, "script": [6, 8, 9, 10, 12, 13, 22, 23, 27, 28, 58, 59, 67, 68], "scriptingrt": 27, "scroll": [13, 29, 31, 45], "se": 21, "seaborn": 74, "seamlessli": 45, "search": [28, 30, 31, 39, 52, 75], "seat": 28, "sec": [3, 8], "second": [3, 5, 6, 7, 8, 10, 13, 14, 16, 23, 26, 27, 28, 29, 30, 31, 34, 43, 45, 46, 50, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 70, 74], "secretcod": 27, "section": [27, 43, 45, 50, 52, 54, 67, 70, 75], "secur": 28, "see": [2, 3, 4, 5, 6, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 23, 24, 26, 27, 28, 29, 30, 31, 36, 41, 42, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 68, 71, 74, 75], "seed": [6, 12, 13, 29, 30, 60], "seed1": 74, "seed2": 74, "seem": [11, 26, 28, 45, 56, 62], "seen": [10, 45, 49, 50, 51, 52, 54, 60, 70, 74], "select": [0, 31, 34, 41, 50, 58, 59, 74], "select_if": 41, "self": [6, 13, 21, 22, 27, 30, 45, 63, 64, 67], "selftext": 28, "sell": 28, "semest": 75, "senat": 28, "send": [12, 16, 27, 51, 54], "seneg": 41, "sens": [5, 45, 46, 50, 52, 54, 56, 75], "sensibl": 75, "sensibli": 74, "sensit": [22, 70], "sent": [54, 67], "sentenc": [20, 21, 22, 53, 75], "sentiment": 67, "sep": [21, 22, 30, 41, 64], "sepal": 41, "separ": [3, 5, 7, 9, 12, 13, 14, 15, 23, 26, 27, 30, 31, 37, 38, 41, 42, 45, 52, 75], "separat": 52, "seper": 45, "sequenc": [3, 4, 6, 10, 14, 25, 42, 44, 56, 57, 60, 64, 67, 70, 74, 75], "sequence_with_repeat": 44, "sequenti": [14, 26, 30, 56], "seri": [14, 39, 45, 50, 64, 74, 75], "serious": 75, "serv": [13, 27, 45], "servic": 27, "session": [6, 58, 59, 60], "set": [0, 6, 7, 8, 10, 11, 13, 16, 17, 18, 21, 22, 23, 26, 27, 28, 29, 35, 41, 42, 45, 46, 47, 50, 51, 52, 56, 64, 70, 73, 75], "setautodraw": 25, "setcolor": [8, 11], "setfillcolor": 14, "setfix": 6, "setimag": [23, 29, 36], "setlett": 6, "setlinecolor": 14, "setnum": 74, "setori": [3, 11, 29], "setosa": 41, "setpo": [6, 14, 23, 25, 45], "setrectangl": 6, "setsiz": 36, "settext": [8, 11, 23, 36], "setup": 27, "setvis": [6, 13], "sever": [0, 9, 12, 19, 21, 22, 25, 26, 27, 29, 30, 31, 42, 45, 46, 51, 52, 56, 60, 63, 67], "sewer": 28, "sex": [17, 18], "sex_l": [17, 18], "sexfreq": 18, "shabubu": 68, "shakespear": [5, 56], "shaki": 67, "shall": 56, "shallow": [41, 46], "shalt": 56, "shame": 14, "shan": 56, "shankman": 22, "shape": 14, "share": [45, 70, 73, 75], "shavem": 26, "she": [28, 56, 68], "sheet": [26, 68], "shell": [15, 16, 31, 58, 59, 67], "shepherd": 52, "shift": [52, 58, 59], "shine": 45, "ship": 45, "shiver": 68, "shiyu": 40, "shop": [30, 68], "shoppinglist": 30, "shoppingstr": 30, "short": [1, 6, 12, 28, 31, 45, 51, 61, 67, 74, 75], "shortcom": 64, "shortcut": [31, 67], "shorten": [45, 58], "shorter": [14, 46, 51, 56, 75], "shorthand": 63, "shortli": 60, "should": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20, 21, 22, 23, 25, 28, 29, 31, 35, 36, 38, 40, 42, 44, 45, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 61, 63, 65, 66, 67, 68, 69, 70, 74], "shouldn": [56, 67], "show": [3, 4, 6, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 23, 24, 25, 26, 28, 36, 37, 39, 41, 45, 46, 49, 50, 51, 52, 54, 55, 58, 59, 60, 63, 67, 68, 70, 75], "show_stud": 51, "show_text_until_mouse_or_keypress": 29, "show_trial": 11, "show_words_mean": 46, "showcas": 45, "shown": [6, 9, 12, 13, 14, 16, 23, 24, 29, 45, 46, 60, 62], "shownactor": [23, 36], "showncategori": [23, 36], "showtext": 24, "shred": 68, "shuffl": [6, 9, 25, 35, 45, 51, 66, 74], "shuffle_list": 51, "shuffle_slic": 30, "shuheng": 40, "shutil": 30, "shuttl": 45, "shuttle_0": 45, "side": [10, 26, 50, 75], "sidebar": [64, 67], "sideshow": 68, "sign": [17, 18, 21, 22, 30, 45, 50, 60, 67, 68, 75], "signal": [29, 45, 53, 68], "signatur": 45, "signed_error": [13, 16], "signed_tilt": 16, "signific": 45, "significantli": 60, "silenc": 75, "silent": 75, "siment": 40, "similar": [15, 17, 22, 28, 29, 35, 46, 48, 52, 58, 60, 67, 74, 75], "similarli": 70, "simpl": [6, 8, 12, 13, 19, 27, 28, 29, 31, 46, 51, 52, 53, 54, 63, 64, 67, 68, 71, 75], "simpler": [27, 45], "simplest": [15, 29, 31, 50, 70], "simpli": [3, 6, 10, 27, 45, 49, 50, 52, 56, 58, 59, 64, 65, 70, 74], "simplic": [20, 55, 60], "simplifi": [22, 45, 52], "simpson": 68, "simpson_famili": 68, "simul": [19, 45], "simultan": 3, "sin": [29, 45], "sinc": [3, 11, 12, 16, 17, 18, 22, 27, 46, 52, 56, 62, 66, 70, 74], "singl": [14, 15, 16, 21, 22, 26, 29, 30, 31, 37, 42, 50, 52, 56, 60, 61, 64, 70], "singular": 56, "sink": 46, "sir": 56, "site": [13, 27, 28, 30, 52, 67, 68, 70], "situat": [19, 45, 47, 50, 52, 54, 67, 74], "size": [3, 6, 14, 17, 18, 25, 26, 27, 29, 36, 45, 62], "sizh": 52, "sjmisc": 0, "skate": 46, "sketch": 16, "ski": 46, "skill": [1, 10, 14, 17, 18, 35, 69], "skim": 67, "skip": [45, 48], "sklearn": 25, "sky": 68, "slack": [12, 16, 44, 45, 58, 59, 60, 67], "slash": [30, 47, 64, 74, 75], "sled": 49, "slice": 74, "slide": 67, "slightli": [13, 15, 16, 30, 42, 45, 50, 52, 56, 58, 64, 67, 69], "slip": 62, "slope": [15, 41], "slot": 67, "slovak": 41, "slow": [4, 6, 8, 15, 62], "slower": [15, 29, 45], "slowli": 45, "small": [7, 13, 14, 17, 18, 27, 28, 41, 46, 56, 58, 59, 62], "smaller": [12, 15, 18, 28, 45], "smallest": [16, 41], "smalltalk": 54, "smart": 70, "smartquot": 70, "smell": 60, "smith": 40, "smokin": 68, "smooth": [7, 24, 56], "smoothli": [7, 24], "sn": 74, "snazzi": [8, 64], "snippet": [26, 65], "snout": 56, "snowbal": 68, "snowboard": 46, "so": [2, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 35, 37, 38, 39, 40, 42, 43, 44, 45, 46, 49, 50, 51, 52, 54, 55, 56, 58, 59, 60, 62, 63, 64, 67, 70, 74, 75], "socbar": [17, 18], "soccer": 45, "social": 67, "societ": 64, "societi": 64, "softwar": [1, 30, 58, 59], "sole": 7, "solidifi": 45, "solut": [3, 5, 7, 9, 11, 16, 17, 18, 20, 21, 22, 29, 31, 37, 39, 40, 41, 44, 45, 47, 55, 64, 67, 74, 75], "solv": [1, 27, 39, 42, 44, 45, 75], "some": [1, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 34, 36, 37, 40, 42, 43, 44, 45, 46, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 63, 64, 67, 68, 70, 75], "some_alphanumeric_str": [21, 22], "some_book": 56, "some_books_clean": 56, "some_file_nam": [58, 59], "some_num": 65, "some_repo": 70, "some_string_with_lots_of_data": 52, "some_url": 70, "somebodi": 28, "somehow": 22, "somenum": 64, "someoddnum": 30, "someon": [1, 10, 11, 17, 28, 45, 73], "someth": [9, 10, 11, 15, 17, 18, 21, 22, 23, 25, 27, 28, 31, 35, 40, 44, 45, 46, 50, 51, 52, 53, 54, 56, 61, 62, 63, 65, 66, 67, 68, 69, 70, 74], "sometim": [27, 28, 45, 46, 50, 51, 52, 54, 62, 64, 70, 75], "somewhat": [11, 17, 18, 30, 74], "somewher": [25, 64], "someword": 21, "son": 56, "song": 68, "soo": 56, "soon": [29, 50, 51, 56], "sophist": [5, 45], "sorri": [51, 62], "sort": [15, 16, 30, 31, 37, 41, 51, 56, 64, 67], "sorted_represent": 46, "soul": 68, "sound": [6, 12, 29, 36, 41, 45, 49, 67, 68], "sound_stim": 29, "soup": 56, "soup_mendota": 69, "soup_weather_channel": 69, "sourc": [11, 26, 27, 28, 43, 75], "south": 41, "space": [14, 28, 29, 30, 31, 35, 42, 45, 50, 54, 63, 68, 75], "spacebar": [29, 60], "spam": [30, 46, 66], "spam2": 30, "span": [24, 64, 68], "spangler": 40, "sparrow": 56, "spars": 75, "sparsecolor": 26, "speak": 11, "spec": 22, "speci": [41, 64], "special": [45, 46, 50, 51, 52, 56, 60, 64, 67, 75], "special_stim": 60, "speciessep": 41, "speciestermestimatestd": 41, "specif": [11, 12, 14, 15, 22, 23, 26, 28, 29, 31, 37, 45, 46, 50, 56, 64, 70, 75], "specifc": 70, "specifi": [4, 6, 9, 26, 30, 31, 37, 45, 46, 52, 54, 63, 64, 70, 74], "speech": [5, 8, 9, 28, 56, 58, 64, 67], "speech_recognit": 11, "speed": [4, 6, 64], "spell": [46, 60, 75], "spend": [3, 6, 17, 18, 45, 67, 75], "spent": 3, "spike": 28, "spill": 28, "spiritu": [17, 18], "spit": 27, "split": [23, 26, 29, 30, 37, 51, 53, 56, 64, 74], "split_var": 0, "splitext": [29, 49], "splitfield": 30, "spoken": 54, "spoon": 49, "spot": [31, 68, 75], "spotlight": 22, "spous": 17, "spread": 28, "spreadsheet": 34, "spring": 61, "sprtprsn": [17, 18], "spwrksta": 17, "spwrkstat": 17, "sql": 34, "sqrt": 45, "squar": [14, 46, 52, 53, 67], "square_it": 51, "src": [27, 30], "sre_pattern": 30, "stabl": [24, 45, 74], "stackoverflow": 30, "stai": [14, 19, 27, 45, 56, 67, 68], "stairhandl": 29, "stampi": 68, "stan": 26, "stand": [27, 45, 56, 63, 64], "standa": 56, "standalon": 30, "standard": [13, 30, 36, 46, 58, 67, 75], "standard_ord": 75, "stanlei": 68, "star": 68, "stark": 28, "start": [1, 3, 6, 7, 9, 10, 11, 13, 14, 19, 23, 25, 27, 29, 30, 31, 34, 39, 41, 42, 44, 45, 46, 49, 50, 52, 54, 56, 58, 59, 60, 62, 64, 67, 69, 70, 74, 75], "start_stat": 6, "starter": [2, 3, 5, 6, 11, 12, 13, 15, 16, 22, 62, 70], "starter_cod": 49, "startval": 29, "stat": 29, "state": [1, 4, 6, 12, 13, 18, 20, 28, 41, 43, 45, 55, 61, 67, 70], "state_transit": 6, "state_union": 67, "statemachin": 6, "statement": [5, 8, 11, 21, 22, 23, 29, 30, 37, 42, 45, 46, 47, 51, 52, 53, 54, 59, 64, 65, 71], "statewid": 28, "statist": [1, 16, 26], "statu": [17, 18, 46, 70], "stdtype": 30, "steadili": 75, "steep": [41, 56], "steepl": 28, "stellar": 68, "stelvio": 35, "stem": [56, 64], "step": [3, 9, 25, 27, 28, 29, 45, 46, 56, 58, 59, 67, 68], "stepsiz": 29, "steptyp": 29, "stick": [7, 37, 67], "stiker": 45, "still": [13, 21, 22, 27, 45, 46, 52, 58, 59], "stim": [6, 24, 25, 29, 37, 49, 60], "stim_filenam": 49, "stim_list": 29, "stim_names_descript": 60, "stimfil": 29, "stimgend": 24, "stimlist": 29, "stimnum": 24, "stimuli": [8, 9, 12, 13, 16, 24, 25, 29, 37, 40, 49, 60, 61], "stimulu": [9, 11, 13, 14, 26, 29, 37, 62], "stimulus_info": 60, "stole": 22, "stolen": 28, "stone": 45, "stood": 56, "stop": [3, 5, 28, 30, 45, 51], "stopwatch": 11, "stopword": [0, 5, 56, 67], "stopwrd": 56, "storag": [26, 34], "store": [8, 9, 11, 14, 23, 27, 29, 31, 35, 37, 46, 47, 52, 54, 67, 75], "stori": [56, 67], "storm": 28, "str": [14, 24, 28, 29, 30, 35, 46, 48, 50, 52, 53, 56, 57, 63, 65, 69, 75], "strai": 68, "straight": [7, 17, 64, 71], "straightforward": [45, 46, 52, 54, 75], "strait": 68, "strangl": 68, "strategi": [19, 45, 62], "streamlin": 45, "street": 56, "strenght": 45, "strengt": 14, "strength": [13, 16, 45], "stretch": 26, "strickland": 68, "strike": 37, "string": [0, 4, 6, 9, 12, 14, 15, 16, 21, 22, 23, 27, 28, 31, 38, 43, 45, 46, 50, 51, 63, 64, 65, 67, 70, 71], "string1": 14, "string1a": 63, "string1string2": 63, "string2": [14, 63], "string3": 14, "stringn": 14, "strip": [30, 68], "strongest": [17, 18], "strongli": [14, 17, 18, 67], "stroop": [11, 45, 67], "stroop_101": [9, 29], "stroop_102": 9, "strop": 30, "structur": [6, 10, 34, 37, 45, 50, 52, 54, 63, 70], "struggl": 28, "sttement": 21, "stu": 68, "stuck": [52, 54], "student": [1, 12, 28, 40, 51, 52, 75], "student_nam": 75, "studi": [6, 22, 27, 28, 61, 67, 74], "studio": 67, "stuff": [11, 28, 29, 31, 39, 41, 52, 56, 63, 75], "stupid": 56, "sture": 46, "style": [6, 26, 50, 58, 59, 67], "stylist": 67, "sub": [21, 22, 30, 64], "subclass": 45, "subdirectori": [9, 31, 49], "subfold": [12, 13, 15, 16, 29], "subj_cod": [9, 11, 12, 13, 15, 16, 29, 41], "subj_code_": 9, "subj_code_data": [12, 13], "subj_codewordkeyrt": 41, "subj_codewordkeyrtmedian_rt": 41, "subj_codewordkeyrtscaled_resp_by_subjnum_ratings_by_subjscaled_resp_by_wordnum_ratings_for_word": 41, "subjcod": 29, "subjcode_data": 23, "subjcode_tri": [12, 13], "subject": [6, 9, 12, 13, 14, 15, 16, 24, 27, 41, 46, 60, 67, 74], "subject_cod": [12, 13], "sublim": [64, 75], "sublist": 30, "submiss": [14, 15, 61, 70], "submit": [2, 8, 15, 16, 22, 67], "suboptim": 62, "subplots_adjust": 25, "subpoena": 28, "subscrib": [56, 70], "subsequ": 29, "subset": [15, 16, 52, 66], "subspeci": 64, "substanti": 18, "substitut": [30, 45], "substr": [30, 48, 57], "subtract": 75, "successfulli": [8, 58, 59], "sucient": 64, "suffer": 28, "suffic": 52, "suffici": [20, 45, 64, 67], "suffix": [23, 36], "sugar": 63, "suggest": [14, 21], "suitabl": 30, "sujin": 52, "sullivan": 30, "sum": [53, 54, 57, 74, 75], "summar": [16, 18, 41, 45], "summari": 23, "summaris": 41, "summarize_al": 0, "summarize_if": 0, "summer": 28, "sunroof": 68, "sunset": 28, "super": [45, 68], "superclass": 45, "supermass": 68, "supplement": 64, "suppli": [14, 29, 30, 54], "support": [17, 30, 34, 45, 56], "suppos": [10, 17, 18, 19, 25, 27, 30, 35, 37, 41, 45, 47, 51, 52, 56, 64, 74], "suppress": 31, "suprem": 28, "sure": [5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 27, 29, 30, 31, 34, 38, 40, 44, 45, 50, 51, 52, 54, 58, 59, 60, 61, 62, 64, 65, 67, 75], "surfac": [29, 37, 68], "surpris": [18, 28, 45, 50, 65, 75], "surprisingli": 19, "surround": 56, "survei": [34, 67], "surveyurl": 29, "sutdi": 60, "suycient": 64, "swallow": 56, "swapcas": 30, "swaziland": 41, "swcarpentri": 52, "sweden": 41, "sweetest": 68, "swim": 45, "swinburn": 68, "swing": 28, "swipe": 13, "swiss": 28, "switch": [3, 19, 31, 42], "sy": [3, 8, 23, 29, 30, 45, 69], "syllabu": [], "symbol": 75, "syn": 56, "sync": 29, "synonym": [30, 56], "synset": 56, "synset_hypernym": 56, "syntact": [63, 75], "syntax": [21, 22, 29, 36, 45, 46, 49, 52, 54, 62, 64, 65, 66, 75], "syntaxerror": [35, 36, 65, 75], "syria": 41, "system": [27, 28, 45, 49, 58, 59, 67, 70], "t": [3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 45, 46, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 74, 75], "tab": [14, 16, 21, 22, 27, 29, 30, 75], "tabl": [17, 24, 27, 30, 41, 56, 66], "tableland": 56, "tablewar": 56, "tabset": 67, "tabsiz": 30, "tabular": 56, "tackl": 45, "tag": [0, 2, 3, 5, 7, 9, 12, 15, 16, 56, 68], "tagger": 5, "tail": [34, 41, 52], "tailor": 45, "tair": 56, "take": [1, 5, 6, 8, 9, 10, 11, 21, 22, 23, 25, 26, 27, 28, 29, 30, 37, 40, 43, 45, 46, 50, 51, 52, 53, 54, 56, 57, 58, 59, 67, 68, 74, 75], "taken": 56, "talk": [28, 38, 42, 52, 56, 61, 63, 68, 75], "tangl": 45, "tanzania": 41, "target": [1, 10, 23, 45, 74], "targetactor": 23, "targetcategori": 23, "targetfaceimag": [23, 36], "targetimag": 23, "targetloc": 23, "task": [4, 6, 9, 12, 13, 24, 25, 27, 45, 60, 67, 68, 74], "taught": [1, 51], "taylor": 68, "teach": [1, 9, 13, 51], "team": [11, 45, 60, 67], "teammat": 70, "tear": 68, "tech": 28, "technic": [63, 75], "techniqu": 10, "technologi": 68, "tediou": 64, "telecommun": 64, "teleport": 45, "tell": [11, 14, 27, 28, 31, 38, 41, 45, 46, 50, 51, 52, 54, 56, 63, 67, 70, 75], "temp": [26, 46, 69], "templat": 30, "temporari": [28, 29, 45, 52, 70], "temporarili": [6, 28, 75], "tempt": [45, 52], "temptat": 75, "tempvalu": 68, "ten": [56, 75], "tend": [17, 28, 56], "tendenc": 64, "tenth": 75, "teo": 40, "term": [28, 29, 30, 31, 41, 45, 46, 54, 61, 75], "termin": [6, 10, 16, 23, 29, 31, 36, 50, 58, 59, 60, 67, 71, 74, 75], "terminologi": [26, 60], "terror": 64, "terwillig": 68, "test": [6, 8, 11, 12, 13, 14, 21, 27, 28, 31, 45, 54, 62, 67, 70, 71, 74], "test_assign": [2, 70], "test_path": 6, "test_subj1": [12, 13], "test_subj2": [12, 13], "test_subj3": [12, 13], "test_subj4": 13, "testmonitor": 29, "testscript": 28, "testsubj1_tri": 60, "teveryon": 75, "texa": 28, "text": [0, 5, 6, 8, 9, 11, 15, 16, 23, 24, 25, 26, 27, 31, 36, 56, 58, 59, 62, 63, 64, 67, 68, 69, 70, 71, 75], "text_color": 11, "textcoord": 25, "textstim": [6, 8, 23, 24, 25, 29, 36, 62], "th": [35, 75], "than": [5, 7, 8, 13, 14, 15, 16, 17, 18, 26, 28, 30, 34, 37, 38, 44, 45, 46, 49, 51, 52, 54, 56, 60, 63, 64, 68, 74, 75], "thank": [51, 54, 75], "thank_you": [51, 54], "thatnonsens": 68, "thei": [7, 9, 12, 13, 14, 16, 17, 18, 20, 21, 22, 23, 25, 28, 29, 30, 35, 36, 43, 45, 50, 51, 52, 54, 56, 60, 62, 63, 64, 67, 68, 70, 74, 75], "theirs": 56, "thello": 75, "them": [2, 5, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 25, 27, 28, 29, 30, 31, 34, 35, 39, 40, 43, 45, 46, 49, 50, 51, 52, 54, 55, 56, 58, 59, 60, 62, 63, 64, 65, 67, 68, 70, 74, 75], "theme": [56, 69], "themselv": [28, 56, 67], "theori": [1, 68], "therebi": 8, "therefor": [30, 45], "theta": 29, "thi": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 35, 36, 37, 38, 41, 42, 43, 44, 45, 46, 47, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 73, 74, 75], "thing": [0, 1, 7, 8, 9, 13, 14, 16, 27, 28, 30, 34, 42, 43, 45, 46, 50, 51, 52, 53, 54, 56, 58, 62, 63, 64, 66, 67, 70, 71, 73, 75], "think": [6, 9, 15, 17, 18, 19, 26, 28, 30, 40, 42, 44, 45, 51, 52, 56, 60, 63, 65, 67, 75], "thinker": 75, "third": [17, 18, 26, 27, 28, 45, 52, 54, 68], "thisdict": 35, "thissubj": 74, "thm": 75, "thompson": 54, "those": [5, 9, 12, 17, 18, 26, 27, 29, 31, 45, 46, 49, 50, 51, 52, 54, 56, 62, 63, 64, 70, 74, 75], "thou": 56, "though": [1, 13, 14, 15, 16, 17, 18, 21, 22, 24, 25, 28, 31, 42, 45, 46, 53, 54, 74, 75], "thought": [37, 45, 56, 60, 75], "thousand": [22, 56], "three": [5, 10, 14, 15, 19, 23, 24, 27, 38, 51, 52, 54, 60, 63, 65, 66, 67, 74, 75], "threshold": [26, 28, 29], "through": [3, 6, 9, 11, 12, 13, 14, 23, 24, 27, 28, 29, 30, 31, 35, 39, 42, 45, 50, 51, 52, 53, 54, 56, 58, 59, 60, 62, 63, 64, 67, 68, 69, 75], "throughout": [30, 45, 75], "throught": 8, "throw": [44, 50, 63, 75], "throwawai": 63, "tht": 58, "thu": [20, 55, 56], "thursdai": 56, "tianrun": [37, 40], "tibbl": 41, "tibiammo": 28, "tidal": 68, "tidi": 41, "tidyvers": [1, 39, 41, 58, 59, 67], "tiim": 52, "til": [28, 68], "til_blacking_out_from_alcohol_doesnt_cause_you_to": 28, "tile": 26, "tilt": 13, "tilt_103": 13, "tilt_direciton": 16, "tilt_direct": [13, 16], "tim": 75, "time": [3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 36, 38, 41, 44, 45, 46, 48, 49, 50, 51, 52, 54, 56, 58, 59, 60, 62, 63, 64, 67, 68, 70, 73, 74, 75], "timelin": 70, "timeout": 8, "timer": [8, 36], "timeseri": 41, "timestamp": 29, "ting": 52, "tip": [27, 28, 62, 63, 67], "titi": 68, "titl": [15, 16, 28, 29, 46, 50, 51, 52, 54, 58, 59, 67, 68, 75], "to_csv": 34, "to_dict": 24, "to_factor": [17, 18], "tobago": 41, "todai": [68, 69], "todayilearn": 28, "toexclud": [23, 36], "tofil": 29, "togeth": [8, 9, 15, 16, 51, 54, 56, 61, 67, 70, 75], "token": [5, 56, 70], "told": [52, 56, 67, 68], "tom": 28, "toni": 68, "too": [8, 12, 13, 15, 17, 18, 22, 28, 56, 63, 68, 74, 75], "took": [11, 56], "tool": [1, 27, 29, 45, 52, 64, 70], "toolkit": [1, 56, 67], "top": [5, 23, 26, 27, 31, 45, 54, 56, 58, 59, 68, 73], "top_imag": 68, "top_level_com": 28, "top_submission_in_madison": 28, "topic": [1, 30, 45, 68], "torn": 68, "torpedo": 28, "torvald": 75, "tostr": 29, "total": [6, 7, 9, 16, 38, 50, 56, 60, 74], "tothi": 26, "touch": 1, "tour": [28, 56], "toward": 45, "towardsdatasci": 0, "town": [28, 68], "tppp": 6, "tpppt": 6, "tppptxxv": 6, "tppt": 4, "tpt": 6, "tptp": 6, "tptxxvpxxvp": 6, "traceback": [13, 25, 35, 45, 48, 52, 54, 63, 65, 74, 75], "track": [14, 29, 37, 45, 52, 70], "trackpad": [13, 24], "trade": 1, "tradit": 27, "tradition": 29, "trail": 30, "train": [5, 28], "trajectori": [17, 18], "transcrib": [11, 64], "transcribe_respons": 11, "transcript": 64, "transfer": 22, "transform": [45, 74], "transient": 68, "transit": [6, 24, 30, 45], "translat": 30, "transport": 45, "trap": 11, "trash": 31, "traumat": 28, "travel": 7, "travers": 46, "treat": [52, 56, 75], "treatment": 28, "tree": 68, "treebank": 5, "trend": [15, 41], "tri": [28, 31, 54, 63, 75], "trial": [6, 8, 9, 11, 12, 13, 14, 15, 16, 23, 24, 30, 34, 36, 37, 52, 60, 61, 67, 75], "trial_dict": 29, "trial_fil": 29, "trial_filenam": 29, "trial_gener": 74, "trial_info": 60, "trial_list": 29, "trial_num": [9, 12], "trial_numb": [12, 13], "trialindex": [24, 60], "trialinfo": 60, "triallist": [10, 23, 29], "trials_list": 29, "trialspersubject": 74, "trialtyp": 23, "trick": [12, 13, 49], "tricki": [3, 15, 16, 18, 40, 44, 64, 65], "trig": 29, "trigram": [5, 56], "trigram_freq": 56, "trigram_measur": 5, "trigramassocmeasur": 5, "trigramcollocationfind": 5, "trimmed_": 26, "trinidad": 41, "trip": [21, 22, 52], "tripl": [45, 75], "triplet": 56, "troi": 68, "troubl": [11, 15, 16, 23, 30, 42, 68, 70], "troubleshoot": 75, "true": [3, 6, 7, 8, 13, 15, 17, 18, 23, 24, 25, 29, 30, 36, 37, 41, 43, 45, 46, 48, 49, 51, 52, 53, 57, 62, 63, 65, 66], "true_angl": [13, 16], "trump": 28, "truncat": 30, "trunk": 60, "trust": [20, 45, 55], "truth": [56, 63], "try": [9, 10, 11, 14, 16, 17, 18, 28, 29, 30, 31, 35, 37, 39, 40, 41, 42, 44, 45, 46, 49, 51, 52, 56, 58, 59, 60, 61, 63, 64, 67, 74], "tryst": 40, "tt": 64, "tuesdai": 70, "tumefacien": 64, "tune": 27, "tunisia": 41, "tupl": [30, 43, 45, 46, 54, 71], "tupon": [21, 22], "turk1": 27, "turkei": [41, 50], "turn": [4, 6, 7, 16, 30, 42, 52, 62], "turtl": [28, 56], "tutor": 52, "tutori": [28, 58, 59, 64, 67, 68, 69, 70], "tutorial_for_praw": 28, "tweak": [7, 61], "twice": [9, 12, 27, 28, 30, 44, 51, 74], "twitter": 28, "twitter_sampl": 67, "two": [3, 5, 10, 13, 14, 16, 17, 18, 20, 21, 22, 24, 28, 29, 30, 37, 38, 41, 43, 44, 45, 46, 50, 51, 52, 54, 56, 57, 60, 61, 62, 63, 64, 66, 67, 70, 74, 75], "txt": [5, 10, 11, 14, 21, 22, 23, 30, 38, 56, 58, 59, 60, 64, 67, 70], "ty": 6, "type": [3, 10, 12, 13, 15, 17, 18, 22, 23, 24, 26, 27, 28, 29, 30, 31, 34, 37, 39, 41, 43, 44, 45, 46, 49, 54, 56, 58, 59, 60, 61, 62, 64, 65, 67, 70, 74], "typeerror": [35, 52, 54, 63, 74, 75], "typic": [5, 30, 38, 45, 46, 56, 70], "typo": 75, "tyron": 68, "u": [6, 11, 14, 15, 16, 18, 20, 27, 28, 29, 31, 35, 37, 40, 41, 45, 46, 49, 50, 51, 52, 53, 54, 56, 62, 63, 64, 66, 67, 68, 69, 70, 74, 75], "ubuntu": 71, "uc": 54, "ueda": 60, "uganda": 41, "ugli": 75, "uh": 63, "uk": [21, 22], "uk_educ": [21, 22], "ukrain": 28, "ul": 68, "ultramicroextens": 64, "un": 60, "unambigu": 75, "uncl": [28, 56, 68], "unclutt": 45, "under": [50, 56], "underdetermin": 60, "underpin": 43, "underscor": [45, 54, 75], "understand": [1, 3, 6, 8, 18, 20, 26, 29, 30, 43, 45, 51, 52, 62, 64, 65, 67, 75], "understood": [15, 65], "underus": 31, "undo": 31, "undon": 70, "unexpect": [17, 18], "unexpectli": 75, "unfamiliar": 64, "ungrammat": 6, "unhelpfulli": 30, "unholi": 68, "unicod": 30, "uniform": [34, 74], "unimport": 74, "uninstal": [58, 59], "unintuit": 31, "union": [30, 35], "uniqu": [9, 14, 23, 27, 28, 30, 35, 45, 46, 53, 54, 56, 64, 70], "unique_subreddit": 28, "unit": [3, 6, 7, 8, 13, 14, 23, 24, 25, 26, 29, 36, 41, 45, 49, 58, 59, 62, 67], "univers": [56, 68], "unless": [12, 26, 28, 30, 70, 75], "unlik": [9, 31, 35, 45, 56, 64, 70, 75], "unlock": 46, "unmatch": 35, "unnam": 70, "unnecessari": 30, "unord": [46, 67], "unpack": [28, 54, 64], "unrel": 60, "unrest": 41, "unrol": 46, "unsav": 70, "unscientif": 64, "unscrupul": [17, 18], "unsupport": 75, "unsur": 50, "until": [3, 5, 7, 14, 17, 22, 23, 24, 26, 38, 46, 51, 52, 56, 62, 63, 65, 74], "untim": 68, "unto": 56, "up": [4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 21, 22, 23, 24, 27, 28, 30, 31, 34, 36, 39, 40, 45, 46, 47, 50, 51, 52, 54, 57, 58, 59, 60, 61, 64, 67, 68, 73, 74, 75], "upcom": 45, "updat": [6, 12, 13, 23, 29, 37, 40, 45, 46, 62, 67], "upload": [67, 68], "upon": [21, 22, 45, 56], "upper": [28, 30, 45, 75], "upperca": 53, "uppercas": [21, 30, 45, 75], "upright": [9, 16], "upsid": 9, "upside_down": [9, 11], "uptak": 28, "upvote_ratio": 28, "upward": 45, "ur": 64, "uri": 28, "url": [27, 29, 39, 68], "urllib": [56, 68], "urllib2": 69, "urlopen": [56, 68], "uruguai": 41, "us": [0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 35, 36, 38, 40, 41, 42, 44, 46, 49, 50, 54, 56, 58, 59, 61, 63, 67, 69, 70, 74, 75], "us_map": [20, 55], "usag": [17, 18, 29, 52, 64], "usb": 29, "used_arg": 30, "useful_funct": [24, 25], "usefulfilenam": 31, "usenam": 28, "user": [3, 8, 9, 13, 23, 25, 30, 35, 43, 45, 47, 48, 49, 52, 54, 56, 58, 59, 60, 64, 65, 74, 75], "user_ag": 28, "user_count": 52, "user_inst": 28, "user_script": 28, "usernam": [28, 52], "usernamefromparamstr": 27, "uservar": [29, 47], "usr": 30, "usual": [28, 46, 51, 56, 60, 74], "uswi0411": [68, 69], "utf": 69, "util": [45, 58], "uuuu": 66, "uw": 27, "v": [6, 10, 15, 16, 20, 30, 41, 43, 55, 56, 58, 59, 63, 64, 67, 70, 75], "v1": 68, "va": 25, "vacanc": 64, "vaccin": [28, 46], "vader_lexicon": 67, "valiat": 70, "valid": 26, "validkei": 36, "validrespons": 29, "valu": [0, 3, 6, 7, 8, 9, 11, 12, 13, 16, 17, 18, 19, 23, 27, 29, 30, 36, 41, 42, 43, 45, 47, 53, 60, 63, 65, 70, 74, 75], "valuabl": [45, 52], "value_1": 46, "value_2": 46, "value_3": [46, 54], "value_4": 54, "value_5": 54, "valueerror": [25, 30, 35, 52, 65], "van": [54, 68, 75], "var": [14, 27], "var1": 14, "var2": 14, "var3": 14, "var_1": 63, "var_2": 63, "var_3": 63, "var_4": 63, "var_5": 63, "var_6": 63, "var_string_num": 75, "vari": [9, 15, 20, 21, 46, 55], "variabl": [5, 9, 11, 12, 13, 14, 16, 17, 18, 20, 23, 28, 30, 37, 38, 42, 43, 45, 46, 47, 51, 52, 53, 54, 55, 60, 67, 71, 74], "variable_nam": 75, "variant": [30, 52, 56, 64], "variat": [9, 37], "varibl": 43, "varieti": [4, 30, 46], "variou": [10, 12, 13, 15, 22, 34, 39, 43, 45, 46, 52, 56, 59, 68, 70], "variousword": 64, "varnish": 56, "vars_to_get": 29, "vast": 56, "vax": 28, "vbz": 64, "ve": [8, 11, 12, 13, 14, 15, 17, 18, 20, 29, 36, 38, 39, 41, 42, 43, 45, 46, 49, 56, 58, 59, 62, 63, 64, 65, 66, 67, 69, 70, 74], "vector": 15, "vega": 68, "vehicl": 45, "veloc": 7, "verb": [51, 56], "verbal": 11, "verbos": [45, 52], "veri": [5, 9, 12, 13, 16, 17, 18, 22, 25, 27, 28, 29, 30, 35, 41, 45, 50, 51, 52, 54, 56, 58, 59, 62, 63, 64, 67, 70, 74, 75], "verifi": [8, 11, 27, 45], "verison": [58, 59], "versa": 30, "versatil": 45, "versicolor": 41, "versicolor5": 41, "versicolorpet": 41, "version": [14, 18, 21, 22, 23, 29, 36, 46, 49, 51, 52, 54, 58, 59, 68, 70, 75], "vertain": 63, "vertebr": 56, "vertic": [13, 16, 23, 26, 56], "vformat": 30, "via": 27, "vice": [28, 30], "victoria": 40, "video": [45, 58, 59, 67, 71], "vietnam": 41, "view": [13, 17, 18, 25, 28, 49, 56, 66], "viewform": 29, "vila": 40, "vindic": 17, "violat": [13, 22, 28, 49, 64], "violin": 35, "virgil": 68, "virginica": 41, "virtual": [45, 59], "virtualpixel": 26, "visibl": [3, 7, 24, 62, 70], "vision": 45, "visual": [3, 6, 8, 10, 13, 14, 15, 17, 18, 20, 23, 24, 25, 29, 30, 36, 43, 45, 49, 52, 55, 62, 67, 71, 74], "visualis": 0, "vizual": [18, 20, 55], "vladimir": 28, "vocal": 28, "voic": [9, 11, 28], "voila": [27, 35], "vote": 28, "voter": 28, "vowel": [21, 22, 35, 37, 40, 50, 53, 64, 66, 75], "vsc": [58, 59], "vscode": [13, 35, 45, 48, 49, 52, 65, 70, 74, 75], "vxxv": 6, "vxxvp": [4, 6], "vxxxvp": 4, "vxxxvpxxxxvp": 4, "w": [9, 13, 23, 30, 36, 38, 53, 56, 64], "w2szmlszq": 35, "w30512": 28, "w3szmlszq": 48, "w6szmlszq": 13, "w_800": 68, "wa": [1, 3, 10, 11, 12, 14, 16, 17, 18, 23, 27, 28, 29, 41, 42, 43, 45, 46, 51, 52, 54, 56, 60, 62, 63, 67, 68, 70, 73, 75], "wai": [5, 6, 7, 9, 13, 14, 15, 17, 18, 20, 21, 23, 25, 26, 27, 28, 30, 31, 34, 35, 37, 39, 41, 43, 44, 49, 50, 51, 52, 53, 54, 55, 56, 57, 61, 62, 63, 64, 67, 70, 73, 74, 75], "wait": [3, 6, 8, 11, 23, 24, 26, 36, 45, 58, 59, 62, 68], "waitkei": [3, 8, 14, 23, 24, 29, 36, 47, 62], "walk": [19, 28, 52, 56, 64, 67, 68], "walker": 28, "walkthrough": [62, 67], "wall": [7, 64], "walter": 46, "wang": 40, "wanna": 68, "want": [3, 5, 6, 7, 10, 11, 14, 15, 16, 17, 18, 19, 23, 24, 25, 26, 27, 28, 29, 30, 31, 34, 37, 38, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 58, 59, 60, 61, 62, 64, 66, 67, 68, 70, 74, 75], "war": 28, "wari": [17, 18], "warm": [52, 67], "warn": [9, 13, 30, 41, 49, 58, 59], "washington": 28, "washingtonpost": 28, "wasn": [56, 60], "wast": 68, "watch": [49, 50, 52, 67], "water": 69, "water_temp": 69, "watermelon": 43, "wav": [12, 29, 36, 67], "wave": [17, 18, 68], "wc": 31, "we": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 35, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 49, 50, 51, 52, 53, 54, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 70, 73, 74, 75], "weak": 30, "weather": [56, 69], "weather_channel": 69, "web": [3, 27, 45, 52, 62, 68, 71, 75], "webbrows": 29, "webcrap": 67, "webpag": [29, 68], "webscrap": 67, "wednesdai": 16, "week": [18, 24, 38], "weight": 45, "weird": [43, 63], "welcom": [1, 28, 52], "well": [13, 15, 17, 18, 23, 24, 27, 28, 30, 45, 46, 50, 52, 54, 56, 59, 64, 67, 68, 75], "went": [56, 63], "were": [11, 14, 17, 18, 22, 28, 37, 40, 45, 46, 54, 56, 61, 65, 67, 75], "weren": 56, "west": 41, "what": [3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 20, 22, 23, 26, 27, 28, 29, 30, 31, 34, 35, 37, 39, 41, 42, 43, 45, 47, 49, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 71, 74], "whatev": [20, 29, 34, 46, 50, 51, 52, 55, 56], "wheel": [13, 16, 24, 30, 46], "wheelhous": 61, "wheelrel": [13, 24], "when": [1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 20, 22, 23, 24, 27, 28, 29, 34, 36, 38, 43, 45, 46, 47, 50, 51, 52, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64, 67, 68, 70, 74], "whenev": [3, 15, 41, 46, 51, 52, 75], "where": [2, 3, 9, 12, 13, 14, 21, 23, 24, 25, 28, 29, 30, 37, 40, 41, 45, 46, 50, 52, 56, 58, 59, 62, 63, 64, 75], "wherea": 56, "whether": [4, 6, 9, 10, 11, 12, 14, 16, 17, 18, 21, 23, 29, 30, 34, 37, 43, 46, 47, 58, 59, 60, 64, 67, 68, 70, 74, 75], "whew": 45, "which": [0, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 35, 37, 40, 41, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 68, 74, 75], "which_image_click": 12, "whichlett": 6, "whichmatch": 47, "whichset": 60, "while": [1, 5, 6, 7, 8, 10, 13, 17, 18, 23, 24, 25, 28, 30, 35, 36, 43, 45, 46, 47, 52, 53, 56, 58, 59, 60, 61, 65, 67, 70, 71, 75], "whirlwind": 56, "whisper": 11, "whistl": 49, "whitak": 13, "white": [4, 6, 13, 23, 25, 26, 36, 56], "whitespac": [30, 64], "whitman": 56, "who": [1, 13, 14, 17, 18, 19, 25, 27, 42, 45, 46, 52, 54, 56, 75], "whole": [5, 27, 30, 38, 45, 50, 52, 56, 63, 70], "whom": [56, 74], "whose": [12, 15, 16, 31, 41, 43, 52], "why": [5, 23, 26, 29, 30, 35, 43, 51, 52, 56, 60, 62, 63, 64, 65, 66, 67, 68, 74, 75], "wi": [28, 68], "wide": [22, 26, 28, 36, 45, 54], "widen": 28, "width": [3, 6, 8, 26, 27, 29, 30, 41], "widthpet": 41, "widthspeci": 41, "wife": 56, "wiggl": [7, 45], "wiki": [28, 30, 68], "wiki_comment_rul": 28, "wikipedia": [28, 75], "wildcard": [49, 70], "wildli": [5, 56], "willi": [46, 50], "william": 56, "win": [3, 6, 8, 11, 13, 14, 19, 23, 24, 25, 29, 36, 43, 45, 49, 62], "window": [3, 6, 8, 13, 14, 23, 24, 25, 27, 29, 31, 36, 45, 49, 62, 67, 68], "wingback": 45, "wins_by_stai": 19, "wins_by_switch": 19, "winter": [28, 46], "wipe": 70, "wisc": [64, 67, 69], "wisconsin": 28, "wisconsinpandemicprimari": 28, "wish": [1, 50], "withdraw": 30, "within": [6, 14, 28, 30, 31, 45, 52, 58, 59, 70, 75], "without": [23, 25, 28, 29, 30, 37, 41, 45, 46, 49, 51, 52, 54, 56, 58, 59, 67, 74, 75], "witht": 46, "wizardri": 45, "wkrstat": 17, "wn": 56, "wnat": 75, "wolf": [35, 38], "woman": [24, 68], "womanha_": 24, "women": 17, "won": [6, 27, 28, 31, 45, 49, 56, 58, 59, 62, 66, 70, 75], "wonder": [45, 68], "wonderland": 56, "woop": 40, "word": [0, 5, 6, 8, 9, 11, 14, 28, 30, 37, 38, 40, 41, 43, 45, 46, 51, 52, 64, 68, 70, 75], "word_stim": [8, 11], "word_token": [28, 56], "word_typ": 56, "wordcloud": 0, "wordlength": 53, "wordmean_resp": 41, "wordnet": [0, 67], "wordnetlemmat": [5, 56], "work": [1, 3, 11, 12, 13, 14, 15, 16, 18, 21, 23, 26, 27, 29, 30, 31, 35, 36, 39, 43, 45, 46, 49, 51, 52, 54, 56, 58, 59, 61, 62, 64, 66, 67, 68, 70, 73, 74, 75], "worker": 28, "workerid": 27, "workflow": [5, 70], "working_pap": 28, "workspac": 70, "world": [2, 38, 45, 47, 65, 67, 68, 70, 71, 75], "worri": [13, 16, 18, 21, 22, 28, 45, 46, 51, 67, 68, 75], "wors": 74, "worth": [17, 45], "would": [6, 11, 14, 15, 17, 24, 25, 26, 28, 29, 30, 31, 45, 46, 47, 50, 51, 52, 56, 60, 64, 70, 74, 75], "wouldn": [10, 29, 56], "wouldnt": 45, "wow": 50, "wrangl": [1, 17, 18, 39, 67], "wrap": [13, 46, 74], "wrapper": 28, "write": [1, 4, 6, 9, 10, 12, 13, 14, 15, 19, 21, 22, 23, 26, 27, 28, 35, 37, 40, 42, 44, 45, 46, 50, 51, 52, 54, 57, 60, 63, 67, 73], "write_data": 9, "write_to_fil": 29, "writer": 64, "writeup": 61, "written": [6, 9, 21, 22, 26, 29, 50, 51, 54, 56, 64, 67, 73, 75], "wrkstat": 17, "wrong": [6, 8, 15, 35, 63, 65, 66], "wrote": [9, 22, 27], "wundergound": 68, "wunderground": 68, "www": [0, 28, 29, 68], "wx": 26, "wxpython": [58, 59], "x": [0, 3, 6, 12, 13, 14, 16, 25, 26, 29, 30, 35, 37, 43, 45, 48, 52, 57, 60, 64], "x0b": 30, "x0c": 30, "x100": 26, "x11szmlszq": 35, "x12szmlszq": [], "x13szmlszq": 35, "x21szmlszq": 52, "x41szmlszq": 65, "x50": 26, "x56szmlszq": 74, "x86": 58, "x_increment": 45, "xc": 26, "xcoord": 29, "xcorrect": 25, "xlabel": 56, "xoffset": 25, "xternal": 27, "xv": 6, "xxx": 58, "xxxv": 4, "xy": 25, "xytext": 25, "y": [3, 6, 8, 9, 12, 25, 26, 29, 30, 31, 35, 37, 45, 53, 56], "y145szmlszq": 75, "y212szmlszq": 45, "y410szmlszq": 45, "y_increment": 45, "yai": 28, "yan": 52, "yanchi": 40, "yang": 40, "yate": 30, "ycoord": 29, "ycorrect": 25, "ye": [28, 46, 58, 59, 63], "year": [17, 18, 22, 28, 35, 41, 56, 68], "yearlifeexp": 41, "yellow": [4, 6, 8, 9, 25, 30], "yemen": 41, "yep": [6, 30, 75], "yer": 56, "yet": [6, 13, 28, 30, 45, 51], "yield": [19, 30], "yihan": 40, "ylabel": 56, "yoffset": 25, "yoken": 56, "you": [0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74], "youmaydissagre": 28, "young": 56, "your": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 35, 38, 39, 40, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 63, 67, 69, 73, 74], "your_data": 23, "your_full_qualtrics_url_her": 27, "your_object": 45, "yourhost": 27, "yourself": [11, 12, 37, 45, 50, 51, 56, 67], "yourselv": [13, 56], "yshook": 28, "ysm4y": 28, "yuanxu": 52, "yuck": 63, "yuh": 68, "yuma": 68, "ywmd17": 28, "ywoieq": 28, "ywp9wt": 28, "ywpgj8": 28, "ywq0vq": 28, "ywryol": 28, "ywrzzu": 28, "ywu2od": 28, "ywukjk": 28, "ywvvpv": 28, "z": [30, 47, 60, 63, 64], "z0": 30, "zachari": 40, "zambia": 41, "zealand": 41, "zebra": [40, 44], "zero": [28, 30, 50, 51, 52, 64], "zfill": [24, 30], "zhang": 40, "zhu": 40, "zhuolu": 52, "zihan": [37, 40], "zimbabw": 41, "zimbabwe195248": 41, "zimbabwe200743": 41, "zimbamb": 41, "zip": [6, 25, 29, 30, 31], "zodiac": [17, 18], "zone": 30, "zoom": 67, "zootiez": 68, "zurich": 28, "zwicki": 68, "zz": 63, "zzz": 63, "zzzz": 63, "zzzzz": 63, "zzzzzz": 63, "zzzzzzz": 63, "zzzzzzzz": 63, "zzzzzzzzz": 63, "zzzzzzzzzz": 63}, "titles": ["TODO", "COGS 219: Programming for Behavioral Sciences", "Exercise 0 - Test assignment", "Exercise 1 - Make a square and play with it", "<no title>", "Exercise 10 - Natural Language Processing with NLTK", "Part 1", "Exercise 11 - Practice with object oriented programming", "Exercise 2: The stroop effect", "Exercise 3: Extending the Stroop effect", "Exercise 3: Trial generation 1", "Exercise 4: Modularizing your code + speech recognition!", "Exercise 5 - How well do you know everyone\u2019s names?", "Exercise 5 - Interactive experiments", "Exercise 5: A perceptual grouping task", "Exercise 6 - Exploring the Stroop adjustment data", "Exercise 6 - Exploring the tilt adjustment data", "Exercise 7 - Exploring the General Social Survey", "Exercise 7 - Exploring the General Social Survey", "Exercise 7a - The Monty Hall Problem", "Exercise 8 - More practice with the GSS", "Exercise 8 - Practice with regular expressions", "Exercise 9 - Practice with regular expressions", "Exercise 5 - Categorizing Facial Expressions", "Exercise 9 - Face Morph", "Exercise 10 - Dragging images to obtain a similarity space", "ImageMagick basics", "Amazon Mechanical Turk", "PRAW", "Psychopy reference", "Python basics", "Basic Linux commands", "<no title>", "<no title>", "Basic Pandas Operations", "Debugging practice", "Debugging practice", "Playing around with dictionaries", "Primer on writing files", "Google this!", "List/string manipulation exercises", "Tying up some loose ends", "Let\u2019s warm up them neurons", "Mutables, Immutables, and Object References", "A couple trial-generation activities", "Classes", "Dictionaries", "Using dictionaries in experiment design: some examples", "<no title>", "Preloading files", "If Statements", "Introducing Functions", "Lists - the basics", "List comprehension", "More Functions", "More practice with the GSS", "Intro to NLTK", "<no title>", "Installation and setup for Windows", "Installation and setup for Windows", "Project 1", "Project instructions", "Intro to PsychoPy", "Python essentials to get you started", "Regular expressions", "Review of fundamentals A", "Review of fundamentals B", "Week by week schedule", "Webscraping with Beautiful Soup", "Simple scraping with BeautifulSoup!", "Submitting assignments", "Syllabus", "<no title>", "Testing", "Some ins and outs of trial generation", "Variables, Strings, and Numbers", "Viewing solutions"], "titleterms": {"": [12, 28, 29, 42, 46, 52, 68, 70, 75], "0": [2, 53], "1": [2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 36, 40, 44, 53, 55, 60, 61, 67, 70], "10": [5, 25, 53, 67], "100": [53, 68], "1000": 53, "11": [7, 67], "12": 67, "13": 67, "14": 67, "16th": 67, "19": 67, "1pt": 12, "2": [2, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 36, 40, 44, 55, 60, 61, 67, 70], "21": 67, "219": 1, "23rd": 67, "26th": 67, "28": 67, "2nd": 67, "3": [5, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 44, 53, 55, 67, 70, 75], "30th": 67, "4": [7, 9, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 55, 67], "5": [11, 12, 13, 14, 15, 16, 17, 18, 21, 22, 23, 44, 67], "50": 19, "5b": 23, "6": [15, 16, 22, 67], "7": [17, 18, 67], "750": [], "7a": 19, "7b": 19, "7th": 67, "8": [20, 21, 67], "9": [22, 24, 53, 67], "9th": 67, "A": [14, 23, 28, 29, 44, 45, 51, 52, 53, 56, 63, 65], "At": 67, "If": 50, "In": 67, "No": 67, "The": [8, 19, 45, 50, 53], "To": 30, "With": 27, "__init__": 45, "about": [46, 63], "accept": [45, 54, 70], "access": [27, 28, 34, 46, 52], "activ": 44, "actor": 23, "ad": [45, 46, 52, 58, 59], "add": [31, 62], "addit": 28, "adject": 5, "adjust": [15, 16], "advanc": 29, "advantag": 51, "after": 62, "again": 28, "all": [31, 46, 49, 52, 53], "amazon": 27, "an": [23, 26, 27, 29, 31, 46, 50, 52, 54, 56, 62, 70], "anaconda": [58, 59], "analysi": 61, "anim": [26, 56], "anoth": [26, 31], "antonym": 56, "append": [31, 52], "appli": 41, "ar": [30, 46, 51, 53, 70], "arbitrari": 54, "argument": 54, "arithmet": 30, "around": 37, "articl": 68, "assign": [2, 63, 70], "astrologi": [17, 18], "audio": 29, "authent": 28, "avail": 70, "b": [5, 66], "back": 70, "base": 29, "basic": [17, 18, 26, 30, 31, 34, 46, 51, 52, 67, 71], "batch": 64, "beauti": 68, "beautifulsoup": 69, "becom": 31, "been": 70, "befor": 27, "behavior": 1, "being": [30, 70], "belief": [17, 18], "between": 46, "billboard": 68, "birthdai": 19, "bit": 63, "block": 10, "blue": 62, "bonu": [5, 7, 21, 23], "border": 26, "box": 29, "branch": 70, "bunch": 29, "button": 29, "case": [56, 75], "cat": 31, "categor": 23, "cell": 34, "certain": 52, "chain": 50, "challeng": [9, 29, 40, 52, 53], "chanc": 74, "chang": [20, 31, 34, 55, 62, 70, 75], "charact": 31, "check": [19, 45, 50, 70, 75], "circl": [45, 62], "class": [30, 45, 56, 67], "click": 29, "climat": [20, 55], "closer": 45, "cmder": 59, "code": [11, 23, 27, 29, 40, 53, 58, 59, 68, 75], "cog": 1, "collect": [29, 62], "colloc": 56, "color": 54, "column": [31, 34, 41], "combin": [26, 31, 74, 75], "combinatori": 74, "command": 31, "comment": [28, 75], "commentari": 28, "commit": 70, "common": [51, 52], "compact": 46, "compar": 5, "complet": [27, 31], "comprehens": [30, 53, 66], "comput": 31, "concaten": [31, 75], "conclus": 45, "concord": 56, "condit": [29, 63, 64, 65], "configur": [58, 59], "consider": 56, "conson": 53, "contain": 75, "content": [54, 73], "control": 74, "convert": [26, 29, 52], "coordin": 29, "copi": [30, 31], "correctli": [58, 59], "correl": [20, 55], "count": 31, "coupl": 44, "cpu": 58, "creat": [23, 30, 37, 52, 58, 59], "credit": [12, 16, 44], "crop": 26, "csv": 34, "current": [68, 69], "custom": 29, "cut": 26, "data": [15, 16, 31, 34, 46, 61, 75], "date": 70, "debug": [35, 36], "dec": 67, "default": 54, "defin": [46, 52], "delet": [31, 70], "demo": 28, "demograph": 27, "describ": 27, "design": 47, "desktop": [58, 59], "detach": 70, "detail": 60, "detect": 30, "detour": 56, "dictionari": [37, 46, 47, 53, 66], "differ": [29, 46], "directori": [30, 31, 49], "dispers": 56, "displai": 31, "distribut": [56, 58, 59], "divis": 53, "do": [12, 29, 31, 34, 52, 70], "document": 26, "doe": 19, "done": 27, "doubl": 75, "download": 59, "drag": 25, "drop": 7, "dynam": 52, "e": [29, 31], "each": [10, 41, 52, 70], "easier": 29, "educ": [17, 18, 20, 55], "effect": [8, 9, 23], "effici": [31, 46], "element": 52, "eleph": [17, 18], "elif": 50, "els": 50, "email": [21, 22], "emb": 27, "end": [31, 41, 52], "endors": [17, 18], "english": 5, "entail": 56, "enumer": 52, "environ": [58, 71], "equal": 50, "error": [29, 51, 52], "essenti": 63, "etc": 27, "everyon": 12, "evolut": [17, 18], "exampl": [26, 45, 47, 50, 51, 68], "except": 30, "exercis": [2, 3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 40, 44, 53, 54], "exert": 74, "experi": [13, 27, 45, 47, 61], "explor": [15, 16, 17, 18, 62], "explos": 74, "express": [21, 22, 23, 64], "extend": [9, 10], "extens": 27, "extra": [12, 16, 44], "extract": 28, "face": [23, 24, 26], "facial": 23, "factor": 41, "fals": 50, "fast": 70, "favorit": 54, "featur": 70, "few": [58, 59], "figur": 70, "file": [23, 29, 30, 31, 34, 38, 49, 60, 64, 70], "filenam": 31, "filter": 64, "find": [30, 52, 53], "first": [31, 40, 67], "fix": [21, 22], "flatten": 30, "float": [30, 75], "form": 29, "format": 26, "forward": 70, "frame": 34, "frequenc": [18, 56], "frequent": 28, "from": [26, 27, 28, 29, 31, 34, 45, 52, 53], "function": [29, 30, 40, 45, 51, 54], "fundament": [65, 66], "g": 29, "game": 54, "gener": [10, 17, 18, 27, 29, 30, 44, 45, 51, 53, 74], "generatetri": 23, "get": [27, 29, 30, 31, 41, 63, 67, 68, 69, 70, 75], "git": [58, 59, 70], "github": 70, "give": 27, "glob": 49, "good": 75, "googl": [29, 39], "grab": [29, 49], "gram": 56, "graph": 15, "greater": 50, "group": [14, 23, 41], "gss": [20, 55], "gui": 29, "hall": 19, "happen": 50, "happi": [17, 67], "have": 29, "head": [68, 70], "help": [30, 31], "helper": 29, "hit": 27, "hobbi": [17, 18], "home": 67, "homebrew": 58, "hottest": 28, "how": [12, 19, 27, 29, 30, 38], "human": [17, 18], "hyphen": 21, "i": [19, 29, 31, 50, 52, 70], "id": [27, 28, 54], "idea": 53, "imag": [25, 26, 29, 49], "imagemagick": 26, "immut": 43, "import": [29, 30, 45, 46], "increas": 5, "indivis": 74, "ineffici": 46, "inequ": 50, "info": [27, 28, 29, 67], "inherit": 45, "input": 29, "ins": 74, "insert": 52, "insid": 52, "instal": [28, 58, 59], "instruct": [58, 61, 62], "integ": [53, 75], "intel": 58, "interact": 13, "interest": 23, "intro": [56, 62], "introduc": 51, "introduct": [28, 71], "item": [50, 52], "iter": [34, 37, 46], "its": [20, 55], "join": 52, "joke": 28, "jupyt": [58, 59], "keep": [29, 60], "kei": 46, "keyboard": 62, "keyword": 54, "know": [12, 58, 59], "knowledg": [17, 18, 20, 55], "lake": 69, "languag": [5, 54], "last": [40, 52], "later": 51, "learn": 60, "least": 19, "leav": 74, "lemma": 5, "lemmat": 56, "length": [52, 54, 75], "less": 50, "let": [42, 58, 59], "letter": 53, "level": 41, "librari": 30, "like": 5, "line": [31, 53], "linear": 41, "linux": 31, "list": [10, 29, 30, 31, 37, 40, 46, 50, 52, 53, 62, 63, 65, 66, 70], "lmno": [21, 22], "load": [30, 34], "local": 70, "local_module_nam": 45, "locat": 30, "log": 70, "logic": 50, "longer": 53, "look": [37, 45, 56, 70], "loop": [46, 52, 62, 63], "loos": 41, "lot": 68, "lure": 60, "mac": 58, "madison": [68, 69], "main": 70, "make": [3, 7, 26, 31, 45, 52, 70, 75], "manag": 27, "mani": 19, "manipul": 40, "mask": 26, "match": [21, 22], "meaning": 60, "mechan": 27, "memori": [49, 60], "mendota": 69, "merg": [41, 70], "method": [27, 45], "mind": 60, "mini": 30, "miscellan": 31, "mix": 54, "model": 41, "modifi": [46, 52], "modul": [30, 45], "modular": [11, 23], "module_nam": 45, "montag": 26, "monti": 19, "more": [7, 20, 23, 31, 45, 50, 51, 52, 54, 55, 63, 68], "morph": 24, "most": 28, "mous": [23, 29], "move": [31, 45], "movi": 54, "mturk": 27, "multipl": [41, 45, 52, 70], "mutabl": [30, 43], "n": [19, 56], "name": [12, 29, 40, 52, 68, 75], "nameerror": 75, "natur": [5, 7], "navig": 31, "necessari": [58, 59], "nest": 46, "neuron": 42, "new": [30, 31, 45, 46], "newspap": 68, "nltk": [5, 28, 56], "notat": 30, "note": [30, 46], "notebook": [58, 59], "noun": 28, "nov": 67, "now": [40, 68], "number": [22, 45, 53, 54, 75], "numer": 52, "object": [7, 43, 45], "obtain": 25, "oct": 67, "onc": 70, "one": [26, 27, 31, 50, 52, 53], "onli": 40, "onlin": 27, "open": 38, "oper": [34, 37, 46, 52, 65], "option": [26, 60, 61], "orang": 62, "order": 46, "orient": [7, 45, 67], "other": 46, "our": 71, "out": [30, 68, 70, 74], "output": [23, 31, 40, 60], "outsid": 52, "over": 74, "overlai": 26, "own": 62, "packag": [58, 59, 68], "pair": 46, "panda": 34, "paper": 27, "paradox": 19, "paramet": 45, "pars": 27, "part": [2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 20, 21, 22, 55, 70], "particip": 27, "particular": [31, 34, 70], "pass": [27, 50], "peopl": [19, 29], "perceptu": 14, "permut": 74, "person": [17, 18], "phase": 60, "phone": [22, 54], "pictur": 29, "pitfal": 27, "place": [30, 64], "plai": [3, 37], "plot": 56, "point": [29, 30, 75], "polar": 29, "polit": [17, 18, 20, 55], "pop": [29, 52], "portaudio": 58, "portion": 26, "posit": [29, 52, 54], "positiontyp": 23, "post": 28, "power": 45, "practic": [7, 20, 21, 22, 35, 36, 37, 38, 55], "praw": 28, "pre": 68, "preload": [29, 49], "present": 62, "press": 29, "prevent": 27, "primer": [38, 63], "print": [31, 63], "prior": 67, "prioriti": [17, 18], "probabl": 19, "problem": [5, 19], "process": 5, "profici": 31, "program": [1, 7, 50, 67, 71], "project": [60, 61, 67, 71], "prompt": 23, "properti": 62, "proport": 74, "psych": [], "psychopi": [29, 45, 58, 59, 62], "pt": [5, 44], "push": 70, "python": [29, 30, 45, 58, 59, 63, 71, 75], "qualtric": [27, 29], "question": 51, "quick": [30, 45, 56], "quot": 75, "r": [58, 59], "random": [10, 53, 66, 74], "rang": 53, "rather": 27, "reach": 19, "real": 27, "recognit": [11, 60], "rectangular": 29, "red": 7, "redact": 22, "reddit": 28, "refer": [29, 30, 43], "refin": 45, "refresh": 53, "regular": [21, 22, 64], "reinforc": 60, "relat": 27, "reload": 29, "remot": 70, "remov": [46, 52, 56], "renam": [31, 64], "repetit": [10, 52], "replac": 64, "repositori": 70, "resiz": 26, "respond": [23, 29], "respons": [29, 62], "result": 31, "return": [51, 53], "revers": 52, "review": [45, 65, 66], "rewind": 70, "rid": 31, "robust": 5, "rocket": 45, "room": 19, "row": 34, "rstudio": [58, 59], "rule": 75, "run": [23, 40, 41], "runtim": [29, 56], "safe": 30, "same": 31, "save": 29, "schedul": 67, "scienc": [1, 17, 18, 20, 55], "scrape": 69, "screen": 31, "screenshot": 29, "script": 29, "search": 64, "second": 51, "see": 70, "seed": 74, "send": 31, "separ": 29, "sept": 67, "sequenc": [30, 54], "seri": 26, "set": [30, 58, 59, 71, 74], "setup": [58, 59], "sexual": 18, "share": 19, "shave": 26, "shortcut": [58, 59], "should": 75, "show": [29, 62], "shuffl": 30, "similar": 25, "simpl": [10, 30, 45, 50, 65, 69], "singl": [45, 75], "slice": [30, 52], "social": [17, 18], "softwar": 27, "solut": [19, 27, 46, 70, 76], "some": [29, 30, 31, 41, 47, 74], "someth": [29, 30, 41, 75], "sort": [46, 52], "soup": 68, "sourc": 30, "space": [21, 22, 25], "spaceshuttl": 45, "spatial": 23, "specifi": 29, "speech": 11, "split": 52, "sport": 54, "squar": 3, "stage": 70, "staircas": 29, "start": 63, "state": 29, "statement": [50, 63], "step": 70, "stimuli": 62, "stimulu": 60, "stop": [7, 56], "store": [34, 45], "string": [29, 30, 40, 52, 75], "strip": 75, "stroop": [8, 9, 15], "structur": 46, "studi": [23, 56, 60], "studio": [58, 59], "subject": [23, 29], "submiss": [28, 67], "submit": 70, "subreddit": 28, "sure": 70, "survei": [17, 18, 27, 29], "switch": 70, "syllabu": 71, "syntax": [51, 53], "tab": 31, "tabl": 37, "tag": 70, "tail": 31, "take": 19, "task": [14, 23], "tax": [17, 18], "team": 54, "temperatur": [68, 69], "terminologi": 45, "test": [2, 29, 40, 50, 52, 58, 59, 60, 73], "text": [22, 29], "than": [27, 50, 53], "thanksgiv": 67, "thei": [27, 46], "them": [7, 42], "thi": [39, 40, 50], "thing": [60, 74], "through": [34, 37, 46], "tilt": 16, "tip": [29, 30, 31, 70], "todo": 0, "togeth": 31, "top": 28, "trial": [10, 29, 44, 62, 74], "trim": 26, "true": 50, "turk": 27, "turker": 27, "turkgat": 27, "turn": [40, 68], "tutori": [27, 30], "two": [19, 26, 31], "txt": 31, "ty": 41, "type": [52, 63, 75], "u": [5, 58, 59], "uk": 5, "undo": 70, "until": 29, "up": [26, 29, 37, 41, 42, 56, 70, 71], "updat": 70, "upvot": 28, "url": [28, 70], "us": [23, 28, 29, 30, 31, 34, 37, 45, 47, 51, 52, 53, 62, 64, 68], "user": [28, 29, 31], "v": [5, 17, 18, 52], "valid": [21, 22], "valu": [34, 37, 46, 50, 51, 52, 54], "variabl": [27, 29, 41, 63, 75], "variou": 27, "ve": [27, 30], "verb": 5, "verbal": 60, "verbos": 46, "version": 30, "via": 28, "view": [20, 55, 76], "virtual": 58, "visual": [58, 59, 60], "wai": [29, 45, 46], "wait": 29, "warm": 42, "we": 34, "weather": 68, "web": 29, "webcam": 29, "webscrap": 68, "week": 67, "weird": [21, 22], "well": 12, "what": [19, 46, 50, 51, 52, 70, 75], "when": [30, 75], "where": 70, "whether": 52, "which": [5, 31, 70], "while": [29, 31, 63], "whitespac": [50, 75], "who": 5, "why": [34, 45], "wikipedia": 68, "window": [58, 59], "within": [10, 29, 46], "word": [21, 22, 31, 53, 56], "wordnet": 56, "work": [17, 28], "workaround": 27, "worker": 27, "world": 54, "write": [29, 30, 31, 38, 75], "written": 68, "you": [12, 30, 63, 75], "your": [11, 19, 29, 62, 68, 70, 75], "yourself": 23, "zen": 75}}) \ No newline at end of file