Skip to main content

XSAM assistant

Project description

XSAM

XSAM is a Python package designed to assist with management and analysis of financial data.

Installation

To install the package, use the following command:

pip install xsam

If you want to run the package's tests, install dev dependencies for pytest

pip install xsam[dev]
pytest

Usage

Customizing the Log File Location

By default, the xsam package writes logs to file_log.log in the user's home directory. To specify a custom location for the log file, you can either set the XSAM_LOG_PATH environment variable or configure it programmatically using the set_log_path function.

Example (Programmatically):

from pathlib import Path
from xsam.logger import set_log_path

# Set a custom log file path
custom_log_path = Path("C:/path/to/custom/file_log.log")
set_log_path(custom_log_path)

Example (Linux/Mac):

export XSAM_LOG_PATH=/path/to/custom/file_log.log

Example (Windows, PowerShell):

$env:XSAM_LOG_PATH = "C:\path\to\custom\file_log.log"

Example (Windows, Command Prompt):

set XSAM_LOG_PATH=C:\path\to\custom\file_log.log

Entry Point

Run the main program like so

xsam

Or run the main module

python -m xsam.main

Saving Data

You can save a DataFrame, Series, dictionary, or Figure to a file using the export_obj function:

from pathlib import Path
import pandas as pd
from xsam.output import export_obj

# Create a DataFrame
df = pd.DataFrame({
    'A': [1, 2, 3],
    'B': [4, 5, 6]
})

# Save the DataFrame to a CSV file
export_obj(df, 'data', file_extension='csv', file_path=Path('data'))

Additional Examples

  1. Save a Series to a Pickle File:

    series = pd.Series([1, 2, 3, 4, 5])
    export_obj(series, 'series_data', file_extension='p', file_path=Path('data'))
    
  2. Save a Dictionary of DataFrames to an Excel File:

    data_dict = {
        'Sheet1': pd.DataFrame({'A': [1, 2], 'B': [3, 4]}),
        'Sheet2': pd.DataFrame({'C': [5, 6], 'D': [7, 8]})
    }
    export_obj(data_dict, 'data_dict', file_extension='xlsx', file_path=Path('data'))
    
  3. Save a Matplotlib Figure to a SVG File:

    import matplotlib.pyplot as plt
    
    fig, ax = plt.subplots()
    ax.plot([1, 2, 3], [4, 5, 6])
    export_obj(fig, 'figure', file_extension='svg', file_path=Path('data'))
    

Loading Data

You can load a DataFrame, Series, or dictionary from a file using the import_obj function:

from xsam.input import import_obj

# Load the latest file in the log
loaded_df = import_obj(file_name='data')

# Print the loaded DataFrame
print(loaded_df)

Arguments for import_obj

  • file_name (str): The name of the file to load. If not provided, the function will search the log for the latest file.
  • file_extension (str): The extension of the file to load. Supported extensions are 'csv', 'xlsx', and 'p'.
  • file_path (Path | str): The path to the file. If provided, the function will load the file directly from this path.
  • log_id (str): The unique file ID from the log file. If provided, the function will use this to locate the file.

Examples

  1. Load by Name:

    loaded_df = import_obj(file_name='data')
    
  2. Load by Name and Extension:

    loaded_df = import_obj(file_name='data', file_extension='csv')
    
  3. Load by Full File Path:

    loaded_df = import_obj(file_path='data/data.csv')
    
  4. Load by Log ID:

    loaded_df = import_obj(log_id='unique-log-id')
    

Aggregating Fields by Label

The aggregate_fields_by_label function aggregates values in a DataFrame by label, with optional regex matching and multipliers.

Parameters

  • df (pd.DataFrame): DataFrame containing the data to aggregate.
  • id_column (str): Column containing IDs to be associated with groups.
  • weight_column (str, optional): Column to use for weighted averages. Defaults to None.
  • field_columns (list[str], optional): List of field columns to be aggregated. Defaults to None.
  • label_column (str, optional): Column containing labels to use for grouping. Defaults to None.
  • label_regex (dict, optional): Dictionary of regex patterns and multipliers to use for grouping. Defaults to None.
  • method (str, optional): Method to use for aggregation. Options are "sum", "wsum", "avg", "wavg". Defaults to "sum".
  • preliminary (bool, optional): Whether to return the DataFrame before summing the values for each group. Defaults to False.

Returns

  • pd.DataFrame: DataFrame with aggregated values for each group.

Example

import pandas as pd
from xsam.aggregation import aggregate_fields_by_label

data = {
    "id": ["A0", "B0", "C0", "A1", "B1", "C1", "A2", "B2", "C2"],
    "value1": [10, 20, 30, 40, 50, 60, 70, 80, 90],
    "value2": [15, 25, 35, 45, 55, 65, 75, 85, 95],
    "weight": [1, 2, 3, 4, 5, 6, 7, 8, 9],
}
df = pd.DataFrame(data)
regex_dict = {
    "A_group": {"long": ("A.*", 1), "short": ("A1", -1), "other": ("A1", 1)},
    "B_group": {"long": ("B.*", 1), "short": ("B1", -1)},
    "C_group": {"long": ("C.*", 1), "short": ("C1", -1)},
}
result = aggregate_fields_by_label(df, "id", "weight", ["value1", "value2"], label_regex=regex_dict, method="wavg")
print(result)

License

This project is licensed under the MIT License. See the LICENSE file for details.

Authors

Contributing

No need to contribute at this point. Thank you!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xsam-0.1.15.tar.gz (41.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

xsam-0.1.15-py3-none-any.whl (42.3 kB view details)

Uploaded Python 3

File details

Details for the file xsam-0.1.15.tar.gz.

File metadata

  • Download URL: xsam-0.1.15.tar.gz
  • Upload date:
  • Size: 41.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.2

File hashes

Hashes for xsam-0.1.15.tar.gz
Algorithm Hash digest
SHA256 6ffecbd7f315c4cafddd7dc51552ebca3c52a3b90b076a4ef0fac1479ec8af63
MD5 a58a7306fece93476e18c8cc5f7ac657
BLAKE2b-256 46ee09d876c5b6554725a8d0df6c632b62318f8a092b9979793d7075f3c05023

See more details on using hashes here.

File details

Details for the file xsam-0.1.15-py3-none-any.whl.

File metadata

  • Download URL: xsam-0.1.15-py3-none-any.whl
  • Upload date:
  • Size: 42.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.2

File hashes

Hashes for xsam-0.1.15-py3-none-any.whl
Algorithm Hash digest
SHA256 de679e0b56f03eefdd69b74345774f5c59bf41274b1f8a0fb4a87d7ca21fa0d8
MD5 abbbc218fb6538328dd9d39483c0ca8b
BLAKE2b-256 1754918b5523be303b78ecbdb7c81fab93e258c8d298dbf082a0c7bd6018a3d1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page