fig9_1.m 265 B

1234567891011
  1. % Local Regression and Likelihood, Figure 9.1.
  2. %
  3. % Hardle's Motorcycle accelaration dataset. Just a scatterplot!
  4. %
  5. % Author: Catherine Loader
  6. load mcyc;
  7. figure('Name','fig9_1: motorcycle scatterplot');
  8. plot(time,accel,'.');
  9. xlabel('Time');
  10. ylabel('Acceleration');