├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── dub.json ├── dub.selections.json ├── source └── magpie │ ├── axis.d │ ├── dataframe.d │ ├── group.d │ ├── helper.d │ ├── index.d │ └── operation.d └── test ├── fromcsv ├── dataset1.csv └── dataset2.csv └── tocsv ├── ex1p1.csv ├── ex1p2.csv ├── ex1p3.csv ├── ex1p4.csv ├── ex1p5.csv ├── ex2p1.csv ├── ex2p2.csv ├── ex2p3.csv ├── ex2p4.csv ├── ex2p5.csv ├── ex2p6.csv ├── ex2p7.csv ├── ex2p8.csv ├── ex2p9.csv ├── ex3p1.csv ├── ex3p2.csv ├── ex4p1.csv ├── ex4p2.csv ├── ex5p1.csv ├── ex5p2.csv └── ex5p3.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/README.md -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/dub.json -------------------------------------------------------------------------------- /dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/dub.selections.json -------------------------------------------------------------------------------- /source/magpie/axis.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/source/magpie/axis.d -------------------------------------------------------------------------------- /source/magpie/dataframe.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/source/magpie/dataframe.d -------------------------------------------------------------------------------- /source/magpie/group.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/source/magpie/group.d -------------------------------------------------------------------------------- /source/magpie/helper.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/source/magpie/helper.d -------------------------------------------------------------------------------- /source/magpie/index.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/source/magpie/index.d -------------------------------------------------------------------------------- /source/magpie/operation.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/source/magpie/operation.d -------------------------------------------------------------------------------- /test/fromcsv/dataset1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/fromcsv/dataset1.csv -------------------------------------------------------------------------------- /test/fromcsv/dataset2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/fromcsv/dataset2.csv -------------------------------------------------------------------------------- /test/tocsv/ex1p1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex1p1.csv -------------------------------------------------------------------------------- /test/tocsv/ex1p2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex1p2.csv -------------------------------------------------------------------------------- /test/tocsv/ex1p3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex1p3.csv -------------------------------------------------------------------------------- /test/tocsv/ex1p4.csv: -------------------------------------------------------------------------------- 1 | 1,1 2 | 2,2 3 | -------------------------------------------------------------------------------- /test/tocsv/ex1p5.csv: -------------------------------------------------------------------------------- 1 | 1|1 2 | 2|2 3 | -------------------------------------------------------------------------------- /test/tocsv/ex2p1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex2p1.csv -------------------------------------------------------------------------------- /test/tocsv/ex2p2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex2p2.csv -------------------------------------------------------------------------------- /test/tocsv/ex2p3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex2p3.csv -------------------------------------------------------------------------------- /test/tocsv/ex2p4.csv: -------------------------------------------------------------------------------- 1 | 1,1 2 | 2,2 3 | -------------------------------------------------------------------------------- /test/tocsv/ex2p5.csv: -------------------------------------------------------------------------------- 1 | 1,1 2 | 2,2 3 | -------------------------------------------------------------------------------- /test/tocsv/ex2p6.csv: -------------------------------------------------------------------------------- 1 | 1,1 2 | 2,24 3 | -------------------------------------------------------------------------------- /test/tocsv/ex2p7.csv: -------------------------------------------------------------------------------- 1 | 1,1 2 | 2,24 3 | -------------------------------------------------------------------------------- /test/tocsv/ex2p8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex2p8.csv -------------------------------------------------------------------------------- /test/tocsv/ex2p9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex2p9.csv -------------------------------------------------------------------------------- /test/tocsv/ex3p1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex3p1.csv -------------------------------------------------------------------------------- /test/tocsv/ex3p2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex3p2.csv -------------------------------------------------------------------------------- /test/tocsv/ex4p1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex4p1.csv -------------------------------------------------------------------------------- /test/tocsv/ex4p2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex4p2.csv -------------------------------------------------------------------------------- /test/tocsv/ex5p1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex5p1.csv -------------------------------------------------------------------------------- /test/tocsv/ex5p2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex5p2.csv -------------------------------------------------------------------------------- /test/tocsv/ex5p3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kriyszig/magpie/HEAD/test/tocsv/ex5p3.csv --------------------------------------------------------------------------------