Skip to content

Instantly share code, notes, and snippets.

@emailrhoads
Created January 13, 2021 16:17
Show Gist options
  • Save emailrhoads/675cb90b4f09c523a4741b3a53b758fb to your computer and use it in GitHub Desktop.
Save emailrhoads/675cb90b4f09c523a4741b3a53b758fb to your computer and use it in GitHub Desktop.
[Read TSV to data frame] #ruby
CSV.parse(File.read("irregular_addr.tsv"),
col_sep: "\t",
headers: true,
).map(&:to_h);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment