Aquí tenemos las Tasas de Desempleo de los Estados Unidos al mes de Enero 2015.Alguna sugerencia escriba a:
morales.economia@gmail.com
Código en Python
morales.economia@gmail.com
Código en Python
import plotly.plotly as py
from plotly.graph_objs import *
py.sign_in('username', 'api_key')
trace1 = Bar(
x=['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'],
y=['6.6', '6.7', '6.7', '6.3', '6.3', '6.1', '6.2', '6.1', '5.9', '5.8', '5.8', '5.6'],
name='2014',
error_y=ErrorY(
visible=False
),
error_x=ErrorX(
visible=False
),
marker=Marker(
color='rgb(31, 119, 180)'
),
opacity=1
)
trace2 = Bar(
x=['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'],
y=['5.7'],
name='2015',
marker=Marker(
color='rgb(0, 0, 255)'
)
)
data = Data([trace1, trace2])
layout = Layout(
title='Tasa de Desempleo USA',
font=Font(
color='rgb(0, 0, 0)'
),
showlegend=True,
autosize=False,
width=869,
height=477,
xaxis=XAxis(
title='Fuente: Bureau of Labor Statistic',
titlefont=Font(
color='rgb(0, 0, 0)'
),
range=[-0.7057159295868027, 12.036322628957526],
type='category',
autorange=False,
zeroline=False,
showline=False,
nticks=49,
showticklabels=True,
tickangle='auto',
gridwidth=10,
zerolinewidth=6
),
yaxis=YAxis(
title='Tasas',
titlefont=Font(
color='rgb(0, 0, 0)'
),
range=[-0.04642637323096066, 7.4423155866152655],
type='linear',
autorange=False,
zeroline=False,
showline=False,
nticks=30,
showticklabels=True,
tickangle='auto',
gridwidth=10,
zerolinewidth=6
),
annotations=Annotations([
Annotation(
x=0.08163265306122448,
y=0.7760942760942762,
xref='paper',
yref='paper',
text=''
)
]),
paper_bgcolor='rgb(111, 168, 220)',
plot_bgcolor='rgb(217, 217, 217)',
bargap=0.08,
bargroupgap=0
)
fig = Figure(data=data, layout=layout)
plot_url = py.plot(fig)
Comentarios
Publicar un comentario