Skip to content

Instantly share code, notes, and snippets.

@wookay
Last active February 25, 2016 11:53
Show Gist options
  • Save wookay/1b3a0ae725d19ed16c0e to your computer and use it in GitHub Desktop.
Save wookay/1b3a0ae725d19ed16c0e to your computer and use it in GitHub Desktop.
parse cp949 csv

iconv 설치

http://gnuwin32.sourceforge.net/packages/libiconv.htm 에서 Complete package, except sources Setup 969371 14 October 2004 e0217c09792beec74578516d9fff55c 요거 받으시면 됩니다.

StringEncodings.jl 설치

julia> Pkg.clone("https://github.com/nalimilan/StringEncodings.jl.git")
julia> Pkg.build("StringEncodings")

읽기

julia> using StringEncodings
julia> using DataFrames

julia> readtable(open("sample.csv", enc"CP949"))

헤더 오류일 경우

julia> readtable(open("sample.csv", enc"CP949"), skipstart = 1) 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment