I used check() function to check my package. There is an error "Namespace dependencies not required: 'limma', 'survival'" So what's the problem?
You have imported a function from limma or survival but have not put those packages in your DESCRIPTION file. You can use usethis::use_package("limma") etc. to add them to the file. See also the Automated checks section of the r-pkgs book.
limma
survival
DESCRIPTION
usethis::use_package("limma")
Thank you ! Your solution helped me.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.