18 lines
259 B
Plaintext
18 lines
259 B
Plaintext
---
|
|
title: "Minimal Test"
|
|
output: html_document
|
|
---
|
|
|
|
```{r setup, include=FALSE}
|
|
knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE)
|
|
```
|
|
|
|
# Test
|
|
|
|
```{r}
|
|
library(tidyverse)
|
|
data <- read.csv("exp1.csv")
|
|
print("Success!")
|
|
```
|
|
|