2. Concepts
Last updated
Last updated
Ezel's APIs expect polars::frame::DataFrame
as a data source.
If you have other data types, they should be converted to DataFrame
first.
More ergonomic interfaces are planned to be added.
f64
are expected in most places. If you have f32
data, simply convert it to f64
.
Ezel borrows the idea of protrusion from Makie.jl
. The main areas of items in the grid are aligned by rows and columns.
TODO
TODO
Attributes are the properties of plots such as marker size, color, etc.
There are 3 types of attribute value: a const, categorical column, or scalar column.
scatter.marker.size = Const(10.0)
means all markers have the same size 10.0.
If you want to use a f64 column in polars' DataFrame as categorical data, the easiest way is to cast it to the string dtype.
scatter.marker.color = Column("column_name".to_string())
uses a color from the current color cycle (🟢->🟡->🟤->🔴->..) if the column is categorical or string. Otherwise it uses a color from the current color map ()