No description
Find a file
MatFi 82decada25
All checks were successful
CI / Julia 1.10 - ubuntu-latest - x64 - (push) Successful in 3m58s
CI / Julia nightly - ubuntu-latest - x64 - (push) Successful in 11m48s
switched to codeberg
2026-05-17 22:08:24 +02:00
.github/workflows set testing version from 1.12 to 1.10 2026-05-17 19:14:44 +02:00
docs switched to codeberg 2026-05-17 22:08:24 +02:00
src Squashed changes after 2e5145e 2026-05-17 16:44:36 +02:00
test Squashed changes after 2e5145e 2026-05-17 16:44:36 +02:00
.gitignore Squashed changes after 2e5145e 2026-05-17 16:44:36 +02:00
LICENSE Initial commit 2024-02-20 11:36:43 +01:00
Project.toml added [compat] versoipns 2026-05-17 21:54:15 +02:00
README.md Squashed changes after 2e5145e 2026-05-17 16:44:36 +02:00

Documentation Build Status
Tests codecov

STDFormat

STDFormat is a parser for the Standard Test Data Fromat STDF. It's desing goal is to be STDFv4 Specfication compleate and modular in a way that no recods and field can be added up easliy if needed.

Installation Guide

STDFormat is tested to be compatible with Julia version 1.10 and later. To get the JuliaGrid package installed, execute the following Julia command:

import Pkg
Pkg.add("STDFormat")
using STDFormat
using DataFrames

# Convert an STDF file to DataFrames
die_df, test_df = stdf_to_dataframe("path/to/file.stdf")

# View the die-level information
first(die_df, 5)

# View the test results  
first(test_df, 5)

# Join the DataFrames for analysis
joined_df = inner_join(die_df, test_df, on=:part_id)