-
Notifications
You must be signed in to change notification settings - Fork 631
Closed
Labels
Description
Hi Carlson,
the problem is not scale, sorry (about #429 issue)
i don't now if i need open or reopen issue, sorry.
the problem is big number.
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")
ggplotly(p)
if you run this dataframe with
salary <- c(210, 234, 268) = run instantly
and if you run with
salary <- c(210000000, 234000000, 268000000) = crash machine by high memory
the problem is when you use "big numbers"
thanks