-
Notifications
You must be signed in to change notification settings - Fork 634
Closed
Description
Hello,
if i try to run ggplotly with large values (even with low number of observations)
when run, crash my machine. (i tried with another machine, and same problem)
code below:
library(ggplot2)
library(plotly)
employee <- c('John Doe','Peter Gynn','Jolie Hope')
salary <- c(210000000, 234000000, 268000000)
employ.data <- data.frame(employee, salary)
p <- ggplot(employ.data ,aes(x=employee, y=salary)) +
geom_bar(stat='identity', color="black") +
scale_y_continuous(labels = function(x) format(x, big.mark = '.', decimal.mark = ',', scientific = FALSE))
ggplotly(p)
thanks
Metadata
Metadata
Assignees
Labels
No labels