You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately as I can see this happens since p_loaded is called with default arguments and all = FALSE is used as default, that makes utils::sessionInfo() function call
This is the place where error occurs. I am not sure why sessionInfo is behaving like this in such cases.
To solve this is would be great to pass custom deep arguments from p_load to other functions that p_load is using like p_loaded so we can set all = TRUE for example.
The text was updated successfully, but these errors were encountered:
LogIN-
changed the title
p_load via p_loaded messes up R session
p_loaded via p_load messes up R session and terminates execution
Mar 15, 2019
Hello,
First I want to thank you very much for this amazing package!
I have an issue by running following command, issue happens randomly and I cannot unfortunately give you reproducible example:
p_load(c(package), install = TRUE, update=FALSE, character.only = TRUE)
Error that's terminates script:
Unfortunately as I can see this happens since
p_loaded
is called with default arguments andall = FALSE
is used as default, that makesutils::sessionInfo()
function callpacman/R/p_loaded.R
Line 56 in e20832b
This is the place where error occurs. I am not sure why
sessionInfo
is behaving like this in such cases.To solve this is would be great to pass custom deep arguments from
p_load
to other functions thatp_load
is using likep_loaded
so we can setall = TRUE
for example.The text was updated successfully, but these errors were encountered: