View on GitHub

JagritiG.github.io

Portfolio

Project 1: DataMidWare - A Data Middleware Python Library

DataMidWare is a data middleware python library which accelerates data preparation, analysis, and visualization tasks by integrating different technologies, software, and libraries using its APIs.

The DataMidWare performs the following tasks:

Alt Text

Project 2: gsheets-db-api-plus: A Python DB API for Google Spreadsheets

This version (0.2.0) allows you to query, insert, update, and delete Google Spreadsheets using SQL and SQLAlchemy. The version (0.2.0) removes the limitations in version (<= 0.1.12) for insert, update, and delete operations.

Examples using SQLAlchemy grammar: INSERT, UPDATE, DELETE:
engine.execute(table.insert(), column1=value1, column2=value2, column3=value3, ...)
engine.execute(table.update().where(table.c.column == value).values(column1=value1, column2=value2, column3=value3,...))
engine.execute(table.delete().where(table.c.column <= value))

Project 3: WebViz: Web Visualization using Django and Plotly

This is a simple Django app for web visualization which allows users to upload csv file and visualize the data.

Project 4: Geo-location Clustering using the k-means Algorithm using Python

The objective is to discover a few most promising neighborhoods based on the criteria such as knowing neighborhood, place with no similar restaurants in vicinity, accessibility and visibility of the location, population base, parking, and low crime rate, and present them with statistics so that the stakeholders, the restaurant entrepreneurs, can select the precise location for opening up their new restaurant.

Methodology used:

Alt Text

Project 5: California Housing Price Prediction using Multivariate Regression Model

Alt Text