Python Forum
How to predict Total Hours needed with List as Input? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Data Science (https://python-forum.io/forum-44.html)
+--- Thread: How to predict Total Hours needed with List as Input? (/thread-39298.html)



How to predict Total Hours needed with List as Input? - caninan - Jan-27-2023

I am struggling with the problem I am facing: I have a dataset of different products (Cars) that have certain Work Orders open at a given time. I know from historical data how much time this work in TOTAL has caused. Now I want to predict it for another Car (e.g. Car 3). I do not know the hours caused by a single item, only by this set of items together, thats what I mean with TOTAL hours.



Which type of algorithm, regression shall I use for this?

My idea was to transform this row based dataset into column based with binary values e.g. Brake: 0/1, Screen 0/1.. But then I will have lots of Inputs as the number of possible Inputs is 100-200..