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

23 lines
364 B
Plaintext

---
title: "Test Knit"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
# Test
This is a test to see if knitting works.
```{r test}
library(tidyverse)
print("Libraries loaded successfully")
```
```{r test-data}
data <- read.csv("exp1.csv")
print(paste("Data loaded:", nrow(data), "rows"))
```