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
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
Post a Comment