This files goal is to test out and showcase the plugin [flashcards-obsidian][https://github.com/reuseman/flashcards-obsidian]

this is the question:: answer

question with an image: Pasted image 20240318120208.png ::Answer with another image Pasted image 20240318120312.png

Question with a questionmark? more text
?
answer

question with qmark?
?
answer

Create a horizontal line in matplotlib. Assume that you already have the variable {python}plt.
?

Small things you can do in plots

horizontal line:

plt.axhline(y = VALUE_HERE, color = 'r', label = 'mean outlier score')

vertical line:

plt.axvline(x = VALUE_HERE, color = 'r', label = 'mean outlier score') 

set axis limit:

ax = plt.gca() # get current axis
ax.set_xlim([xmin, xmax])
ax.set_ylim([ymin, ymax])

add a legend

{python} plt.legend()