I am wondering if there is an efficient way to read this census-related data (https://www2.census.gov/topics/genealogy/1990surnames/dist.all.last) into a pandas data table directly? So far the only way I can think of to parse the columns is to read each line individually, apply .split() and then use that list to create a data table. This seems like something pandas would have dealt with, but I don't know how.
Asked
Active
Viewed 119 times
0
-
2`pandas.read_table(url, sep='\s+')` – Paul H May 22 '17 at 02:00