Winston Chang
Winston Chang
Latter question answered in #256.
I think this will require adding a custom scale and dataset for name mappings.
It looks like there's a bug in creating the legend section of the spec. This _should_ work, but doesn't: ggvis(mtcars, props(x =~ mpg, y =~ disp, fill =~ factor(cyl), size...
Updated example: ``` S mtcars %>% ggvis(x= ~mpg, y= ~disp, fill= ~factor(cyl), size= ~hp) %>% layer_points() ``` It would be nice to be able to automatically position the legends so...
Sorry, I'm not able to reproduce this problem, on a remote machine with an older version of RStudio server, 0.98.484, and R 3.1.0. It seems unlikely that it's a browser...
@ewenharrison Have you tried with a recent version of RStudio Server? If so, it might be helpful if I can log into your machine. You can contact me directly at...
@ewenharrison we poked around on your server and it looks like you're using Apache as a proxy. You'll also need to configure it to proxy websocket connections. See this: http://httpd.apache.org/docs/2.4/mod/mod_proxy_wstunnel.html...
Can you supply the source for your shiny app?
Sorry, I haven't looked at bisectr in many years, and I can't provide any help at the moment.
It seems to work for me: ``` R library(ggplot2) library(extrafont) pdf("ggplot_cm.pdf", width=4, height=4) ggplot(mtcars, aes(wt, mpg)) + geom_point() + theme(text = element_text(size=16, family="CM Roman")) + xlab(expression(paste("Standard Deviation (", ring(A), ")")))...