60 Commits

Author SHA1 Message Date
Daniel Schwabeneder
d1fb11ce97 add option to avoid warning on unsupported arguments 2020-04-24 20:10:17 +02:00
Daniel Schwabeneder
122b4d91a8
Merge pull request #2619 from jamblejoe/patch-titlelocation
changed title_location -> titlelocation
2020-04-23 21:08:39 +02:00
Goran Nakerst
5d37264487 changed title_location -> titlelocation 2020-04-23 13:48:42 +01:00
jamblejoe
c976a6de83
Add documentation for legend=(x,y)
Added documentation in arg_desc.jl for placing legends via legend=(x,y) where x,y are Real.
2020-04-23 00:07:28 +01:00
wfrgra
2a4b74d0ff renamed new legend setting from :label to :inline 2020-03-31 19:38:47 +11:00
daschw
653e0b80b2 Merge branch 'show-empty-bins' of https://github.com/yha/Plots.jl into yha-show-empty-bins 2019-10-13 19:53:39 +02:00
Daniel Schwabeneder
3fdf87a955 add legendtitlefont attributes 2019-08-26 10:37:07 +02:00
Jeff Fessler
8f4753a0bb
Document :colorbar_entry
Addresses #2068
2019-06-21 09:53:22 -04:00
yha
f75ae01c16 Series attribute to show empty bins as 0. 2019-06-13 16:30:21 +03:00
HMH
710123aab4 Add attribute draw_arrow for axes.
The draw_arrow attribute enables drawing an arrow at the end of an axis.
Currently supported only by the PGFPlots backend.
2019-05-01 00:27:20 +02:00
Balázs Ferenc Mezei
c4f2de198e Add option :tex_output_standalone to set the 'include_preamble' argument in the PGFPlots backend. 2019-03-03 00:04:05 +00:00
Samuel S. Watson
e30889aa12 document @shorthands functions 2019-01-16 15:04:01 +01:00
Daniel Schwabeneder
af34fdc45a add :plain formatter option in arg_desc 2018-11-11 21:25:41 +01:00
Godisemo
beb73d891d Document new guide_position argument 2018-09-14 09:19:56 +02:00
Unknown
92b0d5c0be Add line_z and update arg_desc.jl 2018-08-19 13:52:26 +02:00
Michael Krabbe Borregaard
3e56aa43e4 linspace -> range 2018-08-11 11:24:54 +01:00
Will Grant
7eaae3a6d5 Add full keyword control of minor grid 2018-07-16 17:37:19 +10:00
Will Grant
dd434b89d2 add minor grid and tick marks. Works, but doesn't extend beyond major ticks 2018-07-11 17:17:45 +10:00
Daniel Schwabeneder
61a2d962c0 widen most seriestypes including logscales 2018-06-24 11:03:56 +02:00
Daniel Schwabeneder
3e66c6cce4 change DPI value back 2018-06-16 11:51:49 +02:00
Will Grant
91ed04ff83 update documentation in arg_desc with round limits option 2018-06-06 18:44:07 +10:00
Daniel Schwabeneder
f901254519 add contour_labels attribute and minor GR contour fixes 2018-02-28 21:19:18 +01:00
Daniel Schwabeneder
129a91b36f update arg description 2017-11-19 21:18:04 +01:00
Andrew Palugniok
f4bc2e0649 Convert :camera attribute input for GR. 2017-10-07 20:05:53 +01:00
Andrew Palugniok
0c5a9172ab Added camera attribute processing. 2017-10-06 20:46:25 +01:00
Daniel Schwabeneder
ee7a3b3686 general axis fixes and improvemennts 2017-09-29 13:41:54 +02:00
Daniel Schwabeneder
18188516ec implement showaxis attribute for gr 2017-09-29 11:48:17 +02:00
Daniel Schwabeneder
b73ea55bbd implement tick_direction for GR, PyPlot, Plotly and GLVisualize 2017-09-27 13:53:06 +02:00
Michael K. Borregaard
cd1913c008 Update bins description 2017-08-31 23:20:55 +02:00
Michael K. Borregaard
e92fbadc3a Update histogram normalization desc 2017-08-31 23:12:33 +02:00
Daniel Schwabeneder
5a2d39320f framestyle attribute for gr, pyplot and glvisualize 2017-08-24 16:13:01 +02:00
Daniel Schwabeneder
be4a374122 allow turning on/off the axes border 2017-08-20 21:55:21 +02:00
Daniel Schwabeneder
e0c679f5ee magic grid argument 2017-08-16 17:45:32 +02:00
Daniel Schwabeneder
6b814b8dca initial commit mostly a copy of #695 2017-08-10 16:32:24 +02:00
Michael K. Borregaard
db1dd618ea Add example with linspace 2017-06-07 11:01:47 +02:00
Michael K. Borregaard
132306fef1 amend bins description 2017-06-07 08:02:18 +02:00
Daniel Schwabeneder
9d115fc02e added space in arg_desc 2017-06-03 13:49:06 +02:00
Daniel Schwabeneder
5e7756810d changed default attribute to legendtitle 2017-06-03 13:47:24 +02:00
Daniel Schwabeneder
ee5617c6b8 added attribute for pyplot backend 2017-06-02 18:55:47 +02:00
Oliver Schulz
7843821109 Change default for bins to :auto (meaning 30 bins) 2017-05-08 11:37:02 +02:00
Oliver Schulz
1188230641 Change histogram implementation, use StatsPlots, add new histogram styles
New series recipes for binned data:

* barbins
* scatterbins
* stepbins

New series recipes for histogram:

* barhist (histogram is now an alias for this)
* scatterhist
* stephist

Supports plotting 1D and 2D StatsBase histograms, seriestype can be set to
bar(bins), scatter(bins) or step(bins).

Also adds support for some common auto-binning modes:

* :sturges, :auto - Sturges' formula
* :sqrt - Square-root choice
* :rice - Rice Rule
* :scott - Scott's normal reference rule
* :fd - Freedman–Diaconis rule

Maybe these could be contributed to StatsBase at some point.

Error bars currently don't work correctly for scatterbins and scatterhist,
due to problem with manipulating error bars in a series recipe, but do work
for "plot(h::StatsBase.Histogram, seriestype = :scatter)" (works around
the problem by calling scatter directly, it seems that error bars can be
manipulated correctly in a type recipe).
2017-05-04 10:02:07 +02:00
Naoki Saito
c5737db4f5 Add fill_z attribute and plotly impl 2017-01-09 16:03:14 -05:00
Tom Breloff
5ea48e6fcd Merge pull request #557 from mkborregaard/fix-markerstrokecolor-doc
fix docs for msc
2016-11-01 12:07:54 -04:00
Michael K. Borregaard
67ecf4e350 fix docs for msc
specifies msc defaults to foreground_color_subplots
2016-10-31 14:21:49 +01:00
Thomas Breloff
04a4357684 fix plotly aspect_ratio and reword arg desc; closes #523 2016-10-07 12:14:06 -04:00
Thomas Breloff
87ab1d9ca4 added colorbar_title attr and pyplot impl 2016-09-13 12:50:28 -04:00
Thomas Breloff
f63eac9a73 added mirror and implemented in pyplot 2016-08-18 21:11:03 -04:00
Thomas Breloff
bbb00816f1 axis formatter 2016-07-26 12:34:06 -04:00
Thomas Breloff
7e56d85b83 args fix 2016-06-29 21:58:07 -04:00
Thomas Breloff
20af495581 added display_type and extra_kwargs plot attributes 2016-06-29 16:34:06 -04:00