_plots_depreciated
Legacy plotting functions from _plotting/_plots_depreciated.py.
The misspelled module name is part of the current public surface and is still re-exported by _plotting/__init__.py. These functions exist for backward compatibility, but the preferred APIs now live in newer plotting modules.
Legacy entry points
volcano_plot_sns_single_comparison_genericqqplot_pvaluesplot_paired_point_anndataplot_column_of_bar_h_2groups_GEX_adataplot_column_of_bar_h_2groups_with_l2fc_dotplot_GEX_adatal2fc_pvalue_dotplot_protein_metabolitel2fc_pvalue_dotplot_gex
Preferred replacements
volcano_plot_sns_single_comparison_generic->volcano_plot_genericqqplot_pvalues->qqplotplot_paired_point_anndata->timeseries_paired_datapointsplot_column_of_bar_h_2groups_GEX_adata->barh_columnplot_column_of_bar_h_2groups_with_l2fc_dotplot_GEX_adata->barh_l2fc_dotplot_columnl2fc_pvalue_dotplot_protein_metaboliteandl2fc_pvalue_dotplot_gex->l2fc_dotplot_singleor the newer composite column builders
Important differences from the modern APIs
The legacy volcano function uses
padj_colrather than the currentpvalue_col.The legacy QQ helper predates the newer dict-based
qqplot(...)return contract.The older column-plot helpers are narrower and less configurable than the current
_column_plots.pyfunctions.
Recommendation
Use this module only when maintaining older scripts that already depend on it. For new work, prefer _plots.py and _column_plots.py.
Coverage note
This page documents current source code. There do not appear to be dedicated tests for the legacy module.