import {Plotting as plt, Row} from "bokehjs" export namespace Categorical { const dot = () => { const factors = ["a", "b", "c", "d", "e", "f", "g", "h"] const x = [50, 40, 65, 10, 25, 37, 80, 60] const fig = plt.figure({ title: "Categorical Dot Plot", tools: "", toolbar_location: null, y_range: factors, x_range: [0, 100], }) fig.segment(0, factors, x, factors, {line_width: 2, line_color: "green"}) fig.circle(x, factors, {size: 15, fill_color: "orange", line_color: "green", line_width: 3}) return fig } const hm = () => { const factors = ["foo", "bar", "baz"] const x = ["foo", "foo", "foo", "bar", "bar", "bar", "baz", "baz", "baz"] const y = ["foo", "bar", "baz", "foo", "bar", "baz", "foo", "bar", "baz"] const colors = [ "#0B486B", "#79BD9A", "#CFF09E", "#79BD9A", "#0B486B", "#79BD9A", "#CFF09E", "#79BD9A", "#0B486B", ] const fig = plt.figure({ title: "Categorical Heatmap", tools: "hover", toolbar_location: null, x_range: factors, y_range: factors, }) fig.rect(x, y, 1, 1, {color: colors}) return fig } plt.show(new Row({children: [hm(), dot()], sizing_mode: "scale_width"})) }