I have 4 sets of raw data values,
- Data value before change @25 degrees
 ex:[1, 2, 3,..., 10]
- Data value before change @79 degrees
 ex:[0.5, 1, 1.5,..., 5]
- Data value after change @25 degrees
 ex:[5, 6, 7,..., 15]
- Data value after change @79 degrees
 ex:[2.5, 3, 3.5,..., 7.5]
And I would like to create a histogram using these data sets, where each data set is its own series. Each data set would be stored in its own array, so it will not need any separation.
 
    
