eohi/.history/eohi1/minimal_test_20251004194608.rmd
2025-12-23 15:47:09 -05:00

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!")
```