How to load RData files that are in the same directory as the .R file in RStudio?
Here, for example, there is the line:
load('teste.RData')
When loaded, it returns ...
Erro em readChar(con, 5L, useBytes = TRUE) :
não é possível abrir a conexão
Além disso: Mensagens de aviso perdidas:
In readChar(con, 5L, useBytes = TRUE) :
não foi possível abrir o arquivo comprimido 'teste.RData', motivo provável 'Arquivo ou diretório não encontrado'
This does not happen when I give the folder path:
load('~/Downloads/teste.RData')
Why does this occur? It's normal? How do I load without giving it all the way?