-
Notifications
You must be signed in to change notification settings - Fork 634
orca error #1322
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thanks, fixed via c4f1001 |
Thank you @cpsievert |
I am having this same issue using Orca's Windows release 1.1.1. Does this release include the bugfix mentioned above? |
It shoud be fixed on the master branch: |
Thanks @cpsievert |
I just installed plotly using "devtools::install_github("ropensci/plotly")" |
Same here, My
Right before installing |
Please report |
Sure:
Thanks a lot. |
Also, a reproducible example, if possible. Thanks. |
Thanks a lot for the quick response. Here's an example where I build a (sparse)
I'm able to view the image of the I get the error:
Thanks a lot. |
Thanks. I thikn this may be due to another issue, could you file a new one? |
Just did. Thanks. |
orca
function works with the Rpackage Examples code:p <- plot_ly(z = ~volcano) %>% add_surface()
orca(p, "surface-plot.png")
but with a slightly larger dataset (dataframe with date and 1 variable with 8784 observations) test.zip
test <- readRDS("test.Rds")
p <- plot_ly(x = test$date, y = test$no, type = "scatter", mode = "lines")
orca(p,"test.png")
returns the following error:
Error in process_initialize(self, private, command, args, stdout, stderr, :
processx error, create process: #206 Filename or extension is too long.
at 'win/processx.c:761
but
p
plots fine on RStudio... how to avoid this BUG / limitation?The text was updated successfully, but these errors were encountered: