Skip to content

Commit

Permalink
placing code in a different place
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatyi committed Sep 30, 2022
1 parent 88d8e47 commit 273b998
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions vignettes/Implementation_of_sample_datasets.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,20 @@ vignette: >
%\VignetteEncoding{UTF-8}
---

```{r, collapse=TRUE}
library(correspondenceTables)
```{r include=FALSE}
knitr::opts_chunk$set(collapse = TRUE, comment = "#>")
tmp_dir<-tempdir()
csv_files<-list.files(tmp_dir, pattern = ".csv")
if (length(csv_files)>0) unlink(csv_files)
```

This vignette provides information about applying the correspondenceTables package on the sample datasets included in it.

ATTENTION: please set as working directory a folder different than the folder in which the package has been installed.
ATTENTION: please set as working directory a folder different than the folder in which the package has been installed, for instance as follows:

```{r}
library(correspondenceTables)
tmp_dir<-tempdir()
csv_files<-list.files(tmp_dir, pattern = ".csv")
if (length(csv_files)>0) unlink(csv_files)
```

LOCAL COPIES OF THE SAMPLE DATA

Expand Down

0 comments on commit 273b998

Please # to comment.