Rate of drop analysis: Difference between revisions
Created page with "==Purpose== To assess the initial response to insulin administration, you can calculate the slope of the line for the early timepoints in your insulin tolerance test. To do th..." |
mNo edit summary |
||
| Line 15: | Line 15: | ||
filter(time=="0"| time == "30"| time =="45") | filter(time=="0"| time == "30"| time =="45") | ||
drop.data.lm <- lm ( | drop.data.lm <- lm (formula = ( glucose ~ time + treatment + time:treatment, data = new.data.set, ) | ||
anova(drop.data.lm) | anova(drop.data.lm) | ||
coefficients(drop.data.lm) | coefficients(drop.data.lm) | ||