Debug
Error: 'plot.InfluenceAnalysis' is not an exported object from 'namespace:dmetar'
eval(ev)
eval(ev)
private$.baujatPlot(image, theme = t$theme, ggtheme = t$ggtheme, ...)
on the other hand I use this function from the same package
i think this error message is telling you what the problem is:
Error: 'plot.InfluenceAnalysis' is not an exported object from 'namespace:dmetar'
you could workaround this with the use of three colons:
dmetar:::plot.InfluenceAnalysis()
just be careful, because if you're storing complex S3 objects in your state, sometimes these in R blow out to have really big sizes. see the warning at the bottom of this page: