Python, Excel Individual Commands
Jump to navigation
Jump to search
Creating a pie chart from data
import plotly.express as px ## pip install plotly fig = px.pie(active_posts'username', 'Messages posted', values='Messages posted', names='username') fig.show()
active_posts has the data, username is a column also messages posted