# Different plotly behavour across computers

**URL:** https://discourse.julialang.org/t/different-plotly-behavour-across-computers/39693
**Category:** New to Julia
**Tags:** question, plotting
**Created:** [May 18, 2020, 12:11pm UTC](https://discourse.julialang.org/t/different-plotly-behavour-across-computers/39693 "2020-05-18T12:11:46Z")
**Posts on this page:** 1
**Showing post:** 6

<div class="post-metadata">

### Author: ![oheil](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/oheil/32/220745_2.png) [@oheil](https://discourse.julialang.org/u/oheil)
#### Post date: [May 19, 2020, 7:37am UTC](https://discourse.julialang.org/t/different-plotly-behavour-across-computers/39693/6 "2020-05-19T07:37:28Z")

</div>

It works for me:

```julia
julia> time_vect=[1,2,3]
3-element Array{Int64,1}:
 1
 2
 3

julia> dataMat=[2 2 2;3 3 3;4 4 4]
3×3 Array{Int64,2}:
 2 2 2
 3 3 3
 4 4 4

julia> using Plots

julia> plotly()
[ Info: For saving to png with the Plotly backend ORCA has to be installed.
Plots.PlotlyBackend()

julia> plot(time_vect, dataMat, hover = time_vect, layout = (3,1), link=:x)

```

gives:  
 ![newplot](https://global.discourse-cdn.com/julialang/original/3X/f/3/f357e49c79a0a8075f925fdcf25ee09fcd3f6a2c.png)

What you see above is a MWE (minimal working example), because others can just copy&paste the code to try and find issues.

Now whats needed next is your MNWE (minimal non working example). There is probably something wrong in your data, which results in the error.

See also

> [@Please read: make it easier to help you](https://discourse.julialang.org/t/psa-make-it-easier-to-help-you/14757):
>
> Welcome to the Julia Discourse! We are enthusiastic about helping Julia programmers, both beginner and experienced. This public service announcement (PSA) outlines best practices when asking for help. Following these points makes it easier for us to help you and more likely you’ll get a prompt, useful answer. Keywords are highlighted to make it easier to refer to specific points. Choose a descriptive title that captures the key part of your question, eg “plots with multiple axes” instead of …

```julia
julia> versioninfo()
Julia Version 1.4.1
Commit 381693d3df* (2020-04-14 17:20 UTC)
Platform Info:
  OS: Windows (x86_64-w64-mingw32)
  CPU: AMD Ryzen 5 3600 6-Core Processor
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-8.0.1 (ORCJIT, znver1)

(@v1.4) pkg> st
Status `C:\Users\USER\.julia\environments\v1.4\Project.toml`
...
  [91a5bcdd] Plots v1.2.6
...

```

---

_[View the full topic](https://discourse.julialang.org/t/different-plotly-behavour-across-computers/39693)._
