Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Dendrogram andrew tweaks #312

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 38 commits into from
Oct 2, 2015
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
3d6dbb9
Added Dendrogram class and tests
merenlin Jul 28, 2015
2d9b88c
Added a small validator
merenlin Aug 4, 2015
819e41e
updates after renaming
merenlin Aug 4, 2015
3781906
Moved dendrogram tests to optional
merenlin Aug 12, 2015
31efa33
Protected scipy imports
merenlin Aug 12, 2015
02beb6c
Fixed typos, docstring and return value
merenlin Aug 12, 2015
bfd3cca
Typo
merenlin Aug 12, 2015
ff98cb7
Fixing default colors mapping
merenlin Aug 15, 2015
4afc8c9
Minor styling changes and fixes
merenlin Aug 15, 2015
57e15bd
pep8 and docsrings
merenlin Aug 15, 2015
b7d3d31
pep8 in tests
merenlin Aug 15, 2015
44cdece
Styling and imports
merenlin Aug 28, 2015
16c74c1
Cleanup of labels, axis and tests
merenlin Sep 1, 2015
ebff53e
Added more tests and fixed axis reference
merenlin Sep 1, 2015
0de0349
another fix for axis confusion
merenlin Sep 1, 2015
20fc40c
Added colorscale test
merenlin Sep 4, 2015
88842b1
cow comments
merenlin Sep 4, 2015
b9352d7
Merge branch 'master' into dendrogram-andrew-tweaks
theengineear Sep 30, 2015
e7bf58c
Duplicate `width` to `height` in layout update.
theengineear Sep 30, 2015
3632084
Make docs a little bit more consistent.
theengineear Sep 30, 2015
8aea12e
Spell check.
theengineear Sep 30, 2015
fae2047
pep:8ball:
theengineear Sep 30, 2015
723dde4
pep:8ball:
theengineear Sep 30, 2015
806a6e0
`autoscale` —> `autosize`
theengineear Sep 30, 2015
ca08777
Add a `NumpyTestUtilsMixin` to help dict comps.
theengineear Sep 30, 2015
8866e34
Show that the dendrogram test should have failed!
theengineear Sep 30, 2015
d0b0f6a
Fix dendrogram test, lock down *entire* figure.
theengineear Sep 30, 2015
fc7ce40
Merge branch 'dendrogram-andrew-tweaks' of https://github.com/plotly/…
theengineear Sep 30, 2015
bed3bec
Lock down `test_dendrogram_random_matrix` test.
theengineear Sep 30, 2015
f3b57fc
Fix duplicated `test_dendrogram_orientation` test.
theengineear Sep 30, 2015
3cf13ae
Lock down `test_dendrogram_orientation_two` spec.
theengineear Sep 30, 2015
dab5d37
Rename `.._orientation_two` —> `.._colorscale`.
theengineear Sep 30, 2015
89592cd
PY3 fix. Can’t index a `.keys()` view.
theengineear Sep 30, 2015
3e3de24
Loosen `dtype` on constructor in test. (PY3 fail).
theengineear Sep 30, 2015
76361e6
Rename test suite for figure factory.
theengineear Sep 30, 2015
85dccd1
Merge branch 'master' into dendrogram-andrew-tweaks
theengineear Oct 1, 2015
01d2826
For consistency use Fixed and Added in changelog.
theengineear Oct 1, 2015
3815a8f
version bump —> 1.8.7 (added dendrogram)
theengineear Oct 1, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Duplicate width to height in layout update.
  • Loading branch information
theengineear committed Sep 30, 2015
commit e7bf58c2ce6b9cd6e2f8c4cecf043ec56051a651
2 changes: 1 addition & 1 deletion 2 plotly/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -3333,7 +3333,7 @@ def set_figure_layout(self, width, height):
'autoscale': False,
'hovermode': 'closest',
'width': width,
'width': height
'height': height
})

self.set_axis_layout(self.xaxis)
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.