From 449e78596428b9bb1594f93ca781475a97c3fe63 Mon Sep 17 00:00:00 2001 From: Laurens de Bruin Date: Thu, 29 Aug 2024 13:53:16 +0200 Subject: [PATCH] fix typo in sample tool example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f108ac..ffa4135 100644 --- a/README.md +++ b/README.md @@ -294,7 +294,7 @@ asreview data snowball input_dataset.csv output_dataset.csv --backward --email m This datatool is used to sample old, random and new records from your dataset by using the `asreview data sample` command. The sampled records are then stored in an output file. This can be useful for detecting concept drift, meaning that the words used for certain concepts change over time. This script assumes that the dataset includes a column named `publication_year`. An example would be: ```bash -asreview data sample input_dataset.xlsx output_dataset.xslx 50 +asreview data sample input_dataset.xlsx output_dataset.xlsx 50 ``` This samples the `50` oldest and `50` newest records from `input_dataset.xlsx` and samples `50` records randomly (without overlap from the old and new partitions!). The resulting 150 records are written to `output_dataset.xlsx`.