Last updated:
0 purchases
plotlykzmap 0.0.3
Plotly Kazakhstan Map
plotly_kz_map — is a Python package that provides a simple interface to create
Kazakhstan maps using Plotly.
Installation
pip install plotly-kz-map
Features
Drop in replacement for Plotly choropleth function, but with Kazakhstan
regions support.
Example
Here is an example using plotly_kz_map to visualize the population
of Kazakhstan by regions.
import plotly_kz_map as px
# load a sample dataset as a pandas DataFrame
df = px.data.kazakhstan_population()
fig = px.choropleth(
locations=df.region,
locationmode="KZ-regions",
color=df.population,
)
fig.show()
Or you can use a discrete color scale:
import plotly_kz_map as px
# load a sample dataset as a pandas DataFrame
df = px.data.kazakhstan_population()
fig = px.choropleth(
locations=df.region,
locationmode="KZ-regions",
color=df.region,
)
fig.show()
Notes
locations keyword argument should be a list of region names abbreviated as
following (check px.data.kazakhstan_population().region to see the full list):
{
"ABY": "Abay Region",
"AKM": "Akmola Region",
"AKT": "Aktobe Region",
"ALR": "Almaty Region",
"ATY": "Atyrau Region",
"EKR": "East Kazakhstan Region",
"JMB": "Jambyl Region",
"JTS": "Jetisu Region",
"KGD": "Karaganda Region",
"KST": "Kostanay Region",
"KZY": "Kyzylorda Region",
"MNG": "Mangystau Region",
"NKR": "North Kazakhstan Region",
"PVD": "Pavlodar Region",
"TRK": "Turkistan Region",
"ULY": "Ulytau Region",
"WKR": "West Kazakhstan Region",
"ALA": "Almaty",
"AST": "Astana",
"SHY": "Shymkent",
}
License
MIT
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.