Home > Mobile >  Plot a chart with specific columns in Python through a Pandas dataframe
Plot a chart with specific columns in Python through a Pandas dataframe

Time:11-03

I'm trying to make a chart from a dataframe in Pandas, but I can't configure matplotlib.pyplot the way I need it.

    industry                nps     year
11  Transportation          50.84   2020
6   Professional Services   52.59   2020
3   Life Sciences           43.15   2020
26  Transportation          39.28   2019
21  Professional Services   43.52   2019
18  Life Sciences           40.19   2019
41  Transportation          37.66   2018
36  Professional Services   27.61   2018
33  Life Sciences           34.11   2018
56  Transportation          17.60   2017
51  Professional Services   17.33   2017
48  Life Sciences           -3.33   2017

The chart output I need is in this way as in the image.
enter image description here

How can I configure matplotlib.pyplot correctly for this output?
Thanks

CodePudding user response:

Here is an example using seaborn barplot

  • Related