nickmckay / LiPD-utilities

Input/output and manipulation utilities for LiPD files in Matlab, R and Python
http://nickmckay.github.io/LiPD-utilities/
GNU General Public License v2.0
29 stars 9 forks source link

Explicit imports from utils package #20

Closed gavinsimpson closed 7 years ago

gavinsimpson commented 7 years ago

R CMD check was complaining about use of some functions from the utils package that were not being imported (you had utils declared in Imports in DESCRIPTION but hadn't imported anything in NAMESPACE from this package.)

This PR adds @importFrom utils foo statements to the Roxygen headers in the places where these functions are explicitly used.

The NAMESPACE file was also rebuilt so that Roxygen added the relevant importFrom directives.