This is an automated email from the ASF dual-hosted git repository.
jky pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flagon-distill.git
from 59bad9c Merge branch 'master' into license_headers
new 7e93fbe adding the superset elastic DSL notebook
new 5e1619e Update distill.segmentation.writing_segments.rst
new 65291bf Merge pull request #22 from apache/master
new 57ee52a added a scatter plot function as a notebook
new a9c1b67 updating click rate, adding more visuals, and fixing sub
strings in segments
new 3b7ec7f Adding an example notebook for ML group
new 0b0708d Adding a superset example log for ML group
new 6ed951d adding functions to graph and stat.py
new 34b4a82 Removed clickplot
new 481af6e Merge branch 'apache:master' into maintenance
new 7bf1fc7 Merge pull request #23 from UMD-ARLIS/maintenance
new 4028599 #24 add base poetry config, lockfile, and .gitignore update
new 6b84b9d pre-commits
new 1bd3fd4 pre-commit
new efcbfb2 pre-commit
new a1a4d35 change packages field to match the name of the src code
directory: 'distill'
new 71501a0 lint & format; broken tests
new a704e0b dangling save
new 754e704 handle absent field names for collapasing windows
new 1d1ff15 Merge pull request #27 from
UMD-ARLIS/24-migrate-dependency-management-to-poetry
new 41081e7 Merge pull request #13 from UMD-ARLIS/master
The 284 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.flake8 | 15 +
.gitignore | 7 +
.pre-commit-config.yaml | 23 +
CHANGELOG.rst | 7 +-
CONTRIBUTING.rst | 4 +-
Dashboard/app.py | 38 +-
Dashboard/index.py | 399 +-
Dashboard/pages/bar_chart.py | 38 +-
Dashboard/pages/bubble.py | 51 +-
Dashboard/pages/gantt.py | 140 +-
Dashboard/pages/home.py | 392 +-
Dashboard/pages/pie.py | 33 +-
Dashboard/pages/upload.py | 210 +-
Dashboard/pages/upload_tst.py | 189 +-
Makefile | 27 +
README.rst | 94 +-
distill/__init__.py | 55 +-
distill/analytics/graph/conf.py | 17 +-
distill/analytics/graph/graph.py | 398 +-
distill/analytics/stat/stats.py | 99 +-
distill/process/__init__.py | 2 +-
distill/process/search.py | 10 +-
distill/process/transform.py | 23 +-
.../docs/distill.segmentation.writing_segments.rst | 2 +-
distill/segmentation/segment.py | 307 +-
distill/segmentation/segmentation_error.py | 4 +-
distill/segmentation/segments.py | 94 +-
distill/utils/__init__.py | 2 +-
distill/utils/crud.py | 22 +-
docs/conf.py | 16 +-
examples/SuperSet_ElasticDSL_Demo.ipynb | 1541 +++++
examples/data/superset_example.json | 6205 ++++++++++++++++++++
poetry.lock | 1414 +++++
poetry.toml | 5 +
pyproject.toml | 130 +
requirements.txt | 21 -
setup.py | 93 +-
.pylintrc => tests/__init__.py | 0
tests/data_config.py | 6 +
tests/test_graph.py | 32 +-
tests/test_search.py | 18 +-
tests/test_segment.py | 1170 ++--
tests/test_segments.py | 169 +-
tests/test_transform.py | 4 +
tests/test_utils.py | 15 +-
tests/testing_utils.py | 20 +-
46 files changed, 11955 insertions(+), 1606 deletions(-)
create mode 100644 .flake8
create mode 100644 .pre-commit-config.yaml
create mode 100644 Makefile
create mode 100644 examples/SuperSet_ElasticDSL_Demo.ipynb
create mode 100644 examples/data/superset_example.json
create mode 100644 poetry.lock
create mode 100644 poetry.toml
create mode 100644 pyproject.toml
delete mode 100644 requirements.txt
rename .pylintrc => tests/__init__.py (100%)
create mode 100644 tests/data_config.py