I'm trying to read the properties table into r as a dataframe.
I'm using geojsonio.
library('geojsonio')
Then I load my topojson file.
house_map <- topojson_read("./tl_2016_us_cd115/tl_2016_us_cd115_simplify.topojson")
That is all good.
Now I have a values object that looks like this.
But I don't understand how to load the properties object of the topojson.
Tips?