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

Block or report austinbrian

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

  1. austinbrian.github.io austinbrian.github.io Public

    GitHub Pages repo

    HTML

  2. jupydocker jupydocker Public

    Repo for How and Why to Put Jupyter Notebooks into Docker Containers (PyData 2019)

    HTML 7 5

  3. wordlestats wordlestats Public

    Python

  4. A couple of useful settings for disp... A couple of useful settings for displaying pandas dataframes
    1
    # Pandas settings to include on import
    2
    import pandas as pd
    3
    import numpy as np
    4
    pd.set_option('display.max_rows',1000)
    5
    pd.set_option('display.max_columns',1000)