Weather-proof Mobility

Posted 7 CommentsPosted in Datathon 2020 Solutions, Datathons Solutions

In [166]: import os import pandas as pd import numpy as np import json import pprint import seaborn as sns from pandas.io.json import json_normalize import matplotlib.pyplot as plt from datetime import datetime, timedelta import time import warnings from statsmodels.formula.api import ols warnings.filterwarnings(‘ignore’) Business understanding¶ The aim of this article is to present an data driven approach […]

Weather Disruption of Public Transport Analysis Using Python

Posted 6 CommentsPosted in Datathon 2020 Solutions, Datathons Solutions

The Weather Dataset provided has been preprocessed the traffic data ha been appended after preprocessing.The aim is to find the intersection dates available from both the datasets and do a predictive analsyis after combining traffic and weather datasets.so if future weather conditions are given or predicted by time series analysis ,public trasnport disruption could be interpreted using machine learning models.

(Just a small try by an undergrad engineering student,Hope you like it 🙂 ).

Datathon2020 – NetInfo Article Recommender – Solution – nextClick

Posted 3 CommentsPosted in Datathon 2020 Solutions, Recommendation systems

Giving a recommendation to the user to catch his eye on and meet his preferences is essential task for a recommendation system. The amount of data is increasing significantly and the idea is to get some knowledge from it. Taking advantage of user similarities or news similarities will provide useful information to predict which article will the user find interesting.

Minimizing logistical transportation expenses of Retail Supply Chain

Posted 2 CommentsPosted in Datathon 2020 Solutions, Finance

Business Understanding As you know,lots of companies,related to logistics system,are having troubles with managing their finances,when it comes to transporting and ordering.There are tons of problems and unnecessary costs,that are driving executives crazy.But the main problem,that is causing the most biggest pain to these companies,IS Transportation Expenses.Just imagine how much billions(if not trillions) dollars would be […]

Datathon 2020 – Article recommendation

Posted 6 CommentsPosted in Datathon 2020 Solutions, Datathons Solutions

Article recommendation Team Fire Initial Analysis: The task of recommending and predicting a next best article is modeled as a function of the users POI (point-of-interest), the articles content and contextual information about it such as its popularity. A new user session can be decomposed of the following two parts: Initially selecting an article – […]

Predicting weather disruption of public transport

Posted 8 CommentsPosted in Datathon 2020 Solutions, Datathons Solutions

The purpose of the project was to build a model that tries to predict potential delays in Dubai’s bus transportation schedule, based on the weather conditions. Additional Extreme Gradient Boosting model was built, which is based on the weather conditions by 5 hours ago, which slightly improved the prediction of a few outliers, although this came at the cost of reducing the prediction accuracy for non-outliers. The overall prediction power was unfortunately unimpressive and could potentially be improved by analyzing the bus transportation data at an hourly level, by including additional data, such as global weather forecasts and traffic estimates, but also by exploring more feature engineering options, for example – seasonality, business activity, hourly segments and outlying flags.