# shows number of users requesting cpu memory for all jobs (array and non array jobs)
# bar graph jobs run per user for all users whose number of jobs that fall in the lower half of the upper 25th percentile of jobs ran (or the 75th percentile)
Users_fig = sns.distplot(user_cutoff['ReqMemCPU'], kde=False, label='Number of Users Requesting RAM per CPU for all Jobs', color = "green")
# shows average requested RAM per CPU for jobs by user, with the color of the bars being the count of jobs run for that user
color_discrete_sequence=['goldenrod'] # color of histogram bars
)
Users_fig.show()
```
```
%% Cell type:code id: tags:
%% Cell type:code id: tags:
```
```
# bar graph jobs run per user for all users whose number of jobs that fall in the upper half of the upper 25th percentile of jobs ran (or the 75th percentile)
# shows average requested RAM per CPU for jobs by user, with the color of the bars being the count of jobs run for that user