Created
May 13, 2023 20:51
-
-
Save technocrat/31d65ff1094e689bf5205c078dbd77f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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