Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 697 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 697 Bytes

stataParquet

A prototype Java implementation of reading Parquet files into Stata.

There is currently very basic read support. Once the program is stable, I'll distribute a file that requires no installation. Until then, you'll need to build the program yourself. To build, install Java 8, Maven, and Git and run:

git clone https://github.com/kylebarron/stataParquet
mvn package

Then copy or symlink the file

target/stataParquet-0.1.0-jar-with-dependencies.jar

to whatever your PERSONAL directory is in Stata.

Then run:

javacall com.kylebarron.stataParquet.ParquetStataReader read, ///
    jar(stataParquetShaded.jar) ///
    args("path/to/parquet/file.parquet")