import pandas as pd
import plotly.express as px
from plotly.offline import plot, iplot, init_notebook_mode
=True)
init_notebook_mode(connected
= pd.read_csv('coups_all.csv')
coups # coups = pd.read_csv('coups_2000.csv')
import plotly.graph_objects as go
= go.Figure(data=go.Choropleth(
fig = coups['code'],
locations = coups['COUNTA of coup_id'],
z = coups['country'],
text = 'plasma',
colorscale ='gray',
marker_line_color=0.5,
marker_line_width= 'No. of Coups',
colorbar_title
))
fig.update_layout(=True,
autosize# width=1000,
=1000,
height="plotly_dark",
template=
margin
{"r":0,"t":0,"l":0,"b":0,
"pad": 0,
# "autoexpand": False
},="Number of Coups",
title_text=14,
title_font_size="center",
title_xanchor=0.5,
title_x=dict(
geo=False,
showframe='equirectangular'
projection_type
),
)
fig.update_layout(='black',
paper_bgcolor='black',
plot_bgcolor='black',
geo_bgcolor= dict(font = dict(color = "white")),
legend_title =False,
dragmode
)
fig.update_traces(="h",
colorbar_orientation=10,
colorbar_thickness="bottom",
colorbar_yanchor=" ",
colorbar_title=0.6,
colorbar_len=dict(type='choropleth')
selector
) fig.show()
import pandas as pd
import plotly.express as px
= pd.read_csv('gdp.csv')
gdp
'GDPchange'] = gdp.apply(lambda x: x['GDPchange'][:-1] , axis=1)
gdp['GDPchange'] = gdp['GDPchange'].str[:-1].astype(float)
gdp[ gdp
Year | GDPchange | |
---|---|---|
0 | 1994 | 3.2 |
1 | 1995 | 4.4 |
2 | 1996 | 11.6 |
3 | 1997 | 6.5 |
4 | 1998 | -28.1 |
5 | 1999 | 1.0 |
6 | 2000 | 5.4 |
7 | 2001 | 2.1 |
8 | 2002 | -0.9 |
9 | 2003 | 0.5 |
10 | 2004 | 2.7 |
11 | 2005 | 4.2 |
12 | 2006 | 2.3 |
13 | 2007 | 3.2 |
14 | 2008 | 3.2 |
15 | 2009 | 3.3 |
16 | 2010 | 4.6 |
17 | 2011 | 8.0 |
18 | 2012 | -1.7 |
19 | 2013 | 3.2 |
20 | 2014 | 0.9 |
21 | 2015 | 6.1 |
22 | 2016 | 6.2 |
23 | 2017 | 5.9 |
'GDPchange'].dtype gdp[
dtype('float64')
import plotly.graph_objects as go
= px.bar(gdp, x='Year', y='GDPchange',
fig ="plotly_dark")
template
= {
config 'displayModeBar': False,
'showAxisDragHandles': True,
'showAxisRangeEntryBoxes' : False,
'editable': False,
'doubleClick': False
}=True)
fig.update_xaxes(fixedrange=True)
fig.update_yaxes(fixedrange='rgb(8,48,107)',
fig.update_traces(marker_line_color=1, opacity=0.6)
marker_line_width
=config) fig.show(config