Graficando emojis

código
Resumen de un googleo interminable
Author

sebastiandres

Published

December 12, 2021

Hace poco necesitaba mezclar un gráfico de líneas con un emoji. Googlee hasta el cansancio, pero las soluciones no me funcionaban correctamente. Despues de probar muchísimas opciones, el código que si me funcionó fue el siguiente:

def plot_emoji(emoji_path, ax, x, y, zoom=0.35):
    """
    Plots an emoji on a figure.
    Based on:
    https://www.geeksforgeeks.org/emojis-as-markers-in-matplotlib/
    image_path: path to the image
    ax: axis to plot on
    x: x coordinate
    y: y coordinate
    zoom: zoom factor (resizing)
    """
    # reading the image
    image = plt.imread(emoji_path)
    # OffsetBox
    image_box = OffsetImage(image, zoom=zoom)
    # Drawing the image
    ab = AnnotationBbox(image_box, (x, y), frameon=False)
    ax.add_artist(ab)
    return

No permite usar directamente un emoji, pero sí cualquier imagen.