I would like to change the fonts for scanpy plots labels into Arial or Helvetica but when I change font type using the following settings, nothing changed in the font family.
import scanpy as sc
import matplotlib as plt
sc.settings.set_figure_params(dpi=100,dpi_save=400,frameon=False,transparent=True)
plt.rcParams["pdf.fonttype"]=42
Is there any way for me to specify font family in scanpy.pl?