-
-
Notifications
You must be signed in to change notification settings - Fork 67
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
Are the [Julia] docs up to date? #16
Comments
I am also very disappointed, the official examples are almost unavailable |
I try this office doc, but obviously some thing is not support by my julia. I suspect the official may have stopped updating for Julia?
|
@sglyon is working on this |
Yep -- sorry for the delay in getting the updates up. We have made some great changes to the Julia plotly packages and that work will be represented in the docs soon! |
i cannot get the examples to run in julia 1.1 , I get type errors, plot wont accept the arrays of string => values any more, it needs an array of abstracttypes....
i.e. not trace2 = [
"x" => [1, 2, 3, 4],
"y" => [16, 5, 11, 9],
"type" => "scatter"]
but
trace1 = scatter(
x= [1, 2, 3, 4],
y= [10, 15, 13, 17],
mode="lines")
response = Plotly.plot(trace1).
Where can i find the version of Julia de the examples are based on, and where can i find docs to use plotly in Julia 1.1 and later?
Sorry, I am new in Julia, probably the questions are easily solvable.
The text was updated successfully, but these errors were encountered: