pub fn plot_sized(series: &[f64], height: usize, width: usize) -> StringExpand description
Plot with custom height and width
ยงExample
use rasciichart::plot_sized;
let data = vec![1.0, 2.0, 3.0, 4.0, 5.0];
println!("{}", plot_sized(&data, 15, 60));