Aggregate data from histogram

I am trying to aggregate data from a histogram for the class. On the first slide, students are entering data into a table for 8 data points. I am trying to pick data points as close as they can with a standard of 4, a mean of 48, and a median of 50. I would like to compile all the class data into one histogram to show a skew to the left. Any ideas?

numberList(“b_1”):aggregate(Graph10.number(“a”))
numberList(“b_2”):aggregate(Graph10.number(“b”))
numberList(“b_3”):aggregate(Graph10.number(“c”))
numberList(“b_4”):aggregate(Graph10.number(“d”))
numberList(“b_5”):aggregate(Graph10.number(“f”))
numberList(“b_6”):aggregate(Graph10.number(“g”))
numberList(“b_7”):aggregate(Graph10.number(“h”))
numberList(“b_8”):aggregate(Graph10.number(“j”))

If you want those to all be combined into one list, in your actual graph:

L=join(b_1,b_2,b_3,b_4,b_5,b_6,b_7,b_8)

Then, use L for your histogram

Thank you Daniel_Grubbs!!!