Skip to content
View rpardas's full-sized avatar

Block or report rpardas

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. Retrieves OpenStreetMap layers, spli... Retrieves OpenStreetMap layers, splits by category, and generates geopackages
    1
    ## Retrieves OpenStreetMap layers within specified bounding points
    2
    ## Splits the data by layer type and category
    3
    ## Generates geopackages to be placed in the specified output directory
    4
    
    
    5
    import osmnx as ox
  2. Cache dataframes to a Redis server Cache dataframes to a Redis server
    1
    ## Cache dataframes to a Redis server using a 'unitcode' (or identifier) column in combination with a timestamp. Use the pendulum start of the hour.
    2
    
    
    3
    from timeit import default_timer
    4
    import pandas as pd
    5
    import redis
  3. Function to create a SQL table from ... Function to create a SQL table from a parquet file
    1
    ## Create a SQL table from the given parquet file
    2
    
    
    3
    import os
    4
    import pandas as pd
    5
    import pymssql
  4. Simple linear regression exercise us... Simple linear regression exercise using real estate data - Udemy course
    1
    ## Udemy course simple linear regression exercise
    2
    ## Jupyter notebook
    3
    ## Real estate data with dependent variable - 'price' and independent variabe - 'size'
    4
    
    
    5
    import numpy as np
  5. Multiple linear regression exercise ... Multiple linear regression exercise using real estate data - Udemy course
    1
    ## Udemy course multiple linear regression exercise
    2
    ## Jupyter notebook
    3
    ## Real estate data
    4
    ## dependent variable is 'price'
    5
    ## independent variabes are 'size' and 'year'