I am writing an R-notebook that uses an API to fetch data, e.g. Quandl.
For my API function calls to work I must first set my API key. I want to share the notebook code with other developers on my team, but I do not want them to have access to my API key.
For example, my code looks like:
Quandl.api_key('MY_SECRET_API_KEY') # set the API key for Quandl library
my_data<- Quandl("USTREASURY/YIELD") # Make some function calls
How do I run the first line with my secret value without saving it in the R Notebook?