Data Specialist building with AI

Leveraging a decade of Public Policy and Digital Strategy to build intelligent, user-centric data solutions.

Selected Cases

CCSeeker: AI-Powered YouTube Creator Discovery

CCSeeker: AI-Powered YouTube Creator Discovery

A Streamlit application that automates niche creator discovery using a blend of AI and search algorithms for relevance and similarity rankings.

Python Streamlit YouTube Data API v3 Google Gemini AI Pandas
View Project →
Tigre Municipality: Citizen Satisfaction Analytics

Tigre Municipality: Citizen Satisfaction Analytics

Survey analysis for a local government of 447K residents — Power BI dashboards built in 2023, then revisited in 2025 to add an unsupervised NLP pipeline that automatically extracts and clusters keywords from open-text responses.

Power BI Power Query Python Pandas NLP
View Project →
Other Projects
Nashville Housing: SQL Data Cleaning

Nashville Housing: SQL Data Cleaning

Comprehensive data cleaning exercise on real estate data, demonstrating SQL proficiency with standardization, parsing, and stored procedures.

SQL Server T-SQL
View Details

Overview

A comprehensive data cleaning exercise using the Nashville Housing dataset, demonstrating SQL proficiency for data quality improvement. This project showcases essential data engineering skills for preparing real-world datasets for analysis.

Data Quality Issues Addressed

1. Date Format Standardization

ALTER TABLE NashvilleHousing
ALTER COLUMN SaleDate DATE;

2. Category Unification

Consolidated inconsistent land use categories:

UPDATE NashvilleHousing
SET LandUse = 'VACANT RESIDENTIAL LAND'
WHERE LandUse = 'VACANT RES LAND';

3. Missing Value Imputation

Used self-joins to populate missing property addresses from matching ParcelIDs:

UPDATE a
SET PropertyAddress = ISNULL(a.PropertyAddress, b.PropertyAddress)
FROM NashvilleHousing a
JOIN NashvilleHousing b
  ON a.ParcelID = b.ParcelID
  AND a.[UniqueID] <> b.[UniqueID]
WHERE a.PropertyAddress IS NULL;

4. Address Decomposition

Split combined address fields into granular components using PARSENAME:

-- PropertyAddress → PropertySplitAddress, PropertySplitCity
-- OwnerAddress → OwnerSplitAddress, OwnerSplitCity, OwnerSplitState

5. Value Standardization

Converted Y/N to Yes/No for consistency:

UPDATE NashvilleHousing
SET SoldAsVacant = CASE 
  WHEN SoldAsVacant = 'Y' THEN 'Yes'
  WHEN SoldAsVacant = 'N' THEN 'No'
  ELSE SoldAsVacant
END;

6. Column Cleanup

Removed redundant columns after extracting useful data:

ALTER TABLE NashvilleHousing
DROP COLUMN OwnerAddress, TaxDistrict, PropertyAddress;

Stored Procedure

Created a reusable procedure for identifying low-priced properties:

CREATE PROCEDURE small_prices
  @Unique_ID_param FLOAT
AS
BEGIN
  SELECT *
  FROM NashvilleHousing
  WHERE SalesPrice <= 150000
    AND UniqueID = @Unique_ID_param;
END

Skills Demonstrated

  • ALTER TABLE operations for schema modifications
  • UPDATE with JOIN for data imputation
  • PARSENAME for string parsing
  • CASE statements for value transformation
  • Stored Procedures with parameters
  • Data quality assessment and remediation

Why This Project?

Unable to share SQL work from previous roles due to confidentiality, I chose this well-known dataset to demonstrate data cleaning fundamentals—a critical skill for any data engineering or analytics position.

My Journey

🇵🇪 Peru
2025

Certification in LLMs

Humai Institute

Vector DBs, RAG, Google AI, Finetuning open source, Langchain, LLMOps, AI Agents.

Education
2021 - Present

Freelance Data Analyst & Engineer

International Clients

Providing data analysis, engineering, and digital marketing services remotely while living abroad.

Professional
🇦🇺 Australia
🇨🇷 Costa Rica
2021 - 2022

Certification in Data Science

Digital House

Python, Numpy, Pandas, Statistics, Machine Learning, Scikit-learn, Model evaluation, Classification, Clustering, API deployment.

Education
2020 - 2021

Certification in Data Analytics

Digital House

SQL, Power BI, Tableau, Statistical Modeling.

Education
2016 - 2021

Political Advisor & Press Chief

Senate of Argentina

Political Advisor of National Senator Luis Carlos Petcoff Naidenoff. Built political discourse for parliamentary activity, TV & Radio appearances, and Social Media.

Professional
2018 - 2019

Certification in Digital Marketing

Digital House

Comprehensive digital marketing training with Fernando Cerimedo, current Argentina's Presidential advisor.

Education
2012 - 2018

Bachelor's Degree in Political Science

Pontificia Universidad Católica Argentina

Thesis: Management of urban solid waste in the Municipality of Tigre.

Education
2014 - 2015

Social Media Manager

Municipality of Tigre

Managed official social media accounts. Monitored digital activities and reported to key government officials.

Professional
🇦🇷 Argentina