B Seven
B Seven

Reputation: 45943

How to create grid / heatmap images in Ruby?

Looking for a way to visualize data by generating simple graphics in Ruby.

Is there a gem that allows you to crete simple images, such as a checkerboard?

It should be:

EDIT: After doing more research, I found that the name of the chart is grid or heatmap. Found this RubyVis library.

Upvotes: 0

Views: 986

Answers (2)

sunnyrjuneja
sunnyrjuneja

Reputation: 6123

Chris Lowis gave a talk at Ruby Manor conference in London in December 2009 on doing visualizations in Ruby. Perhaps you might be interested in his slides[pdf] and examples?

Upvotes: 1

Zach Kemp
Zach Kemp

Reputation: 11904

RMagick is well-documented and supports several common file formats. It's an interface to ImageMagick, so you need to have that installed to use it.

Upvotes: 2

Related Questions