Skip to main content

matplotlib functions to plot text with color highlighted substrings

Project description

png

highlight_text

This package provides two functions that allow you to plot text with in matplotlib:

  • ax_text for plotting onto an axes in data coordinates.
  • fig_text for plotting onto the figure in figure coordinates.

They take a string with substring delimiters = ['<', '>'] to be highlighted according to highlight colors: 'The weather is (sunny) today. Yesterday it (rained).', color = 'k', highlight_colors = ['C1', 'grey'] prints the text with 'sunny' as orange and 'rained' as grey.

A minimal example would be (Replace () with delimiters <> - markdown won't show them):

import matplotlib.pyplot as plt
from highlight_text import ax_text, fig_text
# or
import highlight_text # then use highlight_text.ax_text or highlight_text.fig_text
fig, ax = plt.subplots()  
ax_text(x = 0, y = 0.5,
        s = 'The weather is (sunny) today. Yesterday it (rained).'
        color = 'k', highlight_colors = ['C1', 'grey'])

or for the fig_text:

fig, ax = plt.subplots()  
fig_text(x = 0, y = 0.5,
         s = 'The weather is (sunny) today. Yesterday it (rained).',
         color = 'k', highlight_colors = ['C1', 'grey'])

You can further highlight by using
highlight_styles ie. ['normal', 'italic', 'oblique']
and highlight_weights ie. ['regular', 'bold'].

This does work with linebreaks \n, fstrings and ha in ['left', 'right', 'center'] as well as va in ['botton', 'top', 'center'].

Make sure to set data limits and if used call plt.tight_layout() before using the ax_text function. Otherwise the data transformation will not show properly.

Installation

pip install highlight-text

png

Parameters:
##########

x: x position with left alignment
y: y position
s: text including highlighted substrings color: textcolor of unhighlighted text
highlight_colors: list of highlight colors
highlight_weights = ['regular']: the fontweight used for highlighted text
highlight_styles = ['normal']: the fontstyle used for highlighted text
fontweight = 'regular': the fontweight used for normal text
fontstyle = 'normal': the fontstyle used for normal text
delim = ['<', '>']: delimiters to enclose the highlight substrings
va = 'bottom', textalignment has to be in ['bottom', 'top', 'center']
ha = 'left', textalignment has to be in ['left', 'right', 'center']
hpadding = 0: extra padding between highlight and normal text
linespacing = 0.25: linespacing in factor of font height between rows
**kwargs: figure.text | plt.text kwargs
[ax: axes to draw the text onto (in case of ax_text)]
[fig: figure(in case of fig_text)]

Returns:
##########

a list of texts

Alt Text

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

highlight_text-0.0.5.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

highlight_text-0.0.5-py3-none-any.whl (7.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page