Just Plotting

julia
code
analysis
Author

Dr Gary Beane

Published

March 20, 2024

Let’s pull some juicy data from somewhere

import Pkg;
Pkg.add("HTTP");
using HTTP

r = HTTP.request("GET", "https://microdata.worldbank.org/index.php/api/tables/data/fcv/wld_2021_rtfp_v02_m?limit=15")
println(r.status)
println(String(r.body))