Module: Matplotlib::Pyplot

Defined in:
lib/matplotlib/pyplot.rb

Class Method Summary collapse

Class Method Details

.xkcd(scale: 1, length: 100, randomness: 2, &block) ⇒ Object



6
7
8
9
# File 'lib/matplotlib/pyplot.rb', line 6

def self.xkcd(scale: 1, length: 100, randomness: 2, &block)
  ctx = super(scale: scale, length: length, randomness: randomness)
  PyCall.with(ctx, &block)
end