Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a package that uses the trim() function in the gdata package. I literally use nothing else from the package and (as some of you may have seen) it overwrites some functionality of base R that I need.

Is there a way to load only one function rather than the whole package?

share|improve this question
1  
why not trim <- gdata::trim ? – Matthew Plourde Oct 30 '12 at 20:13
Doesn't that assume the gdata is loaded in order to be able to do that? – Gavin Simpson Oct 30 '12 at 20:16
1  
No, it doesn't. – Matthew Plourde Oct 30 '12 at 20:16
2  
The downside of @mplourde's method is that if you ever post your package to CRAN, folks who download it won't get gdata automatically downloaded for them if they don't already have it. – Josh O'Brien Oct 30 '12 at 20:21

1 Answer

up vote 10 down vote accepted

Sure. Just use an importFrom directive in your NAMESPACE file (as described here in R-exts).

importFrom(gdata, trim)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.