I'm working on update of my package. However I'm struggling with dependencies/imports. I use two conflicted packages - ggplot2
and psych
and their functions alpha
and of course alpha
object of ggplot2
differs from alpha
function of psych
package.
When building package I get an warning:
Warning: replacing previous import 'ggplot2::alpha' by 'psych::alpha' when loading 'ShinyItemAnalysis'
Hence I wont be able to publish my package on CRAN (untill I solved this warning). Is there any easy way how to avoid this import conflict?
Note that when using
roxygen2
package to buildNAMESPACE
from fellow .R scripts, it is very helpful to delete theNAMESPACE
file and runroxygen2
again. Solves many problems.