thomasp85 / hierarchicalSets

Scalable Set Visualization using Hierarchies
Other
55 stars 5 forks source link

Error ggplot guide_axis #7

Closed fungal-spore closed 1 year ago

fungal-spore commented 2 years ago

Hi, This is to report an issue and what fixed for me in case others run into same problem.

Initially installed with install.packages("hierarchicalSets") When running plot(data, type = 'intersectStack', showHierarchy = TRUE) I ran into error about guide_axis and unused argument.

As a check I ran plot(data, type = 'outlyingElements', wuantiles = 0.75, alpha = 0.5) and it generated plot successfully.

Fix

remove.packages("hierarchcalSets") Restart R (Rstudio) install.packages("devtools") install.packages("installr") library(devtools) library(installr) install.Rtools() devtools::install_github('thomasp85/hierarchicalSets') When asked to update other things I selected option 3: none when it finished install I was able to use intersectStack without issue.

:)