Use Python as a Data Source in Power BI

preview_player
Показать описание
Published on May 12, 2021:
In this video, we will learn to use python as a data source in power bi.

Scripts used in the example are below:

import pandas as pd
print(df)

import pandas as pd
data = [['Alex',10],['Bob',12],['Clarke',13]]
df = pd.DataFrame(data,columns=['Name','Age'],dtype=float)
print (df)

In the previous video, we learnt to install and configure python for Power BI.

SUBSCRIBE to learn more about Power BI,Power Query, Power Pivot, Excel,SQL Server and Python!!

Download M Query code:

Our Playists:

ABOUT DAGDOO:
Website:

Questions? Comments and SUGESTIONS? You will find me here:

Twitter: @dagdooe

Category: Science & Technology
License: Standard YouTube License
Рекомендации по теме
Комментарии
Автор

Can i use my current script that connects to an api as a source?

BigBear
Автор

How to re-edit the python script after loading the data, can you let me know

muralimurali
Автор

Yey!! Thanks you so much man!
I am pretty new to PowerBi and have a question. Can I configure a HTTP client in python script to pull the data from a web service and publish this in powerBI and set a Schedule to refresh the data set daily just the way we set it for other Data Sources?

prasadbhokare