Skip to content
Snippets Groups Projects
Select Git revision
  • 1d941448e014bdbdb710eb51c6f602d022fd33ac
  • master default protected
2 results

03-results-01.Rmd

Blame
  • Forked from ab604 / thesis-template
    6 commits behind the upstream repository.
    03-results-01.Rmd 469 B

    Results {#results-1}

    First results chapter.

    (ref:mpg-plot) Car engine size versus fuel efficiency. The mpg data contains observations collected by the US Environmental Protection Agency on 38 models of car.

    ggplot(data = mpg) + 
      geom_point(mapping = aes(x = displ, y = hwy, color = class))