DAY 13 - Create visuals using Python Script in Power BI Desktop

DAY 13 - Create visuals using Python Script in Power BI Desktop

Step 1 : Navigate to Python visual icon in the Visualizations pane and click it

Step 2 : Python script editor will appear at bottom on the same page

Step 3 : Drag different columns of data-set to the Values section where it says Add data fields here

Step 4 : Add your visualization script below statement "# Paste or type your script code here:" and click on the Run button to generate a plot

# Paste or type your script code here:
import matplotlib.pyplot as plt
dataset.plot(kind='bar',x='Order',y='Quantity')
plt.show()




#RR #Day13 #Python #DataVizUsingPythonInPowerBI #PowerBI #HappyLearning #WeLearnEveryday

Comments

Popular posts from this blog

DAY 31 - Organize a Secret Santa Game in your organization using a Python Script

Day 15 - Steps to Import JSON Data-Set in POWER BI & Refresh data-set created from web source in POWER BI

DAY 10 - Python Program to Print the Pascal’s triangle for n number of rows given by the user