質問

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