Skip to content

Instantly share code, notes, and snippets.

@dpastoor
Created April 20, 2015 15:30
Show Gist options
  • Select an option

  • Save dpastoor/b05b6937dfe651f71040 to your computer and use it in GitHub Desktop.

Select an option

Save dpastoor/b05b6937dfe651f71040 to your computer and use it in GitHub Desktop.
julia snippet
if headerrow .== -99
for (i, x) in enumerate(rawdat)
if any([contains(x, s) for s in ["ID", "DV"]])
headerrow = i
break
else
continue
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment