Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 636 Bytes

geom_rectbin.md

File metadata and controls

47 lines (32 loc) · 636 Bytes

title: rectbin author: Daniel Jones part: Geometry order: 1009 ...

Draw colored rectangles.

Aesthetics

  • color

Either

  • x_min
  • x_max
  • y_min
  • y_max

Or

  • x
  • y

In the former case, an rectangles defined by x_min, x_max, y_min, y_max are drawn, in the latter, equal sizes sequares are centered at x and y positions.

See Also

  • Geom.histogram2d

Examples

using RDatasets
using Gadfly

Gadfly.prepare_display()
Gadfly.set_default_plot_size(14cm, 8cm)
plot(data("Zelig", "macro"), x="Year", y="Country", color="GDP", Geom.rectbin)