Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions myfile.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ When you click the **Knit** button a document will be generated that includes bo

```{r cars}
summary(cars)
# Simulate predictor variable
x <- rnorm(n = 100)
# Simulate response variable with some noise
y <- 2 * x + rnorm(n = 100, sd = 0.2)

# Plot the data
plot(x = x, y = y)
```

## Including Plots
Expand Down