Ask Your Question
4

What does "sys.which" function not found error mean in RStudio?

asked 2023-01-17 11:00:00 +0000

pufferfish gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2021-04-13 00:00:00 +0000

huitzilopochtli gravatar image

The "sys.which" function is not a built-in function in base R, so if you are getting a "function not found" error for this function in RStudio, it means that the required package that contains this function is not loaded or not installed.

You can install and load the required package that contains the "sys.which" function using the following command:

install.packages("sys")

library(sys)

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-01-17 11:00:00 +0000

Seen: 20 times

Last updated: Apr 13 '21