We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
When you set a directory within the filename like directory/file the API returns the directory two times. directorydirectory/file
filename
directory/file
directorydirectory/file
When you use this as a simple example:
library(plotly) py <- plotly(username="noqqe", key="MYKEY") x <- rnorm(500) data = list(x = x, type = 'histogramx') l <- list(autosize = FALSE, width = 600, height = 400, showlegend = FALSE) response <- py$plotly(data, kwargs = list(layout = l, filename="Mountainbike/TEST")) filename <- response$filename print(filename)
You recieve the following
$ Rscript lolo.R Loading required package: RCurl Loading required package: methods Loading required package: bitops Loading required package: RJSONIO Loading required package: ggplot2 [1] "MountainbikeMountainbike/TEST"
The text was updated successfully, but these errors were encountered:
Good catch, thanks @noqqe !
Sorry, something went wrong.
No branches or pull requests
When you set a directory within the
filename
likedirectory/file
the API returns the directory two times.directorydirectory/file
When you use this as a simple example:
You recieve the following
The text was updated successfully, but these errors were encountered: