Updating RStudio to R 4.2.1

Hi R Community, I'm in my first rides in "R" and, yesterday I try to update the version to the R 4.2.1 and now it seems that ggplot2 is not fully installed. I have the following message:

No id variables; using all as measure variables
Error in loadNamespace(x) : there is no package called ‘labeling’

The downloaded binary packages are in
C:\Users\letch\AppData\Local\Temp\RtmpYrmUzB\downloaded_packages

Your help will be greatly appreciated!!

Try installing the missing package

install.packages("labeling")

Also, after a major R update it is a good idea to update your package library with the checkBuilt option.

update.packages(checkBuilt = TRUE)

Andresrcs, Thank you!! I'm flying again... your advice solved the issue...

This topic was automatically closed 21 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.