Re: [R] Wrong function when import from module using get

2017-06-27 Thread Jakub Jankiewicz
By module I mean a package instaled using: R CMD INSTAL /path/ On Tue, 27 Jun 2017 10:06:16 +0200 Jakub Jankiewicz wrote: > Hi, > > I found this issue: > > when I have 3 modules: > > * AnalysisA > * AnalysisB > * AnalysisC > > I load all modules at the beginning from list of modules: > > a

[R] Wrong function when import from module using get

2017-06-27 Thread Jakub Jankiewicz
Hi, I found this issue: when I have 3 modules: * AnalysisA * AnalysisB * AnalysisC I load all modules at the beginning from list of modules: analyses <- list('AnalysisA', 'AnalysisB', 'AnalysisC') for (module in analyses) { library(module, character.only = TRUE) } and I want to add a func