I'm doing a data analysis and created a package to store my vignettes and data, as explained here.
I want to set some variables that would be available to all my package functions.
These variables define: the path to data sets, the measurements characteristics (such as probes positions), physical constants and so on.
I have read that one recommended way to store such variables is to use environments.
The question is, where do I put the script that creates the environment?
I thought about putting it in the onLoad method, to be sure it's executed when the package is loaded.