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

Block or report tcramm0nd

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. census-cb census-cb Public

    Wrapper for downloading and processing Cartography Boundaries from the US Census Bureau

    Python

  2. strava_map strava_map Public

    Generate heatmaps and KML's from your Strava activities

    Python 2

  3. Downloads US Census Bureau Cartograp... Downloads US Census Bureau Cartographoc Boundary files to a dedicated folder
    1
    import os
    2
    import io
    3
    import requests
    4
    import zipfile
    5
    
                  
  4. seoul_air_pollution_map seoul_air_pollution_map Public

    A Kaggle notebook that visualizes air pollution for Seoul using Folium

    Jupyter Notebook

  5. Quick overview of how to use a Rando... Quick overview of how to use a Random Forest Classifier using Scitkit Learn
    1
    # A breif overview of how to create a Random Forest Classifier using Scikit-Learn. For a more detailed breakdown and 
    2
    # an overview of what a Random Forest is, you can find the original post here: http://timcrammond.com/blog/what-is-random-forest/
    3
    from sklearn import datasets, metrics
    4
    from sklearn.model_selection import train_test_split
    5
    from sklearn.ensemble import RandomForestClassifier