You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having trouble exporting fairly large plotly plots via orca(). Small plots, however, work just fine.
For example...
testdata <- as.data.frame(matrix(rnorm(20000,30,5),10000,2))
p <- testdata %>% plot_ly(x=~V1,y=~V2,type="scatter",mode="markers")
orca(p,"test.png")
Returns this error:
Error in process_initialize(self, private, command, args, stdin, stdout, :
processx error, create process: #206 File name or extension too long
at 'win/processx.c:1039'
For anyone having the same problem:
I was pretty sure I had ithe latest version installed, but re-installed it. During installation I got an error saying that an older version of the httpuv package couldn't be removed. I then deleted the httpuv folder, reinstalled the development plotly version. After the download library(plotly) gave me an error, saying some file was corrupt and plotly couldn't be loaded. When I closed RStudio and started it again, plotly loaded without any trouble and the orca() export worked just fine.
Hello,
I'm having trouble exporting fairly large plotly plots via orca(). Small plots, however, work just fine.
For example...
Returns this error:
This however runs just fine:
Does anyone know if and how this can be fixed? Or if there's another option to export my plotly plots (as svg and png)?
Thanks in advance!
The text was updated successfully, but these errors were encountered: