Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Histogram help
#1


I want to group the categorical variable values (Materials) from an attribute (arr1) and plot against their corresponding numerical totals? (first the totals in 'arr2' & then in 'arr3')

data = pd.read_csv('Luton1516_DD.csv')

numpyArray = data.as_matrix(["Material", "DD_ComingledTonnes","DD_SegregatedTonnes"])

arr1 = numpyArray[:,0]
arr2 = numpyArray[:,1] 
arr3 = numpyArray[:,2]

df1 = pd.DataFrame({'A': arr2,'group': arr1})
df1.pivot(columns='group', values='A').plot.hist(stacked=True)
Can anyone offer help with this?
Reply
#2
It is difficult to help, without some lines from Luton.csv
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to fit a 2D histogram like in ROOT? Zandar 2 4,068 Aug-06-2019, 03:01 PM
Last Post: Zandar
  histogram error alyssaantarctica 1 3,714 Jul-09-2018, 10:46 PM
Last Post: Larz60+
  Plot Probability Density of an Histogram Python_TLS 1 2,853 Jun-28-2018, 06:19 AM
Last Post: scidam
  histogram with matplotlib vaugirard 10 6,152 Jun-01-2018, 04:13 AM
Last Post: vaugirard
  Help creating a histogram using an array rubadub 0 2,159 Apr-17-2018, 08:57 PM
Last Post: rubadub
  mcerp: error while plotting a histogram rakhmadiev 2 4,476 Apr-02-2017, 09:08 PM
Last Post: rakhmadiev
  plotting histogram vvv 1 3,259 Mar-10-2017, 11:47 PM
Last Post: zivoni

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020