Contour Plots
The following imports have been used to produce the plots below:
#![allow(unused)] fn main() { use plotly::common::{ColorScale, ColorScalePalette, Title}; use plotly::contour::Contours; use plotly::{Contour, HeatMap, Layout, Plot}; use std::f64::consts::PI; }
The to_inline_html
method is used to produce the html plot displayed in this page.
Simple Contour Plot
#![allow(unused)] fn main() { fn simple_contour_plot(show: bool) -> Plot { let n = 200; let mut x = Vec::<f64>::new(); let mut y = Vec::<f64>::new(); let mut z: Vec<Vec<f64>> = Vec::new(); for index in 0..n { let value = -2.0 * PI + 4.0 * PI * (index as f64) / (n as f64); x.push(value); y.push(value); } y.iter().take(n).for_each(|y| { let mut row = Vec::<f64>::new(); x.iter().take(n).for_each(|x| { let radius_squared = x.powf(2.0) + y.powf(2.0); let zv = x.sin() * y.cos() * radius_squared.sin() / (radius_squared + 1.0).log10(); row.push(zv); }); z.push(row); }); let trace = Contour::new(x, y, z); let mut plot = Plot::new(); plot.add_trace(trace); if show { plot.show(); } plot } }
Colorscale for Contour Plot
#![allow(unused)] fn main() { fn colorscale_for_contour_plot(show: bool) -> Plot { let z = vec![ vec![10.0, 10.625, 12.5, 15.625, 20.0], vec![5.625, 6.25, 8.125, 11.25, 15.625], vec![2.5, 3.125, 5., 8.125, 12.5], vec![0.625, 1.25, 3.125, 6.25, 10.625], vec![0.0, 0.625, 2.5, 5.625, 10.0], ]; let trace = Contour::new_z(z).color_scale(ColorScale::Palette(ColorScalePalette::Jet)); let layout = Layout::new().title("Colorscale for Contour Plot"); let mut plot = Plot::new(); plot.set_layout(layout); plot.add_trace(trace); if show { plot.show(); } plot } }
Customizing Size and Range of a Contour Plot Contours
#![allow(unused)] fn main() { fn customizing_size_and_range_of_a_contour_plots_contours(show: bool) -> Plot { let z = vec![ vec![10.0, 10.625, 12.5, 15.625, 20.0], vec![5.625, 6.25, 8.125, 11.25, 15.625], vec![2.5, 3.125, 5., 8.125, 12.5], vec![0.625, 1.25, 3.125, 6.25, 10.625], vec![0.0, 0.625, 2.5, 5.625, 10.0], ]; let trace = Contour::new_z(z) .color_scale(ColorScale::Palette(ColorScalePalette::Jet)) .auto_contour(false) .contours(Contours::new().start(0.0).end(8.0).size(2.0)); let layout = Layout::new().title("Customizing Size and Range of Contours"); let mut plot = Plot::new(); plot.set_layout(layout); plot.add_trace(trace); if show { plot.show(); } plot } }
Customizing Spacing Between X and Y Ticks
#![allow(unused)] fn main() { fn customizing_spacing_between_x_and_y_ticks(show: bool) -> Plot { let z = vec![ vec![10.0, 10.625, 12.5, 15.625, 20.0], vec![5.625, 6.25, 8.125, 11.25, 15.625], vec![2.5, 3.125, 5., 8.125, 12.5], vec![0.625, 1.25, 3.125, 6.25, 10.625], vec![0.0, 0.625, 2.5, 5.625, 10.0], ]; let trace = Contour::new_z(z) .color_scale(ColorScale::Palette(ColorScalePalette::Jet)) .dx(10.0) .x0(5.0) .dy(10.0) .y0(10.0); let layout = Layout::new().title("Customizing Size and Range of Contours"); let mut plot = Plot::new(); plot.set_layout(layout); plot.add_trace(trace); if show { plot.show(); } plot } }