Exemplo 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)
Exemplo 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)
Exemplo 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")
Exemplo n.º 4
0
def step_impl(context):
    for name, palette in context.palettes:
        testing.assert_html_equal(palette._repr_html_(),
                                  "color-brewer-%s" % name)
Exemplo 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")
Exemplo 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")
Exemplo n.º 7
0
def step_impl(context):
    testing.assert_html_equal(
        context.palette._repr_html_(), "color-palette-reverse")
Exemplo n.º 8
0
def step_impl(context):
    palette = toyplot.color.spread(context.color)
    testing.assert_html_equal(palette._repr_html_(), "color-spread")
Exemplo n.º 9
0
def step_impl(context):
    palette = context.palettes[0] + context.palettes[1]
    testing.assert_html_equal(
        palette._repr_html_(), "color-palette-add")
Exemplo 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")
Exemplo n.º 11
0
def step_impl(context):
    palette = toyplot.color.spread(context.color)
    testing.assert_html_equal(palette._repr_html_(), "color-spread")
Exemplo n.º 12
0
def step_impl(context):
    testing.assert_html_equal(
        context.color_map._repr_html_(), "color-linear-map")
Exemplo n.º 13
0
def step_impl(context):
    testing.assert_html_equal(
        context.color_map._repr_html_(), "color-diverging-map-custom")
Exemplo n.º 14
0
def step_impl(context):
    testing.assert_html_equal(context.color_map._repr_html_(),
                              "color-diverging-map-custom")
Exemplo 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")
Exemplo n.º 16
0
def step_impl(context):
    testing.assert_html_equal(context.color_map._repr_html_(),
                              "color-linear-map")
Exemplo 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")
Exemplo n.º 18
0
def step_impl(context):
    palette = context.palettes[0] + context.palettes[1]
    testing.assert_html_equal(palette._repr_html_(), "color-palette-add")
Exemplo 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")
Exemplo n.º 20
0
def step_impl(context):
    testing.assert_html_equal(context.palette._repr_html_(),
                              "color-palette-reverse")
Exemplo n.º 21
0
def step_impl(context):
    testing.assert_html_equal(
        toyplot.color._jupyter_color_swatches(context.value), "color-swatch")
Exemplo 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")
Exemplo n.º 23
0
def step_impl(context):
    for name, palette in context.palettes:
        testing.assert_html_equal(
            palette._repr_html_(), "color-brewer-%s" % name)
Exemplo n.º 24
0
def step_impl(context):
    testing.assert_html_equal(
        toyplot.color._jupyter_color_swatches(context.value), "color-swatch")
Exemplo n.º 25
0
def step_impl(context):
    testing.assert_html_equal(context.palette._repr_html_(),
                              "color-brewer-count")
Exemplo n.º 26
0
def step_impl(context, reference):
    testing.assert_html_equal(toyplot.color._jupyter_color_swatches(context.colors), reference)
Exemplo n.º 27
0
def step_impl(context):
    testing.assert_html_equal(
        context.palette._repr_html_(), "color-brewer-count")