
The Art of Prompting GPT-4: Python CSV Cleaning and Data Visual Code
Last Updated on April 3, 2024 by Editorial Team
Author(s): John Loewen, PhD
Originally published on Towards AI.
Simple creation of Python scripts for interactive choropleth maps
Dall-E image: image of an interactive choropleth map on a computer screen.
With simple modular prompting, GPT-4 is an awesome tool for generating Python code to clean and to visualize your data.
In combination with the right libraries, Pandas and Plotly, you can create interactive charts, and maps.
Let’s work through 3 steps together on how to do this:
cleaning a datasetcreating a choropleth mapcreating an animated choropleth map that illustrates data over time
Let’s get to it!
For this exercise, we will be using a newly updated dataset from the UN Department of Economic and Social Affairs website (HERE).
The file we want to download is the one highlighted below:
This UN dataset models projected population growth for the years 2022 to 2100.
After a quick first look, we can see that some data cleaning is in order. The actual data headers start on Row 17. So we can remove the first 16 rows of data (or just start our data retrieval in this row).
Now if we want to do a choropleth map to show each country over time (by heat map), then we really only want the rows that actually have a value for the 3-letter ISO field. We can see by the observation that if we… Read the full blog for free on Medium.
Join thousands of data leaders on the AI newsletter. Join over 80,000 subscribers and keep up to date with the latest developments in AI. From research to projects and ideas. If you are building an AI startup, an AI-related product, or a service, we invite you to consider becoming a sponsor.
Published via Towards AI
Take our 90+ lesson From Beginner to Advanced LLM Developer Certification: From choosing a project to deploying a working product this is the most comprehensive and practical LLM course out there!
Towards AI has published Building LLMs for Production—our 470+ page guide to mastering LLMs with practical projects and expert insights!

Discover Your Dream AI Career at Towards AI Jobs
Towards AI has built a jobs board tailored specifically to Machine Learning and Data Science Jobs and Skills. Our software searches for live AI jobs each hour, labels and categorises them and makes them easily searchable. Explore over 40,000 live jobs today with Towards AI Jobs!
Note: Content contains the views of the contributing authors and not Towards AI.