At the Fitting a higher order Polynomial exercise the A matrix gets to big. In the solution this is avoided by only taking values from a specific hour of the day. Maybe we should take this part into the template to avoid confusion.
if hour == " 04" or hour == " 05":
keep_indices.append(idx)
At the Fitting a higher order Polynomial exercise the A matrix gets to big. In the solution this is avoided by only taking values from a specific hour of the day. Maybe we should take this part into the template to avoid confusion.