module Matplotlib::Pyplot

Public Class Methods

xkcd(scale: 1, length: 100, randomness: 2, &block) click to toggle source
Calls superclass method
# 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