Reputation: 365
when i use
library(ggExtra)
I get the following error message
Error: package or namespace load failed for ‘ggExtra’:
.onLoad failed in loadNamespace() for 'shiny', details: call: NULL error: invalid version specification ‘1,5’
I use shiny 1.7.1, ggExtra 0.9, R 4.3.1.
I get the some error message when I try to load shiny and radiant.data packages
I'm looking to understand the error and to a solution. Thanks in advance, any kind of help is appriciated.
Upvotes: 2
Views: 553
Reputation: 41499
You could try remove and reinstall the packages with dependencies = TRUE
by using this code:
remove.packages(c("ggExtra", "shiny", "radiant.data"))
install.packages('ggExtra', dependencies = TRUE)
install.packages('shiny', dependencies = TRUE)
install.packages('radiant.data', dependencies = TRUE)
library(ggExtra)
library(shiny)
library(radiant.data)
Output when running library(ggExtra)
:
Attaching package: ‘ggExtra’
The following object is masked from ‘package:shiny’:
runExample
Upvotes: 2