I'm new to R, having worked primarily with Python and Matlab. I'm interested in using the RTransferEntropy package.
I was able to download and install it in R via
install.packages("RTransferEntropy").
I typed library("RTransferEntropy"), which was successful.
However, in RStudio, library("RTransferEntropy") indicates no such package exists.
Is there something additional I need to do in RStudio? I did try installing the package first in RStudio, but that didn't work, and I received a lengthy error message. This is why I installed in R.
You have installed Rstudio through Anaconda, they use independent environments so the stand-alone R version you have installed is not the same that is used by Anaconda, also you are supposed to install packages using Anaconda management tools since Anaconda doesn't play well with CRAN repositories and Rstudio doesn't officially support Anaconda.
Unless you have a good reason for using RStudio trought Anaconda, I will strongly recommend you to use a stand-alone installation instead.