JuliaPlots / JuliaPlots/PlotlyJS.jl

3D scatter plots always plot next to each other

Open
#333 0 comments 1 reaction 0 assignees View on GitHub
Dominant language
Julia
Stars
444
Forks
86
PR merge metrics
No merged PRs in 30d

Description

```Julia
using PlotlyJS
p1 = scatter3d(;x=randn(100),y=randn(100),z=randn(100))
p2 = scatter3d(;x=randn(100),y=randn(100),z=randn(100))
p3 = scatter3d(;x=randn(100),y=randn(100),z=randn(100))
p4 = scatter3d(;x=randn(100),y=randn(100),z=randn(100))
p = [plot(p1) plot(p2); plot(p3) plot(p4)]
```

Running this code, I get the plots next to each other instead of a 2x2-matrix.
Julia 1.4.2 and PlotlyJS v0.13.1

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.