Skip to content
View KalebNyquist's full-sized avatar
Block or Report

Block or report KalebNyquist

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. voters-clustering voters-clustering Public

    Python code and Jupyter notebook for doing cluster analyses of Democracy Fund's Voter Study Group.

    HTML

  2. statebased_vs_oop_pyplot statebased_vs_oop_pyplot Public

    This Jupyter Notebook provides the code used to generate the figures in the Medium post "plt.subplot() or plt.subplots()? Understanding state-based vs. object-oriented programming in Pyplot" publis…

    Jupyter Notebook 1 1

  3. Webscrape Election 2020 Presidential... Webscrape Election 2020 Presidential Results (County Level) from FoxNews.com
    1
    import requests
    2
    import pandas as pd
    3
    from bs4 import BeautifulSoup
    4
    
                  
    5
    # List of States
  4. Simple Download/Upload of Airtable D... Simple Download/Upload of Airtable Data into/from Python using Airtable API
    1
    import requests
    2
    import json
    3
    import pandas as pd
    4
    
                  
    5
    
                  
  5. Find Index Location Values in Pandas... Find Index Location Values in Pandas Dataframe for Specific String Value
    1
    def find_locations_in_pandas_dataframe(dataframe, search_term, starts_with_search_term=False):
    2
        """ Returns an ordered list of (dataframe column, dataframe row, specific string) index values where `search_term` is 
    3
        found in Pandas `dataframe` string data.
    4
        
    5
        Keyword arguments: