Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

R script package tigris: cannot load shapefiles

I am using R script to make a choropleth map visualization. The actual data is confidential, so I cannot show the entire code, but the error comes when I load the shapefiles using 'tigris' package. Power BI Desktop does execute the entire code and makes a beautiful map, but when I publish it to Web, it gives me an error message saying "Error: Download failed; check your internet connection or the status of the Census Bureau website at http://www2.census.gov/geo/tiger/."

All the packages I used in the code are supported by Power BI. Could I get help on how to solve this issue?

 

Here is my code:

 

df_state <- dataset

library(dplyr)
library(tidyr)
library(tidyverse)
library(sf)
library(tmap)

# Downloading a shape file via tigris package
library(tigris) #For downloading the zipcode map
library(curl)
library(httr)
options(tigris_use_cache = TRUE)
geo <- st_as_sf(zctas(cb = TRUE, starts_with = df_state$ZCTA)) 
co <- st_as_sf(counties("California", cb = TRUE)) 
co = st_transform(co , st_crs(geo))

#Merging data & map
df_state.sf = merge(geo, df_state) 

tmap_mode("plot")
tm_shape(co) + tm_borders()

 

 

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

Has your problem been solved? If the problem has been solved you can mark the reply for the standard answer to help the other members find it more quickly. If not, please point it out. Thanks in advance.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

Anonymous
Not applicable

Hi @Anonymous ,

 

This problem can arise when Census blocks connections to its website intermittently. 

Refer this document , you, or your administrator, may need to update your firewall to allow access to the URLs Bing uses for geocoding. Those URLs are:

vtangjiemsft_0-1669950945012.png

You can also refer to the following documentation to try other ways to make a choropleth map visualization :

R Error downloading shapefiles using Tigris · Issue #72 · walkerke/tigris · GitHub

Choropleth map with R – the R Graph Gallery (r-graph-gallery.com)

How to create geographic maps in Power BI using R (sqlshack.com)

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution to help the other members find it more quickly. 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors