├── .github └── workflows │ └── deploy-docs.yml ├── .gitignore ├── AUTHORS ├── LICENSE ├── README.md ├── benchmarks ├── SeriesMax │ └── bench.md ├── SeriesMean │ └── bench.md ├── SeriesMedian │ └── bench.md ├── SeriesMin │ └── bench.md ├── SeriesQ1 │ └── bench.md ├── SeriesQ2 │ └── bench.md ├── SeriesQ3 │ └── bench.md └── SeriesStd │ └── bench.md ├── changelogs ├── changelog_v010.md ├── changelog_v020.md ├── changelog_v021.md └── changelog_v022.md ├── dataframe.go ├── dataframe_test.go ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── blog │ ├── 2019-05-28-first-blog-post.md │ ├── 2019-05-29-long-blog-post.md │ ├── 2021-08-01-mdx-blog-post.mdx │ ├── 2021-08-26-welcome │ │ ├── docusaurus-plushie-banner.jpeg │ │ └── index.md │ └── authors.yml ├── docs │ ├── dataframe │ │ ├── arithmetic-operations.md │ │ ├── editing-properties.md │ │ ├── indexing.md │ │ ├── introduction.md │ │ ├── merging.md │ │ ├── printing.md │ │ ├── reshaping.md │ │ └── sorting.md │ ├── generator │ │ └── creating-new-objects.md │ ├── groupby │ │ ├── groupby.md │ │ └── introduction.md │ ├── index │ │ └── introduction.md │ ├── introduction.md │ ├── io │ │ ├── assets │ │ │ ├── readexcel-1.png │ │ │ ├── readexcel-2.png │ │ │ └── writeexcel.png │ │ ├── csv.md │ │ ├── excel.md │ │ ├── introduction.md │ │ └── json.md │ ├── plotting │ │ ├── assets │ │ │ ├── plot-example-1.svg │ │ │ └── plotn-example-1.svg │ │ ├── fitting.md │ │ ├── introduction.md │ │ ├── plotting-options.md │ │ └── plotting.md │ ├── series │ │ ├── editing-properties.md │ │ ├── indexing.md │ │ ├── introduction.md │ │ ├── printing.md │ │ ├── properties.md │ │ ├── sorting.md │ │ ├── summary-statistics.md │ │ └── what-is-a-series.md │ └── statistics │ │ ├── introduction.md │ │ └── statistics-functions.md ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── sidebars.js ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.js │ │ └── index.module.css └── static │ ├── .nojekyll │ └── img │ ├── docusaurus.png │ ├── favicon.ico │ ├── logo.svg │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ └── undraw_docusaurus_tree.svg ├── generator.go ├── generator_test.go ├── go.mod ├── go.sum ├── groupby.go ├── groupby_test.go ├── index.go ├── index_test.go ├── io.go ├── io_test.go ├── plot.go ├── plot_test.go ├── plotopts.go ├── series.go ├── series_test.go ├── stats.go ├── stats_test.go ├── testfiles ├── 10kSamplejson.json ├── airquality.csv ├── mergeDfsHorizontally │ ├── 1exp.csv │ ├── 1src.csv │ ├── 1target.csv │ ├── 2exp.csv │ ├── 2src.csv │ └── 2target.csv ├── mergeDfsVertically │ ├── 1exp.csv │ ├── 1src.csv │ ├── 1target.csv │ ├── 2exp.csv │ ├── 2src.csv │ └── 2target.csv ├── nba.csv ├── nbaBench.csv ├── nbaBench.json ├── neo_v2.csv ├── readexcel │ ├── test1.xlsx │ ├── test2.xlsx │ ├── test3.xlsx │ └── test4.xlsx ├── readjsonbycolumns │ ├── 1.json │ └── 2.json ├── readjsonstream │ ├── 1.json │ └── 2.json ├── test1.csv ├── test2.csv ├── testdfloc1.csv ├── testdfloccols1.csv ├── testdfloccolsitems1.csv ├── testdflocrows1.csv ├── testdfmelt1.csv ├── testdfmelt2.csv ├── testdfpivot1.csv ├── testdfpivot2.csv ├── testdfpivottable1.csv ├── testdropnan1.csv ├── testdropnan1after.csv ├── testdropnan2.csv ├── testdropnan2after.csv ├── testgbagg.csv ├── titanic.csv ├── writeCsvTest1.csv ├── writeCsvTest2.csv ├── writeexcel │ ├── test1.xlsx │ └── test2.xlsx ├── writejsontest1.json └── writejsontest2.json ├── utils.go └── utils_test.go /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/SeriesMax/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/benchmarks/SeriesMax/bench.md -------------------------------------------------------------------------------- /benchmarks/SeriesMean/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/benchmarks/SeriesMean/bench.md -------------------------------------------------------------------------------- /benchmarks/SeriesMedian/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/benchmarks/SeriesMedian/bench.md -------------------------------------------------------------------------------- /benchmarks/SeriesMin/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/benchmarks/SeriesMin/bench.md -------------------------------------------------------------------------------- /benchmarks/SeriesQ1/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/benchmarks/SeriesQ1/bench.md -------------------------------------------------------------------------------- /benchmarks/SeriesQ2/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/benchmarks/SeriesQ2/bench.md -------------------------------------------------------------------------------- /benchmarks/SeriesQ3/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/benchmarks/SeriesQ3/bench.md -------------------------------------------------------------------------------- /benchmarks/SeriesStd/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/benchmarks/SeriesStd/bench.md -------------------------------------------------------------------------------- /changelogs/changelog_v010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/changelogs/changelog_v010.md -------------------------------------------------------------------------------- /changelogs/changelog_v020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/changelogs/changelog_v020.md -------------------------------------------------------------------------------- /changelogs/changelog_v021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/changelogs/changelog_v021.md -------------------------------------------------------------------------------- /changelogs/changelog_v022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/changelogs/changelog_v022.md -------------------------------------------------------------------------------- /dataframe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/dataframe.go -------------------------------------------------------------------------------- /dataframe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/dataframe_test.go -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/blog/2019-05-28-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/blog/2019-05-28-first-blog-post.md -------------------------------------------------------------------------------- /docs/blog/2019-05-29-long-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/blog/2019-05-29-long-blog-post.md -------------------------------------------------------------------------------- /docs/blog/2021-08-01-mdx-blog-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/blog/2021-08-01-mdx-blog-post.mdx -------------------------------------------------------------------------------- /docs/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg -------------------------------------------------------------------------------- /docs/blog/2021-08-26-welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/blog/2021-08-26-welcome/index.md -------------------------------------------------------------------------------- /docs/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/blog/authors.yml -------------------------------------------------------------------------------- /docs/docs/dataframe/arithmetic-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/dataframe/arithmetic-operations.md -------------------------------------------------------------------------------- /docs/docs/dataframe/editing-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/dataframe/editing-properties.md -------------------------------------------------------------------------------- /docs/docs/dataframe/indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/dataframe/indexing.md -------------------------------------------------------------------------------- /docs/docs/dataframe/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/dataframe/introduction.md -------------------------------------------------------------------------------- /docs/docs/dataframe/merging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/dataframe/merging.md -------------------------------------------------------------------------------- /docs/docs/dataframe/printing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/dataframe/printing.md -------------------------------------------------------------------------------- /docs/docs/dataframe/reshaping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/dataframe/reshaping.md -------------------------------------------------------------------------------- /docs/docs/dataframe/sorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/dataframe/sorting.md -------------------------------------------------------------------------------- /docs/docs/generator/creating-new-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/generator/creating-new-objects.md -------------------------------------------------------------------------------- /docs/docs/groupby/groupby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/groupby/groupby.md -------------------------------------------------------------------------------- /docs/docs/groupby/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/groupby/introduction.md -------------------------------------------------------------------------------- /docs/docs/index/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/index/introduction.md -------------------------------------------------------------------------------- /docs/docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/introduction.md -------------------------------------------------------------------------------- /docs/docs/io/assets/readexcel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/io/assets/readexcel-1.png -------------------------------------------------------------------------------- /docs/docs/io/assets/readexcel-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/io/assets/readexcel-2.png -------------------------------------------------------------------------------- /docs/docs/io/assets/writeexcel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/io/assets/writeexcel.png -------------------------------------------------------------------------------- /docs/docs/io/csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/io/csv.md -------------------------------------------------------------------------------- /docs/docs/io/excel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/io/excel.md -------------------------------------------------------------------------------- /docs/docs/io/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/io/introduction.md -------------------------------------------------------------------------------- /docs/docs/io/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/io/json.md -------------------------------------------------------------------------------- /docs/docs/plotting/assets/plot-example-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/plotting/assets/plot-example-1.svg -------------------------------------------------------------------------------- /docs/docs/plotting/assets/plotn-example-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/plotting/assets/plotn-example-1.svg -------------------------------------------------------------------------------- /docs/docs/plotting/fitting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/plotting/fitting.md -------------------------------------------------------------------------------- /docs/docs/plotting/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/plotting/introduction.md -------------------------------------------------------------------------------- /docs/docs/plotting/plotting-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/plotting/plotting-options.md -------------------------------------------------------------------------------- /docs/docs/plotting/plotting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/plotting/plotting.md -------------------------------------------------------------------------------- /docs/docs/series/editing-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/series/editing-properties.md -------------------------------------------------------------------------------- /docs/docs/series/indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/series/indexing.md -------------------------------------------------------------------------------- /docs/docs/series/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/series/introduction.md -------------------------------------------------------------------------------- /docs/docs/series/printing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/series/printing.md -------------------------------------------------------------------------------- /docs/docs/series/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/series/properties.md -------------------------------------------------------------------------------- /docs/docs/series/sorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/series/sorting.md -------------------------------------------------------------------------------- /docs/docs/series/summary-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/series/summary-statistics.md -------------------------------------------------------------------------------- /docs/docs/series/what-is-a-series.md: -------------------------------------------------------------------------------- 1 | # what is a series -------------------------------------------------------------------------------- /docs/docs/statistics/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/statistics/introduction.md -------------------------------------------------------------------------------- /docs/docs/statistics/statistics-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docs/statistics/statistics-functions.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/src/pages/index.js -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/generator.go -------------------------------------------------------------------------------- /generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/generator_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/go.sum -------------------------------------------------------------------------------- /groupby.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/groupby.go -------------------------------------------------------------------------------- /groupby_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/groupby_test.go -------------------------------------------------------------------------------- /index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/index.go -------------------------------------------------------------------------------- /index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/index_test.go -------------------------------------------------------------------------------- /io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/io.go -------------------------------------------------------------------------------- /io_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/io_test.go -------------------------------------------------------------------------------- /plot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/plot.go -------------------------------------------------------------------------------- /plot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/plot_test.go -------------------------------------------------------------------------------- /plotopts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/plotopts.go -------------------------------------------------------------------------------- /series.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/series.go -------------------------------------------------------------------------------- /series_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/series_test.go -------------------------------------------------------------------------------- /stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/stats.go -------------------------------------------------------------------------------- /stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/stats_test.go -------------------------------------------------------------------------------- /testfiles/10kSamplejson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/10kSamplejson.json -------------------------------------------------------------------------------- /testfiles/airquality.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/airquality.csv -------------------------------------------------------------------------------- /testfiles/mergeDfsHorizontally/1exp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/mergeDfsHorizontally/1exp.csv -------------------------------------------------------------------------------- /testfiles/mergeDfsHorizontally/1src.csv: -------------------------------------------------------------------------------- 1 | Name,Age 2 | Avery,19 3 | Bradford,25 4 | Candice,22 5 | Daniel,30 6 | Evan,6 7 | -------------------------------------------------------------------------------- /testfiles/mergeDfsHorizontally/1target.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/mergeDfsHorizontally/1target.csv -------------------------------------------------------------------------------- /testfiles/mergeDfsHorizontally/2exp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/mergeDfsHorizontally/2exp.csv -------------------------------------------------------------------------------- /testfiles/mergeDfsHorizontally/2src.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/mergeDfsHorizontally/2src.csv -------------------------------------------------------------------------------- /testfiles/mergeDfsHorizontally/2target.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/mergeDfsHorizontally/2target.csv -------------------------------------------------------------------------------- /testfiles/mergeDfsVertically/1exp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/mergeDfsVertically/1exp.csv -------------------------------------------------------------------------------- /testfiles/mergeDfsVertically/1src.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/mergeDfsVertically/1src.csv -------------------------------------------------------------------------------- /testfiles/mergeDfsVertically/1target.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/mergeDfsVertically/1target.csv -------------------------------------------------------------------------------- /testfiles/mergeDfsVertically/2exp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/mergeDfsVertically/2exp.csv -------------------------------------------------------------------------------- /testfiles/mergeDfsVertically/2src.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/mergeDfsVertically/2src.csv -------------------------------------------------------------------------------- /testfiles/mergeDfsVertically/2target.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/mergeDfsVertically/2target.csv -------------------------------------------------------------------------------- /testfiles/nba.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/nba.csv -------------------------------------------------------------------------------- /testfiles/nbaBench.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/nbaBench.csv -------------------------------------------------------------------------------- /testfiles/nbaBench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/nbaBench.json -------------------------------------------------------------------------------- /testfiles/neo_v2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/neo_v2.csv -------------------------------------------------------------------------------- /testfiles/readexcel/test1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/readexcel/test1.xlsx -------------------------------------------------------------------------------- /testfiles/readexcel/test2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/readexcel/test2.xlsx -------------------------------------------------------------------------------- /testfiles/readexcel/test3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/readexcel/test3.xlsx -------------------------------------------------------------------------------- /testfiles/readexcel/test4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/readexcel/test4.xlsx -------------------------------------------------------------------------------- /testfiles/readjsonbycolumns/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/readjsonbycolumns/1.json -------------------------------------------------------------------------------- /testfiles/readjsonbycolumns/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/readjsonbycolumns/2.json -------------------------------------------------------------------------------- /testfiles/readjsonstream/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/readjsonstream/1.json -------------------------------------------------------------------------------- /testfiles/readjsonstream/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/readjsonstream/2.json -------------------------------------------------------------------------------- /testfiles/test1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/test1.csv -------------------------------------------------------------------------------- /testfiles/test2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/test2.csv -------------------------------------------------------------------------------- /testfiles/testdfloc1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/testdfloc1.csv -------------------------------------------------------------------------------- /testfiles/testdfloccols1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/testdfloccols1.csv -------------------------------------------------------------------------------- /testfiles/testdfloccolsitems1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/testdfloccolsitems1.csv -------------------------------------------------------------------------------- /testfiles/testdflocrows1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/testdflocrows1.csv -------------------------------------------------------------------------------- /testfiles/testdfmelt1.csv: -------------------------------------------------------------------------------- 1 | location,no2,pm25 2 | BETR801,26.951,23.169 3 | FR04014,29.374,NaN 4 | London Westminster, -------------------------------------------------------------------------------- /testfiles/testdfmelt2.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testfiles/testdfpivot1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/testdfpivot1.csv -------------------------------------------------------------------------------- /testfiles/testdfpivot2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/testdfpivot2.csv -------------------------------------------------------------------------------- /testfiles/testdfpivottable1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/testdfpivottable1.csv -------------------------------------------------------------------------------- /testfiles/testdropnan1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/testdropnan1.csv -------------------------------------------------------------------------------- /testfiles/testdropnan1after.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/testdropnan1after.csv -------------------------------------------------------------------------------- /testfiles/testdropnan2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/testdropnan2.csv -------------------------------------------------------------------------------- /testfiles/testdropnan2after.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/testdropnan2after.csv -------------------------------------------------------------------------------- /testfiles/testgbagg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/testgbagg.csv -------------------------------------------------------------------------------- /testfiles/titanic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/titanic.csv -------------------------------------------------------------------------------- /testfiles/writeCsvTest1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/writeCsvTest1.csv -------------------------------------------------------------------------------- /testfiles/writeCsvTest2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/writeCsvTest2.csv -------------------------------------------------------------------------------- /testfiles/writeexcel/test1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/writeexcel/test1.xlsx -------------------------------------------------------------------------------- /testfiles/writeexcel/test2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/writeexcel/test2.xlsx -------------------------------------------------------------------------------- /testfiles/writejsontest1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/writejsontest1.json -------------------------------------------------------------------------------- /testfiles/writejsontest2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/testfiles/writejsontest2.json -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/utils.go -------------------------------------------------------------------------------- /utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpoly1219/gambas/HEAD/utils_test.go --------------------------------------------------------------------------------