Skip to content

Instantly share code, notes, and snippets.

@technocrat
Created May 13, 2023 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save technocrat/31d65ff1094e689bf5205c078dbd77f2 to your computer and use it in GitHub Desktop.
Save technocrat/31d65ff1094e689bf5205c078dbd77f2 to your computer and use it in GitHub Desktop.
---
title: "Untitled"
author: "Richard Careaga"
date: "2023-05-13"
output: pdf_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(ggplot2)
```
This is some text between the setup chunk and the first chunk.
```{r}
ggplot(mtcars,aes(drat,mpg)) + geom_smooth(method = "lm") + theme_minimal()
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment