Is it possible to configure R graphics event handling on OSX with RStudio?
macos, r, x11
Solution
Found this page that suggested doing `X11(type="Xlib")`, which seems to have done the trick.
Problem
I am using the kml package in R and in order to choose a partition, I need to use a function that relies on an interactive graphics environment. Trying to run the `choice` function, but I get this error: ``` Error in setGraphicsEventEnv(which, as.environment(list(...))) : this graphics device does not support event handling ``` Googling around has not yielded any leads.