class Ishi::Text

Overview

Renders chart as text to the console.

Defined in:

ishi/text.cr

Constructors

Instance Method Summary

Instance methods inherited from class Ishi::Base

plot(xdata : Indexable(T), ydata : Indexable(U), zdata : Indexable(V), format : String | Nil = nil, *, title : String | Nil = nil, style : Symbol = :points, **options) forall T, U, V
plot(ydata : Indexable(Y), format : String | Nil = nil, *, title : String | Nil = nil, style : Symbol = :lines, **options) forall Y
plot(xdata : Indexable(M), ydata : Indexable(N), format : String | Nil = nil, *, title : String | Nil = nil, style : Symbol = :lines, **options) forall M, N
plot(expression : String, format : String | Nil = nil, *, title : String | Nil = nil, style : Symbol | Nil = nil, **options)
plot
, show(**options) show, xlabel(xlabel : String) xlabel, xrange(xrange : Range(Float64, Float64) | Range(Int32, Int32)) xrange, ylabel(ylabel : String) ylabel, yrange(yrange : Range(Float64, Float64) | Range(Int32, Int32)) yrange, zlabel(zlabel : String) zlabel, zrange(zrange : Range(Float64, Float64) | Range(Int32, Int32)) zrange

Constructor Detail

def self.new(io : IO = STDOUT) #

[View source]

Instance Method Detail

def show(**options) #
Description copied from class Ishi::Base

Shows the chart.


[View source]