Aggregating from several math input components

Good day!

Is it possible to aggregate the math input from several slides into one list for a dotplot? I was thinking of having students input something in slide 1, then something in slide 2, etc, then aggregate them for a dotplot?

Thanks.

You can join lists in the graph, so if you aggregate lists A, B, and C:

L=join(A,B,C)
dotplot(L)

or right into the dotplot formula:

dotplot(join(A,B,C))
1 Like