acadplot 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
acadplot/plot.py ADDED
@@ -0,0 +1,70 @@
1
+ # Re-export everything from feature modules for backward compatibility
2
+ from .bar import plot_bar, plot_grouped_bar, plot_stacked_bar
3
+ from .charts import plot_box, plot_errorbar, plot_heatmap, plot_scatter
4
+ from .draw import draw, draw_bar
5
+ from .line import plot_line
6
+ from .styles import (
7
+ available_fonts,
8
+ available_layouts,
9
+ available_text_colors,
10
+ available_themes,
11
+ configure_plot_style,
12
+ despine,
13
+ figure_size,
14
+ format_axes,
15
+ get_current_style,
16
+ use_style,
17
+ )
18
+ from .utils import (
19
+ annotate_points,
20
+ available_patterns,
21
+ blend_color,
22
+ colors,
23
+ format_legend,
24
+ get_output_dir,
25
+ markers,
26
+ new_alpha,
27
+ panel_labels,
28
+ patterns,
29
+ save,
30
+ save_all,
31
+ set_output_dir,
32
+ theme_preview,
33
+ )
34
+
35
+ __all__ = [
36
+ "plot_line",
37
+ "plot_bar",
38
+ "plot_grouped_bar",
39
+ "plot_stacked_bar",
40
+ "plot_scatter",
41
+ "plot_errorbar",
42
+ "plot_box",
43
+ "plot_heatmap",
44
+ "draw",
45
+ "draw_bar",
46
+ "configure_plot_style",
47
+ "available_fonts",
48
+ "available_layouts",
49
+ "available_text_colors",
50
+ "available_themes",
51
+ "figure_size",
52
+ "format_axes",
53
+ "format_legend",
54
+ "despine",
55
+ "get_current_style",
56
+ "use_style",
57
+ "save",
58
+ "save_all",
59
+ "set_output_dir",
60
+ "get_output_dir",
61
+ "panel_labels",
62
+ "annotate_points",
63
+ "theme_preview",
64
+ "available_patterns",
65
+ "colors",
66
+ "markers",
67
+ "patterns",
68
+ "new_alpha",
69
+ "blend_color",
70
+ ]