Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply

Python code Out Put

Hi experts,

 

Im using this python code in my power bi python visual,

 

import plotly.express as px
df = px.data.tips()
fig = px.sunburst(df, path=['day', 'time', 'sex'], values='total_bill')
fig.show()
----------------------------------------------------------------------
Problem:
 
The output is comming in explorer but not in python visual in power bi canvas. Please advise! , thanks a lot
 
faheem_Latif_BI_0-1701776409664.png

 

faheem_Latif_BI_1-1701776426972.png

 

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

You are not allowed to bring your own renderer. You must use the standard pyplot renderer.

 

Create Power BI visuals using Python in Power BI Desktop - Power BI | Microsoft Learn

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

You are not allowed to bring your own renderer. You must use the standard pyplot renderer.

 

Create Power BI visuals using Python in Power BI Desktop - Power BI | Microsoft Learn

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors