Repository for small data science projects I conducted (mostly from the first weeks of the SPICED Academy Data Science Program). The repo includes data exploration and data wrangling in Pandas, data vizualisation and the application of different Machine Learning models (Random Forest, Linear Regression, ARIMA).
- dataset: gapminder
- EDA: data wrangling, descriptive statistics, exploratory plots (histogram, bar plot)
- final visualization as an animated scatterplot
- dataset: Titanic (Kaggle)
- EDA: descriptive statistics, exploratory plots
- bulding a baseline model & training of a logistic regression model
- exploration of feature engineering techniques (Imputation, OneHotEncoding, Binning, Scaling)
- comparision of Decision Trees and Random Forest Classfier
- hyperparameter optimization for Random Forest Classifier
- dataset: Capital Bike Share (Kaggle)
- predicting the overall demand of bikes depending on weather conditions, day of the week
- EDA: exploring time series data in pandas and create time-related features out of timestamp, exploratory plots (time series plots)
- feature expansion (polynomial terms, interaction terms), feature selection, regularization (Lasso)
- comparision of linear regression and gradient boosting
- hyperparameter optimization (grid search)
- data scraped from: lyrics.com
- web scraping using BeautifulSoup and Regex
- tokenizing and lemmatizing using Spacy
- transform data into a TFIDF-Vectorizer
- Naive Bayes model to predict artist based on word spectrum
- dataset: historical temperature data for Berlin-Tempelhof from https://www.ecad.eu/
- exploring Linear Autoregression "manually"
- ARIMA model to predict the daily mean temperature based on historical weather data
- examination of (partial) autocorrelations




