Skip to content

Commit

Permalink
IPython integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Schonfeld committed Dec 3, 2019
1 parent 626004e commit b586f70
Show file tree
Hide file tree
Showing 80 changed files with 2,107 additions and 588 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ defaults: &defaults
- run:
name: Run JS Tests & Coverage
command: |
yarn run test-with-coverage
bash <(curl -s https://codecov.io/bash) -c -F javascript
yarn run test-with-coverage --maxWorkers=50%
bash <(curl -s https://codecov.io/bash) -c -F javascript -f ./JS_coverage/lcov.info
yarn run report-duplicate-code
cp -r ./JS_coverage /tmp/circleci-test-results
- run:
Expand Down
110 changes: 58 additions & 52 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,79 +1,85 @@
Changelog

### 1.0.0 (2019-09-06)
## Changelog

### 1.5.0 (2019-12-02)
* ipython integration
* ipython output cell adjustment
* column-wise menu support
* browser window popups for: Correlations, Coverage, Describe, Histogram & Instances

### 1.4.1 (2019-11-20)

* Initial public release
* [#32](https://github.com/man-group/dtale/issues/32): unpin jsonschema by moving flasgger to `extras_require`

### 1.1.0 (2019-10-08)
### 1.4.0 (2019-11-19)

* IE support
* **Describe** & **About** popups
* Custom CLI support
* Correlations Pearson Matrix filters
* "name" display in title tab
* "Heat Map" toggle
* dropped unused "Flask-Caching" requirement

### 1.1.1 (2019-10-23)
### 1.3.7 (2019-11-12)

* [#13](https://github.com/man-group/dtale/issues/13): fix for auto-detection of column widths for strings and floats
* Bug fixes for:
* [#28](https://github.com/man-group/dtale/issues/28): "Instances" menu option will now be displayed by default
* [#29](https://github.com/man-group/dtale/issues/29): add hints to how users can navigate the correlations popup
* add "unicode" as a string classification for column width calculation

### 1.2.0 (2019-10-24)
### 1.3.6 (2019-11-08)

* [#20](https://github.com/man-group/dtale/issues/13): fix for data being overriden with each new instance
* [#21](https://github.com/man-group/dtale/issues/13): fix for displaying timestamps if they exist
* calling `show()` now returns an object which can alter the state of a process
* accessing/altering state through the `data` property
* shutting down a process using the `kill()` function
* Bug fixes for:
* choose between `pandas.corr` & `numpy.corrcoef` depending on presence of NaNs
* hide timeseries correlations when date columns only contain one day

### 1.3.0 (2019-10-29)

* `webbrowser` integration (the ability to automatically open a webbrowser upon calling `dtale.show()`)
* flag for hiding the "Shutdown" button for long-running demos
* "Instances" navigator popup for viewing all activate D-Tale instances for the current python process
### 1.3.5 (2019-11-07)

### 1.3.1 (2019-10-29)

* fix for incompatible str types when directly altering state of data in running D-Tale instance
* Bug fixes for:
* duplicate loading of histogram data
* string serialization failing when mixing `future.str` & `str` in scatter function

### 1.3.2 (2019-11-05)
### 1.3.4 (2019-11-07)

* Bug fixes for:
* display of histogram column information
* reload of hidden "processes" input when loading instances data
* correlations json failures on string conversion
* updated correlation calculation to use `numpy.corrcoef` for performance purposes
* github rebranding from manahl -> man-group

### 1.3.3 (2019-11-05)

* hotfix for failing test under certain versions of `future` package

### 1.3.4 (2019-11-07)
### 1.3.2 (2019-11-05)

* updated correlation calculation to use `numpy.corrcoef` for performance purposes
* github rebranding from manahl -> man-group
* Bug fixes for:
* display of histogram column information
* reload of hidden "processes" input when loading instances data
* correlations json failures on string conversion

### 1.3.5 (2019-11-07)
### 1.3.1 (2019-10-29)

* fix for incompatible str types when directly altering state of data in running D-Tale instance

* Bug fixes for:
* duplicate loading of histogram data
* string serialization failing when mixing `future.str` & `str` in scatter function
### 1.3.0 (2019-10-29)

* `webbrowser` integration (the ability to automatically open a webbrowser upon calling `dtale.show()`)
* flag for hiding the "Shutdown" button for long-running demos
* "Instances" navigator popup for viewing all activate D-Tale instances for the current python process

### 1.3.6 (2019-11-08)
### 1.2.0 (2019-10-24)

* Bug fixes for:
* choose between `pandas.corr` & `numpy.corrcoef` depending on presence of NaNs
* hide timeseries correlations when date columns only contain one day
* [#20](https://github.com/man-group/dtale/issues/13): fix for data being overriden with each new instance
* [#21](https://github.com/man-group/dtale/issues/13): fix for displaying timestamps if they exist
* calling `show()` now returns an object which can alter the state of a process
* accessing/altering state through the `data` property
* shutting down a process using the `kill()` function

### 1.3.7 (2019-11-12)
### 1.1.1 (2019-10-23)

* Bug fixes for:
* [#28](https://github.com/man-group/dtale/issues/28): "Instances" menu option will now be displayed by default
* [#29](https://github.com/man-group/dtale/issues/29): add hints to how users can navigate the correlations popup
* add "unicode" as a string classification for column width calculation
* [#13](https://github.com/man-group/dtale/issues/13): fix for auto-detection of column widths for strings and floats

### 1.4.0 (2019-11-19)
### 1.1.0 (2019-10-08)

* Correlations Pearson Matrix filters
* "name" display in title tab
* "Heat Map" toggle
* dropped unused "Flask-Caching" requirement
* IE support
* **Describe** & **About** popups
* Custom CLI support

### 1.4.1 (2019-11-20)
### 1.0.0 (2019-09-06)

* [#32](https://github.com/man-group/dtale/issues/32): unpin jsonschema by moving flasgger to `extras_require`
* Initial public release
Loading

0 comments on commit b586f70

Please sign in to comment.