Evaluate function within package environment without attaching package
问题 Background I would like to evaluate a set of R function with a package environment without attaching this package I would like to avoid using package:: Example Data Given sample dummy data set: # Data -------------------------------------------------------------------- tmpCSV <- tempfile(fileext = ".CSV", pattern = "mtcars_data_") write.csv(x = mtcars[, 1:5], file = tmpCSV, row.names = FALSE) # Confirm # readLines(con = tmpCSV)[1] Reading library I could read it with use of read_csv function