Syntax for fitlm: + versus *
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    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!
0 comentarios
Respuesta aceptada
  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.
Más respuestas (0)
Ver también
Categorías
				Más información sobre Linear Regression en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!