Last active
September 25, 2020 05:40
-
-
Save exy02/1e67c969cc651eb53a409222bafac264 to your computer and use it in GitHub Desktop.
How to Extract Data from Online Data Visualizations - 2. Data Cleaning _1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
json_list = json_extract.split("},{") | |
json_list = [sub.replace("{", "") for sub in json_list] | |
json_list = ["["+sub+"]" for sub in json_list] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment