I am working with a customer right now that is doing a lot of work with Azure Data Factory (ADF). ADF is a powerful cloud based data integration tool that lets you move data from a multitude of source, process that data and store it in a target data store. You can think of it […]
Tag: data engineering
Adding x-axis to matplotlib plots in Jupyter notebooks
I’ve blogged before about how I’m doing some of my own data analysis on the COVID-19 numbers. One thing that I didn’t like about my graphs was that they didn’t contain an x-axis, which made them a little bit harder to read. In this (very quick) blog post I’ll show you how to add an […]
Analyse Storage Account logs using Python in Azure Notebooks
Azure Storage can provide you detailed log information about all transactions happening against your storage account. There are default metrics that are gathered and shown through Azure Monitor. Additionally, you can configure logging on the storage account that give you a log information on a per request basis. Analyzing these logs can be a bit […]