I have one short question: is there any way to show the points in a scatterplot as plus and minus signs? For example, this code produces a scatter plot with blue and red points:
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
df = pd.DataFrame({'x': np.arange(25), 'y': np.random.normal(0,2500,25)})
fig, ax = plt.subplots()
ax.scatter(df.x, df.y, c=np.sign(df.y), cmap="bwr")
plt.show()
I would like have blue points as blue plus signs and red points as red minus signs. Is it possible? Thanks in advance.