I've been thinking about how I can adapt the bike sharing regression example for ML.NET, see link at the bottom. If you look at the "DemandObservation" data structure used in this example you can see all the different fields used for the regression. My question is if it will still work even if I don't have all the data.
For example, maybe I have data like the day, month, year, etc, but I don't have weather or temperature. Will the regression algorithm still work if I just pass in blank values when i'm making a prediction, or will it cause predictions to become completely inaccurate? Would I have to pass in guess or previous values to get the algorithm to work? What i'm trying to do essentially is have the algorithm predict future bike sharing demand. Am I going down the wrong path with this approach? Thanks for your help in advance.