Enter an item from the menu, or 0 to exit

Hello,
I have a problem reading in a data set. Otherwise it has always worked without any problems. (df_re <- read_delim("Desktop/Master thesis/Evaluation data/Data preparation/data_defence_recoded.csv",
delim = ";", escape_double = FALSE, trim_ws = TRUE).
However, since a few days the following comment comes up and nothing is read in:
"Enter an item from the menu, or 0 to exit".

I would be very grateful if someone could help me!
Greetings Merri

This comment is usually displayed after a menu which offers you some choice. For example:

> menu(c("good choice", "bad choice"))

1: good choice
2: bad choice

Selection: #[here I just press enter]
Enter an item from the menu, or 0 to exit
Selection: 

So, first question: do you have any choice above this message?

Second, I don't see any call to menu() in the source of readr::read_delim(), so, are you sure you're calling the right command? Does it work better if you re-type the command in the console? What about read.csv2("Desktop/Master thesis/Evaluation data/Data preparation/data_defence_recoded.csv") ?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.