Skip to content

Commit

Permalink
Merge 9e5cab1 into 61a301a
Browse files Browse the repository at this point in the history
  • Loading branch information
adnanhemani committed Jun 20, 2019
2 parents 61a301a + 9e5cab1 commit 928863b
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 57 deletions.
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -26,6 +26,10 @@ pip install datascience

This project adheres to [Semantic Versioning](http://semver.org/).


### v0.11.7
* Fixed bug where Table#hist was sometimes truncating the x-axis label.

### v0.11.6
* Fixes bug where error terms show up while plotting

Expand Down
3 changes: 2 additions & 1 deletion datascience/tables.py
Expand Up @@ -2586,7 +2586,8 @@ def prepare_hist_with_bin_column(bin_column):
# This code is factored as a function for clarity only.
weight_columns = [c for c in self.labels if c != bin_column]
bin_values = self.column(bin_column)
values_dict = [(w.rstrip(' count'), (bin_values, self.column(w))) for w in weight_columns]
values_dict = [(w[:-6] if w.endswith(' count') else w, (bin_values, self.column(w))) \
for w in weight_columns]
return values_dict

def prepare_hist_with_group(group):
Expand Down
3 changes: 1 addition & 2 deletions datascience/version.py
@@ -1,2 +1 @@
__version__ = '0.11.6'

__version__ = '0.11.7'

0 comments on commit 928863b

Please sign in to comment.