You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Did a fresh install of R v4.0.0 on Windows 10 along with Rstudio and Rtools. Installed the shotGroups package, and opted to have it pull any necessary dependencies.
The first time I went to run analyzeGroups, I got the following error messages:
Warning messages:
1: In groupShape.default(xy, plots = TRUE, bandW = bandW, outlier = "mcd", :
Package mvoutlier is not installed
2: In groupShape.default(xy, plots = TRUE, bandW = bandW, outlier = "mcd", :
Package energy for multivariate normality test not installed
Installing those two packages pulled in a bunch more packages...
Packages mvoutlier and energy are not automatically installed together with shotGroups as they are dependency-heavy (as you observed). energy requires Rcpp, a fairly large download. mvoutlier requires robCompositions, which in turn relies on a really large number of other packages.
For these reasons, the two packages must be installed explicitly by the user. In commit eb9b887, I now expanded the warning message to make the user aware that the packages need to be installed separately, and that doing so triggers a long installation process.
Did a fresh install of R v4.0.0 on Windows 10 along with Rstudio and Rtools. Installed the
shotGroups
package, and opted to have it pull any necessary dependencies.The first time I went to run
analyzeGroups
, I got the following error messages:Installing those two packages pulled in a bunch more packages...
The text was updated successfully, but these errors were encountered: