I am writing an R package and here:
R package does not load dependencies
A user indicates that (s)he changed
Imports: dplyr (>= 0.4.3), ggplot2 (>= 2.1.0), lazyeval (>= 0.1.10)
to
Depends: dplyr (>= 0.4.3), ggplot2 (>= 2.1.0), lazyeval (>= 0.1.10)
And the problem with required packages for a new R package was solved. However, that person did not indicate if the change was done manually or by coding. I am doing the change manually and my problem persists (and I really believe the problem is about importing packages or dependencies).
My questions are:
- Is it just fine to edit the DESCRIPTION file manually? If not,
- Which is the proper way to do the change?
Very much thank you in advance