Skip to content
Advertisement

Tag: python

Python Azure Data Factory Update Pipeline

I want to use Python to add an activity to a pipeline in Azure Data Factory. With the following code I am replacing the actual activity but not adding a new one: This is the pipeline before running the code : After running the code: Expected : Answer Researched the statements in source code: So when you update the pipeline,

Getting min and max datime for each date in csv

I’m kind of new to data science and Python. First of all, do you suggest using any other Library than pandas when dealing with huge dataset (100K+ rows)? Second of all, let me expose to you my current problem. I have a Dataset in which I have a Datetime column, to make it easy to understand, let’s say I only

Can’t figure out why graph is not updating

I’m setting up a plotly-dash website where I want to show data from some domains from different points in time. Therefore I have a slider with which you can decide which data from which point in time you want to see. That already works. Moreover I want that if somebody clicks on one point it shows a line between all

Creating Python submodule

I want to create a tool called unifile for saving and opening files like this unifile.open.yaml(“file.yaml”). This is my structure: Code that call my module: open/init.py 1 error if I import unifile always say: module unifile has no atribute open 2 error in __init__.py I can’t open file [pylint] Context manager ‘open’ doesn’t implement enter and exit. [not-context-manager] Answer here

Advertisement