A gentle introduction to Causal Machine Learning, covering the core concepts, differences from traditional ML, and practical applications with Python.
This article covers five Python scripts designed to automate impactful feature engineering tasks, including encoding categorical features, transforming numerical features, generating interactions, extracting datetime features, and selecting features automatically.
This article details how to build a 100% local MCP (Model Context Protocol) client using LlamaIndex, Ollama, and LightningAI. It provides a code walkthrough and explanation of the process, including setting up an SQLite MCP server and a locally served LLM.
This article is a year-end recap from Towards Data Science (TDS) highlighting the most popular articles published in 2025. The year was heavily focused on AI Agents and their development, with significant interest in related frameworks like MCP and contextual engineering. Beyond agents, Python remained a crucial skill for data professionals, and there was a strong emphasis on career development within the field. The recap also touches on the evolution of RAG (Retrieval-Augmented Generation) into more sophisticated context-aware systems and the importance of optimizing LLM (Large Language Model) costs. TDS also celebrated its growth as an independent publication and its Author Payment
"Talk to your data. Instantly analyze, visualize, and transform."
Analyzia is a data analysis tool that allows users to talk to their data, analyze, visualize, and transform CSV files using AI-powered insights without coding. It features natural language queries, Google Gemini integration, professional visualizations, and interactive dashboards, with a conversational interface that remembers previous questions. The tool requires Python 3.11+, a Google API key, and uses Streamlit, LangChain, and various data visualization libraries
A simple explanation of the Pearson correlation coefficient with examples
A step-by-step guide to catching real anomalies without drowning in false alerts.
This tutorial compares Polars and pandas, covering syntax, performance, LazyFrames, conversions, and plotting to help you choose the right library for your data analysis needs.
The author discusses a shift in approach to clustering mixed data, advocating for starting with the simpler Gower distance metric before resorting to more complex embedding techniques like UMAP. They introduce 'Gower Express', an optimized and accelerated implementation of Gower.
This article details a hands-on approach to modeling rare events in time series data using Python. It covers data exploration, defining extreme events, fitting distributions (GEV, Weibull, Gumbel), and evaluating model performance using metrics like log-likelihood, AIC, and BIC. The example uses weather data and provides code snippets for implementation.