Skip to content
View 33eyes's full-sized avatar

Highlights

  • Pro

Block or report 33eyes

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. reddit-askdocs-analysis reddit-askdocs-analysis Public

    An exploratory analysis of the /AskDocs subreddit.

    Jupyter Notebook

  2. data-science-notes data-science-notes Public

    Notes on data science, with code examples.

  3. wiki-clickstream-graph wiki-clickstream-graph Public

    Wikipedia clickstream data exploration using network analysis

    Jupyter Notebook 6 1

  4. How to commit jupyter notebooks with... How to commit jupyter notebooks without output to git while keeping the notebooks outputs intact locally
    1
    ### Commit jupyter notebooks code to git and keep output locally  
    2
    
    
    3
    1. Add a filter to git config by running the following command in bash inside the repo:  
    4
    ```
    5
    git config filter.strip-notebook-output.clean 'jupyter nbconvert --ClearOutputPreprocessor.enabled=True --to=notebook --stdin --stdout --log-level=ERROR'