Answers for "add text matplotlib"

2

matplotlib insert text

import matplotlib.pyplot as plt
fig, ax = plt.subplots()
textstr = "Test"
ax.text(0.05, 0.95, textstr, transform=ax.transAxes, fontsize=14,
        verticalalignment='top')
Posted by: Guest on May-27-2021
2

add text to plot python

import matplotlib.pyplot as plt
w = 4
h = 3
d = 70
plt.figure(figsize=(w, h), dpi=d)
x = [1, 2, 4]
x_pos = 0.5
y_pos = 3
plt.text(x_pos, y_pos, "text on plot")
plt.plot(x)
plt.savefig("out.png")Outputout.png
Posted by: Guest on March-25-2021
0

plt text matplotlib white background

import numpy as np
import matplotlib.pyplot as plt
plt.figure()
ax = plt.subplot(111)
plt.plot(np.linspace(1,0,1000))
t = plt.text(0.03,.95,'text',transform=ax.transAxes,backgroundcolor='0.75',alpha=.5)
plt.show()
Posted by: Guest on December-14-2020
0

Matplotlib add text to axes

#Axis.text() method
https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.text.html

ax1.text(1.1, -300, 'Label', color='#af0b1e',
         weight='bold', rotation=3)
         
Add the text s to the Axes at location x, y in data coordinates.
Posted by: Guest on August-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language