Been getting this error:
Warning: aes_string() was deprecated in ggplot2 3.0.0.
Please use tidy evaluation ideoms with aes()Error in .standalone_types_check_dot_call(ffi_standalone_check_number_1.0.7, :
object 'ffi_standalone_check_number_1.0.7' not found
What's the simplest way to get over this hurdle?
It can't seem to find 'ffi_standalone_check_number_1.0.7' which wasn't an issue a month ago.
Is there another ggplot version I should try to install instead that will work?
Thank you in advance.
Hi, welcome to the forum.
We are now up to ggplot2 v3.4.3. It looks like aes_string() is no longer supported and likely has been superseded by something new.
Probably the best thing to do is provide some code and sample data that will show us what you are trying to do. Someone should be able to show you the new or alternative way to get the some results
A handy way to supply some sample data is the dput() function. In the case of a large dataset something like dput(head(mydata, 100)) should supply the data we need. Just do dput(mydata) where mydata is your data. Copy the output and paste it here.
All these functions are soft-deprecated. Please use tidy evaluation idioms instead. Regarding aes_string(), you can replace it with .data pronoun. For example, the following code can achieve the same mapping as aes_string(x_var, y_var).