Skip to content

Instantly share code, notes, and snippets.

@shunkino
Created November 28, 2018 05:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shunkino/ee924f4d000eb0a90c2861d1b54bb3fc to your computer and use it in GitHub Desktop.
Save shunkino/ee924f4d000eb0a90c2861d1b54bb3fc to your computer and use it in GitHub Desktop.
for my blog
import plotly.graph_objs as go
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
import numpy as np
N = 10000
cluster_id = [np.random.randint(N/1000) for val in range(N)]
trace = go.Scattergl(
x = np.random.randn(N),
y = np.random.randn(N),
mode = 'markers',
marker = dict(
colorscale='Rainbow',
color=cluster_id,
line = dict(
width = 1,
color = '#404040')
)
)
data = [trace]
iplot(data, filename='WebGL100000')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment