Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
5b09d89
Try to pop vmin and vmax out of norm_kw
lukelbd Sep 2, 2019
a3ebbb1
Respect vmin and vmax as hard minimum/maximum
lukelbd Sep 2, 2019
ba2ce6f
Merge branch 'master' into panels-change-gridspec
lukelbd Sep 2, 2019
bad8024
Remove PanelAxes, and remove 'panels' args from subplots()! Colorbar …
lukelbd Sep 3, 2019
aa4cccf
On-the-fly figure colorbars and legends!
lukelbd Sep 3, 2019
c264999
Return axes_grid of panels, fix _panels_kwargs bug
lukelbd Sep 3, 2019
088a537
Fix axes_grid docstring
lukelbd Sep 3, 2019
bf87d3a
Minor
lukelbd Sep 3, 2019
cfe7e66
axes_grid docstring
lukelbd Sep 3, 2019
3205230
Zoom attribute change
lukelbd Sep 3, 2019
00bd9ff
Auto legend cleanup
lukelbd Sep 3, 2019
25934db
Comments
lukelbd Sep 3, 2019
73dd02c
Better 'span' fig panel aliases
lukelbd Sep 3, 2019
9254346
Add AAAS to journals; fix bug in pulling their dims
bradyrx Sep 4, 2019
32c4cc8
Move journal dictionary to top; add testing for journals
bradyrx Sep 4, 2019
7b6e4e0
Misc bugfixes and cleanup
lukelbd Sep 5, 2019
b8df9e1
Panels bugfix
lukelbd Sep 5, 2019
c67c3f8
Remove print statement
lukelbd Sep 5, 2019
5643867
Update documentation to reflect new colorbars, legends usage, add ins…
lukelbd Sep 5, 2019
4a43155
Merge pull request #31 from lukelbd/panels-change-gridspec
lukelbd Sep 5, 2019
acc905c
Remove duplicate 'Plotting wrappers' docs
lukelbd Sep 5, 2019
c2ae600
All caps constants
lukelbd Sep 6, 2019
f9c6eda
Name change fix
lukelbd Sep 6, 2019
c880ef1
Figure documentation
lukelbd Sep 6, 2019
7a611b5
_subplots_geometry cleanup
lukelbd Sep 6, 2019
43943a7
Merge pull request #30 from bradyrx/add_aaas_journals
lukelbd Sep 6, 2019
ddcc5fe
Repair dead links in wrappers.py
lukelbd Sep 6, 2019
bb3f21a
Merge branch 'master' of https://github.com/lukelbd/proplot
lukelbd Sep 6, 2019
039aea3
Demo stacked figure panels
lukelbd Sep 6, 2019
8804efc
_reassign_title bugfix, minor docs changes
lukelbd Sep 9, 2019
2b78889
Preliminary add_subplot changes
lukelbd Sep 9, 2019
695318b
Merge from master
lukelbd Sep 14, 2019
513d3e0
Fix import error
lukelbd Sep 14, 2019
ff760aa
Merge and fix docs conflicts
lukelbd Sep 18, 2019
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
Remove PanelAxes, and remove 'panels' args from subplots()! Colorbar …
…and legend panels can now only be generated on-the-fly.
  • Loading branch information
lukelbd committed Sep 3, 2019
commit bad8024405355a3062ddefadfb2c6fe152f00205
14 changes: 7 additions & 7 deletions proplot/.proplotrc
Original file line number Diff line number Diff line change
Expand Up @@ -164,22 +164,22 @@ innerborders.linewidth: 0.6
rivers.color: k
rivers.linewidth: 0.6
# Colorbar settings
colorbar.loc: 'lower right'
colorbar.loc: right
colorbar.grid: False
colorbar.frameon: True
colorbar.framealpha: 0.8
colorbar.extend: 0.15
colorbar.extendinset: 1em
colorbar.length: 8em
colorbar.width: 1.2em
colorbar.axespad: 0.5em
colorbar.extend: 1.3em
colorbar.extendinset: 1em
colorbar.length: 1
colorbar.lengthinset: 8em
colorbar.width: 1.5em # 0.17 inches
colorbar.widthinset: 1.2em
# Subplot properties
# Use font relative units for everything because this is common way user
# might want to increase figure resolution
subplots.axwidth: 18em # 2 inches
subplots.panelwidth: 4em # 0.45 inches
subplots.colorbarwidth: 1.5em # 0.17 inches
subplots.legendwidth: 1.5em # 0.25 inches
subplots.pad: 0.5em
subplots.axpad: 1em
subplots.panelpad: 0.5em
Expand Down
Loading