ggplot2 for r 4.4.2

Hi there.I constantly get this massage and cant library ggplot2
Error: package or namespace load failed for ‘ggplot2’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘munsell’

Welcome to the forum.

You will need to install {munsell} before you install {ggplot2}

install.packages("munsell")

and then

install.packages("ggplot2")

{ggplot2} is part of the {tidyverse} larger package so you might want to install it as it installs a number of other very usefull packages at the same time as it installs {ggplot2}

install.packages("tidyverse")
1 Like

tnx that worked :heart: :heart: :heart: :heart: :heart:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.