I have the following data science problem: I have a set of arrays. An array represents a month consumption of lighting, heating or ventilation in which each line represents a consumption for one hour. So for each month in a year, I have 3 arrays.
For example, one array representing the heating consumption in March 2019 looks like this:
The purpose is to predict the type of consumption (lighting, heating or ventilation) of a month consumption. So, if I want to use a decision tree or neural networks for instance. How do I shape the data ? What will be the variables? Usually, a line is a data and columns are the variables but in my case a set of lines represent "one data" and I don't know what can be the variables.
I tried to compute maximum, minimum, std, mean etc...to sum up one array is just one line. But, I would like to know if there is another way to do this kind of prediction with set of arrays.
Thank you.