문제

Let's say for example that I have a dataset about the cars that a company (e.g. Toyota) produced, over the course of the years 1990 - 2016.

Considering that I have already completed the feature engineering step, is there an algorithm that can output predictions on what attributes future Toyota cars will have?

What I mean is, can we produce output that will have the same features/attributes as the input data-points?

simple example:

For input X0-Xn = [EngineType, #OfWheels, #OfDoors, hasRadio, hasGPS, ProductionYear] --> Produce output Y = [EngineType, #OfWheels, #OfDoors, hasRadio, hasGPS, ProductionYear]

도움이 되었습니까?

해결책

This can be treated as Multivariate Time Series Forecasting, for this you can look into Vector AutoRegression(VAR). Because there might be some association between attributes which we need to take care of hence we can't treat them as separate time series entities.

If you have found some hierarchical relationship between variable you can also look into hierarchical time series forecasting.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 datascience.stackexchange
scroll top