Little
Little

Reputation: 3477

what type of machine learning technique use in this case?

I have found the following question:

enter image description here

I have made the following pre-assumptions and I would like if somebody could help me to see if they are right or wrong:

Aside note: I can also use as an input the quantities of candies that were in the market for the last 2 years, but here I will have to rescale it because I am using a 10 years time period.

Any help?

Upvotes: -2

Views: 120

Answers (1)

knb
knb

Reputation: 9373

Seems like a multiple choice question ("Which of the following...algorithms...?"), but you don't tell us explicitly what these alternatives are.

Really can't tell without more information, but here are some thoughts.

They are asking for a numerical outcome => this is a regression problem.

They are not asking for probabilities, or relative strengths: => not a logistical regression problem (which is used for classification/ categorical response variables anyway). Although with some assumptions + data processing you can treat it as a regression problem, I think.

Linear regression seems fine here, although some attributes (caketype) are nominal/categorical. The linear-model functions of most statistical software packages can deal with this.

fit = lm(q ~ price + price_of_competitors + year | caketype)

No clustering. no neural network.

Maybe a NN can be used, but it is more like a black box (applying logit function) to me. It does not seem to be the right tool for the job, as this is a problem with a simple linear relationship between price p and quantity.

Upvotes: 1

Related Questions