En este artículo, aprenderemos cómo cambiar una barra de color en Plotly Python.
Diferentes tipos de nombres de escala de color para Plotly
aggrnyl | burgo | infierno | plasma | rdpu | ylgnbu | asunto | géiser |
agsunset | burgil | chorro | trama3 | redor | ylorbr | solar | Pig |
cuerpo negro | cividis | magenta | pubú | rojos | ylorrd | velocidad | picnic |
blues | menta oscura | magma | pubugn | puesta de sol | algas | tempo | portland |
azul rojo | eléctrico | menta | puro | atardeceroscuro | amperio | térmico | pobre |
blugrn | emrld | orden | púrpura | verde azulado | profundo | túrbido | rdgy |
azul | gnbu | naranjas | morados | tealgrn | denso | rosa militar | rdylbu |
marrón | verduras | oriel | propósito | turbo | gris | brbg | rdylgn |
error | grises | durazno | arcoíris | viridis | halino | tierra | espectral |
bupu | caliente | rosa | rdbu | ylgn | hielo | otoño | verde azulado |
temperaturas | trópico | balance | rizo | delta | oxi | borde | hsv |
hielo fuego | fase | crepúsculo | mrybm | migbm |
Sintaxis:
Podemos cambiar el color usando la escala de colores.
fig = go.Figure(data=go.Scatter( y=np.random.randn(500), mode='markers', marker=dict( size=8, # set color equal to a variable color=np.random.randn(500), # one of plotly colorscales colorscale='hot', # enable color scale showscale=True ) ))
Ejemplo 1:
Python3
# import the modules import plotly.graph_objects as go import numpy as np # create figure # from the data using numpy random method fig = go.Figure(data=go.Scatter( y=np.random.randn(500), mode='markers', marker=dict( size=8, # set color equal to a variable color=np.random.randn(500), # one of plotly colorscales colorscale='hot', # enable color scale showscale=True ) )) # display figure fig.show()
Producción:
Ejemplo 2:
Establecer color en hot_r
Python3
import plotly.graph_objects as go import numpy as np fig = go.Figure(data=go.Line( y = np.random.randn(500), mode='markers', marker=dict( size=8, color=np.random.randn(500), #set color equal to a variable colorscale='hot_r', # one of plotly colorscales showscale=True # enable color scale ) )) fig.show()
Producción:
Ejemplo 3:
Establecer color en turbo_r
Python3
import plotly.graph_objects as go import numpy as np fig = go.Figure(data=go.Scatter( y=np.random.randn(500), mode='markers', marker=dict( size=8, # set color equal to a variable color=np.random.randn(550), # one of plotly colorscales colorscale='turbo_r', # enable color scale showscale=True ) )) # display fig.show()
Producción: