Metadata-Version: 2.1
Name: process-nitta
Version: 0.1.11
Summary: process experimental data
Project-URL: Homepage, https://github.com/nitta-lab-polymer/process-nitta
Project-URL: Issues, https://github.com/nitta-lab-polymer/process-nitta/issues
Author-email: Kamono Makoto <chengyaye31@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: pandas
Requires-Dist: pybaselines
Requires-Dist: pydantic
Description-Content-Type: text/markdown

# process-nitta

実験データの解析ライブラリ

## 使い方

インストール

```bash
pip install -U process-nitta
```

実行例

```python
from process_nitta import InstronSample

sample = InstronSample(
    file_path="../test/csv/instron.csv",
    width_mm=4,
    thickness_μm=100,
    length_mm=10,
    speed_mm_per_min=10,
)

sample.get_result_df()
```

[example](https://github.com/nitta-lab-polymer/process-nitta/tree/main/example)に実行例を置いています。
