Skip to content
View aic5's full-sized avatar
  • @thenewscoin
  • New York, NY

Highlights

  • Pro
Block or Report

Block or report aic5

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. Useful Pandas Snippets Useful Pandas Snippets
    1
    # List unique values in a DataFrame column
    2
    pd.unique(df.column_name.ravel())
    3
    
                  
    4
    # Convert Series datatype to numeric, getting rid of any non-numeric values
    5
    df['col'] = df['col'].astype(str).convert_objects(convert_numeric=True)
  2. [Python] A script for simple hashing... [Python] A script for simple hashing in SHA256
    1
    # coding: utf-8
    2
    
                  
    3
    import hashlib
    4
    import console
    5