forked from sinaptik-ai/pandas-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsave_chart.py
37 lines (27 loc) · 1.04 KB
/
save_chart.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""Helper functions to save charts to a file, if plt.show() is called."""
from pathlib import Path
from .logger import Logger
def add_save_chart(
code: str,
logger: Logger,
file_name: str,
save_charts_path_str: str = None,
) -> str:
"""
Add line to code that save charts to a file, if plt.show() is called.
Args:
code (str): Code to add line to.
logger (logging.Logger): Logger to use.
file_name (str): Name of folder to save charts to.
save_charts_path (str): User Defined Path to save Charts
Returns:
str: Code with line added.
"""
save_charts_path = Path(save_charts_path_str) if save_charts_path_str else None
if save_charts_path is not None:
save_charts_path.mkdir(parents=True, exist_ok=True)
save_charts_file = save_charts_path / f"{file_name}.png"
if "temp_chart.png" in code:
code = code.replace("temp_chart.png", save_charts_file.as_posix())
logger.log(f"Saving charts to {save_charts_file}")
return code