Difference between revisions of "Python, Excel Individual Commands"

From rbachwiki
Jump to navigation Jump to search
(Created page with "==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', n...")
(No difference)

Revision as of 18:18, 11 September 2020

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

Back To Top - Main Category/ Excel Category