Unable to and use and load car package to run scatterplot

Hi, I'm wondering if someone could please help me? I'm just trying to load the car package and perform a scatterplot but this error keeps coming up.

library(car)
Loading required package: carData
Error: package or namespace load failed for ‘car’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘ellipsis’ 0.3.1 is already loaded, but >= 0.3.2 is required
In addition: Warning message:
package ‘car’ was built under R version 4.0.5

scatterplot(INDIV~AREA, data)
Error in scatterplot(INDIV ~ AREA, data) :
could not find function "scatterplot"

Really appreciate any feedback or help as my assessment is due soon.
Thank you

This is asking you to update the ellipsis package

install.packages("ellipsis")

Thank you Andresrcs :slight_smile: I then had to keep installing after that and now it's good to go, thank you. I'm new to Rstudio and finding what to look for when a code doesn't work is challenging.

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.