Esempio n. 1
0
def step_impl(context):
    for name, color_map in context.color_maps:
        testing.assert_html_equal(
            color_map._repr_html_(), "color-diverging-map-%s" % name)
Esempio n. 2
0
def step_impl(context):
    for name, color_map in context.color_maps:
        testing.assert_html_equal(color_map._repr_html_(),
                                  "color-diverging-map-%s" % name)
Esempio n. 3
0
def step_impl(context):
    colormap = toyplot.color.CategoricalMap(
        toyplot.color.brewer.palette("BlueGreenBrown", 3))
    testing.assert_html_equal(colormap._repr_html_(), "color-categorical-map")
Esempio n. 4
0
def step_impl(context):
    for name, palette in context.palettes:
        testing.assert_html_equal(palette._repr_html_(),
                                  "color-brewer-%s" % name)
Esempio n. 5
0
def step_impl(context):
    context.palette += toyplot.color.brewer.palette("Blues")
    testing.assert_html_equal(context.palette._repr_html_(),
                              "color-palette-iadd")
Esempio n. 6
0
def step_impl(context):
    colors = numpy.array(["red", "green", "blue", "black"])
    palette = toyplot.color.Palette(colors)
    testing.assert_html_equal(palette._repr_html_(), "color-palette-css-array")
Esempio n. 7
0
def step_impl(context):
    testing.assert_html_equal(
        context.palette._repr_html_(), "color-palette-reverse")
Esempio n. 8
0
def step_impl(context):
    palette = toyplot.color.spread(context.color)
    testing.assert_html_equal(palette._repr_html_(), "color-spread")
Esempio n. 9
0
def step_impl(context):
    palette = context.palettes[0] + context.palettes[1]
    testing.assert_html_equal(
        palette._repr_html_(), "color-palette-add")
Esempio n. 10
0
def step_impl(context):
    context.palette += toyplot.color.brewer.palette("Blues")
    testing.assert_html_equal(
        context.palette._repr_html_(), "color-palette-iadd")
Esempio n. 11
0
def step_impl(context):
    palette = toyplot.color.spread(context.color)
    testing.assert_html_equal(palette._repr_html_(), "color-spread")
Esempio n. 12
0
def step_impl(context):
    testing.assert_html_equal(
        context.color_map._repr_html_(), "color-linear-map")
Esempio n. 13
0
def step_impl(context):
    testing.assert_html_equal(
        context.color_map._repr_html_(), "color-diverging-map-custom")
Esempio n. 14
0
def step_impl(context):
    testing.assert_html_equal(context.color_map._repr_html_(),
                              "color-diverging-map-custom")
Esempio n. 15
0
def step_impl(context):
    colors = numpy.array(["red", "green", "blue", "black"])
    palette = toyplot.color.Palette(colors)
    testing.assert_html_equal(palette._repr_html_(), "color-palette-css-array")
Esempio n. 16
0
def step_impl(context):
    testing.assert_html_equal(context.color_map._repr_html_(),
                              "color-linear-map")
Esempio n. 17
0
def step_impl(context):
    colors = [(1, 0, 0, 1), (0, 1, 0, 1), (0, 0, 1, 1), (0, 0, 0, 0.5)]
    palette = toyplot.color.Palette(colors)
    testing.assert_html_equal(palette._repr_html_(), "color-palette-rgba-tuples")
Esempio n. 18
0
def step_impl(context):
    palette = context.palettes[0] + context.palettes[1]
    testing.assert_html_equal(palette._repr_html_(), "color-palette-add")
Esempio n. 19
0
def step_impl(context):
    colormap = toyplot.color.CategoricalMap(
        toyplot.color.brewer.palette("BlueGreenBrown", 3))
    testing.assert_html_equal(colormap._repr_html_(), "color-categorical-map")
Esempio n. 20
0
def step_impl(context):
    testing.assert_html_equal(context.palette._repr_html_(),
                              "color-palette-reverse")
Esempio n. 21
0
def step_impl(context):
    testing.assert_html_equal(
        toyplot.color._jupyter_color_swatches(context.value), "color-swatch")
Esempio n. 22
0
def step_impl(context):
    colors = [(1, 0, 0, 1), (0, 1, 0, 1), (0, 0, 1, 1), (0, 0, 0, 0.5)]
    palette = toyplot.color.Palette(colors)
    testing.assert_html_equal(palette._repr_html_(),
                              "color-palette-rgba-tuples")
Esempio n. 23
0
def step_impl(context):
    for name, palette in context.palettes:
        testing.assert_html_equal(
            palette._repr_html_(), "color-brewer-%s" % name)
Esempio n. 24
0
def step_impl(context):
    testing.assert_html_equal(
        toyplot.color._jupyter_color_swatches(context.value), "color-swatch")
Esempio n. 25
0
def step_impl(context):
    testing.assert_html_equal(context.palette._repr_html_(),
                              "color-brewer-count")
Esempio n. 26
0
def step_impl(context, reference):
    testing.assert_html_equal(toyplot.color._jupyter_color_swatches(context.colors), reference)
Esempio n. 27
0
def step_impl(context):
    testing.assert_html_equal(
        context.palette._repr_html_(), "color-brewer-count")