This is a collection of tasks and projects I developed for personal and professional use, as well as during the Data Science Bootcamp by Cogrammar and HyperionDev (full portfolio available here), which I attended in 2024.
I will use this space to track my projects and provide brief descriptions of their purposes.
In my most recent role, I built a dashboard to track our Growth Marketing activities, marketing channel performance, and deeper insights into our content—specifically, website traffic, newsletter engagement, and LinkedIn post-performance. The goal was to have everything in one place, easy to read, and actionable.
The dashboard was built using:
- HubSpot (custom reports)
- Google Sheets (data cleaning and processing)
- Looker Studio (visualization)
This program simulates a Travel agency digital service which allows users who want to go on holiday to look for a round trip flight that suits their needs. It takes the data from an external .csv file (Flights_info.csv) and manipulate them using Pandas library in order to retrieve the information requested from the users. Users are asked to compose a round trip selecting their preferred flights among the available ones corresponding to their selected departure city, arrival city and departure date. Users also need to select additional services, such as extra luggage, car rental or travel insurance. In the end, after collecting all the users' choices, the program shows the trip summary with all the details, the single price of every flight and service and the total cost of the trip.
The program makes use of:
- Python programming language
- while/for loops
- conditional statements
- user-defined functions
- Pandas library
- data manipulation
The objective of this task is to create graphs using a .csv dataset to explore and analyze the performance of various car models, aiming to answer specific questions based on the data:
- Which of the manufacturers has the car with the highest revs per mile?
- Is it generally more fuel efficient to drive in the city or on the highway?
- What happens when the wheelbase gets larger?
- Does a larger car mean more horsepower?
For this task I used:
- Python programming language
- Pandas library
- Matplotlib library
- Seaborn library