Han Zhengzu
Han Zhengzu

Reputation: 3842

Interactive data visualization for geo-data using Python

Background

In some project, the dataset I analyzed is a bunch of features for different areas (countries or provinces). Presenting those data in bar-chart or choropleth-plot on the map is an essential work.

In the website Our world in data, I found some great works for visualizing the dataset like the example below.

enter image description here

This web app contains the following functions:

I have known about the plot.ly package, which has the similar functions.

Question

I want to build a web-based tool for visualizing geo-data in bar/bubble plot (examples in Fig.2) using Python.

enter image description here

How to implement this function? Any advice/examples would be appreciated.

Upvotes: 0

Views: 1584

Answers (1)

Hari
Hari

Reputation: 334

You can search for Dash :

A Python framework for building reactive web-apps. Developed by Plotly.

https://dash.plot.ly/

Upvotes: 2

Related Questions