Skip to content

Instantly share code, notes, and snippets.

@poliquin
Created April 22, 2016 03:28
Show Gist options
  • Save poliquin/94281c9adeeb0bfccae3b50ce869c4da to your computer and use it in GitHub Desktop.
Save poliquin/94281c9adeeb0bfccae3b50ce869c4da to your computer and use it in GitHub Desktop.
Importing a CSV file with double quotes in the data into Stata
// Reading CSV data into Stata is sometimes complicated by the presence of double quotes.
// The import delimited command often provides the solution:
import delim "data.csv", clear delim(",") varn(1) charset("utf8")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment