Syntax for fitlm: + versus *

2 visualizaciones (últimos 30 días)
Lydia
Lydia el 14 de Abr. de 2019
Comentada: Lydia el 15 de Abr. de 2019
What is the difference between the following syntax:
model(10).results = fitlm(tbl,'Acceleration ~ id * Weight');
and
model(10).results = fitlm(tbl,'Acceleration ~ id + Weight');
I am trying to run a linear model but allowing the intercept to vary per the "id" or identity of each observation.
Many thanks!

Respuesta aceptada

Walter Roberson
Walter Roberson el 15 de Abr. de 2019
id + Weight includes both id and Weight as linear terms, it appears.
id * Weight includes id, Weight, and id times Weight terms, if I understand correctly.
  1 comentario
Lydia
Lydia el 15 de Abr. de 2019
Thank you very much!

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by