Skip to content

Commit

Permalink
missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
RayStick committed Sep 27, 2024
1 parent 26875b1 commit 3f1b39e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/mapMetadata.R
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,13 @@ mapMetadata <- function(
start_v <- user_prompt_list(
prompt_text = 'Start variable (write 1 to process all): ',
list_allowed = seq(from = 1, to = nrow(Table_df), by = 1),
empty_allowed)
empty_allowed = FALSE)
end_v <- user_prompt_list(
prompt_text = paste('End variable (write',
as.character(nrow(Table_df)),
'to process all):'),
list_allowed = seq(from = start_v, to = nrow(Table_df), by = 1),
empty_allowed)
empty_allowed = FALSE)
}

### Use 'user_categorisation_loop.R' to copy or request from user
Expand Down

0 comments on commit 3f1b39e

Please sign in to comment.