Closed hhp94 closed 1 year ago
Also, related to this issue. Line 71 normalize.quantiles.use.target
in ./R/PoAmProjector.R
threw an error for me: of could not find function "normalize.quantiles.use.target"
. Changing this to explicitly calls preprocessCore::normalize.quantiles.use.target()
fixed my issue
Thanks for your feedback @hhp94. This is the first time I've heard of these being an issue, we have addressed them to prevent anyone else having problems in the future.
Line 15,
./R/PoAmProjector.R.
requireNamespace(preprocessCore)
should be changed torequireNamespace("preprocessCore")
. Otherwise the functionPoAmProjector()
would return an errorpreprocessCore object not found
.System info: R 4.2.1 DunedinPACE version: e4cd508f63c573d71895b28e2e449846a7a11f8a OS: windows 10
EDIT: added file in reference