Skip to content

Commit

Permalink
docs: update read_chroms syntax in vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanbass committed Dec 7, 2023
1 parent daf5a2f commit e766d5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vignettes/chromatographR.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ chromatographR can import data from a growing list of proprietary file formats u

```{r, eval = FALSE}
# single folder
read_chroms(paths = path, format_in = "chemstation_csv")
read_chroms(paths = path, format_in = "chemstation_uv")
# multiple folders
path = 'foo' # path to parent directory
folders <- list.files(path = path, pattern = "EXPORT3D")
dat <- read_chroms(folders, format_in = "chemstation_csv")
folders <- list.files(path = path, full.names = TRUE)
dat <- read_chroms(folders, format_in = "chemstation_uv")
```

### Example data
Expand Down

0 comments on commit e766d5f

Please sign in to comment.