Make ae
available: pharmaversesdtm::ae vs library(pharmaversesdtm) - a dead horse?
#2518
Closed
jimrothstein
started this conversation in
General
Replies: 1 comment 1 reply
-
I guess we are just trying to be explicit on where the data is coming from as we are assuming folks are not super familiar with R yet if they are using our template programs. Yes we could drop the library() call, but the comment on the datasets origin is important to also point out to new users. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Know there has been much discussion on this. But still not clear to me why admiral uses BOTH:
library(pharmaversesdtm) and pharmversesdtm::ae
library
seems enough to me:(I can clean this up, but here is my scratch work:)
GOAL: make dataset
ae
available for useCOMPARE: library(pharmaversesdtm) vs pharmaversesdtm::ae
if pkg installed,
this will findae
even if package is not loadedMETHOD 1 to make ae available.
Call library on pkg
pharmaversesdtm
I can not spell
pharmaversesdtm
; so trick to evaluate the stringTool to clean out packages, NS and so ae is not found
check
Method 2 to make ae available, use pharmaversesdtm::ae EACH time
###(but does not attach the package)
So both methods make
ae
available, but do we need both.Beta Was this translation helpful? Give feedback.
All reactions