Skip to content
View nikhilbhatewara's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report nikhilbhatewara

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. TeradataChallenge2018 TeradataChallenge2018 Public

    Data Cleaning and EDA codes for Teradata challenge 2018

    HTML

  2. GoogleMachineLearningCrashCourse GoogleMachineLearningCrashCourse Public

    Learning Tensorflow and basics of deep learning

    Jupyter Notebook

  3. ObjectDetection ObjectDetection Public

    Demo code of object detection using ImageAI library

    Python

  4. Useful Pandas Snippets Useful Pandas Snippets
    1
    # List unique values in a DataFrame column
    2
    # h/t @makmanalp for the updated syntax!
    3
    df['Column Name'].unique()
    4
    
                  
    5
    # Convert Series datatype to numeric (will error if column has non-numeric values)