I am trying to create an R package with a function using the J
of data.table.
When I run R CMD check
, I have a NOTE : no visible global function definition for 'J'
although I've added data.table as a dependency in the DESCRIPTION file.
Package: rfPred
Type: Package
Title: Assign rfPred functional prediction scores to a missense variants list
Version: 1.0
Date: 2013-03-14
Author: me
Maintainer:me
Depends: data.table
[..]
I've tried to use another function of the data.table package in the package I want to create, but I haven't the same problem as for J.
Do you have a solution ?