some new features

This commit is contained in:
ilgazca
2025-07-30 17:09:11 +03:00
parent db5d46760a
commit 8019bd3b7c
20616 changed files with 4375466 additions and 8 deletions

View File

@ -0,0 +1,43 @@
from . import tsaplots as tsa
from .agreement import mean_diff_plot
from .boxplots import beanplot, violinplot
from .correlation import plot_corr, plot_corr_grid
from .factorplots import interaction_plot
from .functional import fboxplot, hdrboxplot, rainbowplot
from .gofplots import qqplot
from .plottools import rainbow
from .regressionplots import (
abline_plot,
influence_plot,
plot_ccpr,
plot_ccpr_grid,
plot_fit,
plot_leverage_resid2,
plot_partregress,
plot_partregress_grid,
plot_regress_exog,
)
__all__ = [
"abline_plot",
"beanplot",
"fboxplot",
"hdrboxplot",
"influence_plot",
"interaction_plot",
"mean_diff_plot",
"plot_ccpr",
"plot_ccpr_grid",
"plot_corr",
"plot_corr_grid",
"plot_fit",
"plot_leverage_resid2",
"plot_partregress",
"plot_partregress_grid",
"plot_regress_exog",
"qqplot",
"rainbow",
"rainbowplot",
"tsa",
"violinplot",
]