Skip to content

Commit

Permalink
update YAML
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamKitto committed Apr 9, 2019
1 parent 089a1c5 commit 30da13a
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions BBets.Rmd
Original file line number Diff line number Diff line change
@@ -1,9 +1,31 @@
---
title: "Brownlows Bets"
author: "Put your name here!"
date: "put the date here"
output: html_document: default
---
author: "Your Name"
date: "Year 2019"
output:
html_document:
number_sections: true
toc: true
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
### `r as.character(Sys.Date())`

```{r include=FALSE,echo=FALSE}
require(tidyverse)
if(!require("imager")) {install.packages("imager");require("imager")}
```

```{r echo=FALSE,out.width='100%'}
xx<-getwd()
Drive_ltr <- strtrim(xx,2)
yy <- str_glue("{Drive_ltr}\\AAA_Owner_Info\\My_photo.jpg")
my_pict <- load.image(yy)
plot(my_pict,axes=FALSE,main="I'm Confused")
```

<!-- We recommend you use git branches -- create a separate branch for each major section i.e. Introduction, Methods, Results, Inferential Results, and Discussion and Conclusions - leave the YAML block untouched until the final merge where you put in your own name !-->

Expand Down

0 comments on commit 30da13a

Please sign in to comment.