Companion workflow engine for xraylarch.
Project description
Hollowfoot
A work-flow engine for performing analysis of experimental X-ray data using xraylarch and other domain-specific frameworks.
A hollowfoot analysis is:
Declarative: A typical analysis workflow in hollowfoot is best thought of as a series of steps to be performed on some underlying data. The analysis engine is responsible for executing the steps for you when needed.
Jupyter-first: Many analysis frameworks, like xraylarch, provide tools that are used as part of some larger analysis application. Hollowfoot aims to extend these tools so that they can be used as first-class objects in a jupyter notebook environment.
Documentation
Sphinx-generated documentation for this project can be found here: https://spc-group.github.io/hollowfoot/
Usage
An example workflow for XAFS analysis might look like:
import hollowfoot as hf
analysis = (
XAFSAnalysis # What kind of analysis are we doing?
.from_aps_20bmb("my_data_folder/") # Load data from disk
.to_mu("mono-energy", "It", "I0", is_transmission=True) # Apply reference correction
.plot_mu() # Plot all data sets together
.merge() # Merge data sets into a single group
.fit_edge_jump() # Do some normalization, etc
.subtract_background() # Convert from µ(E) to χ(E)
.plot_mu() # Plot the single, corrected dataset
.summarize() # Print out a summary of the steps that have been taken
)
Notice how each line of the previous code snippet describes a concise step of analysis. These steps can be re-ordered or commented out, making for easy comparisons between analysis strategies.
Installation
The following will download the package and load it into the python environment.
$ pip install hollowfoot
Running the Tests
$ uv run --dev pytest
File Format Support
XAS Data Interchange Format (XDI)
Hollowfoot includes an Xarray backend for loading .xdi files.
The easiest way to import XDI files is with xarray.open_dataset():
import xarray as xr
dataset = xr.open_dataset("example.xdi")
It is also possible to load XDI data from a string using hollowfoot.xdi.load():
import hollowfoot as hf
with open("tests/example.xdi") as fp:
dataset = hf.xdi.load(fp.read())
It is also possible to convert a dataset back to XDI:
# This example overwrites existing files, be careful!
with open("new_file.xdi", mode='w') as fp:
fp.write(hf.xdi.dump(dataset))
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hollowfoot-0.5.1.tar.gz.
File metadata
- Download URL: hollowfoot-0.5.1.tar.gz
- Upload date:
- Size: 534.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c1681d2211a6cfb87b9120c4df2de1fcf9455d14a5ba68586e55bf54bee0326
|
|
| MD5 |
5e4854cd266c8cab3d16bf0eff8a5d8d
|
|
| BLAKE2b-256 |
c8bf8916b478c5950e92bb2cec57362a59d99646ce7af93cfcabf4a65e8280bf
|
File details
Details for the file hollowfoot-0.5.1-py3-none-any.whl.
File metadata
- Download URL: hollowfoot-0.5.1-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b07e243ffdf5acaf26d6d2943b64ae6cb0bd09e079f4a8ed5e07969c75233d8
|
|
| MD5 |
df84827f90f1c12bd0087d2e5044ae47
|
|
| BLAKE2b-256 |
6e26b3e04f65f8759ca27737168feaa2ea653e0a9bd03fc2ea3259ce2a0527c6
|