Demo preview of daily activities analytics for a sample of synthetic data based on the Run4more App.
Please visit the public Run4more demo.
For a preview of a corporate or an impact challenge dashboard please visit Run4more corporate demo.
Initial motivation was to provide to students of the University of Athens Postgraduate Program (UoA - BIS) real-world data and problems.
Absolutely voluntary work, not part of the University of Athens courses material.
The material of the UoA - BIS python course is a necessary pre-requisite.
Knowledge of git, mongoDB, python tools such as pipx, poetry, ruff, mypy, pytest, black is needed too. Please visit the UoA - BIS crash-course on dev tools.
Thanks to feedback from past years, the repo is being refactored to a public version to:
- Provide intermediate educational python material on real-world data and tasks.
- Provide intermediate educational material on dev tools in real production.
- Demonstrate how Run4more uses data to increase user's physical activity.
- Demonstrate to Run4more partners what data is collected and how it could be analyzed.
- Be a first working example for the "StartUps Open Academy" (new repo to be added). This is an idea (under consideration) in which StartUps: offer a sample of their data, help Universities provide efficient education and research, and get to train postgraduate students on their data and workflows.
- Be a starting point for a "UoA BIS Postgraduates Data Science Community" (new repo to be added). This would create a place in which postgraduates:
- stay motivated and on course in landing a job in DS, ML or software development.
- share related work,
- undertake peer learning with real-work examples,
- advance their programming skills from diverse topics and,
- collaborate on projects.
Roadmap: A personal deadline, not a promise. A goal to keep me on track, as the Greek summer approaches.
Finish in time, before the next semester starts in October 2024.
Open to suggestions, ideas, criticism, and collaboration.
Data have been produced by "events" and "actions" by the Run4more App, stored in a mongoDB database.
For educational purposes, a sample of the data is stored in various formats (e.g. csv, feather, bson).
This data will be proccessed and presented using python and other tools.
The repo examples will gradually expand to cover the various data types the App produces:
text, numeric, categorical, quantitative, date, time, geolocation, binary, multi-class.
Tasks are based on actual functionalities that were built when needed for Run4more.
Tasks begin with simple python tasks such as working with dataframes, lists, plots.
Examples (to be added):
-
Manage and preprocess data of various types, from different file formats and databases.
-
Create analytics for all kinds of Run4more data, and their respective plots (numerical, categorical, geospatial charts) and deploy them online, on interactive dashboards. The result is to create simplified variations of a demo dashboard of Run4more, for different data and plots.
-
Create custom analytics for a Run4more partner that launches a corporate Wellness or Charity Challenge.
-
Predict a user's home and work address.
-
Get the closest Metro station to a user's home and work address.
-
Get the closest Supermarkets (from a given list) to a user's home and work address.
-
Get Supermarkets (from a given list) on the route from a user's home to their work.
-
Create users lists (store in DB collections) to send email when an
event
happens, e.g. stop at any location in a list, and win a unique coupon. -
Create email using an html template and send a coupon number and suggestion for the closest supermarket using a mail server.
-
Calculate distance between a user's home and work address.
-
Suggest the shortest route and duration for going to work using a bicycle.
Tasks gradually advance to include implementing ML algorithms:
- Predict a user's mode of transport.
- Create clusters of users based on their activity and/or preferences.
- Classify users' preferences based on the product they "view" or "buy" in the App.
- Predict the location a user will be at, during a given time interval.
Use the Dockerfile to create a docker image with basic version of the project.
At its current state, the Dockerfile deploys a simple streamlit app using static data.
First, clone the repo and assuming you have Docker installed run:
docker build -t r4m_demo .
docker run -it r4m_demo
Alternatively, you may clone the repo inside the Dockerfile.
Before the ADD
commands in the Dockerfile, add the following lines:
# Install git and clone repo
RUN apt-get update && apt-get install -y git
RUN https://github.com/argythana/r4m_public_demo.git
Then, you may use all the parts of the project in the Docker image.
Instead of copying only selected files, you may replace all the ADD
commands with:
# Copy all files
ADD . /src
a) Create a docker version of the project that includes:
- a mongoDB database with a sample of the data,
- a Postgres database with a sample of the data,
- services to update Databases, deploy and update analytics dashboards, and ML models.
b) Add instructions to encourage use of Github students development pack:
- set up linux server, use a bought domain name, and a free SSL certificate.
- host the docker image, the databases, and the services on the server.