141 Commits

Author SHA1 Message Date
Winterflower
78b4a2291b Drops default Python version of Dockerfile to 3.7, because Pandas 0.25.1 is not compatible with Python 3.8 and Pandas 0.25.2 is breaking some eland tests 2019-11-27 21:29:26 +01:00
Winterflower
9ab411984a Adds extra step to Dockerfile build to take advantage of layer caching and avoid repulling dependencies in requirements.txt if they don't change 2019-11-27 21:05:02 +01:00
Winterflower
83d0c3de38 Adds helpful statement to know which ES instance you are connecting to 2019-11-27 21:03:47 +01:00
Winterflower
ce477021c1 Strips hostname from extra http if present in string to prevent failures in low level Python socket module 2019-11-27 21:03:03 +01:00
Winterflower
ba1c932823 Making run_build script an executable during container build 2019-11-26 16:28:24 +01:00
Winterflower
cc8a27398a Adding newline to end of file 2019-11-26 13:57:32 +01:00
Winterflower
80aec42d10 Add shebang header to run_tests 2019-11-26 13:56:41 +01:00
Winterflower
1c9b8f1298 Adding run_build script 2019-11-25 21:07:37 +01:00
Winterflower
c5b479b4f9 Adding line to read ES hostname from docker env var 2019-11-25 20:41:58 +01:00
Winterflower
12236078a8 Adding -r flag to pip install command and fixing name of Dockerfile in run-tests 2019-11-25 19:50:19 +01:00
Winterflower
d0aa84a894 First attempt at suitable Dockerfile and config for building Docker image for eland 2019-11-25 19:15:37 +01:00
Winterflower
ad118fcbad Adding 7.5 snapshot in test matrix 2019-11-25 18:14:20 +01:00
Winterflower
c4d269ccdb Customising CI setup for eland 2019-11-22 14:42:58 +01:00
Winterflower
031e914dbe Renaming configuration items to be eland specific 2019-11-21 17:12:45 +01:00
Winterflower
fc7c214ae6 Initial skeleton for .ci folder 2019-11-21 13:53:27 +01:00
stevedodson
4935a7b4ee
Merge pull request #58 from stevedodson/feature/user_guide
Adding 'development' section to docs
2019-11-20 13:58:25 +00:00
Stephen Dodson
530f2f7661 Resolving comments in contributing.rst + adding CONTRIBUTING.md 2019-11-20 13:56:44 +00:00
Stephen Dodson
6564f26245 Adding 'development' section to docs
Adding contributing section based on Elasticsearch/CONTRIBUTING.md
TODO - add testing docs (based on CI)1
2019-11-20 10:32:35 +00:00
stevedodson
2a409962ea
Merge pull request #55 from blaklaybul/fix-boolean-index
Instantiates Column as Series with Specified dtype
2019-11-20 08:14:59 +00:00
stevedodson
29b6a70995
Merge pull request #57 from blaklaybul/fix-no-results
Adds Proper DataFrame Formatting when max_rows = 0
2019-11-20 08:14:02 +00:00
Michael Hirsch
f1ec6c0d8b fixes UnboundLocalError when displaying empty dataframes 2019-11-19 15:52:03 -05:00
Michael Hirsch
c90602dd65 sets max_rows=1 in case of empty dataframe 2019-11-19 15:13:18 -05:00
Michael Hirsch
9c03d5a0d4 instantiates column as series with specified dtype 2019-11-19 13:13:08 -05:00
Michael Hirsch
9c9ca90c0d
Adds Support for Series.value_counts() (#49)
* adds support for series.value_counts

* adds docs for series.value_counts

* adds tests for series.value_counts

* updates keyerror language

* adds es docs as an external source

* adds parameters for metrics and terms aggs

* adds 2 tests to check for exceptions

* explains the size parameter

* removes print statements from tests

* checks that es_size is a positive integer

* implements assert_series_equal
2019-11-19 11:27:15 -05:00
stevedodson
885a0a4aba
Merge pull request #51 from stevedodson/master
Updating docs + added supported methods doc
2019-11-19 14:09:13 +00:00
Stephen Dodson
8f31c04c07 Extending metrics tests based on comments on https://github.com/elastic/eland/pull/51 2019-11-19 13:49:34 +00:00
Josh Devins
24f008af4e
Merge pull request #53 from joshdevins/fix-field-caps-too-long
Fixes field caps query params exceeding HTTP limit
2019-11-19 14:20:43 +01:00
Josh Devins
463edf9f90
Fixes field caps query params exceeding HTTP limit
We want all fields from _field_caps so we just use the wildcard expression here.
It's not clear why it didn't work before but it does now. This alleviates the
need to pass all fields to _field_caps.

See: https://github.com/elastic/eland/issues/52
2019-11-19 14:08:57 +01:00
Stephen Dodson
2854eecbf4 https://github.com/elastic/eland/issues/50 fix.
Root cause was incorrect filtering of numeric values by columns.
Added more tests + fixed a doctest.
2019-11-19 12:01:53 +00:00
Stephen Dodson
9b4fe40305 Updating docs + added supported methods doc 2019-11-19 10:42:23 +00:00
stevedodson
be4055093b
Merge pull request #48 from stevedodson/master
Improve to_string/to_html/__repr__/_repr_html_ tests
2019-11-19 08:22:36 +00:00
Stephen Dodson
fb2a1fae7b Updated to_string/to_html docs 2019-11-18 15:27:43 +00:00
Stephen Dodson
327f43d912 Fixing issue in to_html/to_string if max_rows is set 2019-11-18 14:47:35 +00:00
Stephen Dodson
d92ed94ef0 Improve to_string/to_html/__repr__/_repr_html_ tests
Added more rigorious tests for string representation
and fixing issue with to_html.
2019-11-18 12:55:23 +00:00
stevedodson
c93d07981d
Merge pull request #47 from blaklaybul/trim-display
Tabular Display: show 10 rows if index is larger than max_rows
2019-11-18 10:35:03 +01:00
Michael Hirsch
4eea073305 includes assertion 2019-11-16 11:57:25 -05:00
Michael Hirsch
8b96f1fa2c removes errant space 2019-11-15 17:41:15 -05:00
Michael Hirsch
30d307bdaf implements min rows to truncate display for large results 2019-11-15 17:38:46 -05:00
Michael Hirsch
b0be68e1db tabular display: show 10 rows if index is larger than max_rows 2019-11-15 11:10:35 -05:00
Michael Hirsch
e57d55dbc2
Adds isin boolean indexing to example (#45)
* adds isin example
* removes unecessary cells
2019-11-15 10:43:06 -05:00
stevedodson
905fba5d0f
Merge pull request #46 from stevedodson/master
Adding eland.read_csv
2019-11-15 16:16:26 +01:00
Stephen Dodson
2f4d601932 Adding eland.read_csv
TODO - resolve issue with ordering of eland.DataFrame compared to csv
2019-11-15 15:14:12 +00:00
stevedodson
394128acf5
Merge pull request #43 from stevedodson/master
General doc add and tidy up
2019-11-15 12:24:56 +01:00
Stephen Dodson
21f9c0f54a Merge remote-tracking branch 'upstream/master' 2019-11-15 11:23:37 +00:00
Stephen Dodson
f5025b9f39 Renamed ed_to_pd eland_to_pandas and added docs.
+ added some additions to .gitignore
+ removed DataFrame.squeeze for now
2019-11-15 11:21:27 +00:00
Stephen Dodson
29fe2278b7 Adding last few eland.DataFrame API docs. 2019-11-15 11:01:46 +00:00
stevedodson
8e72a97dc5
Merge pull request #42 from blaklaybul/example
Example Analysis of Online Retail
2019-11-15 09:36:06 +01:00
stevedodson
850e3f0d73
Merge pull request #38 from stevedodson/master
Adding Series.isin
2019-11-15 02:59:01 +01:00
Michael Hirsch
75f1bb51ce adds pip requirements to run example 2019-11-14 16:17:55 -05:00
Michael Hirsch
b6943c0fee adds eda of online retail data 2019-11-14 16:09:01 -05:00